在python中伪造KeyPress触发器

时间:2013-09-10 14:47:17

标签: python keypress

是否可以在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()

有可能吗?

1 个答案:

答案 0 :(得分:-1)

回到Visual Basic,有一个名为SendKeys的功能。 SendKeys功能已实现多种语言。我会尝试this project用于python。我自己没用过。