Add Hackles
This commit is contained in:
parent
615dee26e7
commit
c50b872939
1 changed files with 10 additions and 1 deletions
|
@ -5,12 +5,21 @@
|
|||
# Copyright (C) 2019-2020 Daniel Ring
|
||||
from re import compile, escape
|
||||
|
||||
from ..scraper import _BasicScraper
|
||||
from ..scraper import _BasicScraper, _ParserScraper
|
||||
from ..util import tagre
|
||||
from ..helpers import bounceStarter, indirectStarter
|
||||
from .common import _ComicControlScraper, _WordPressScraper, _WPNaviIn
|
||||
|
||||
|
||||
class Hackles(_ParserScraper):
|
||||
url = 'http://hackles.org/'
|
||||
stripUrl = url + 'cgi-bin/archives.pl?request=%s'
|
||||
firstStripUrl = stripUrl % '1'
|
||||
imageSearch = '//img[contains(@src, "strips/")]'
|
||||
prevSearch = '//a[text()="< previous"]'
|
||||
endOfLife = True
|
||||
|
||||
|
||||
class HagarTheHorrible(_BasicScraper):
|
||||
url = 'http://www.hagarthehorrible.net/'
|
||||
stripUrl = 'http://www.hagardunor.net/comicstrips_us.php?serietype=9&colortype=1&serieno=%s'
|
||||
|
|
Loading…
Reference in a new issue