keyboard output python code example
Example 1: how to simulate a key press in python
from pynput.keyboard import Key, Controller
keyboard = Controller()
key = "a"
keyboard.press(key)
keyboard.release(key)
Example 2: python type on keyboard
pip install keyboard
import keyboard
keyboard.press_and_release('shift+s, space')
keyboard.write('The quick brown fox jumps over the lazy dog.')
keyboard.add_hotkey('ctrl+shift+a', print, args=('triggered', 'hotkey'))
keyboard.add_hotkey('page up, page down', lambda: keyboard.write('foobar'))
keyboard.wait('esc')
recorded = keyboard.record(until='esc')
keyboard.play(recorded, speed_factor=3)
keyboard.add_abbreviation('@@', '[email protected]')
keyboard.wait()