├── .github └── workflows │ └── build-exe.yml ├── .gitignore ├── AIMoocMain ├── __init__.py ├── api.py └── main.py ├── MoocMain ├── __init__.py ├── initMooc.py ├── log.py ├── lookVideo.py ├── moocGateWay.py └── workMain.py ├── NewMoocMain ├── __init__.py ├── acwv2.py ├── icve_exam_parser.py ├── init_mooc.py ├── oauth_login.py └── verify.py ├── README.md ├── README_ACW_SC__V2.md ├── README_ALICFW.md ├── REAEME_RUN.md ├── StartWork.py ├── StartWorkLite.spec ├── ZYKMoocMain ├── __init__.py ├── api.py └── main.py ├── base ├── __init__.py ├── api_client.py └── util.py ├── images ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.jpg ├── 5.jpg ├── 6.jpg ├── acw_sc__v2.png ├── ai.png ├── alicfw1.png ├── alicfw2.png ├── beta.ico ├── beta.png ├── icon.ico ├── icon.png ├── python-2.1.jpg ├── python-step2.jpg ├── python-step3.1.png ├── python-step3.jpg ├── python-step4.1.png ├── python-step4.jpg └── python-steps1.jpg ├── requirements.txt └── update.py /.github/workflows/build-exe.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/.github/workflows/build-exe.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/.gitignore -------------------------------------------------------------------------------- /AIMoocMain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /AIMoocMain/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/AIMoocMain/api.py -------------------------------------------------------------------------------- /AIMoocMain/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/AIMoocMain/main.py -------------------------------------------------------------------------------- /MoocMain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/MoocMain/__init__.py -------------------------------------------------------------------------------- /MoocMain/initMooc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/MoocMain/initMooc.py -------------------------------------------------------------------------------- /MoocMain/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/MoocMain/log.py -------------------------------------------------------------------------------- /MoocMain/lookVideo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/MoocMain/lookVideo.py -------------------------------------------------------------------------------- /MoocMain/moocGateWay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/MoocMain/moocGateWay.py -------------------------------------------------------------------------------- /MoocMain/workMain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/MoocMain/workMain.py -------------------------------------------------------------------------------- /NewMoocMain/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/NewMoocMain/__init__.py -------------------------------------------------------------------------------- /NewMoocMain/acwv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/NewMoocMain/acwv2.py -------------------------------------------------------------------------------- /NewMoocMain/icve_exam_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/NewMoocMain/icve_exam_parser.py -------------------------------------------------------------------------------- /NewMoocMain/init_mooc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/NewMoocMain/init_mooc.py -------------------------------------------------------------------------------- /NewMoocMain/oauth_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/NewMoocMain/oauth_login.py -------------------------------------------------------------------------------- /NewMoocMain/verify.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/NewMoocMain/verify.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/README.md -------------------------------------------------------------------------------- /README_ACW_SC__V2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/README_ACW_SC__V2.md -------------------------------------------------------------------------------- /README_ALICFW.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/README_ALICFW.md -------------------------------------------------------------------------------- /REAEME_RUN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/REAEME_RUN.md -------------------------------------------------------------------------------- /StartWork.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/StartWork.py -------------------------------------------------------------------------------- /StartWorkLite.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/StartWorkLite.spec -------------------------------------------------------------------------------- /ZYKMoocMain/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ZYKMoocMain/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/ZYKMoocMain/api.py -------------------------------------------------------------------------------- /ZYKMoocMain/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/ZYKMoocMain/main.py -------------------------------------------------------------------------------- /base/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /base/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/base/api_client.py -------------------------------------------------------------------------------- /base/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/base/util.py -------------------------------------------------------------------------------- /images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/1.jpg -------------------------------------------------------------------------------- /images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/2.jpg -------------------------------------------------------------------------------- /images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/3.jpg -------------------------------------------------------------------------------- /images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/4.jpg -------------------------------------------------------------------------------- /images/5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/5.jpg -------------------------------------------------------------------------------- /images/6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/6.jpg -------------------------------------------------------------------------------- /images/acw_sc__v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/acw_sc__v2.png -------------------------------------------------------------------------------- /images/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/ai.png -------------------------------------------------------------------------------- /images/alicfw1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/alicfw1.png -------------------------------------------------------------------------------- /images/alicfw2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/alicfw2.png -------------------------------------------------------------------------------- /images/beta.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/beta.ico -------------------------------------------------------------------------------- /images/beta.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/beta.png -------------------------------------------------------------------------------- /images/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/icon.ico -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/python-2.1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/python-2.1.jpg -------------------------------------------------------------------------------- /images/python-step2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/python-step2.jpg -------------------------------------------------------------------------------- /images/python-step3.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/python-step3.1.png -------------------------------------------------------------------------------- /images/python-step3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/python-step3.jpg -------------------------------------------------------------------------------- /images/python-step4.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/python-step4.1.png -------------------------------------------------------------------------------- /images/python-step4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/python-step4.jpg -------------------------------------------------------------------------------- /images/python-steps1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/images/python-steps1.jpg -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/requirements.txt -------------------------------------------------------------------------------- /update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/11273/mooc-work-answer/HEAD/update.py --------------------------------------------------------------------------------