Added manga-py source
This commit is contained in:
16
manga-py-stable_1.x/manga_py/providers/noranofansub_com.py
Normal file
16
manga-py-stable_1.x/manga_py/providers/noranofansub_com.py
Normal file
@@ -0,0 +1,16 @@
|
||||
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
|
||||
Reference in New Issue
Block a user