gitextract_ltfh64ff/ ├── .dockerignore ├── .github/ │ └── ISSUE_TEMPLATE/ │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── 12306.image.model.h5 ├── Dockerfile ├── Dockerfile37 ├── LICENSE ├── README.md ├── TickerConfig.py ├── UnitTest/ │ ├── TestAll.py │ └── __init__.py ├── Update.md ├── __init__.py ├── agency/ │ ├── __init__.py │ ├── agency_tools.py │ ├── cdn_utils.py │ └── proxy_list ├── cdn_list ├── config/ │ ├── AutoSynchroTime.py │ ├── TicketEnmu.py │ ├── __init__.py │ ├── configCommon.py │ ├── emailConf.py │ ├── getCookie.py │ ├── logger.py │ ├── pushbearConf.py │ ├── serverchanConf.py │ └── urlConf.py ├── docker-compose.yml ├── docker_install_centos.sh ├── filter_cdn_list ├── init/ │ ├── __init__.py │ ├── login.py │ └── select_ticket_info.py ├── inter/ │ ├── AutoSubmitOrderRequest.py │ ├── ChechFace.py │ ├── CheckOrderInfo.py │ ├── CheckRandCodeAnsyn.py │ ├── CheckUser.py │ ├── ConfirmHB.py │ ├── ConfirmSingleForQueue.py │ ├── ConfirmSingleForQueueAsys.py │ ├── GetPassCodeNewOrderAndLogin.py │ ├── GetPassengerDTOs.py │ ├── GetQueueCount.py │ ├── GetQueueCountAsync.py │ ├── GetRandCode.py │ ├── GetRepeatSubmitToken.py │ ├── GetSuccessRate.py │ ├── LiftTicketInit.py │ ├── LoginAysnSuggest.py │ ├── LoginConf.py │ ├── PassengerInitApi.py │ ├── Query.py │ ├── QueryOrderWaitTime.py │ ├── SubmitOrderRequest.py │ └── __init__.py ├── model.v2.0.h5 ├── myException/ │ ├── PassengerUserException.py │ ├── UserPasswordException.py │ ├── __init__.py │ ├── balanceException.py │ ├── ticketConfigException.py │ ├── ticketIsExitsException.py │ └── ticketNumOutException.py ├── myUrllib/ │ ├── MySocketUtils.py │ ├── __init__.py │ └── httpUtils.py ├── requirements-docker37.txt ├── requirements.txt ├── run.py ├── station_name.txt ├── tmp/ │ ├── __init__.py │ └── log/ │ └── __init__.py └── verify/ ├── __init__.py ├── localVerifyCode.py ├── mlearn_for_image.py └── pretreatment.py