├── .gitignore ├── README.md ├── choose_course.py ├── data ├── 体育课程.csv ├── 慕课.csv ├── 方案内课程.csv ├── 方案外课程.csv ├── 本班课程.csv ├── 校公选课.csv └── 辅修课程.csv ├── download_data.py ├── downloads.py ├── login.py ├── main.py ├── pic ├── pic1.png ├── pic2.png └── 示意图.png ├── setting.py ├── test.py └── util.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/README.md -------------------------------------------------------------------------------- /choose_course.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/choose_course.py -------------------------------------------------------------------------------- /data/体育课程.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/data/体育课程.csv -------------------------------------------------------------------------------- /data/慕课.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/data/慕课.csv -------------------------------------------------------------------------------- /data/方案内课程.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/data/方案内课程.csv -------------------------------------------------------------------------------- /data/方案外课程.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/data/方案外课程.csv -------------------------------------------------------------------------------- /data/本班课程.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /data/校公选课.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/data/校公选课.csv -------------------------------------------------------------------------------- /data/辅修课程.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/data/辅修课程.csv -------------------------------------------------------------------------------- /download_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/download_data.py -------------------------------------------------------------------------------- /downloads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/downloads.py -------------------------------------------------------------------------------- /login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/login.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/main.py -------------------------------------------------------------------------------- /pic/pic1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/pic/pic1.png -------------------------------------------------------------------------------- /pic/pic2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/pic/pic2.png -------------------------------------------------------------------------------- /pic/示意图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/pic/示意图.png -------------------------------------------------------------------------------- /setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/setting.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/test.py -------------------------------------------------------------------------------- /util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lewin671/YourLesson/HEAD/util.py --------------------------------------------------------------------------------