Mangadex-downloader

Latest version: v3.1.1

Safety actively analyzes 723685 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 11 of 12

0.1.1

0.1.0

- Reworked app for MangaDex API v5
- Added CLI
- Added proxy support (http or socks)
- From now, the app will always download in tachiyomi local format.

Other features are coming soon.

`{note}
A lot of errors during running `mangadex-downloader` v0.1.0.
The errors (included with solution) can be see below:

Case 1

**Error:**
The app throwing error like this:
shell
Traceback (most recent call last):
File "...../mangadex-downloader", line 5, in <module>
from mangadex_downloader.__main__ import main
File "...../python3.8/site-packages/mangadex_downloader/__init__.py", line 13, in <module>
from .main import *
File "..../python3.8/site-packages/mangadex_downloader/main.py", line 2, in <module>
from pathvalidate import sanitize_filename
ModuleNotFoundError: No module named 'pathvalidate'


**Solution:**
Install `pathvalidate`
shell
For Windows
py -3 -m pip install pathvalidate

For Linux / Mac OS
python3 -m pip install pathvalidate


Case 2

**Error:**
CLI `mangadex-dl` or `mangadex-downloader` didn't work.
shell
$ mangadex-dl
Traceback (most recent call last):
File "...", line 8, in <module>
sys.exit(main())
TypeError: main() missing 1 required positional argument: 'argv'


**Solution:**
Run mangadex-downloader module from python app with `-m` option
shell
For Windows
py -3 -m mangadex_downloader

For Linux / Mac OS
python3 -m mangadex_downloader

`

0.0.5

- Bug fix: Changed API Mangadex URL from `https://mangadex.org/api/v2` to `https://api.mangadex.org/v2`
- New feature: Added `latest_chapters` attribute in `MangaData` class, to see the latest chapters in manga

0.0.4

- New feature: added `Mangadex.extract_basic_info()` to grab all information in manga without the chapters.
- New feature: added `data_saver` argument in `Mangadex.extract_info()` and `Mangadex.download()` to use low quality and size image.
- Enchantment: now mangadex-downloader will always using API for fetching information and chapters for manga, **NOTE:** for grabbing manga id still need scrapping from main website.
- Enchantment: Improved verbose logger.
- Bug fix: fixed failed to create folder when downloading manga in windows OS.
- `language` argument in `Mangadex` class, `MangadexFetcher` class, and `mangadex_downloader.parser.parse_infos()` (this function is removed too) is removed, until i explore all languages code in mangadex, right now mangadex-downloader will fetch and download in English language by default.

0.0.3

- Bug fix: given url doesn't have title in url causing empty and useless loop request
- Bug fix: `MangaData.__repr__()` raise error for `oneshot` genre manga
- New Feature: Add `output_folder` in Mangadex class arguments for choose the path in which store the downloaded mangas [1](https://github.com/mansuf/mangadex-downloader/pull/1)
- Enchantment: add functional `Mangadex.download()`

0.0.2

- fixed failed to getting info when manga dont have more than 100 chapters

Page 11 of 12

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.