Skip to content

Instantly share code, notes, and snippets.

@portothree
Created May 27, 2019 18:11
Show Gist options
  • Save portothree/2ad2ff8525aaced43f4d85225c76ed58 to your computer and use it in GitHub Desktop.
Save portothree/2ad2ff8525aaced43f4d85225c76ed58 to your computer and use it in GitHub Desktop.
from pynput.keyboard import Key, Controller
keyboard = Controller()
keyboard.type('hello')
keyboard.press(Key.enter)
keyboard.release(Key.enter)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment