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!