Add Spinnerette comic.

This commit is contained in:
Bastian Kleineidam 2013-01-29 21:52:26 +01:00
parent 4a63f5d561
commit 77b8daf2f9
2 changed files with 9 additions and 0 deletions

View file

@ -4,6 +4,7 @@ Features:
- comics: Added SequentialArt comic strip.
- comics: Added VampireCheerleader comic strip.
- comics: Added GrrlPower comic strip.
- comics: Added Spinnerette comic strip.
Fixes:
- comics: Fixed Gunnerkrigcourt comic strip.

View file

@ -143,6 +143,14 @@ class SpareParts(_BasicScraper):
help = 'Index format: yyyymmdd'
class Spinnerette(_BasicScraper):
latestUrl = 'http://www.spinnyverse.com/'
stripUrl = latestUrl + '%s/'
imageSearch = compile(tagre("img", "src", r'(http://www\.spinnyverse\.com/comics/[^"]+)'))
prevSearch = compile(tagre("a", "href", r'(http://www\.spinnyverse\.com/[^"]+)', before="Previous"))
help = 'Index format: number'
class SPQRBlues(_BasicScraper):
latestUrl = 'http://spqrblues.com/IV/'
stripUrl = latestUrl + '?p=%s'