New comic: The Rock Cocks (#138)
This commit is contained in:
parent
f29d14c3b4
commit
b8b488670e
1 changed files with 10 additions and 0 deletions
|
@ -81,6 +81,16 @@ class TheOrderOfTheStick(_BasicScraper):
|
||||||
return page_url.rsplit('/', 1)[-1][:-5]
|
return page_url.rsplit('/', 1)[-1][:-5]
|
||||||
|
|
||||||
|
|
||||||
|
class TheRockCocks(_BasicScraper):
|
||||||
|
url = 'http://rockcocks.slipshine.net/'
|
||||||
|
rurl = escape(url)
|
||||||
|
stripUrl = url + 'comics/%s'
|
||||||
|
firstStripUrl = stripUrl % "page-1-nsfw-track-1-start"
|
||||||
|
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl, after='id="cc-comic"'))
|
||||||
|
prevSearch = compile(tagre("a", "href", r'(%scomic/[^"]+)' % rurl, after='rel="prev"'))
|
||||||
|
adult = True
|
||||||
|
|
||||||
|
|
||||||
class TheThinHLine(_TumblrScraper):
|
class TheThinHLine(_TumblrScraper):
|
||||||
url = 'http://thinhline.tumblr.com/'
|
url = 'http://thinhline.tumblr.com/'
|
||||||
firstStripUrl = url + 'post/4177372348/thl-1-a-cats-got-his-tongue-click-on-the'
|
firstStripUrl = url + 'post/4177372348/thl-1-a-cats-got-his-tongue-click-on-the'
|
||||||
|
|
Loading…
Reference in a new issue