Mangadex downloader written in python
Find a file
Ivan Schaller cce3b5d632
All checks were successful
ci/woodpecker/push/tests Pipeline was successful
update env variables with example
2022-08-15 12:57:35 +02:00
.github/ISSUE_TEMPLATE Update issue templates 2022-06-20 16:29:54 +02:00
.woodpecker remove tag of multipy images 2022-07-25 21:33:37 +02:00
contrib add tests for hooks 2022-08-14 16:34:15 +02:00
docker fix schedule fixer 2022-07-19 22:45:00 +02:00
mangadlp add tests for hooks 2022-08-14 16:34:15 +02:00
tests add tests for hooks 2022-08-14 16:34:15 +02:00
.envrc use asdf for version management 2022-06-25 01:23:11 +02:00
.gitignore update env variables with example 2022-08-15 12:57:35 +02:00
.tool-versions test coverage with tox 2022-06-25 02:50:39 +02:00
CHANGELOG.md fix readme hook env variables 2022-08-14 17:02:47 +02:00
get_release_notes.sh add new "latest" option in get_release_notes.sh 2022-07-25 15:34:12 +02:00
justfile add pylint settings/tests 2022-07-21 20:55:35 +02:00
LICENSE update versions and readme + minor tweaks 2022-05-09 21:07:37 +02:00
manga-dlp.py move version management to hatch 2022-07-23 00:30:28 +02:00
mangas.txt add docker container 2021-12-24 16:30:50 +01:00
MANIFEST.in update versions and readme + minor tweaks 2022-05-09 21:07:37 +02:00
pyproject.toml move version management to hatch 2022-07-23 00:30:28 +02:00
README.md update env variables with example 2022-08-15 12:57:35 +02:00
renovate.json Update 'renovate.json' 2022-04-16 19:48:03 +02:00
requirements.txt add dev requirements 2022-06-25 01:22:56 +02:00
sonar-project.properties fix sonar link 2022-05-17 17:31:13 +02:00
tox.ini apply a few pylint/pycodestyle tips 2022-07-21 20:39:56 +02:00

manga-dlp

python script to download mangas

CI/CD:

status-badge Last Release Version Version PyPi

Code Analysis:

Quality Gate Status Coverage Bugs Security

Meta:

Code style Linter Types Imports Tests Coverage License Compatibility

Description

A manga download script written in python. It only supports mangadex.org for now. But support for other sites is planned.

Before downloading a new chapter, the script always checks if there is already a chapter with the same name in the download directory. If found the chapter is skipped. So you can run the script on a schedule to only download new chapters without any additional setup.

The default behaiviour is to pack the images to a cbz archive. If you just want the folder with all the pictures use the flag --nocbz.

Currently Supported sites

Usage

Quick start

python3 manga-dlp.py \
          --url https://mangadex.org/title/a96676e5-8ae2-425e-b549-7f15dd34a6d8/komi-san-wa-komyushou-desu \
          --language "en" \
          --chapters "all"

With GitHub

git clone https://github.com/olofvndrhr/manga-dlp.git # clone the repository

cd manga-dlp # go in the directory

pip install -r requirements.txt # install required packages

# on windows
python manga-dlp.py <options>
# on unix
python3 manga-dlp.py <options>

With pip (pypi)

python3 -m pip install manga-dlp # download the package from pypi

python3 -m mangadlp <args> # start the script as a module
OR
manga-dlp <args> # call script directly
OR
mangadlp <args> # call script directly

With docker

See the docker README

Options

usage: manga-dlp.py [-h] (-u URL_UUID | --read READ | -v) [-c CHAPTERS] [-p PATH] [-l LANG] [--list] [--format FORMAT] [--forcevol] [--wait WAIT] [--lean | --verbose | --debug] [--hook-manga-pre HOOK_MANGA_PRE]
[--hook-manga-post HOOK_MANGA_POST] [--hook-chapter-pre HOOK_CHAPTER_PRE] [--hook-chapter-post HOOK_CHAPTER_POST]

