Add UnlikeMinerva
This commit is contained in:
parent
fcdbd563a2
commit
be6a6722b5
1 changed files with 13 additions and 1 deletions
|
@ -7,7 +7,7 @@ from __future__ import absolute_import, division, print_function
|
||||||
|
|
||||||
from re import compile, escape
|
from re import compile, escape
|
||||||
|
|
||||||
from ..scraper import _BasicScraper
|
from ..scraper import _BasicScraper, _ParserScraper
|
||||||
from ..helpers import indirectStarter
|
from ..helpers import indirectStarter
|
||||||
from ..util import tagre
|
from ..util import tagre
|
||||||
from .common import _WordPressScraper, _WPNavi
|
from .common import _WordPressScraper, _WPNavi
|
||||||
|
@ -36,6 +36,18 @@ class UnicornJelly(_BasicScraper):
|
||||||
help = 'Index format: nnn'
|
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):
|
class Unsounded(_BasicScraper):
|
||||||
url = 'http://www.casualvillain.com/Unsounded/'
|
url = 'http://www.casualvillain.com/Unsounded/'
|
||||||
stripUrl = url + 'comic/ch%s/ch%s_%s.html'
|
stripUrl = url + 'comic/ch%s/ch%s_%s.html'
|
||||||
|
|
Loading…
Reference in a new issue