A Python-based tool for downloading anime series from AnimeSaturn, featuring progress tracking for each episode. It efficiently extracts video URLs and manages downloads.
- Downloads multiple episodes concurrently.
- Supports batch downloading via a list of URLs.
- Tracks download progress with a progress bar.
- Supports downloading from alternative hosts if necessary.
- Automatically creates a directory structure for organized storage.
project-root/
├── helpers/
│ ├── download_utils.py # Script containing utilities for managing the download process
│ ├── format_utils.py # Script containing formatting utilities
│ ├── progress_utils.py # Script containing utilities for tracking download progress
│ └── streamtape2curl.py # Module for extracting download links from alternative hosts
├── anime_downloader.py # Module for downloading anime episodes
├── main.py # Main script to run the downloader
└── URLs.txt # Text file containing anime URLs
- Python 3
requests
- for HTTP requestsBeautifulSoup
(bs4) - for HTML parsingrich
- for progress display in terminal
- Clone the repository:
git clone https://github.com/Lysagxra/AnimeSaturnDownloader.git
- Navigate to the project directory:
cd AnimeSaturnDownloader
- Install the required dependencies:
pip install -r requirements.txt
To download a single anime, you can use the anime_downloader.py
script.
Run the script followed by the anime URL you want to download:
python3 anime_downloader.py <anime_url>
Example
python3 anime_downloader.py https://www.animesaturn.cx/anime/Dan-Da-Dan
-
Create a
URLs.txt
file in the project root and list the anime URLs you want to download. -
Run the main script via the command line:
python3 main.py
The downloaded files will be saved in the Downloads
directory.