short summary:
I am trying to create a program that will send keyboard events to the computer that for all purposes the simulated events should be t
For both python3 and python2 you can use pyautogui (pip install pyautogui)
pip install pyautogui
from pyautogui import press, typewrite, hotkey press('a') typewrite('quick brown fox') hotkey('ctrl', 'w')
It's also crossplatform with Windows, OSX, and Ubuntu LTS.