Added comic "The Landscaper"

This commit is contained in:
Freestila 2014-02-18 21:00:43 +01:00
parent 96f61542ee
commit de0bb1c9d5

View file

@ -71,6 +71,15 @@ class TheGentlemansArmchair(_BasicScraper):
help = 'Index Format: name' help = 'Index Format: name'
class TheLandscaper(_BasicScraper):
url = 'http://landscaper.visual-assault.net/comic/latest'
rurl = escape(url)
stripUrl = url + 'comic/%s'
firstStripUrl = stripUrl % '1'
imageSearch = compile(tagre("img", "src", r'(/comics/comic/comic_page/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(/comic/[^"]+)')+'‹ Previous')
help = 'Index format: name'
class TheNoob(_BasicScraper): class TheNoob(_BasicScraper):
url = 'http://www.thenoobcomic.com/index.php' url = 'http://www.thenoobcomic.com/index.php'
stripUrl = url + '?pos=%s' stripUrl = url + '?pos=%s'