Fix Misfile, add Misfile/HellHigh
This commit is contained in:
parent
6f47be87f7
commit
23afbd1fb7
1 changed files with 12 additions and 6 deletions
|
@ -134,13 +134,19 @@ class Metacarpolis(_ComicControlScraper):
|
||||||
url = 'http://www.metacarpolis.com'
|
url = 'http://www.metacarpolis.com'
|
||||||
|
|
||||||
|
|
||||||
class Misfile(_BasicScraper):
|
class Misfile(_ComicControlScraper):
|
||||||
url = 'http://www.misfile.com/'
|
url = 'http://www.misfile.com/misfile/'
|
||||||
stripUrl = url + '?date=%s'
|
stripUrl = url + '%s'
|
||||||
firstStripUrl = stripUrl % '2004-02-22'
|
firstStripUrl = stripUrl % '2004-02-22'
|
||||||
imageSearch = compile(tagre("img", "src", r"(comics/[^']+)", quote="'"))
|
endOfLife = True
|
||||||
prevSearch = compile(tagre("link", "href", r"([^']+)", quote="'",
|
help = 'Index format: yyyy-mm-dd'
|
||||||
before="Previous"))
|
|
||||||
|
|
||||||
|
class MisfileHellHigh(Misfile):
|
||||||
|
name = 'Misfile/HellHigh'
|
||||||
|
url = 'http://www.misfile.com/hell-high/'
|
||||||
|
stripUrl = url + '%s'
|
||||||
|
firstStripUrl = stripUrl % '2019-08-29'
|
||||||
help = 'Index format: yyyy-mm-dd'
|
help = 'Index format: yyyy-mm-dd'
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue