python3 detect keypresses code example
Example: how to detect keypress in python
# in console: pip install keyboard
import time
import keyboard as kb
key = "a"
while (True):
if (kb.is_pressed(key)):
print("a pressed")
time.sleep(0.001) # decreases CPU usage