-
Notifications
You must be signed in to change notification settings - Fork 6
Downloader
Proxymiity edited this page Jun 14, 2021
·
4 revisions
Downloads an entire chapter from MangaDex.
Returns: Nothing
Arguments:
-
chapter
: The Chapter to download -
path
: The path to the directory where you want pages to be downloaded -
light
: Whether or not to use low-quality pages -
time_controller
: How much seconds to wait between each page (default value ensures a correct rate limiting)
Downloads an entire chapter from MangaDex using threads. (faster)
Returns: Nothing
Arguments:
-
chapter
: The Chapter to download -
path
: The path to the directory where you want pages to be downloaded -
light
: Whether or not to use low-quality pages
dl_manga(manga: MangaDexPy.Manga, base_path: str, language: str = "en", light: bool = False, time_controller: int = 1, threaded: bool = False)
Downloads an entire manga from MangaDex.
Returns: Nothing
Arguments:
-
manga
: The Manga to download -
base_path
: The path to the directory where you want chapters to be downloaded -
language
: The language code used for chapter filtering -
light
: Whether or not to use low-quality pages -
time_controller
: How much seconds to wait between each page (default value ensures a correct rate limiting) -
threaded
: Whether or not to usethreaded_dl_chapter()
to download chapters (faster).