我正在尝试使用 pynput 编写一个 python3 脚本,该脚本按下一个键来自动执行我必须执行的重复任务。代码如下:
import time
from pynput.keyboard import Key, Controller
keyboard = Controller()
keyboard.press(Key.enter)
keyboard.release(Key.enter)
# Press and release space
while True:
keyboard.press(Key.space)
keyboard.release(Key.space)
time.sleep(1)
我的问题是它可以工作,但只能在命令行中。我不知道如何将输入导出到打开的窗口以及我必须执行的任务。我使用的是 OsX 系统。先感谢您。
RISEBY
相关分类