Merge branch 'master' of github.com:wummel/dosage

This commit is contained in:
Bastian Kleineidam 2014-07-03 17:12:42 +02:00
commit 4845a4ccc1

View file

@ -210,6 +210,17 @@ class TheOuterQuarter(_BasicScraper):
help = 'Index format: nnn'
class TheThinHLine(_BasicScraper):
description = u'the thin H line. Proudly mediocre. NSFW.'
url = 'http://thinhline.tumblr.com/'
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):
url = 'http://threepanelsoul.com/'
rurl = escape(url)