Add Spinnerette comic.
This commit is contained in:
parent
4a63f5d561
commit
77b8daf2f9
2 changed files with 9 additions and 0 deletions
|
@ -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.
|
||||
|
|
|
@ -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'
|
||||
|
|
Loading…
Reference in a new issue