Fix classic CatNine

This commit is contained in:
Tobias Gruetzmacher 2022-06-05 18:31:55 +02:00
parent 095bcf4334
commit 02bcd6b741

View file

@ -154,17 +154,16 @@ class CatenaManor(_ParserScraper):
class CatNine(_WordPressScraper): class CatNine(_WordPressScraper):
url = 'http://classic.cat-nine.net/' url = 'https://classic.cat-nine.net/'
stripUrl = url + 'comic/%s' firstStripUrl = url + 'comic/day-first'
firstStripUrl = stripUrl % 'day-first' imageSearch = '//div[@id="comic"]//img/@data-src-img'
endOfLife = True endOfLife = True
class CatNineTakeTwo(CatNine): class CatNineTakeTwo(_WordPressScraper):
name = 'CatNine/TakeTwo' name = 'CatNine/TakeTwo'
url = 'http://cat-nine.net/' url = 'https://cat-nine.net/'
stripUrl = url + 'comic/%s/' firstStripUrl = url + 'comic/episode-1/1-first-day-for-everything/'
firstStripUrl = stripUrl % 'episode-1/1-first-day-for-everything'
class CatsAndCameras(_WordPressScraper): class CatsAndCameras(_WordPressScraper):