本文整理汇总了Python中keyboard.Keyboard.key_presses_to_word方法的典型用法代码示例。如果您正苦于以下问题:Python Keyboard.key_presses_to_word方法的具体用法?Python Keyboard.key_presses_to_word怎么用?Python Keyboard.key_presses_to_word使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类keyboard.Keyboard
的用法示例。
在下文中一共展示了Keyboard.key_presses_to_word方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: test_other_key_presses_to_word
# 需要导入模块: from keyboard import Keyboard [as 别名]
# 或者: from keyboard.Keyboard import key_presses_to_word [as 别名]
def test_other_key_presses_to_word(self, inp, res):
key = {'c': CAPS_KEY,
's': SHIFT_KEY}
KB = Keyboard('US')
kw = KB.key_presses_to_word('{c}asdf{s}1{c}sdf'.format(**key))
assert 'ASDFasdf' == KB.key_presses_to_word('{c}asdf{s}a{c}sdf'.format(**key))
assert 'ASDF!sdf' == KB.key_presses_to_word('{c}asdf{s}1{c}sdf'.format(**key))
assert KB.key_presses_to_word('{s}apa'.format(**key)) == 'Apa'
示例2: test_key_presses_to_word
# 需要导入模块: from keyboard import Keyboard [as 别名]
# 或者: from keyboard.Keyboard import key_presses_to_word [as 别名]
def test_key_presses_to_word(self, inp, res):
key = {'c': CAPS_KEY,
's': SHIFT_KEY}
KB = Keyboard('US')
assert inp == KB.key_presses_to_word(res.format(**key))
示例3: test_keypress_to_w
# 需要导入模块: from keyboard import Keyboard [as 别名]
# 或者: from keyboard.Keyboard import key_presses_to_word [as 别名]
def test_keypress_to_w(self):
for inp, res in [('wor{c}d123', u'worD123'),
('{c}pass{c}wo{c}rd{c}', 'PASSwoRD')]:
kb = Keyboard('US')
w = kb.key_presses_to_word(inp.format(s=SHIFT_KEY, c=CAPS_KEY))
assert w == res