Replies: 1 comment 1 reply
-
Hey. The logs say you are using v7.2. Could you update to v7.4 and see if you get the same error? If so, this may be related to #257 which should be fixed in the develop branch. To test that, can you run |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I am using V 7.4. The script checked in perfectly for the opening flight, but gives me an error when trying to check in for the return leg. Here is edited verbose output. I disable the fare checker to ensure that wasn't an issue. Is this user error or a problem with the script? Thanks in advance.
C:\Users\ABC\AppData\Local\Programs\Python\Python310\Scripts\auto-southwest-check-in-master>python southwest.py --verbose XYZABC Jane Doe
2024-05-11 10:57:05 DEBUG MainProcess[log:23]: Initialized the application
2024-05-11 10:57:05 DEBUG MainProcess[main:112]: Auto-Southwest Check-In v7.2
2024-05-11 10:57:05 DEBUG MainProcess[main:113]: Called with 3 arguments
2024-05-11 10:57:06 DEBUG MainProcess[config:120]: Initializing configuration file
2024-05-11 10:57:06 DEBUG MainProcess[config:149]: Reading the configuration file
2024-05-11 10:57:06 DEBUG MainProcess[config:163]: Reading configuration from environment variables
2024-05-11 10:57:06 DEBUG MainProcess[config:58]: Setting check fares to False
2024-05-11 10:57:06 DEBUG MainProcess[config:80]: Setting notification level to <NotificationLevel.INFO: 1>
2024-05-11 10:57:06 DEBUG MainProcess[config:93]: Using 0 notification services
2024-05-11 10:57:06 DEBUG MainProcess[config:97]: Setting retrieval interval to 24 hours
2024-05-11 10:57:06 DEBUG MainProcess[config:132]: Creating configurations for 0 accounts
2024-05-11 10:57:06 DEBUG MainProcess[config:139]: Creating configurations for 0 reservations
2024-05-11 10:57:06 DEBUG MainProcess[config:139]: Creating configurations for 1 reservations
2024-05-11 10:57:06 DEBUG MainProcess[main:137]: Reservation added through CLI arguments
2024-05-11 10:57:06 DEBUG MainProcess[main:142]: Monitoring 0 accounts and 1 reservations
2024-05-11 10:57:06 DEBUG Process-1[reservation_monitor:60]: Acquiring lock...
2024-05-11 10:57:06 DEBUG Process-1[reservation_monitor:62]: Lock acquired
2024-05-11 10:57:06 DEBUG Process-1[checkin_scheduler:50]: Refreshing headers for current session
2024-05-11 10:57:06 DEBUG Process-1[webdriver:106]: Starting webdriver for current session
DevTools listening on ws://127.0.0.1:50671/devtools/browser/204bd45d-59db-42d3-aa11-d8ddc4b095c4
2024-05-11 10:57:11 DEBUG Process-1[webdriver:122]: Using browser version: 124.0.6367.158
2024-05-11 10:57:15 DEBUG Process-1[webdriver:126]: Loading Southwest Check-In page
2024-05-11 10:57:19 DEBUG Process-1[webdriver:64]: Waiting for valid headers
2024-05-11 10:57:19 DEBUG Process-1[webdriver:155]: Waiting for headers_set to be set
2024-05-11 10:57:19 DEBUG Process-1[webdriver:159]: headers_set set successfully
2024-05-11 10:57:21 DEBUG Process-1[reservation_monitor:84]: Scheduling flight check-ins for 1 reservations
2024-05-11 10:57:21 DEBUG Process-1[checkin_scheduler:76]: Retrieving reservation information
2024-05-11 10:57:25 DEBUG Process-1[checkin_scheduler:89]: Successfully retrieved reservation information
2024-05-11 10:57:25 DEBUG Process-1[checkin_scheduler:57]: 2 flights found under current reservation
2024-05-11 10:57:25 DEBUG Process-1[checkin_scheduler:43]: 2 total flights were found
2024-05-11 10:57:25 DEBUG Process-1[checkin_scheduler:100]: 2 new flights found
2024-05-11 10:57:25 DEBUG Process-1[checkin_scheduler:104]: Scheduling 2 flights for check-in
2024-05-11 10:57:25 DEBUG Process-1[checkin_handler:41]: Scheduling check-in for current flight
2024-05-11 10:57:25 DEBUG Process-1[checkin_handler:41]: Scheduling check-in for current flight
2024-05-11 10:57:26 DEBUG Process-1[notification_handler:67]: Sending new flights notification
Successfully scheduled the following flights to check in for Jane Doe:
Flight from Chicago (Midway) to Austin at 2024-05-09 01:30:00 UTC
Flight from Austin to Chicago (Midway) at 2024-05-13 01:40:00 UTC
2024-05-11 10:57:26 DEBUG Process-1[checkin_scheduler:116]: 2 flights are currently scheduled. Removing old flights
2024-05-11 10:57:26 DEBUG Process-1[checkin_scheduler:132]: Successfully removed old flights. 2 flights are now scheduled
2024-05-11 10:57:26 DEBUG Process-1[reservation_monitor:80]: Lock released
2024-05-11 10:57:26 DEBUG Process-1[reservation_monitor:128]: Sleeping for 86380 seconds
2024-05-11 10:57:26 DEBUG Process-1:1[checkin_handler:81]: Check-in time has passed. Going straight to check-in
2024-05-11 10:57:26 DEBUG Process-1:1[checkin_handler:124]: Attempting to check in
Checking in to flight from 'Chicago (Midway)' to 'Austin' for Jane Doe
2024-05-11 10:57:26 DEBUG Process-1:1[checkin_handler:138]: Making GET request to check in
2024-05-11 10:57:26 DEBUG Process-1:2[checkin_handler:89]: Sleeping until thirty minutes before check-in...
2024-05-11 10:57:56 DEBUG Process-1:1[checkin_handler:147]: Failed to check in. Error: Bad Request 400. Exiting
2024-05-11 10:57:56 DEBUG Process-1:1[notification_handler:110]: Sending failed check-in notification...
Failed to check in to flight 3V83OM for Jane Doe. Reason: Bad Request 400.
Check in at this url: https://mobile.southwest.com/check-in
Beta Was this translation helpful? Give feedback.
All reactions