Add Guardia
This commit is contained in:
parent
70223bd38f
commit
b230ef31d8
1 changed files with 14 additions and 1 deletions
|
@ -8,7 +8,7 @@ from __future__ import absolute_import, division, print_function
|
|||
from re import compile, escape
|
||||
|
||||
from ..scraper import _BasicScraper, _ParserScraper
|
||||
from ..helpers import indirectStarter
|
||||
from ..helpers import bounceStarter, indirectStarter
|
||||
from ..util import tagre
|
||||
from .common import _ComicControlScraper, _WordPressScraper, _WPNavi
|
||||
|
||||
|
@ -160,6 +160,19 @@ class GrrlPower(_WordPressScraper):
|
|||
firstStripUrl = stripUrl % 'gp0001'
|
||||
|
||||
|
||||
class Guardia(_ParserScraper):
|
||||
url = 'https://ssp-comics.com/comics/Guardia/'
|
||||
stripUrl = url + '?page=%s'
|
||||
firstStripUrl = stripUrl % '1'
|
||||
imageSearch = '//img[contains(@src, "comics/Guardia/")]'
|
||||
prevSearch = '//a[./button[@id="prevButton"]]'
|
||||
nextSearch = '//a[./button[@id="nextButton"]]'
|
||||
starter = bounceStarter
|
||||
|
||||
def namer(self, imageUrl, pageUrl):
|
||||
return pageUrl.rsplit('=', 1)[-1] + '.' + imageUrl.rsplit('.', 1)[-1]
|
||||
|
||||
|
||||
class GUComics(_BasicScraper):
|
||||
url = 'http://www.gucomics.com/'
|
||||
stripUrl = url + '%s'
|
||||
|
|
Loading…
Reference in a new issue