├── .gitignore ├── CollegeCode.py ├── LICENSE ├── README.md └── evaluate.py /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | config 3 | courseid 4 | __pycache__ 5 | .idea/* -------------------------------------------------------------------------------- /CollegeCode.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scusjs/ucas_enroll_evaluation/HEAD/CollegeCode.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scusjs/ucas_enroll_evaluation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scusjs/ucas_enroll_evaluation/HEAD/README.md -------------------------------------------------------------------------------- /evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/scusjs/ucas_enroll_evaluation/HEAD/evaluate.py --------------------------------------------------------------------------------