是否可以在 python 中进行按键触发?如果是这样,那么最简单的方法是什么?
我想要完成的只是制作一个简单的假触发器,通过执行一个函数让系统监听我按下了键。
例如,在代码中,我按下了“Page Up”键。我目前正在使用 Ubuntu 10.04 这就是我正在寻找的
#function for auto trigger key pressed
def autoPressedPageUp():
pressed.key("PageUp")
#if it recieved a message from a network
#it will call the function of trigger
if recievedMessage:
autoPressedPageUp()
可能吗?