Add SequentialArt comic.

This commit is contained in:
Bastian Kleineidam 2013-01-29 21:23:32 +01:00
parent 8b04602c7b
commit a96b527f98
2 changed files with 18 additions and 0 deletions

View file

@ -1,3 +1,12 @@
Dosage 1.10 (released xx.xx.2013)
Features:
- comics: Added SequentialArt comic strip.
Fixes:
- comics: Fixed Gunnerkrigcourt comic strip.
Dosage 1.9 (released 28.1.2013)
Features:

View file

@ -58,6 +58,15 @@ class SchoolBites(_BasicScraper):
help = 'Index format: yyyymmdd'
class SequentialArt(_BasicScraper):
latestUrl = 'http://www.collectedcurios.com/sequentialart.php'
stripUrl = latestUrl + '?s=%s'
imageSearch = compile(tagre("img", "src", r'([^"]+)', before="strip"))
prevSearch = compile(tagre("a", "href", r'(/sequentialart\.php\?s=\d+)')
+ tagre("img", "src", "Nav_BackOne\.gif"))
help = 'Index format: name'
class Sheldon(_BasicScraper):
latestUrl = 'http://www.sheldoncomics.com/'
stripUrl = latestUrl + 'archive/%s.html'