added the thin H line

This commit is contained in:
Luc Fouin 2014-07-02 17:11:33 +02:00
parent b03ba158ef
commit 763f9b02a2

View file

@ -210,6 +210,18 @@ class TheOuterQuarter(_BasicScraper):
help = 'Index format: nnn' help = 'Index format: nnn'
class TheThinHLine(_BasicScraper):
description = u'the thin H line. Proudly mediocre. NSFW.'
url = 'http://thinhline.tumblr.com/'
rurl = escape(url)
stripUrl = url + 'post/%s'
firstStripUrl = stripUrl % '3517345105'
imageSearch = compile(tagre('a', 'href', '%simage[^"]+' % url) + tagre('img', 'src', '([^"]+media.tumblr.com/[^"]+)'))
prevSearch = compile(r'<a href="([^"]+)">&gt;</a>')
starter = indirectStarter(url, compile(r'<a href="([^"]+)" class="timestamp"'))
adult = True
class ThreePanelSoul(_BasicScraper): class ThreePanelSoul(_BasicScraper):
url = 'http://threepanelsoul.com/' url = 'http://threepanelsoul.com/'
rurl = escape(url) rurl = escape(url)