Add Dreamkeepers

This commit is contained in:
Techwolf 2019-06-19 21:39:19 -07:00 committed by Tobias Gruetzmacher
parent 70e78a87de
commit 323bfc3a6a

View file

@ -219,9 +219,19 @@ class Dracula(_BasicScraper):
help = 'Index format: nnn' help = 'Index format: nnn'
class DreamKeepers(_ParserScraper):
url = 'http://www.dreamkeeperscomic.com/GNSaga.php'
stripUrl = url + '?pg=%s'
firstStripUrl = stripUrl % '1'
imageSearch = '//img[contains(@src, "GNSagapages")]'
prevSearch = '//a[@id="prev"]'
help = 'Index format: n'
class DreamKeepersPrelude(_ParserScraper): class DreamKeepersPrelude(_ParserScraper):
url = 'http://www.dreamkeeperscomic.com/Prelude.php' url = 'http://www.dreamkeeperscomic.com/Prelude.php'
stripUrl = url + '?pg=%s' stripUrl = url + '?pg=%s'
firstStripUrl = stripUrl % '0001'
imageSearch = '//div[@class="Preludecomic"]/table//a/img' imageSearch = '//div[@class="Preludecomic"]/table//a/img'
prevSearch = '//a[@id="prev"]' prevSearch = '//a[@id="prev"]'
help = 'Index format: n' help = 'Index format: n'