Metadata-Version: 2.1
Name: kakao.py
Version: 0.2.0
Summary: Very simple kakaotalk LOCO/HTTP API protocol wrapper for python.
Home-page: https://github.com/jhleekr/kakao.py
Author: jhleekr
Author-email: jhlee@bfy.kr
License: UNKNOWN
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Description-Content-Type: text/markdown
Requires-Dist: pymongo
Requires-Dist: requests
Requires-Dist: pycryptodomex

kakao.py
=======
kakao.py is a very simple kakaotalk LOCO/HTTP API protocol wrapper for python.

Introduction
------------
Loco protocol compatible python library

This is discord.py style rewritten version of KakaoBot.

DO NOT USE IN ABUSING. ABUSING CAN CAUSE PERMANENT SERVICE RESTRICTION.

Quick Start
-------
```python
import kakao

class Myclass(kakao.Client):
    async def on_ready(self):
        print("Logged on")
    async def on_message(self, chat):
        if chat.message == "ping":
            await chat.reply("pong!")

kakao.check_reg("LoginId", "LoginPw")
client = Myclass("LoginId", "LoginPw")
client.run()
```

Thanks to (Forked from)
-------
ksaidev/KakaoBot (Commit 8df8cf3)

License
-------
MIT Licence


