PyAutoGUI fail-safe triggered from mouse moving to a corner of the screen. To disable this fail-safe, set pyautogui.FAILSAFE to False. DISABLING FAIL-SAFE IS NOT RECOMMENDED.
⇒ 장시간 컴퓨터를 켜놓을 경우 커맨드 창을 다시 누르고 키를 두번 입력해야 제대로 입력되는 것을 확인. 다음 코드 추가
pyautogui.FAILSAFE = False screenWidth, screenHeight = pyautogui.size() pyautogui.moveTo(screenWidth/2, screenHeight/2)
pyautogui.hotkey('ctrl', 'c')
두번!
⇒ 원격접속이라 여전히 문제 발생 : pyautogui를 사용하지 않고 book_alarm()에서 False를 return해서 while루프 break하는 것으로 변경
HTTPSConnectionPool(host='www.itlo.org', port=443): Max retries exceeded with url: /booking (Caused by SSLError(SSLEOFError(8, 'EOF occurred in violation of protocol (_ssl.c:1129)')))
⇒ 크롤링 interval 분단위로 늘림.