├── .gitignore ├── LICENSE ├── README.md ├── actions ├── autoSign.py ├── casLogin.py ├── collection.py ├── iapLogin.py ├── pushKit.py ├── utils.py ├── wiseLoginService.py └── workLog.py ├── config.yml ├── index.py ├── requirements.txt └── sign.jpg /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/README.md -------------------------------------------------------------------------------- /actions/autoSign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/actions/autoSign.py -------------------------------------------------------------------------------- /actions/casLogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/actions/casLogin.py -------------------------------------------------------------------------------- /actions/collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/actions/collection.py -------------------------------------------------------------------------------- /actions/iapLogin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/actions/iapLogin.py -------------------------------------------------------------------------------- /actions/pushKit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/actions/pushKit.py -------------------------------------------------------------------------------- /actions/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/actions/utils.py -------------------------------------------------------------------------------- /actions/wiseLoginService.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/actions/wiseLoginService.py -------------------------------------------------------------------------------- /actions/workLog.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/actions/workLog.py -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/config.yml -------------------------------------------------------------------------------- /index.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/index.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/requirements.txt -------------------------------------------------------------------------------- /sign.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CarltonHere/auto-cpdaily/HEAD/sign.jpg --------------------------------------------------------------------------------