├── .gitignore ├── LICENSE ├── README.md ├── autoRun.bat ├── config0.ini.sample ├── cron.py ├── driver ├── chromedriver.exe └── geckodriver.exe ├── env_check.py ├── macAutoRun.sh ├── main.py ├── notice.py └── page_func.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.ini 2 | __pycache__ 3 | *.log 4 | run*.bat 5 | main*.py 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyqqqqqqqqq/PKUAutoBookingVenues/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyqqqqqqqqq/PKUAutoBookingVenues/HEAD/README.md -------------------------------------------------------------------------------- /autoRun.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyqqqqqqqqq/PKUAutoBookingVenues/HEAD/autoRun.bat -------------------------------------------------------------------------------- /config0.ini.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyqqqqqqqqq/PKUAutoBookingVenues/HEAD/config0.ini.sample -------------------------------------------------------------------------------- /cron.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyqqqqqqqqq/PKUAutoBookingVenues/HEAD/cron.py -------------------------------------------------------------------------------- /driver/chromedriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyqqqqqqqqq/PKUAutoBookingVenues/HEAD/driver/chromedriver.exe -------------------------------------------------------------------------------- /driver/geckodriver.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyqqqqqqqqq/PKUAutoBookingVenues/HEAD/driver/geckodriver.exe -------------------------------------------------------------------------------- /env_check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyqqqqqqqqq/PKUAutoBookingVenues/HEAD/env_check.py -------------------------------------------------------------------------------- /macAutoRun.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyqqqqqqqqq/PKUAutoBookingVenues/HEAD/macAutoRun.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyqqqqqqqqq/PKUAutoBookingVenues/HEAD/main.py -------------------------------------------------------------------------------- /notice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyqqqqqqqqq/PKUAutoBookingVenues/HEAD/notice.py -------------------------------------------------------------------------------- /page_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lyqqqqqqqqq/PKUAutoBookingVenues/HEAD/page_func.py --------------------------------------------------------------------------------