Add Kaspall
This commit is contained in:
parent
379f963442
commit
0648bbadc9
1 changed files with 10 additions and 1 deletions
|
@ -7,11 +7,20 @@ from __future__ import absolute_import, division, print_function
|
|||
|
||||
from re import compile, escape, IGNORECASE
|
||||
|
||||
from ..scraper import _BasicScraper
|
||||
from ..scraper import _BasicScraper, _ParserScraper
|
||||
from ..util import tagre
|
||||
from .common import _ComicControlScraper, _WPNavi
|
||||
|
||||
|
||||
class Kaspall(_ParserScraper):
|
||||
stripUrl = 'http://www.kaspall.com/comic/%s'
|
||||
url = stripUrl % '2015/10/11'
|
||||
firstStripUrl = '2004/08/05'
|
||||
imageSearch = '//img[contains(@src, "comics/")]'
|
||||
prevSearch = '//a[./img[contains(@src, "prev_comic")]]'
|
||||
endOfLife = True
|
||||
|
||||
|
||||
class KevinAndKell(_BasicScraper):
|
||||
url = 'http://www.kevinandkell.com/'
|
||||
stripUrl = url + '%s/kk%s%s.html'
|
||||
|
|
Loading…
Reference in a new issue