如何使用PyAutoGUI检测按键事件?

时间:2018-11-19 19:26:55

标签: python-2.7 pyautogui

如何使用PyAutoGUI检测按键事件?在我的研究中,我无法在此模型中举例:

import pyautogui

num = 0
if pyautogui.press('b'): # I know the right thing is not to use the press, but, what do I put in place?
    num = 1

2 个答案:

答案 0 :(得分:2)

在PyAutoGUI中无法检测击键。您可能要尝试使用Pynput模块:https://pypi.org/project/pynput/

答案 1 :(得分:1)

我建议从 here 下载 python 键盘模块,它提供了你在这里需要的确切功能

import keyboard

if keyboard.is_pressed('b') == True:
    num = 1