Downloading Chapters
Requirements
Download Setup
Example
from enma import (Enma, CloudFlareConfig, ManganatoDownloader, Threaded, LocalStorage)
enma = Enma()
enma.source_manager.set_source('manganato')
manga = enma.get(identifier='manga-wb999684')
downloader = ManganatoDownloader()
local_storage = LocalStorage()
if manga:
enma.download_chapter(path=f'./download/{manga.title.english}',
chapter=manga.chapters[0],
downloader=downloader,
saver=local_storage,
threaded=Threaded(use_threads=True, number_of_threads=5))download_chapter Function Explained
download_chapter Function ExplainedKey Components
Handling Downloads and Saves
Conclusion
Last updated