This is directory for scripts to download latest of my favourite manga.
The ultimate goal for this app will be flask-based service that can check and download latest manga.
However it will start as script for now with 3 functionality:
- check latest manga
- download single chapter
- download multiple chapter
- Get python3 installed in your system. Please google how or check my
tech-how-to
repo. - clone this repository and go inside the repo directory (
cd manga-downloader
) - create virtualenv (install virtualenv if you have not installed it):
virtualenv venv
- install all required packages:
pip3 install -r requirements.txt
- Checking latest manga chapters:
python3 check_latest_chapters.py <manga_name>
- Example:
python3 check_latest_chapters.py Boruto
- Example:
- Download a single manga chapter:
python3 download_chapter.py <manga_name> <chapter_no>
- Example:
python3 download_chapter.py Boruto 10
- Download multiple manga chapter:
python3 download_multichapters.py <manga_name> <chapter_no>
- Example:
python3 download_multichapters.py Boruto 10-12
- I am using
.env
to store all my related environment variables (likeMANGADIR
for example). You can setup your own by creating a.env
file and storing where you want to put your manga directory inMANGADIR
variable. - Same goes for my manga website. (I might disclose soon the website since my script possibly dependant on this website)