Add UnlikeMinerva

This commit is contained in:
Techwolf 2019-06-21 23:13:25 -07:00 committed by Tobias Gruetzmacher
parent fcdbd563a2
commit be6a6722b5

View file

@ -7,7 +7,7 @@ from __future__ import absolute_import, division, print_function
from re import compile, escape
from ..scraper import _BasicScraper
from ..scraper import _BasicScraper, _ParserScraper
from ..helpers import indirectStarter
from ..util import tagre
from .common import _WordPressScraper, _WPNavi
@ -36,6 +36,18 @@ class UnicornJelly(_BasicScraper):
help = 'Index format: nnn'
class UnlikeMinerva(_ParserScraper):
baseUrl = 'https://www.unlikeminerva.com/archive/index.php'
stripUrl = baseUrl + '?week=%s'
url = stripUrl % '127'
firstStripUrl = stripUrl % '26'
imageSearch = '//img[contains(@src, "archive/")]'
prevSearch = '//a[./img[contains(@src, "previous")]]'
multipleImagesPerStrip = True
endOfLife = True
help = 'Index format: number'
class Unsounded(_BasicScraper):
url = 'http://www.casualvillain.com/Unsounded/'
stripUrl = url + 'comic/ch%s/ch%s_%s.html'