Script to download mangas from various sites

optional arguments:
-h, --help                                      show this help message and exit
-u URL_UUID, --url URL_UUID, --uuid URL_UUID    URL or UUID of the manga
--read READ                                     Path of file with manga links to download. One per line
-v, --version                                   Show version of manga-dlp and exit
-c CHAPTERS, --chapters CHAPTERS                Chapters to download
-p PATH, --path PATH                            Download path. Defaults to "<script_dir>/downloads"
-l LANG, --language LANG                        Manga language. Defaults to "en" --> english
--list                                          List all available chapters. Defaults to false
--format FORMAT                                 Archive format to create. An empty string means dont archive the folder. Defaults to 'cbz'
--forcevol                                      Force naming of volumes. For mangas where chapters reset each volume
--wait WAIT                                     Time to wait for each picture to download in seconds(float). Defaults 0.5
--lean                                          Lean logging. Minimal log output. Defaults to false
--verbose                                       Verbose logging. More log output. Defaults to false
--debug                                         Debug logging. Most log output. Defaults to false
--hook-manga-pre HOOK_MANGA_PRE                 Commands to execute before the manga download starts
--hook-manga-post HOOK_MANGA_POST               Commands to execute after the manga download finished
--hook-chapter-pre HOOK_CHAPTER_PRE             Commands to execute before the chapter download starts
--hook-chapter-post HOOK_CHAPTER_POST           Commands to execute after the chapter download finished

Downloads file-structure

.
└── <download path>/
    └── <manga title>/
        └── <chapter title>/

Example:

./downloads/mangatitle/chaptertitle(.cbz)

Select chapters to download

With the option -c "all" you download every chapter available in the selected language

To download specific chapters you can use the option -c or --chapters. That you don't have to specify all chapters individually, the script has some logic to fill in the blanks.

Examples:

# if you want to download chapters 1 to 5
python3 manga-dlp -u <url> -c 1-5

# if you want to download chapters 1 and 5
python3 manga-dlp -u <url> -c 1,5

If you use --forcevol it's the same, just with the volume number

# if you want to download chapters 1:1 to 1:5
python3 manga-dlp -u <url> -c 1:1-1:5

# if you want to download chapters 1:1 and 1:5
python3 manga-dlp -u <url> -c 1:1,1:5

# to download the whole volume 1
python3 manga-dlp -u <url> -c 1:

And a combination of all

# if you want to download chapters 1 to 5 and 9
python3 manga-dlp -u <url> -c 1-5,9

# with --forcevol
# if you want to download chapters 1:1 to 1:5 and 9, also the whole volume 4
python3 manga-dlp -u <url> -c 1:1-1:5,1:9,4:

With the option --read you can specify a file with links to multiple mangas. They will be parsed from top to bottom one at a time. Every link will be matched for the right api to use. It is important that you only have one link per line, otherwise they can't be parsed.

Example:

# mangas.txt
link1
link2
link3

python3 manga-dlp.py --read mangas.txt --list

This will list all available chapters for link1, link2 and link3.

Set download path

With the option -p/--path you can specify a path to download the chapters to. The default path is <script_dir>/downloads. Absolute and relative paths are supported.

Example:

python3 manga-dlp.py <other options> --path /media/mangas

This will save all mangas/chapters in the path /media/mangas/<manga title>/<chapter name>

Set output format

--format currently only works with "", "pdf", "zip", "rar" and "cbz". As it just renames the zip file with the new suffix (except pdf).

You can specify the output format of the manga images with the --format option. The default is set to .cbz, so if no format is given it falls back to <manga-name>/<chapter_name>.cbz

For pdf creation you have to install img2pdf. With the amd64 docker image it is already installed see more in the Docker README.md.

Supported format options are:

  • cbz - --format "cbz" or --format ".cbz" - default
  • cbr - --format "cbr" or --format ".cbr"
  • zip - --format "zip" or --format ".zip"
  • pdf - --format "pdf" or --format ".pdf"
  • none - --format "" - this saves the images just in a folder

