Fix some comics.
This commit is contained in:
parent
a99fbbcf45
commit
495b6d006d
1 changed files with 1 additions and 9 deletions
|
@ -34,14 +34,6 @@ class AbleAndBaker(_BasicScraper):
|
||||||
help = 'Index format: nnn'
|
help = 'Index format: nnn'
|
||||||
|
|
||||||
|
|
||||||
class AbominableCharlesChristopher(_BasicScraper):
|
|
||||||
url = 'http://www.abominable.cc/'
|
|
||||||
stripUrl = url + '%s'
|
|
||||||
imageSearch = compile(tagre("img", "src", r'(http://www\.abominable\.cc/comics/[^"]+)'))
|
|
||||||
prevSearch = compile(tagre("a", "href", r'([^"]+)')+"[^<]+Previous")
|
|
||||||
help = 'Index format: yyyy/mm/dd/comicname'
|
|
||||||
|
|
||||||
|
|
||||||
class AbsurdNotions(_BasicScraper):
|
class AbsurdNotions(_BasicScraper):
|
||||||
url = 'http://www.absurdnotions.org/page129.html'
|
url = 'http://www.absurdnotions.org/page129.html'
|
||||||
stripUrl = 'http://www.absurdnotions.org/page%s.html'
|
stripUrl = 'http://www.absurdnotions.org/page%s.html'
|
||||||
|
@ -54,7 +46,7 @@ class AbsurdNotions(_BasicScraper):
|
||||||
class AbstruseGoose(_BasicScraper):
|
class AbstruseGoose(_BasicScraper):
|
||||||
url = 'http://abstrusegoose.com/'
|
url = 'http://abstrusegoose.com/'
|
||||||
starter = bounceStarter(url,
|
starter = bounceStarter(url,
|
||||||
compile(tagre('a', 'href', r'(http://abstrusegoose\.com/\d+)')+"Next »</a>"))
|
compile(tagre('a', 'href', r'(http://abstrusegoose\.com/\d+)')+"Next »"))
|
||||||
stripUrl = url + '%s'
|
stripUrl = url + '%s'
|
||||||
imageSearch = compile(tagre('img', 'src', r'(http://abstrusegoose\.com/strips/[^<>"]+)'))
|
imageSearch = compile(tagre('img', 'src', r'(http://abstrusegoose\.com/strips/[^<>"]+)'))
|
||||||
prevSearch = compile(tagre('a', 'href', r'(http://abstrusegoose\.com/\d+)') + r'« Previous</a>')
|
prevSearch = compile(tagre('a', 'href', r'(http://abstrusegoose\.com/\d+)') + r'« Previous</a>')
|
||||||
|
|
Loading…
Reference in a new issue