Yanıtlar:
from time import sleep
sleep(0.05)
Tam olarak 50 ms süren uykuya güvenirseniz, bunu elde edemeyeceğinizi unutmayın. Sadece bununla ilgili olacak.
time.sleep(secs)
] en az uyur ' olduğunu bilmek ilginç olabilir secs
.
Ayrıca pyautogui kullanarak
import pyautogui
pyautogui._autoPause(0.05,False)
ilk olarak Hiçbiri değilse, bu durumda ilk arg ikinci için duracaktır, 0.05 saniye
ilki Yok ise ve ikinci arg Doğru ise, o zaman ile ayarlanan global duraklama ayarı için uyur
pyautogui.PAUSE = int
sebebini merak ediyorsanız kaynak koduna bakın:
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
yerine kullanmak daha iyidir , ancak programınızın saf autopygui olmasını istiyorsanız, bu bir yol olabilir.