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 re import compile, escape, IGNORECASE
|
||||||
|
|
||||||
from ..scraper import _BasicScraper
|
from ..scraper import _BasicScraper, _ParserScraper
|
||||||
from ..util import tagre
|
from ..util import tagre
|
||||||
|
|
||||||
|
|
||||||
|
@ -23,7 +23,16 @@ class MadamAndEve(_BasicScraper):
|
||||||
imageSearch = compile(tagre('img', 'src', r'(/cartoons/me\d{6}\.(gif|jpg))'))
|
imageSearch = compile(tagre('img', 'src', r'(/cartoons/me\d{6}\.(gif|jpg))'))
|
||||||
multipleImagesPerStrip = True
|
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):
|
class MagickChicks(_BasicScraper):
|
||||||
url = 'http://www.magickchicks.com/'
|
url = 'http://www.magickchicks.com/'
|
||||||
stripUrl = url + 'strips-mc/%s'
|
stripUrl = url + 'strips-mc/%s'
|
||||||
|
|
Loading…
Reference in a new issue