Example:

python3 manga-dlp.py <other options> --format "zip"

This will download the chapter and save it as a zip archive.

Hooks

You can run custom hooks with manga-dlp for specific events. They are run with the subproccess.call function, so they get run directly by your operating system.

The available hook events are:

  • Pre Manga -> Before anything gets downloaded
  • Pre Chapter -> Before the chapter gets downloaded
  • Post Manga -> After the manga is done. (All specified chapters were downloaded)
  • Post Chapter -> After each chapter was downloaded (and formatted if specified)

Each of these hooks can be set with a specific flag:

  • --hook-pre-manga -> Pre Manga hook
  • --hook-pre-chapter -> Pre Chapter hook
  • --hook-post-manga -> Post Manga hook
  • --hook-post-chapter -> Post Chapter hook

Example:

manga-dlp -u <some url> -c 1 --hook-post-manga <some command>

# echo "abc" to stdout
manga-dlp -u <some url> -c 1 --hook-post-manga "echo abc"

# echo the manga name to stdout

manga-dlp -u <some url> -c 1 --hook-post-manga "echo ${MDLP_MANGA_TITLE}"

Env Variables

All hooks are exposed to a variety of environment variables with infos about the manga/chapter currently downloading.

All available env variables are listed below with the example for this manga:

Command used: python3 manga-dlp.py -u https://mangadex.org/title/0aea9f43-d4a9-4bf7-bebc-550a512f9b95/shikimori-s-not-just-a-cutie -c 1

General:

  • MDLP_HOOK_TYPE -> manga_pre / manga_post / chapter_pre / chapter_post
  • MDLP_STATUS -> starting / success / error / none
  • MDLP_REASON -> none or the reason of the status

Manga hooks:

  • MDLP_API -> Mangadex
  • MDLP_MANGA_URL_UUID -> https://mangadex.org/title/0aea9f43-d4a9-4bf7-bebc-550a512f9b95/shikimori-s-not-just-a-cutie
  • MDLP_MANGA_UUID -> 0aea9f43-d4a9-4bf7-bebc-550a512f9b95
  • MDLP_MANGA_TITLE -> Shikimori's Not Just a Cutie
  • MDLP_LANGUAGE -> en
  • MDLP_TOTAL_CHAPTERS -> 158
  • MDLP_CHAPTERS_TO_DOWNLOAD -> ['1']
  • MDLP_FILE_FORMAT -> .cbz
  • MDLP_FORCEVOL -> False
  • MDLP_DOWNLOAD_PATH -> downloads
  • MDLP_MANGA_PATH -> downloads/Shikimori's Not Just a Cutie

Chapter hooks (extends Manga hooks env variables):

  • MDLP_CHAPTER_FILENAME -> Ch. 1
  • MDLP_CHAPTER_PATH -> downloads/Shikimori's Not Just a Cutie/Ch. 1
  • MDLP_CHAPTER_ARCHIVE_PATH -> downloads/Shikimori's Not Just a Cutie/Ch. 1.cbz
  • MDLP_CHAPTER_UUID -> b7cba066-0b45-4d88-be08-89240841b4f7
  • MDLP_CHAPTER_VOLUME -> 1
  • MDLP_CHAPTER_NUMBER -> 1
  • MDLP_CHAPTER_NAME -> empty string

Contribution / Bugs

For suggestions for improvement, just open a pull request.

If you want to add support for a new site, there is an api template file which you can use. And more infos and tools in the contrib README.md

Otherwise, you can open am issue with the name of the site which you want support for. (not guaranteed to be implemented)

If you encounter any bugs, also just open an issue with a description of the problem.

TODO's

  • Make docker container for easy distribution --> Dockerhub
  • Automate release --> Done with woodpecker-ci
  • Make pypi package --> Done with release 2.1.7
  • Add more supported sites