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

13 lines
276 B
Python

from .manganelo_com import MangaNeloCom
class MangaBatCom(MangaNeloCom):
def get_main_content(self):
return self.http_get(self.get_url())
def get_manga_name(self) -> str:
return self.text_content(self.content, 'h1.entry-title')
main = MangaBatCom