Added manga-py source
This commit is contained in:
42
manga-py-stable_1.x/manga_py/providers/shogakukan_co_jp.py
Normal file
42
manga-py-stable_1.x/manga_py/providers/shogakukan_co_jp.py
Normal file
@@ -0,0 +1,42 @@
|
||||
from .helpers.std import Std
|
||||
from .shogakukan_tameshiyo_me import ShogakukanTameshiyoMe
|
||||
|
||||
|
||||
class ShogakukanCoJp(ShogakukanTameshiyoMe, Std):
|
||||
|
||||
def get_archive_name(self) -> str:
|
||||
return self.normal_arc_name([
|
||||
self.get_chapter_index(),
|
||||
self.re.search(r'/(\d+)', self.chapter).group(1)
|
||||
])
|
||||
|
||||
def get_chapter_index(self) -> str:
|
||||
return str(self.chapter_id)
|
||||
|
||||
def get_main_content(self):
|
||||
types = [
|
||||
'magazines/series',
|
||||
'books'
|
||||
]
|
||||
re = r'(/(?:{})/\d+)'.format('|'.join(types))
|
||||
url = self.re.search(re, self.get_url()).group(1)
|
||||
return self.http_get(self.domain + url)
|
||||
|
||||
def get_manga_name(self) -> str:
|
||||
return self._get_name(r'/(?:series|books)/(\d+)')
|
||||
|
||||
def get_chapters(self):
|
||||
return self._elements('a[href*="shogakukan.tameshiyo.me"]') # todo: watch this
|
||||
|
||||
def get_cover(self) -> str:
|
||||
img = self._cover_from_content('.mainimg01')
|
||||
if not img:
|
||||
img = self._cover_from_content('.image01 > img', 'data-original')
|
||||
return img
|
||||
|
||||
def book_meta(self) -> dict:
|
||||
# todo meta
|
||||
pass
|
||||
|
||||
|
||||
main = ShogakukanCoJp
|
||||
Reference in New Issue
Block a user