📜  如何使 pyautogui 更快 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:25.005000             🧑  作者: Mango

代码示例1
"""
Set pyautgui.PAUSE to a small number. Default is 0.1 secs between actions.
Here is example code:
"""

import pyautogui
pyautgui.PAUSE = 0.01  # can be a float or an integer

# Now this can increase the speed of your spambot/autoclicker/whatever!