27 lines
729 B
Python
27 lines
729 B
Python
from .gomanga_co import GoMangaCo
|
|
from .helpers.std import Std
|
|
|
|
|
|
class KomikIdCom(GoMangaCo, Std):
|
|
_name_re = '/manga/([^/]+)'
|
|
_content_str = '{}/manga/{}/'
|
|
_chapters_selector = '.animeinfo ul > li span a:not([rel])'
|
|
|
|
def get_chapter_index(self) -> str:
|
|
re = r'/[^/]+\.\w+/[\w-]+?-(\d+)(?:[^\d](\d+))?'
|
|
idx = self.re.search(re, self.chapter)
|
|
return self._join_groups(idx.groups())
|
|
|
|
def get_files(self):
|
|
parser = self.html_fromstring(self.chapter)
|
|
return self._images_helper(parser, '#readerarea img')
|
|
|
|
def get_cover(self) -> str:
|
|
return self._cover_from_content('.attachment-post-thumbnail')
|
|
|
|
def prepare_cookies(self):
|
|
pass
|
|
|
|
|
|
main = KomikIdCom
|