diff --git a/dosagelib/plugins/p.py b/dosagelib/plugins/p.py index def6839b6..3bc18776d 100644 --- a/dosagelib/plugins/p.py +++ b/dosagelib/plugins/p.py @@ -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/'