Skip to content
This repository was archived by the owner on Oct 1, 2023. It is now read-only.
/ kakao.py Public archive

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

License

Notifications You must be signed in to change notification settings

jhleekr/kakao.py

Folders and files

NameName
Last commit message
Last commit date

Latest commit

0f2ba8b · Nov 22, 2022

History

38 Commits
Nov 22, 2022
Jun 18, 2021
Jul 7, 2021
Oct 4, 2022
Mar 14, 2021
Apr 8, 2021
Mar 14, 2021
Mar 14, 2021
Oct 4, 2022
Apr 2, 2021
Mar 14, 2021
Oct 4, 2022
Apr 4, 2021

Repository files navigation

kakao.py

pypi

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

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()

Quick Start (Bot)

import kakao
from kakao.ext import commands
from kakao.ext.commands import Bot


@commands.command()
async def ping(ctx):
    await ctx.reply("pong")
    return


kakao.check_reg("LoginId", "LoginPw")
bot = Bot("/", LoginId="LoginId", LoginPw="LoginPw")
bot.add_command(ping)
bot.run()

Thanks to (Forked from)

ksaidev/KakaoBot (Commit 8df8cf3)

License

MIT Licence

About

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

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages