Fix BMovieComic
This commit is contained in:
parent
4d8c4e8d2e
commit
24efafdf96
1 changed files with 8 additions and 7 deletions
|
@ -225,13 +225,14 @@ class BloomingFaeries(_WordPressScraper):
|
||||||
return "_".join(image_url.rsplit('/', 3)[1:])
|
return "_".join(image_url.rsplit('/', 3)[1:])
|
||||||
|
|
||||||
|
|
||||||
class BMovieComic(_BasicScraper):
|
class BMovieComic(_ParserScraper):
|
||||||
url = 'http://www.bmoviecomic.com/'
|
url = 'https://bmoviecomic.com/'
|
||||||
stripUrl = url + '?cid=%s'
|
stripUrl = url + '%s/'
|
||||||
firstStripUrl = stripUrl % '8'
|
firstStripUrl = stripUrl % 'chapter-1-strip-1'
|
||||||
imageSearch = compile(r'"(comics/.+?)"')
|
multipleImagesPerStrip = True
|
||||||
prevSearch = compile(r'(\?cid=.+?)".+?Prev')
|
imageSearch = '//div[d:class("entry-content")]//img'
|
||||||
help = 'Index format: n'
|
prevSearch = '//a[@rel="prev"]'
|
||||||
|
help = 'Index format: pagename'
|
||||||
|
|
||||||
|
|
||||||
class BobWhite(_ParserScraper):
|
class BobWhite(_ParserScraper):
|
||||||
|
|
Loading…
Reference in a new issue