Added comic Magellan
This commit is contained in:
parent
9f33c31c68
commit
4cdd92dcd7
1 changed files with 10 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
|
||||
from re import compile, escape, IGNORECASE
|
||||
|
||||
from ..scraper import _BasicScraper
|
||||
from ..scraper import _BasicScraper, _ParserScraper
|
||||
from ..util import tagre
|
||||
|
||||
|
||||
|
@ -23,6 +23,15 @@ class MadamAndEve(_BasicScraper):
|
|||
imageSearch = compile(tagre('img', 'src', r'(/cartoons/me\d{6}\.(gif|jpg))'))
|
||||
multipleImagesPerStrip = True
|
||||
|
||||
class Magellan(_ParserScraper):
|
||||
description = u'A comic strip about Superheroes and Not-Superheroes'
|
||||
url = 'http://magellanverse.com/'
|
||||
stripUrl = url + '%s/'
|
||||
css = True
|
||||
imageSearch = '#comic-1 > a:first-child img'
|
||||
prevSearch = '.nav-previous > a'
|
||||
help = 'Index format: stripname'
|
||||
|
||||
|
||||
class MagickChicks(_BasicScraper):
|
||||
url = 'http://www.magickchicks.com/'
|
||||
|
|
Loading…
Reference in a new issue