Created
August 14, 2017 20:16
-
-
Save charlesreid1/c723081bae411011f324eaafb792486c to your computer and use it in GitHub Desktop.
Python Keyboard Module Demo
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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