├── .gitattributes ├── LICENSE ├── Pic ├── data.png ├── data_1.png ├── login.png ├── logo.png └── run.png ├── README.md ├── Spiders ├── captcha.jpg ├── encrypt_20190716.js ├── qimai.py └── qimai_login.py └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | *.js linguist-language=python -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Henryhaohao/Qimai_AppData/HEAD/LICENSE -------------------------------------------------------------------------------- /Pic/data.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Henryhaohao/Qimai_AppData/HEAD/Pic/data.png -------------------------------------------------------------------------------- /Pic/data_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Henryhaohao/Qimai_AppData/HEAD/Pic/data_1.png -------------------------------------------------------------------------------- /Pic/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Henryhaohao/Qimai_AppData/HEAD/Pic/login.png -------------------------------------------------------------------------------- /Pic/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Henryhaohao/Qimai_AppData/HEAD/Pic/logo.png -------------------------------------------------------------------------------- /Pic/run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Henryhaohao/Qimai_AppData/HEAD/Pic/run.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Henryhaohao/Qimai_AppData/HEAD/README.md -------------------------------------------------------------------------------- /Spiders/captcha.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Henryhaohao/Qimai_AppData/HEAD/Spiders/captcha.jpg -------------------------------------------------------------------------------- /Spiders/encrypt_20190716.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Henryhaohao/Qimai_AppData/HEAD/Spiders/encrypt_20190716.js -------------------------------------------------------------------------------- /Spiders/qimai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Henryhaohao/Qimai_AppData/HEAD/Spiders/qimai.py -------------------------------------------------------------------------------- /Spiders/qimai_login.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Henryhaohao/Qimai_AppData/HEAD/Spiders/qimai_login.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | PyExecJS==1.5.1 2 | requests==2.20.0 3 | --------------------------------------------------------------------------------