Add PandyLand comic.

This commit is contained in:
Bastian Kleineidam 2012-12-28 05:37:08 +01:00
parent eb7f7d4932
commit ad5c7667f1

View file

@ -8,6 +8,14 @@ from ..helpers import bounceStarter, queryNamer, indirectStarter
from ..util import tagre
class PandyLand(_BasicScraper):
latestUrl = 'http://pandyland.net/'
stripUrl = latestUrl + '%s/'
imageSearch = compile(tagre("img", "src", r'(http://pandyland\.net/comics/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://pandyland\.net/\d+/)', after="prev"))
help = 'Index format: number'
class PartiallyClips(_BasicScraper):
latestUrl = 'http://partiallyclips.com/'
stripUrl = latestUrl + '%s/'