Skip to content

etoshy/MangaReader.To-Downloader

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

MangaReader.to Downloader Views Counter

This is a Python script to download manga images from the site MangaReader.to. The script extracts manga information such as name, ID, reading type (chapter or volume), language, and downloads the chapter/volume images, saving everything in an organized directory structure.


Requirements

Before running the script, make sure you have Python installed along with the following packages:

  • requests
  • beautifulsoup4

If you haven’t installed them yet, run the following command:

pip install requests beautifulsoup4

How to Run

  1. Clone or download the repository

    git clone https://github.com/etoshy/mangareader.to-downloader.git
    cd mangareader.to-downloader
  2. Run the script

    python manga_downloader.py
  3. Enter the links When prompted, enter the chapter or volume links separated by commas.

    Example input:

    https://mangareader.to/read/one-piece-100, https://mangareader.to/read/naruto-45
    
  4. The script will download the data and images

    • The manga information will be saved in a info.json file
    • Images will be downloaded and organized inside mangas/MangaName/Chapter_X or Volume_X folders

Directory Structure

After running the script, the file structure will look like this:

/mangas/
   ├── One Piece/
   │   ├── Chapter 100/
   │   │   ├── info.json
   │   │   ├── 1.jpg
   │   │   ├── 2.jpg
   │   │   ├── ...
   │
   ├── Naruto/
       ├── Volume 45/
       │   ├── info.json
       │   ├── 1.jpg
       │   ├── 2.jpg
       │   ├── ...

Possible Errors and Solutions

  1. Error accessing the page

    • Check if the link is correct
    • The website may be down or have changed its HTML structure
  2. Error downloading images

    • Make sure the image URLs are correct
    • Check your internet connection
    • It may be necessary to adjust the part of the code that retrieves the image links

Author

Created by etoshy

About

Download Chapters and Volumes from https://mangareader.to

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages