Add Dreamkeepers
This commit is contained in:
parent
70e78a87de
commit
323bfc3a6a
1 changed files with 10 additions and 0 deletions
|
@ -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'
|
||||||
|
|
Loading…
Reference in a new issue