fixed MysteriesOfTheArcana
This commit is contained in:
parent
3ea8236224
commit
9be6f613e4
1 changed files with 3 additions and 6 deletions
|
@ -176,11 +176,8 @@ class MyCartoons(_BasicScraper):
|
||||||
lang = 'de'
|
lang = 'de'
|
||||||
|
|
||||||
|
|
||||||
class MysteriesOfTheArcana(_BasicScraper):
|
class MysteriesOfTheArcana(_ParserScraper):
|
||||||
url = 'http://mysteriesofthearcana.com/'
|
url = 'http://mysteriesofthearcana.com/'
|
||||||
rurl = escape(url)
|
imageSearch = '//div[@id="comic"]//img'
|
||||||
stripUrl = url + 'index.php?action=comics&cid=%s'
|
prevSearch = '//a[@class="navprevious"]'
|
||||||
firstStripUrl = stripUrl % '1'
|
|
||||||
imageSearch = compile(tagre("img", "src", r'(%simage\.php\?type=com&i=[^"]+)' % rurl))
|
|
||||||
prevSearch = compile(tagre("a", "href", r'(/index\.php[^"]+)', after="navprevious"))
|
|
||||||
help = 'Index format: n (unpadded)'
|
help = 'Index format: n (unpadded)'
|
||||||
|
|
Loading…
Reference in a new issue