Skip to content

Maid Manga Indonesia wrapper using Python BeautifulSoup

License

Notifications You must be signed in to change notification settings

zYxDevs/maid_manga_id

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Maid Manga ID Wrapper

Maid Manga Indonesia wrapper using Python BeautifulSoup. You can contact me on LINE or Telegram.

Instalation

$ pip install maid_manga_id --upgrade

or

$ python setup.py install

Features

  • Search manga
  • Get manga
  • Download manga for each chapter (still development)
  • and more.

Usage

Get manga information

from maid_manga import MaidManga
import asyncio

if __name__ == '__main__':
    maid = MaidManga()

    async def main():
        manga = await maid.info('kanojo mo kanojo')
        print(manga)

    asyncio.get_event_loop().run_until_complete(main())

Search manga

from maid_manga import MaidManga
import asyncio

if __name__ == '__main__':
    maid = MaidManga()

    async def main():
        manga = await maid.search('kanojo mo kanojo')
        print(manga)

    asyncio.get_event_loop().run_until_complete(main())

Download manga each chapter

from maid_manga import MaidManga
import asyncio

if __name__ == '__main__':
    maid = MaidManga()

    async def main():
        manga = await maid.info('kanojo mo kanojo')
        chapter = 1
        print(await manga.chapters[chapter-1].download())

    asyncio.get_event_loop().run_until_complete(main())

Release note:

This project is under development, any meaningful pull request are opened.

DISCLAIMER:

OOP (Object Oriented Programming) design is inspired from this library

About

Maid Manga Indonesia wrapper using Python BeautifulSoup

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%