Added comic DungeonsAndDenizens
This commit is contained in:
parent
b8fefb37c0
commit
53ebb51b10
1 changed files with 8 additions and 0 deletions
|
@ -325,3 +325,11 @@ class _DumbingOfAge(_BasicScraper):
|
||||||
prevSearch = compile(tagre("a", "href", r'(%s\d+/[^"]+)' % rurl, after="prev"))
|
prevSearch = compile(tagre("a", "href", r'(%s\d+/[^"]+)' % rurl, after="prev"))
|
||||||
imageSearch = compile(tagre("img", "src", r'(%scomics/\d+-\d+-\d+[^"]+)' % rurl))
|
imageSearch = compile(tagre("img", "src", r'(%scomics/\d+-\d+-\d+[^"]+)' % rurl))
|
||||||
help = 'Index format: yyyy/comic/book-num/seriesname/stripname'
|
help = 'Index format: yyyy/comic/book-num/seriesname/stripname'
|
||||||
|
|
||||||
|
class DungeonsAndDenizens(_BasicScraper):
|
||||||
|
url = 'http://dungeond.com/'
|
||||||
|
stripUrl = url + '\d/\d/\d/%s/'
|
||||||
|
firstStripUrl = stripUrl % '08232005'
|
||||||
|
imageSearch = compile(tagre("img", "src", r'(%sfiles//comics/[^"]+)' % url))
|
||||||
|
prevSearch = compile(tagre("a", "href", r'(%s[^"]+)' % url) + "Previous")
|
||||||
|
help = 'Index format: ddmmyyyy'
|
||||||
|
|
Loading…
Reference in a new issue