10 examples of 'python press key' in Python

Every line of 'python press key' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
81def pressTest(self, key):
82 print( "-> Pressing " + key.upper() )
17def keypress(key):
18 #keyboard.press(key)
19 #keyboard.release(key)
20 os.system("xdotool key %s" % key)
585def keypress(key):
586 if key in ('q', 'Q', 'esc'):
587 raise urwid.ExitMainLoop()
191def key_input(self, window, key, scancode, codepoint, modifier):
192 if key == 27:
193 self.manager.go_back()
194 return True # back button now does nothing on Android
195 return False
97def onPress(self):
98 if self.c.onEnter is not None:
99 self.c.onEnter()
178def press_keys(self, keys, **kwargs):
179 for key in keys:
180 self.press_key(key, **kwargs)
164def pressAndHold(*args):
165 '''
166 press and hold. Do NOT release.
167 accepts as many arguments as you want.
168 e.g. pressAndHold('left_arrow', 'a','b').
169 '''
170 for i in args:
171 win32api.keybd_event(VK_CODE[i], 0, 0, 0)
172 time.sleep(.05)
95@handle(Keys.ControlP)
96def _(event):
97 " Previous line. "
98 event.current_buffer.auto_up(count=event.arg)
173def press(self, key):
174 self.fm.ui.keymaps.use_keymap('pager')
175 self.fm.ui.press(key)
21def press_key_combination(key_list, delay):
22 new_list = []
23 for key in key_list:
24 if key.lower() in linuxconstants.XDOTOOL_KEYMAP:
25 key = linuxconstants.XDOTOOL_KEYMAP[key.lower()]
26 new_list.append(key)
27 subprocess.call(['xdotool', 'key', '--delay', '{}ms'.format(delay), '+'.join(new_list)])

Related snippets