Add PandyLand comic.
This commit is contained in:
parent
eb7f7d4932
commit
ad5c7667f1
1 changed files with 8 additions and 0 deletions
|
@ -8,6 +8,14 @@ from ..helpers import bounceStarter, queryNamer, indirectStarter
|
||||||
from ..util import tagre
|
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):
|
class PartiallyClips(_BasicScraper):
|
||||||
latestUrl = 'http://partiallyclips.com/'
|
latestUrl = 'http://partiallyclips.com/'
|
||||||
stripUrl = latestUrl + '%s/'
|
stripUrl = latestUrl + '%s/'
|
||||||
|
|
Loading…
Reference in a new issue