added comic The Gamer Cat
This commit is contained in:
parent
b53ca04ee7
commit
4f47792dee
1 changed files with 9 additions and 0 deletions
|
@ -49,6 +49,15 @@ class TheDreamlandChronicles(_BasicScraper):
|
|||
bp[2] = bp[2][:-1]
|
||||
return "%s-%s-%s.%s" % (bp[0], bp[1], bp[2], ext)
|
||||
|
||||
class TheGamerCat(_BasicScraper):
|
||||
description = u"The Gamer Cat"
|
||||
url = 'http://www.thegamercat.com/'
|
||||
rurl = escape(url)
|
||||
stripUrl = url + '%s/'
|
||||
firstStripUrl = stripUrl % '2011/06/06102011'
|
||||
imageSearch = compile(tagre("img", "src", r'(%swordpress/comics/[^"/]+)' % rurl))
|
||||
prevSearch = compile(tagre("a", "href", r'(%s\d+/\d+/[^"/]+/)' % rurl , after="navi navi-prev"))
|
||||
help = 'Index format: yyyy/mm/mmddyyyy'
|
||||
|
||||
class TheNoob(_BasicScraper):
|
||||
url = 'http://www.thenoobcomic.com/index.php'
|
||||
|
|
Loading…
Reference in a new issue