Merge pull request #52 from Lugoues/upstream
Added "Stand Still. Stay Silent." comic.
This commit is contained in:
commit
cca39a0ecf
1 changed files with 11 additions and 0 deletions
11
dosagelib/plugins/s.py
Normal file → Executable file
11
dosagelib/plugins/s.py
Normal file → Executable file
|
@ -459,6 +459,17 @@ class SPQRBlues(_BasicScraper):
|
|||
help = 'Index format: number'
|
||||
|
||||
|
||||
class StandStillStaySilent(_BasicScraper):
|
||||
url = 'http://www.sssscomic.com/comic.php'
|
||||
rurl = escape(url)
|
||||
stripUrl = url + '?page=%s'
|
||||
firstStripUrl = stripUrl % '1'
|
||||
imageSearch = compile(tagre("img", "src", r"(comicpages/[^']+)", before="comicnormal", quote="'"))
|
||||
prevSearch = compile(tagre("a", "href", r"([^']+)", quote="'") + tagre("div", "id", r'navprev', quote="'"))
|
||||
help = 'Index Format: number'
|
||||
description = u'"Stand Still. Stay Silent" is a post-apocalyptic adventure story with a rather light tone and careless pace.'
|
||||
|
||||
|
||||
# XXX disallowed by robots.txt
|
||||
class _StationV3(_BasicScraper):
|
||||
url = 'http://www.stationv3.com/'
|
||||
|
|
Loading…
Reference in a new issue