Add VampireCheerleader comic.
This commit is contained in:
parent
a96b527f98
commit
f727a0132f
2 changed files with 9 additions and 0 deletions
|
@ -2,6 +2,7 @@ Dosage 1.10 (released xx.xx.2013)
|
|||
|
||||
Features:
|
||||
- comics: Added SequentialArt comic strip.
|
||||
- comics: Added VampireCheerleader comic strip.
|
||||
|
||||
Fixes:
|
||||
- comics: Fixed Gunnerkrigcourt comic strip.
|
||||
|
|
|
@ -8,6 +8,14 @@ from ..scraper import _BasicScraper
|
|||
from ..util import tagre
|
||||
|
||||
|
||||
class VampireCheerleaders(_BasicScraper):
|
||||
latestUrl = 'http://www.vampirecheerleaders.net/'
|
||||
stripUrl = latestUrl + 'strips-vc/%s'
|
||||
imageSearch = compile(tagre("img", "src", r'(/comics/[^"]+)'))
|
||||
prevSearch = compile(tagre("a", "href", r'(http://www\.vampirecheerleaders\.net/strips-vc/[^"]+)', before="cndprev"))
|
||||
help = 'Index format: name'
|
||||
|
||||
|
||||
class Vendetta(_BasicScraper):
|
||||
latestUrl = 'http://www.vendettacomic.com/'
|
||||
stripUrl = latestUrl + 'archive.php?date=%s.jpg'
|
||||
|
|
Loading…
Reference in a new issue