├── .github └── workflows │ ├── publish.yml │ ├── release.yml │ └── sync.yml ├── .gitignore ├── LICENSE ├── README.md ├── book118 ├── __init__.py ├── book118.py ├── pdf.py ├── request.py └── thread.py ├── main.py ├── publish ├── requirements.txt ├── setup.cfg └── setup.py /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/.github/workflows/sync.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/README.md -------------------------------------------------------------------------------- /book118/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/book118/__init__.py -------------------------------------------------------------------------------- /book118/book118.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/book118/book118.py -------------------------------------------------------------------------------- /book118/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/book118/pdf.py -------------------------------------------------------------------------------- /book118/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/book118/request.py -------------------------------------------------------------------------------- /book118/thread.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/book118/thread.py -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/main.py -------------------------------------------------------------------------------- /publish: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | python setup.py sdist 3 | twine upload dist/* -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | Pillow 2 | reportlab 3 | requests -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | desciption-file = README.md -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OhYee/documentDownloader/HEAD/setup.py --------------------------------------------------------------------------------