Added manga-py source
This commit is contained in:
18
manga-py-stable_1.x/manga_py/providers/_3asq_org.py
Normal file
18
manga-py-stable_1.x/manga_py/providers/_3asq_org.py
Normal file
@@ -0,0 +1,18 @@
|
||||
from .rawdevart_com import RawDevArtCom
|
||||
|
||||
|
||||
class ThreeAsqOrg(RawDevArtCom):
|
||||
|
||||
def get_chapter_index(self) -> str:
|
||||
return self.chapter.split('/')[-2]
|
||||
|
||||
def get_files(self):
|
||||
parser = self.html_fromstring(self.chapter)
|
||||
return self._images_helper(parser, 'img.wp-manga-chapter-img')
|
||||
|
||||
@property
|
||||
def chapter(self):
|
||||
return super().chapter + '?style=list'
|
||||
|
||||
|
||||
main = ThreeAsqOrg
|
||||
Reference in New Issue
Block a user