You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is often that we have to grab multiple pages to get all images. With the current hook get_chapter_files, we have to implement something like this:
page_url=chapter.urlcount=0whileTrue:
content=self.request.get(page_url)
# parse content and find image linksforurlinurls:
yieldImage(...)
count+=1# parse content and find next pageifnotnext_page_url:
breakpage_url=next_page_url
The problem is that you always have to start from the first page. I want to allow users to pause the download process, save the process to the disk, restart the application, load the process and continue.
The text was updated successfully, but these errors were encountered:
It is often that we have to grab multiple pages to get all images. With the current hook
get_chapter_files
, we have to implement something like this:The problem is that you always have to start from the first page. I want to allow users to pause the download process, save the process to the disk, restart the application, load the process and continue.
The text was updated successfully, but these errors were encountered: