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
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 details)
File details
Details for the file maid_manga_id-1.1.tar.gz
.
File metadata
- Download URL: maid_manga_id-1.1.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.5.0 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.61.1 CPython/3.7.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f80dee1cec445a08e9067bda3d3ba3b76ba8bc9d8b08c9c24efb4a85337edabb |
|
MD5 | 32a9df4ac3f824b5ffac088d6e33ae4b |
|
BLAKE2b-256 | 866fc5a491c9db8429fdb4b1b197557ca08dd0f8fa7c189f1fe947149ec78f34 |