2012-06-20 20:41:04 +00:00
|
|
|
# -*- coding: iso-8859-1 -*-
|
|
|
|
# Copyright (C) 2004-2005 Tristan Seligmann and Jonathan Jacobs
|
2012-11-21 20:57:26 +00:00
|
|
|
# Copyright (C) 2012 Bastian Kleineidam
|
|
|
|
|
2012-06-20 19:58:13 +00:00
|
|
|
from re import compile, IGNORECASE
|
|
|
|
|
2012-10-11 10:03:12 +00:00
|
|
|
from ..scraper import _BasicScraper
|
2012-11-20 17:53:53 +00:00
|
|
|
from ..util import tagre
|
2012-06-20 19:58:13 +00:00
|
|
|
|
|
|
|
|
2012-11-21 20:57:26 +00:00
|
|
|
# broken links - disable for now
|
|
|
|
class _MadamAndEve(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.madamandeve.co.za/week_of_cartns.php'
|
2012-11-20 17:53:53 +00:00
|
|
|
stripUrl = None
|
2012-06-20 19:58:13 +00:00
|
|
|
imageSearch = compile(r'<IMG BORDER="0" SRC="(cartoons/me\d{6}\.(gif|jpg))">')
|
|
|
|
prevSearch = compile(r'<a href="(weekend_cartoon.php)"')
|
|
|
|
|
|
|
|
|
|
|
|
class Marilith(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.marilith.com/'
|
|
|
|
stripUrl = url + 'archive.php?date=%s'
|
2012-06-20 19:58:13 +00:00
|
|
|
imageSearch = compile(r'<img src="(comics/.+?)" border')
|
|
|
|
prevSearch = compile(r'<a href="(archive\.php\?date=.+?)"><img border=0 name=previous_day')
|
|
|
|
help = 'Index format: yyyymmdd'
|
|
|
|
|
|
|
|
|
|
|
|
class MarryMe(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://marryme.keenspot.com/'
|
|
|
|
stripUrl = url + 'd/%s.html'
|
2012-11-21 20:57:26 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(/comics/[^"]+)'))
|
|
|
|
prevSearch = compile(tagre("link", "href", r'(/d/[^"]+)', before="prev"))
|
|
|
|
help = 'Index format: yyyymmdd'
|
2012-06-20 19:58:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
class Meek(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.meekcomic.com/'
|
|
|
|
stripUrl = url + '%s'
|
2012-06-20 19:58:13 +00:00
|
|
|
imageSearch = compile(r'meekcomic.com(/comics/.+?)"')
|
|
|
|
prevSearch = compile(r'\s.+?(http://www.meekcomic.com/.+?)".+?Previous<')
|
|
|
|
help = 'Index format: yyyy/mm/dd/ch-p/'
|
|
|
|
|
|
|
|
|
|
|
|
class MegaTokyo(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://megatokyo.com/'
|
|
|
|
stripUrl = url + 'strip/%s'
|
2012-06-20 19:58:13 +00:00
|
|
|
imageSearch = compile(r'"(strips/.+?)"', IGNORECASE)
|
|
|
|
prevSearch = compile(r'"(./strip/\d+?)">Prev')
|
|
|
|
help = 'Index format: nnnn'
|
|
|
|
|
|
|
|
|
2012-12-08 20:30:51 +00:00
|
|
|
class Meiosis(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://meiosiswebcomic.com/'
|
|
|
|
stripUrl = url + '%s/'
|
2012-12-08 20:30:51 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(http://meiosiswebcomic\.com/comics/[^"]+)'))
|
|
|
|
prevSearch = compile(tagre("a", "href", r'(http://meiosiswebcomic\.com/[^"]+)', after="navi-prev"))
|
|
|
|
help = 'Index format: yyyy/mm/ddmmyyyy'
|
|
|
|
|
|
|
|
|
2012-06-20 19:58:13 +00:00
|
|
|
class MacHall(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.machall.com/'
|
|
|
|
stripUrl = url + 'view.php?date=%s'
|
2012-06-20 19:58:13 +00:00
|
|
|
imageSearch = compile(r'<img src="(comics/.+?)"')
|
|
|
|
prevSearch = compile(r'<a href="(.+?)"><img[^>]+?src=\'drop_shadow/previous.gif\'>')
|
|
|
|
help = 'Index format: yyyy-mm-dd'
|
|
|
|
|
|
|
|
|
2012-11-20 17:53:53 +00:00
|
|
|
class Melonpool(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.melonpool.com/'
|
|
|
|
stripUrl = url + '?p=%s'
|
2012-11-21 20:57:26 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(http://www\.melonpool\.com/comics/[^"]+)'))
|
|
|
|
prevSearch = compile(tagre("a", "href", r'(http://www\.melonpool\.com/\?p=\d+)', after="prev"))
|
|
|
|
help = 'Index format: n'
|
2012-11-20 17:53:53 +00:00
|
|
|
|
2012-06-20 19:58:13 +00:00
|
|
|
|
|
|
|
class Misfile(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://www.misfile.com/'
|
|
|
|
stripUrl = url + '?date=%s'
|
2012-12-04 06:02:40 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r"(comics/[^']+)", quote="'"))
|
|
|
|
prevSearch = compile(tagre("link", "href", r"([^']+)", quote="'", before="Previous"))
|
2012-11-21 20:57:26 +00:00
|
|
|
help = 'Index format: yyyy-mm-dd'
|
2012-06-20 19:58:13 +00:00
|
|
|
|
|
|
|
|
|
|
|
class MysteriesOfTheArcana(_BasicScraper):
|
2013-02-04 20:00:26 +00:00
|
|
|
url = 'http://mysteriesofthearcana.com/'
|
|
|
|
stripUrl = url + 'index.php?action=comics&cid=%s'
|
2012-11-21 20:57:26 +00:00
|
|
|
imageSearch = compile(tagre("img", "src", r'(image\.php\?type=com&i=[^"]+)'))
|
2012-12-04 06:02:40 +00:00
|
|
|
prevSearch = compile(tagre("a", "href", r'(index\.php[^"]+)', after="navprevious"))
|
2012-06-20 19:58:13 +00:00
|
|
|
help = 'Index format: n (unpadded)'
|
|
|
|
|