Skip to content

Instantly share code, notes, and snippets.

@charlesreid1
Created August 14, 2017 20:16
Show Gist options
  • Save charlesreid1/c723081bae411011f324eaafb792486c to your computer and use it in GitHub Desktop.
Save charlesreid1/c723081bae411011f324eaafb792486c to your computer and use it in GitHub Desktop.
Python Keyboard Module Demo
import keyboard
import time
# Written for Mac OS X.
# 0x24 = Enter on Mac keyboards
keyboard.write("i")
time.sleep(3)
keyboard.write("Wake up Neo...",delay=0.2)
keyboard.press(0x24)
time.sleep(1)
keyboard.write("The Matrix has you...",delay=0.4)
keyboard.press(0x24)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment