New comic: The Rock Cocks (#138)

This commit is contained in:
Mikkel Høgh 2019-06-30 19:46:39 +02:00 committed by Tobias Gruetzmacher
parent f29d14c3b4
commit b8b488670e

View file

@ -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'