Add ParadigmShift.
The file names for this are a bit inconsistent...
This commit is contained in:
parent
4b6d7c54af
commit
e67b86c32f
1 changed files with 9 additions and 0 deletions
|
@ -16,6 +16,15 @@ class PandyLand(_BasicScraper):
|
||||||
help = 'Index format: number'
|
help = 'Index format: number'
|
||||||
|
|
||||||
|
|
||||||
|
class ParadigmShift(_BasicScraper):
|
||||||
|
url = 'http://www.paradigmshiftmanga.com/'
|
||||||
|
starter = indirectStarter(url, compile(tagre("a", "href", r'([^"]+)', after="next-comic-link")))
|
||||||
|
imageUrl = url + 'ps/%s.html'
|
||||||
|
imageSearch = compile(tagre("img", "src", r'([^"]*comics/ps/[^"]*)'))
|
||||||
|
prevSearch = compile(tagre("a", "href", r'([^"]+)', after="previous-comic-link"))
|
||||||
|
help = 'Index format: custom'
|
||||||
|
|
||||||
|
|
||||||
class PartiallyClips(_BasicScraper):
|
class PartiallyClips(_BasicScraper):
|
||||||
url = 'http://partiallyclips.com/'
|
url = 'http://partiallyclips.com/'
|
||||||
stripUrl = url + '%s/'
|
stripUrl = url + '%s/'
|
||||||
|
|
Loading…
Reference in a new issue