Posts by fab • 11 points
1 post
-
1
votes1
answer35
viewsQ: Game does not recognize keyboard input by "pynput"
I’m creating a bot to press the "A" key inside a game. Code I am using: from pynput.keyboard import Controller; from time import sleep; keyboard = Controller(); sleep(2) keyboard.press("a");…