Untitled

Anonymous
python
09/30/2022 9:07 PM
336 B
21
Indexable
while True:
    # Se não estiver disponível, recomeçar com F5
    if pyautogui.locateCenterOnScreen('ingrDisp.png'):
        pyautogui.alert('TEM INGRESSO DISPONÍVEL!')
        break
    else:
        pyautogui.hotkey('F5')
        sleep(4)
Editor is loading...