├── .DS_Store ├── .github └── workflows │ └── build.yml ├── .gitignore ├── LICENSE ├── README.md ├── assets ├── example.png ├── login.png └── terminal.png ├── data.py ├── learn.py ├── login_manager.py └── requirements.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinkle23897/learn2018-autodown/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinkle23897/learn2018-autodown/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *venv/ 3 | .pass 4 | example_cookie.txt 5 | session.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinkle23897/learn2018-autodown/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinkle23897/learn2018-autodown/HEAD/README.md -------------------------------------------------------------------------------- /assets/example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinkle23897/learn2018-autodown/HEAD/assets/example.png -------------------------------------------------------------------------------- /assets/login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinkle23897/learn2018-autodown/HEAD/assets/login.png -------------------------------------------------------------------------------- /assets/terminal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinkle23897/learn2018-autodown/HEAD/assets/terminal.png -------------------------------------------------------------------------------- /data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinkle23897/learn2018-autodown/HEAD/data.py -------------------------------------------------------------------------------- /learn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinkle23897/learn2018-autodown/HEAD/learn.py -------------------------------------------------------------------------------- /login_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Trinkle23897/learn2018-autodown/HEAD/login_manager.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | bs4 2 | tqdm 3 | requests 4 | gmssl 5 | selenium --------------------------------------------------------------------------------