├── .gitattributes ├── .gitignore ├── .travis.yml ├── Changelog.md ├── LICENSE ├── ReadMe.md ├── Supported_Sites.md ├── anime_dl ├── Anime_dl.py ├── __init__.py ├── __main__.py ├── common │ ├── __init__.py │ ├── browser_instance.py │ ├── downloader.py │ └── misc.py ├── exeMaker.bat ├── external │ ├── __init__.py │ ├── aes.py │ ├── compat.py │ ├── socks.py │ └── utils.py ├── sites │ ├── __init__.py │ ├── crunchyroll.py │ └── supporters │ │ ├── __init__.py │ │ ├── anime_name.py │ │ ├── path_works.py │ │ └── sub_fetcher.py ├── subtitles │ └── __init__.py └── version.py ├── auto.sh ├── docs ├── Changelog.md ├── Supported_Sites.md └── index.md └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/.travis.yml -------------------------------------------------------------------------------- /Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/Changelog.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/LICENSE -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/ReadMe.md -------------------------------------------------------------------------------- /Supported_Sites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/Supported_Sites.md -------------------------------------------------------------------------------- /anime_dl/Anime_dl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/Anime_dl.py -------------------------------------------------------------------------------- /anime_dl/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/__init__.py -------------------------------------------------------------------------------- /anime_dl/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/__main__.py -------------------------------------------------------------------------------- /anime_dl/common/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/common/__init__.py -------------------------------------------------------------------------------- /anime_dl/common/browser_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/common/browser_instance.py -------------------------------------------------------------------------------- /anime_dl/common/downloader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/common/downloader.py -------------------------------------------------------------------------------- /anime_dl/common/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/common/misc.py -------------------------------------------------------------------------------- /anime_dl/exeMaker.bat: -------------------------------------------------------------------------------- 1 | pyinstaller --hidden-import=queue --onefile "__main__.spec" -------------------------------------------------------------------------------- /anime_dl/external/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/external/__init__.py -------------------------------------------------------------------------------- /anime_dl/external/aes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/external/aes.py -------------------------------------------------------------------------------- /anime_dl/external/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/external/compat.py -------------------------------------------------------------------------------- /anime_dl/external/socks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/external/socks.py -------------------------------------------------------------------------------- /anime_dl/external/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/external/utils.py -------------------------------------------------------------------------------- /anime_dl/sites/__init__.py: -------------------------------------------------------------------------------- 1 | from . import crunchyroll -------------------------------------------------------------------------------- /anime_dl/sites/crunchyroll.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/sites/crunchyroll.py -------------------------------------------------------------------------------- /anime_dl/sites/supporters/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/sites/supporters/__init__.py -------------------------------------------------------------------------------- /anime_dl/sites/supporters/anime_name.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/sites/supporters/anime_name.py -------------------------------------------------------------------------------- /anime_dl/sites/supporters/path_works.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/sites/supporters/path_works.py -------------------------------------------------------------------------------- /anime_dl/sites/supporters/sub_fetcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/anime_dl/sites/supporters/sub_fetcher.py -------------------------------------------------------------------------------- /anime_dl/subtitles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /anime_dl/version.py: -------------------------------------------------------------------------------- 1 | __version__ = "2019.05.16" 2 | -------------------------------------------------------------------------------- /auto.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/auto.sh -------------------------------------------------------------------------------- /docs/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/docs/Changelog.md -------------------------------------------------------------------------------- /docs/Supported_Sites.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/docs/Supported_Sites.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Xonshiz/anime-dl/HEAD/docs/index.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | argparse 2 | cfscrape 3 | bs4 4 | tqdm 5 | --------------------------------------------------------------------------------