Merge branch 'master' of https://github.com/mbrandis/dosage into mbrandis-master
This commit is contained in:
commit
f78d28fba8
1 changed files with 15 additions and 0 deletions
|
@ -563,3 +563,18 @@ class SupernormalStep(_BasicScraper):
|
||||||
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl))
|
imageSearch = compile(tagre("img", "src", r'(%scomics/[^"]+)' % rurl))
|
||||||
prevSearch = compile(tagre("a", "href", r'(%s\?p=\d+)' % rurl, after="prev"))
|
prevSearch = compile(tagre("a", "href", r'(%s\?p=\d+)' % rurl, after="prev"))
|
||||||
help = 'Index format: number'
|
help = 'Index format: number'
|
||||||
|
|
||||||
|
class ShermansLagoon(_BasicScraper):
|
||||||
|
description = u"Sherman's Lagoon by Jim Toomey"
|
||||||
|
url = 'http://shermanslagoon.com/'
|
||||||
|
stripUrl = url + 'comics/%s'
|
||||||
|
firstStripUrl = stripUrl % '/december-29-2003/'
|
||||||
|
imageSearch = compile(r'<img src="(http://safr.kingfeatures.com/idn/etv/zone/xml/content.php\?file=.+?)" />')
|
||||||
|
prevSearch = compile(r'<a href="(http://shermanslagoon.com/comics/.+?/)" rel="prev"')
|
||||||
|
|
||||||
|
@classmethod
|
||||||
|
def namer(cls, imageUrl, pageUrl):
|
||||||
|
import datetime
|
||||||
|
mylist = []
|
||||||
|
mylist.append(datetime.date.today())
|
||||||
|
return "%s" % mylist[0]
|
||||||
|
|
Loading…
Reference in a new issue