47 lines
1.4 KiB
Python
47 lines
1.4 KiB
Python
# SPDX-License-Identifier: MIT
|
|
# Copyright (C) 2019-2022 Tobias Gruetzmacher
|
|
# Copyright (C) 2019-2020 Daniel Ring
|
|
from ..scraper import ParserScraper
|
|
from .common import WordPressScraper
|
|
|
|
|
|
class StudioKhimera(ParserScraper):
|
|
imageSearch = '//figure[@class="gallery-item"]//img/@data-src'
|
|
prevSearch = '//a[@rel="prev"]'
|
|
|
|
def __init__(self, name, sub, last=None, adult=False, fixNames=False):
|
|
super().__init__('StudioKhimera/' + name)
|
|
|
|
self.baseUrl = 'https://%s.studiokhimera.com/' % sub
|
|
self.stripUrl = self.baseUrl + '%s/'
|
|
self.url = self.baseUrl + 'category/comicChapter/?latest'
|
|
|
|
self.multipleImagesPerStrip = True
|
|
|
|
if last:
|
|
self.last = True
|
|
self.url = self.stripUrl % last
|
|
self.endOfLife = True
|
|
|
|
if adult:
|
|
self.adult = True
|
|
|
|
def starter(self):
|
|
# Retrieve list of chapter links
|
|
chapterPage = self.getPage(self.baseUrl + 'archive/')
|
|
self.chapters = chapterPage.xpath('//main//a/@href')
|
|
self.firstStripUrl = self.chapters[0]
|
|
return self.chapters[-1]
|
|
|
|
def getPrevUrl(self, url, data):
|
|
# Select previous chapter from list
|
|
index = [i for i, ch in enumerate(self.chapters) if ch == url][0]
|
|
if index == 0:
|
|
return None
|
|
return self.chapters[index - 1]
|
|
|
|
@classmethod
|
|
def getmodules(cls):
|
|
return (
|
|
cls('Mousechievous', 'mousechievous'),
|
|
)
|