Fix ASofterWorld
This commit is contained in:
parent
10808a7bc1
commit
a99fbbcf45
1 changed files with 2 additions and 1 deletions
|
@ -20,7 +20,8 @@ class ALessonIsLearned(_BasicScraper):
|
||||||
class ASofterWorld(_BasicScraper):
|
class ASofterWorld(_BasicScraper):
|
||||||
url = 'http://www.asofterworld.com/'
|
url = 'http://www.asofterworld.com/'
|
||||||
stripUrl = url + 'index.php?id=%s'
|
stripUrl = url + 'index.php?id=%s'
|
||||||
imageSearch = compile(tagre("img", "src", r'(http://www\.asofterworld\.com/clean/[^"]+)'))
|
imageSearch = compile(tagre("p", "id", "thecomic") + r'\s*' +
|
||||||
|
tagre("img", "src", r'(http://www\.asofterworld\.com/clean/[^"]+)'))
|
||||||
prevSearch = compile(tagre("a", "href", "(index\.php\?id=\d+)")+'< back')
|
prevSearch = compile(tagre("a", "href", "(index\.php\?id=\d+)")+'< back')
|
||||||
help = 'Index format: n (unpadded)'
|
help = 'Index format: n (unpadded)'
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue