MangaSnatcher is a small Python command-line tool that downloads manga chapters from https://www.mangaread.org/ style pages and saves them as PDF files.
It can:
- Accept a series URL or a chapter URL
- Detect the available chapters on the series page
- Let you choose one chapter, multiple chapters, or all chapters
- Download the chapter images
- Combine the images into PDF files
- Apply a built-in cooldown between chapter downloads
- Retry failed chapter downloads automatically
- Fall back to Chromium for chapters that hide reader images from direct requests
- Developer: Gerald-H
- GitHub: https://github.com/Gerald-Ha
- Project: MangaSnatcher
- Python 3.10 or newer
- Internet connection
chromium-browser,chromium, orgoogle-chromeif a site only exposes chapter images after real browser renderingbrowser-cookie3support is included viarequirements.txtso MangaSnatcher can reuse login cookies from Brave/Chrome/Chromium/Firefox
Python dependencies:
requestsbeautifulsoup4Pillow
Create a virtual environment and install the dependencies:
python3 -m venv .venv
source .venv/bin/activate
python -m pip install --upgrade pip
python -m pip install -r requirements.txtRun the downloader with a manga series URL or a chapter URL:
python MangaSnatcher.py "https://www.mangaread.org/manga/example-series/"You can also run it without an argument and paste the URL interactively:
python MangaSnatcher.pyAfter the series page is loaded, the program shows the detected chapters and asks what to download.
Valid selections:
allto download every chapter12to download a single chapter120-160to download a continuous chapter range1,2,5to download multiple chapters
- When downloading multiple chapters, MangaSnatcher waits
3seconds between chapters. - If a chapter download fails, the tool waits
60seconds before retrying that chapter once. - After a retry happens, the chapter-to-chapter cooldown is increased from
3seconds to8seconds for the remaining downloads. - This cooldown is meant to reduce the chance of being rate-limited or blocked by the site.
Generated PDFs are stored in the downloads/ directory by default.
Example output structure:
downloads/
example-series/
example-series-chapter-1.pdf
example-series-chapter-2.pdf
You can set a custom output folder with:
python MangaSnatcher.py "https://www.mangaread.org/manga/example-series/" --output my_pdfsIf a chapter page hides its reader images from normal HTTP requests, MangaSnatcher automatically falls back to Chromium and reads the rendered DOM instead. On Linux, this requires a graphical session. You can disable that behavior with:
python MangaSnatcher.py "https://www.mangaread.org/manga/example-series/" --no-browser-fallbackIf the site only serves chapter images to your logged-in browser session, MangaSnatcher can also import cookies from your local browser profile:
python MangaSnatcher.py "https://www.mangaread.org/manga/example-series/" --browser-cookies braveSupported values are auto, brave, chrome, chromium, firefox, and none.
- MangaSnatcher loads the provided series or chapter URL.
- It normalizes the URL to the series page.
- It scans the page for chapter links.
- It loads the selected chapters and collects the page images.
- It converts the images into PDF files.
Use this project only for content you are legally allowed to access and download. Respect the website's terms of service and the rights of the content owners.