Skip to main content

Maid Manga Indonesia wrapper using Python BeautifulSoup.

Project description

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

Project details


Release history Release notifications | RSS feed

This version

1.1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

maid_manga_id-1.1.tar.gz (6.5 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page