Files
mangaDownloader/manga-py-stable_1.x/manga_py/providers/noranofansub_com.py
2019-12-14 22:33:14 -05:00

17 lines
417 B
Python

from .gomanga_co import GoMangaCo
class NoraNoFansubCom(GoMangaCo):
_name_re = r'\.com/(?:lector/)?(?:series/|read/)?([^/]+)/'
_content_str = '{}/{}/'
_chapters_selector = '.entry-content td a[href]'
def get_chapters(self):
return super().get_chapters()[::-1]
def get_cover(self) -> str:
return self._cover_from_content('.entry-content img.size-full')
main = NoraNoFansubCom