Added comic Underling
This commit is contained in:
parent
3d19d45e81
commit
b8fefb37c0
1 changed files with 9 additions and 0 deletions
|
@ -8,6 +8,15 @@ from ..scraper import _BasicScraper
|
||||||
from ..helpers import bounceStarter, indirectStarter
|
from ..helpers import bounceStarter, indirectStarter
|
||||||
from ..util import getQueryParams, tagre
|
from ..util import getQueryParams, tagre
|
||||||
|
|
||||||
|
class Underling(_BasicScraper):
|
||||||
|
url = 'http://underlingcomic.com/'
|
||||||
|
stripUrl = url
|
||||||
|
rurl = escape(url)
|
||||||
|
firstStripUrl = stripUrl + 'page-one/'
|
||||||
|
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]*)' % rurl))
|
||||||
|
prevSearch = compile(tagre("a", "href", r'([^"]+)', after = r'class="[^"]*navi-prev'))
|
||||||
|
help = 'Index format: nnn'
|
||||||
|
|
||||||
|
|
||||||
class Undertow(_BasicScraper):
|
class Undertow(_BasicScraper):
|
||||||
url = 'http://undertow.dreamshards.org/'
|
url = 'http://undertow.dreamshards.org/'
|
||||||
|
|
Loading…
Reference in a new issue