├── .github └── workflows │ ├── build-executable.yml │ ├── python-lint.yml │ ├── release-test.yml │ └── remove-old-artifacts.yml ├── .gitignore ├── LICENSE ├── README.md ├── bin ├── build.bat └── logo.ico ├── contribution.md ├── downloader.py ├── requirements.txt ├── test_downloader.py └── utils ├── claw.py ├── concurrent.py ├── image.py ├── pdf.py └── token.py /.github/workflows/build-executable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/.github/workflows/build-executable.yml -------------------------------------------------------------------------------- /.github/workflows/python-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/.github/workflows/python-lint.yml -------------------------------------------------------------------------------- /.github/workflows/release-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/.github/workflows/release-test.yml -------------------------------------------------------------------------------- /.github/workflows/remove-old-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/.github/workflows/remove-old-artifacts.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/README.md -------------------------------------------------------------------------------- /bin/build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/bin/build.bat -------------------------------------------------------------------------------- /bin/logo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/bin/logo.ico -------------------------------------------------------------------------------- /contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/contribution.md -------------------------------------------------------------------------------- /downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/downloader.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /test_downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/test_downloader.py -------------------------------------------------------------------------------- /utils/claw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/utils/claw.py -------------------------------------------------------------------------------- /utils/concurrent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/utils/concurrent.py -------------------------------------------------------------------------------- /utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/utils/image.py -------------------------------------------------------------------------------- /utils/pdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/utils/pdf.py -------------------------------------------------------------------------------- /utils/token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/libthu/reserves-lib-tsinghua-downloader/HEAD/utils/token.py --------------------------------------------------------------------------------