Skip to content

Downloader

Proxymiity edited this page Jun 14, 2021 · 4 revisions

dl_chapter(chapter: MangaDexPy.Chapter, path: str, light: bool = False, time_controller: int = 1)

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)

threaded_dl_chapter(chapter: MangaDexPy.Chapter, path: str, light: bool = False)

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 use threaded_dl_chapter() to download chapters (faster).