├── .gitignore ├── course.sample.py ├── readme.md ├── userinfo.sample.py └── xk.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tojo17/BJUT-Course-Rusher/HEAD/.gitignore -------------------------------------------------------------------------------- /course.sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tojo17/BJUT-Course-Rusher/HEAD/course.sample.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tojo17/BJUT-Course-Rusher/HEAD/readme.md -------------------------------------------------------------------------------- /userinfo.sample.py: -------------------------------------------------------------------------------- 1 | usr = "studentID" 2 | pwd = "password" 3 | -------------------------------------------------------------------------------- /xk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tojo17/BJUT-Course-Rusher/HEAD/xk.py --------------------------------------------------------------------------------