Risposte:
from time import sleep
sleep(0.05)
Nota che se fai affidamento sul sonno impiegando esattamente 50 ms, non lo otterrai. Sarà solo a questo proposito.
time.sleep(secs)
] dorme almeno secs
' da Python 3.5 secondo la documentazione.
può anche usare pyautogui come
import pyautogui
pyautogui._autoPause(0.05,False)
se first non è None, si fermerà per il primo arg secondo, in questo esempio: 0,05 sec
se first è None e second arg è True, allora dormirà per l'impostazione di pausa globale che è impostata con
pyautogui.PAUSE = int
se ti stai chiedendo il motivo, vedi il codice sorgente:
def _autoPause(pause, _pause):
"""If `pause` is not `None`, then sleep for `pause` seconds.
If `_pause` is `True`, then sleep for `PAUSE` seconds (the global pause setting).
This function is called at the end of all of PyAutoGUI's mouse and keyboard functions. Normally, `_pause`
is set to `True` to add a short sleep so that the user can engage the failsafe. By default, this sleep
is as long as `PAUSE` settings. However, this can be override by setting `pause`, in which case the sleep
is as long as `pause` seconds.
"""
if pause is not None:
time.sleep(pause)
elif _pause:
assert isinstance(PAUSE, int) or isinstance(PAUSE, float)
time.sleep(PAUSE)
time.sleep
piuttosto che questo, ma se vuoi che il tuo programma sia un autopygui puro, allora questo può essere un modo.