├── .python-version ├── LICENSE ├── README.md ├── github_dl.py ├── poetry.lock └── pyproject.toml /.python-version: -------------------------------------------------------------------------------- 1 | 3.8.6 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/github-dl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/github-dl/HEAD/README.md -------------------------------------------------------------------------------- /github_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/github-dl/HEAD/github_dl.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/github-dl/HEAD/poetry.lock -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/achow101/github-dl/HEAD/pyproject.toml --------------------------------------------------------------------------------