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
I am trying to get a manga but seems the URL is different from others:
onemangadl -C 55 http://www.mangareader.net/kissxsis/55/16
Link given http://www.mangareader.net/kissxsis/55/16
Manga Found :http://www.mangareader.net/464/kissxsis.html
Total chapters: 50
Traceback (most recent call last):
File "/usr/local/bin/onemangadl", line 124, in
downld_manga(x,options.dir,chapter_range)
File "/usr/local/bin/onemangadl", line 74, in downld_manga
chpt_list=[chpt_list[x-1] for x in chapt]
IndexError: list index out of range
The text was updated successfully, but these errors were encountered:
That is because the script counts the chapter number from 1 and
continuously till the number of chapter. You will face this problem if
the chapters aren't numbered properly. Like in the given manga after
7, chapter 13 starts. Which is problematic. I didn't resolve this
issue because there is no direct way to map chapter number in order
with chapter's actual number.
Hey,
I was just checking out your code and noticed this. So I thought an alternative method of solving problems like these would be to allow downloads directly from the page. for Ex:
I am trying to get a manga but seems the URL is different from others:
onemangadl -C 55 http://www.mangareader.net/kissxsis/55/16
Link given http://www.mangareader.net/kissxsis/55/16
Manga Found :http://www.mangareader.net/464/kissxsis.html
Total chapters: 50
Traceback (most recent call last):
File "/usr/local/bin/onemangadl", line 124, in
downld_manga(x,options.dir,chapter_range)
File "/usr/local/bin/onemangadl", line 74, in downld_manga
chpt_list=[chpt_list[x-1] for x in chapt]
IndexError: list index out of range
The text was updated successfully, but these errors were encountered: