Merge pull request #13 from Freestila/master

Added comic Magellan
This commit is contained in:
Manabi 2015-04-23 12:28:24 -04:00
commit bc202e9e15

View file

@ -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/'