fixing neko the kitty
This commit is contained in:
parent
f75fc62e84
commit
3bbf2d5c23
1 changed files with 5 additions and 10 deletions
|
@ -3,8 +3,8 @@
|
||||||
# Copyright (C) 2012-2014 Bastian Kleineidam
|
# Copyright (C) 2012-2014 Bastian Kleineidam
|
||||||
|
|
||||||
from re import compile, escape
|
from re import compile, escape
|
||||||
from ..scraper import _BasicScraper
|
from ..scraper import _BasicScraper, _ParserScraper
|
||||||
from ..helpers import indirectStarter, bounceStarter
|
from ..helpers import indirectStarter
|
||||||
from ..util import tagre
|
from ..util import tagre
|
||||||
|
|
||||||
|
|
||||||
|
@ -101,17 +101,12 @@ class NekkoAndJoruba(_BasicScraper):
|
||||||
help = 'Index format: nnn'
|
help = 'Index format: nnn'
|
||||||
|
|
||||||
|
|
||||||
class NekoTheKitty(_BasicScraper):
|
class NekoTheKitty(_ParserScraper):
|
||||||
url = 'http://www.nekothekitty.net/'
|
url = 'http://www.nekothekitty.net/'
|
||||||
rurl = escape(url)
|
|
||||||
stripUrl = url + 'comics/%s'
|
stripUrl = url + 'comics/%s'
|
||||||
firstStripUrl = stripUrl % '936393/001-video-games'
|
firstStripUrl = stripUrl % '936393/001-video-games'
|
||||||
starter = bounceStarter(url, compile(tagre("a", "href", r'(%scomics/[^"]+)' % rurl) +
|
imageSearch = '//a[@id="comic_image"]/img'
|
||||||
tagre("img", "src", r'%sfiles/smallnext\.png' % rurl)))
|
prevSearch = '//a[text()="<-"]'
|
||||||
imageSearch = compile(tagre("img", "src", r'(http://(?:img\d+|www)\.smackjeeves\.com/images/uploaded/comics/[^"]+)'))
|
|
||||||
prevSearch = compile(tagre("a", "href", r'(%scomics/[^"]+)' % rurl) +
|
|
||||||
tagre("img", "src", r'%sfiles/smallprev\.png' % rurl))
|
|
||||||
help = 'Index format: n/n-name'
|
|
||||||
|
|
||||||
|
|
||||||
class NichtLustig(_BasicScraper):
|
class NichtLustig(_BasicScraper):
|
||||||
|
|
Loading…
Reference in a new issue