在python中模拟打印屏幕键

时间:2014-04-16 10:34:31

标签: python python-2.7 simulate printscreen

我在谷歌搜索很多,但我没有得到任何东西。 我们可以在python中模拟打印屏幕键吗? 如果是,那么如何在python中模拟打印屏幕键?

2 个答案:

答案 0 :(得分:1)

要拍摄屏幕截图,您收到的评论将有效:

Get screenshot on Windows with Python? python auto save printscreen

模拟打印屏幕键,您可以使用击键自动化库,其中两个我可以证明这一点:

1:pywinauto

使用SendKeyssimulate keystrokesor see reference here)。

2:Sikuli_cpython

使用standalone sikuli API来处理击键等等。然后通过将相应的unicode char传递给sikuli方法type()来获取list of keys you can simulate

答案 1 :(得分:1)

您可以使用pyautogui库:

#pip install pyautogui
from pyautogui import press
press("printscreen")