added KiwiBlitz
This commit is contained in:
parent
fe22df5e5b
commit
2201c9877a
1 changed files with 6 additions and 1 deletions
|
@ -3,7 +3,7 @@
|
|||
# Copyright (C) 2012-2014 Bastian Kleineidam
|
||||
|
||||
from re import compile, escape, IGNORECASE
|
||||
from ..scraper import _BasicScraper
|
||||
from ..scraper import _BasicScraper, _ParserScraper
|
||||
from ..util import tagre
|
||||
from ..helpers import indirectStarter
|
||||
|
||||
|
@ -47,6 +47,11 @@ class KillerKomics(_BasicScraper):
|
|||
prevSearch = compile(r'<div id="precedent"><a href="(.+?)"')
|
||||
help = 'Index format: strip-name'
|
||||
|
||||
class KiwiBlitz(_ParserScraper):
|
||||
url = 'http://www.kiwiblitz.com/'
|
||||
imageSearch = '//div[@id="cc-comicbody"]//img'
|
||||
prevSearch = '//a[@rel="prev"]'
|
||||
|
||||
|
||||
# XXX disallowed by robots.txt
|
||||
class _Kofightclub(_BasicScraper):
|
||||
|
|
Loading…
Reference in a new issue