├── .github └── workflows │ └── publish-to-pypi.yml ├── .gitignore ├── LICENSE ├── MANIFEST.in ├── README.md ├── khan_dl ├── __init__.py ├── __main__.py └── khan_dl.py ├── poetry.lock ├── pyproject.toml └── test ├── __init__.py └── test_khan_dl.py /.github/workflows/publish-to-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rand-net/khan-dl/HEAD/.github/workflows/publish-to-pypi.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | khan_dl.egg-info 2 | venv 3 | __pycache__ 4 | build 5 | dist 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rand-net/khan-dl/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include *.txt 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rand-net/khan-dl/HEAD/README.md -------------------------------------------------------------------------------- /khan_dl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rand-net/khan-dl/HEAD/khan_dl/__init__.py -------------------------------------------------------------------------------- /khan_dl/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rand-net/khan-dl/HEAD/khan_dl/__main__.py -------------------------------------------------------------------------------- /khan_dl/khan_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rand-net/khan-dl/HEAD/khan_dl/khan_dl.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rand-net/khan-dl/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rand-net/khan-dl/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_khan_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rand-net/khan-dl/HEAD/test/test_khan_dl.py --------------------------------------------------------------------------------