├── .gitignore ├── LICENSE ├── README.md ├── download-scripts ├── wget-download.sh └── yt-dlp-download.sh ├── main.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- 1 | # Generated files 2 | links.txt 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaJoRX0/Tokyo-Downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaJoRX0/Tokyo-Downloader/HEAD/README.md -------------------------------------------------------------------------------- /download-scripts/wget-download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaJoRX0/Tokyo-Downloader/HEAD/download-scripts/wget-download.sh -------------------------------------------------------------------------------- /download-scripts/yt-dlp-download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaJoRX0/Tokyo-Downloader/HEAD/download-scripts/yt-dlp-download.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaJoRX0/Tokyo-Downloader/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MaJoRX0/Tokyo-Downloader/HEAD/requirements.txt --------------------------------------------------------------------------------