Add Hellkats

This commit is contained in:
Techwolf 2023-06-07 00:05:18 -07:00 committed by Tobias Gruetzmacher
parent 540163b9ee
commit 22865e0a1b
No known key found for this signature in database

View file

@ -68,6 +68,20 @@ class HeadlessBliss(ComicControlScraper):
url = 'http://headlessbliss.com/' url = 'http://headlessbliss.com/'
class Hellkats(ParserScraper):
url = 'https://poecatcomix.com/hellkatscomic/'
stripUrl = url + '%s/'
firstStripUrl = stripUrl % 'hellkats-issue-1-cover'
imageSearch = '//img[@class="scale-with-grid wp-post-image"]'
prevSearch = '//a[d:class("fixed-nav-prev")]'
latestSearch = '//div[@class="post-title"]//a'
starter = indirectStarter
adult = True
def namer(self, imageUrl, pageUrl):
return pageUrl.rsplit('/', 2)[1] + '.' + imageUrl.rsplit('.', 1)[-1]
class HeyFox(WordPressScraper): class HeyFox(WordPressScraper):
url = 'http://www.steamclaw.com/heyfox/' url = 'http://www.steamclaw.com/heyfox/'
stripUrl = url + 'archives/comic/%s' stripUrl = url + 'archives/comic/%s'