├── .github └── workflows │ ├── pipy_release.yml │ └── python-app.yml ├── .gitignore ├── LICENSE ├── README.md ├── best_download └── __init__.py ├── examples ├── __init__.py └── basic_example.py ├── package.bat ├── pytest.ini ├── requirements-dev.txt ├── requirements.txt ├── setup.py └── test └── test_best_download.py /.github/workflows/pipy_release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EleutherAI/best-download/HEAD/.github/workflows/pipy_release.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EleutherAI/best-download/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EleutherAI/best-download/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EleutherAI/best-download/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EleutherAI/best-download/HEAD/README.md -------------------------------------------------------------------------------- /best_download/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EleutherAI/best-download/HEAD/best_download/__init__.py -------------------------------------------------------------------------------- /examples/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/basic_example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EleutherAI/best-download/HEAD/examples/basic_example.py -------------------------------------------------------------------------------- /package.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EleutherAI/best-download/HEAD/package.bat -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EleutherAI/best-download/HEAD/pytest.ini -------------------------------------------------------------------------------- /requirements-dev.txt: -------------------------------------------------------------------------------- 1 | twine 2 | pytest 3 | flask -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | requests 2 | tqdm -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EleutherAI/best-download/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_best_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EleutherAI/best-download/HEAD/test/test_best_download.py --------------------------------------------------------------------------------