how to make pyautogui faster

Solutions on MaxInterview for how to make pyautogui faster by the best coders in the world

showing results for - "how to make pyautogui faster"
Federica
04 Sep 2020
1"""
2Set pyautgui.PAUSE to a small number. Default is 0.1 secs between actions.
3Here is example code:
4"""
5
6import pyautogui
7pyautgui.PAUSE = 0.01  # can be a float or an integer
8
9# Now this can increase the speed of your spambot/autoclicker/whatever!