├── .github └── FUNDING.yml ├── .gitignore ├── LICENSE ├── README.md └── mangadex-dl.py /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozenpandaman/mangadex-dl/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | download/ 2 | *.pyc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozenpandaman/mangadex-dl/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozenpandaman/mangadex-dl/HEAD/README.md -------------------------------------------------------------------------------- /mangadex-dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frozenpandaman/mangadex-dl/HEAD/mangadex-dl.py --------------------------------------------------------------------------------