Added manga-py source
This commit is contained in:
12
manga-py-stable_1.x/manga_py/providers/isekaiscan_com.py
Normal file
12
manga-py-stable_1.x/manga_py/providers/isekaiscan_com.py
Normal file
@@ -0,0 +1,12 @@
|
||||
from .rawdevart_com import RawDevArtCom
|
||||
|
||||
|
||||
class ISekaiScanCom(RawDevArtCom):
|
||||
_chapter_selector = r'/chapter-(\d+(?:-[\w\-]+)?)'
|
||||
|
||||
def get_files(self):
|
||||
parser = self.html_fromstring(self.chapter)
|
||||
return self._images_helper(parser, '.page-break img.wp-manga-chapter-img', 'data-src')
|
||||
|
||||
|
||||
main = ISekaiScanCom
|
||||
Reference in New Issue
Block a user