keyboard.py 文件源码

python
阅读 22 收藏 0 点赞 0 评论 0

项目:unearth 作者: chilcote 项目源码 文件源码
def fact():
    '''Returns the keyboard localization'''
    result = ''

    try:
        proc = subprocess.Popen(['/usr/sbin/ioreg',
                                 '-rln',
                                 'AppleHIDKeyboardEventDriverV2',
                                 '-a'],
                                stdout=subprocess.PIPE, stderr=subprocess.PIPE)
        output, _ = proc.communicate()
    except (IOError, OSError):
        result = 'Unknown'

    if output:
        result = plistlib.readPlistFromString(output)[0].get('KeyboardLanguage')

    return {factoid: result.strip()}
评论列表
文章目录


问题


面经


文章

微信
公众号

扫码关注公众号