pynput simulate enter key code example
Example 1: python keyboard press
import keyboard
import time
stop = False
def onkeypress(event):
global stop
if event.name == 'q':
stop = True
keyboard.on_press(onkeypress)
while True:
try:
print("sleeping")
time.sleep(5)
print("slept")
if stop:
print('You Pressed A Key!')
break
except:
print("#######")
break
Example 2: pynput windwos key
from pynput.keyboard import Key, Controller
keyboard = Controller()
keyboard.press(Key.space)
keyboard.release(Key.space)
keyboard.press('a')
keyboard.release('a')
keyboard.press('A')
keyboard.release('A')
with keyboard.pressed(Key.shift):
keyboard.press('a')
keyboard.release('a')
keyboard.type('Hello World')