├── .gitignore ├── assets ├── Snipaste_2024-06-05_22-46-58.png ├── image-20240605231228930.png ├── image-20240605231409668.png └── image-20240605231829375.png ├── course_arrangement_fastapi.py ├── easyEta.py ├── html_content_generator.py ├── readme.md ├── requirements.txt ├── run_locally.py ├── run_on_server.py ├── templates ├── course_arrangement.html └── login.html ├── tools └── base64_png.py └── utils ├── encrypt.py ├── my_utils.py └── security.js /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /assets/Snipaste_2024-06-05_22-46-58.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/assets/Snipaste_2024-06-05_22-46-58.png -------------------------------------------------------------------------------- /assets/image-20240605231228930.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/assets/image-20240605231228930.png -------------------------------------------------------------------------------- /assets/image-20240605231409668.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/assets/image-20240605231409668.png -------------------------------------------------------------------------------- /assets/image-20240605231829375.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/assets/image-20240605231829375.png -------------------------------------------------------------------------------- /course_arrangement_fastapi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/course_arrangement_fastapi.py -------------------------------------------------------------------------------- /easyEta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/easyEta.py -------------------------------------------------------------------------------- /html_content_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/html_content_generator.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/requirements.txt -------------------------------------------------------------------------------- /run_locally.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/run_locally.py -------------------------------------------------------------------------------- /run_on_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/run_on_server.py -------------------------------------------------------------------------------- /templates/course_arrangement.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/templates/course_arrangement.html -------------------------------------------------------------------------------- /templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/templates/login.html -------------------------------------------------------------------------------- /tools/base64_png.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/tools/base64_png.py -------------------------------------------------------------------------------- /utils/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/utils/encrypt.py -------------------------------------------------------------------------------- /utils/my_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/utils/my_utils.py -------------------------------------------------------------------------------- /utils/security.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ZJU-R/zjuTimeTable/HEAD/utils/security.js --------------------------------------------------------------------------------