├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── docs ├── index.md ├── 快速开始 │ ├── index.md │ └── school_args.md └── 接口方法 │ ├── get_info.md │ ├── get_schedule.md │ ├── get_score.md │ ├── index.md │ ├── others.md │ └── user_login.md ├── examples ├── base_sample.py ├── captcha_examples.py ├── config.py ├── cookie_login_example.py ├── dev_example.py └── proxy_request_examples.py ├── mkdocs.yml ├── requirement.txt ├── school_sdk ├── PyRsa │ ├── __init__.py │ ├── pyb64.py │ ├── pyjsbn.py │ ├── pyrng.py │ ├── pyrsa.py │ └── tools.py ├── __init__.py ├── check_code │ ├── __init__.py │ ├── captcha_setting.py │ ├── dataset.py │ ├── model.pkl │ ├── model.py │ ├── predict.py │ └── type.py ├── client │ ├── __init__.py │ ├── api │ │ ├── __init__.py │ │ ├── check.py │ │ ├── class_schedule.py │ │ ├── login.py │ │ ├── schedule_parse.py │ │ ├── schedules.py │ │ ├── score.py │ │ └── user_info.py │ ├── base.py │ ├── exceptions.py │ └── utils.py ├── config.py ├── session │ └── __init__.py ├── type.py └── utils.py ├── setup.py ├── test └── test.py └── zf-setup.py /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/README.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/快速开始/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/docs/快速开始/index.md -------------------------------------------------------------------------------- /docs/快速开始/school_args.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/docs/快速开始/school_args.md -------------------------------------------------------------------------------- /docs/接口方法/get_info.md: -------------------------------------------------------------------------------- 1 | # 用户信息接口 -------------------------------------------------------------------------------- /docs/接口方法/get_schedule.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/docs/接口方法/get_schedule.md -------------------------------------------------------------------------------- /docs/接口方法/get_score.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/docs/接口方法/get_score.md -------------------------------------------------------------------------------- /docs/接口方法/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/docs/接口方法/index.md -------------------------------------------------------------------------------- /docs/接口方法/others.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/docs/接口方法/others.md -------------------------------------------------------------------------------- /docs/接口方法/user_login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/docs/接口方法/user_login.md -------------------------------------------------------------------------------- /examples/base_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/examples/base_sample.py -------------------------------------------------------------------------------- /examples/captcha_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/examples/captcha_examples.py -------------------------------------------------------------------------------- /examples/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/examples/config.py -------------------------------------------------------------------------------- /examples/cookie_login_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/examples/cookie_login_example.py -------------------------------------------------------------------------------- /examples/dev_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/examples/dev_example.py -------------------------------------------------------------------------------- /examples/proxy_request_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/examples/proxy_request_examples.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/requirement.txt -------------------------------------------------------------------------------- /school_sdk/PyRsa/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/PyRsa/__init__.py -------------------------------------------------------------------------------- /school_sdk/PyRsa/pyb64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/PyRsa/pyb64.py -------------------------------------------------------------------------------- /school_sdk/PyRsa/pyjsbn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/PyRsa/pyjsbn.py -------------------------------------------------------------------------------- /school_sdk/PyRsa/pyrng.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/PyRsa/pyrng.py -------------------------------------------------------------------------------- /school_sdk/PyRsa/pyrsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/PyRsa/pyrsa.py -------------------------------------------------------------------------------- /school_sdk/PyRsa/tools.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/PyRsa/tools.py -------------------------------------------------------------------------------- /school_sdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/__init__.py -------------------------------------------------------------------------------- /school_sdk/check_code/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/check_code/__init__.py -------------------------------------------------------------------------------- /school_sdk/check_code/captcha_setting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/check_code/captcha_setting.py -------------------------------------------------------------------------------- /school_sdk/check_code/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/check_code/dataset.py -------------------------------------------------------------------------------- /school_sdk/check_code/model.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/check_code/model.pkl -------------------------------------------------------------------------------- /school_sdk/check_code/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/check_code/model.py -------------------------------------------------------------------------------- /school_sdk/check_code/predict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/check_code/predict.py -------------------------------------------------------------------------------- /school_sdk/check_code/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/check_code/type.py -------------------------------------------------------------------------------- /school_sdk/client/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/client/__init__.py -------------------------------------------------------------------------------- /school_sdk/client/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/client/api/__init__.py -------------------------------------------------------------------------------- /school_sdk/client/api/check.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/client/api/check.py -------------------------------------------------------------------------------- /school_sdk/client/api/class_schedule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/client/api/class_schedule.py -------------------------------------------------------------------------------- /school_sdk/client/api/login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/client/api/login.py -------------------------------------------------------------------------------- /school_sdk/client/api/schedule_parse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/client/api/schedule_parse.py -------------------------------------------------------------------------------- /school_sdk/client/api/schedules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/client/api/schedules.py -------------------------------------------------------------------------------- /school_sdk/client/api/score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/client/api/score.py -------------------------------------------------------------------------------- /school_sdk/client/api/user_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/client/api/user_info.py -------------------------------------------------------------------------------- /school_sdk/client/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/client/base.py -------------------------------------------------------------------------------- /school_sdk/client/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/client/exceptions.py -------------------------------------------------------------------------------- /school_sdk/client/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/client/utils.py -------------------------------------------------------------------------------- /school_sdk/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/config.py -------------------------------------------------------------------------------- /school_sdk/session/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/session/__init__.py -------------------------------------------------------------------------------- /school_sdk/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/type.py -------------------------------------------------------------------------------- /school_sdk/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/school_sdk/utils.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/setup.py -------------------------------------------------------------------------------- /test/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/test/test.py -------------------------------------------------------------------------------- /zf-setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarmerChillax/new-school-sdk/HEAD/zf-setup.py --------------------------------------------------------------------------------