Fix classic CatNine
This commit is contained in:
parent
095bcf4334
commit
02bcd6b741
1 changed files with 6 additions and 7 deletions
|
@ -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):
|
||||||
|
|
Loading…
Reference in a new issue