AutoKachalka/input_sender.py
MasterAkulon 7fa101820a Init
2026-06-13 12:19:38 +03:00

13 lines
No EOL
226 B
Python

import time
import pydirectinput
import config
pydirectinput.PAUSE = 0
def press_action_key():
pydirectinput.keyDown(config.ACTION_KEY)
time.sleep(config.KEY_PRESS_DELAY)
pydirectinput.keyUp(config.ACTION_KEY)