Skip to content

Lysagxra/AnimeWorldDownloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AnimeWorld Downloader

A Python-based tool for downloading anime series from AnimeWorld, featuring progress tracking for each episode. It efficiently extracts video URLs and manages downloads.

Screenshot

Features

  • Downloads multiple episodes concurrently.
  • Supports batch downloading via a list of URLs.
  • Tracks download progress with a progress bar.
  • Automatically creates a directory structure for organized storage.

Directory Structure

project-root/
├── helpers/
│ ├── anime_utils.py     # Script containing formatting utilities
│ ├── download_utils.py  # Script containing utilities for managing the download process
│ └── progress_utils.py  # Script containing utilities for tracking download progress
├── anime_downloader.py  # Module for downloading anime episodes
├── main.py              # Main script to run the downloader
└── URLs.txt             # Text file containing anime URLs

Dependencies

  • Python 3
  • requests - for HTTP requests
  • BeautifulSoup (bs4) - for HTML parsing
  • rich - for progress display in terminal

Installation

  1. Clone the repository:
    git clone https://github.com/Lysagxra/AnimeWorldDownloader.git
    
  2. Navigate to the project directory:
    cd AnimeWorldDownloader
    
  3. Install the required dependencies:
    pip install -r requirements.txt
    

Single Anime Download

To download a single anime, you can use the anime_downloader.py script.

Usage

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.animeworld.so/play/made-in-abyss.pIzmnA/TNBNCF

Batch Download

Usage

  1. Create a URLs.txt file in the project root and list the anime URLs you want to download.

  2. Run the main script via the command line:

python3 main.py

The downloaded files will be saved in the Downloads directory.