我在谷歌搜索很多,但我没有得到任何东西。 我们可以在python中模拟打印屏幕键吗? 如果是,那么如何在python中模拟打印屏幕键?
答案 0 :(得分:1)
要拍摄屏幕截图,您收到的评论将有效:
Get screenshot on Windows with Python? python auto save printscreen
要模拟打印屏幕键,您可以使用击键自动化库,其中两个我可以证明这一点:
使用SendKeys到simulate keystrokes(or see reference here)。
使用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")