Yiffer Scraper
A pure Python scraper to download comics from yiffer.xyz, automatically packing them into .cbz files.
It is completely written using Python's standard library, meaning it works out-of-the-box anywhere Python 3 is installed—including on Android via Termux!
Features
- Browse & Search: Search for comics directly from the terminal.
- Concurrent Downloads: Download pages in parallel.
- CBZ Export: Packages downloads directly into CBZ format.
- Termux Compatible: Requires zero third-party packages (no
pip install requestsnecessary).
Installation & Usage (All Platforms)
You only need Python 3 installed. If you're on Linux, macOS, or Windows, simply download yiffer_scraper.py and run it:
python3 yiffer_scraper.py browse
python3 yiffer_scraper.py download "Comic Name"
Termux Setup (Android)
If you are using Termux on Android, setup is extremely simple:
- Install Python:
pkg update && pkg install python -y
- Make the script executable:
chmod +x yiffer_scraper.py
- Run the script:
./yiffer_scraper.py --help
Commands
Browse
View the latest comics on the site:
./yiffer_scraper.py browse
./yiffer_scraper.py browse --page 2
Search
Search for specific comics:
./yiffer_scraper.py browse --search "Bifurcation"
Download
Download a specific comic by exact name:
./yiffer_scraper.py download "Bifurcation" --output ./my_comics
Download Recent (Bulk)
Download the latest N comics from the homepage automatically:
./yiffer_scraper.py download-recent --count 10 --output ./my_comics
Description
Languages
Python
100%