Skip to main content

Super simple framework for Kakaotalk auto-reply bot based on aiohttp

Project description

Super simple framework for Kakaotalk auto-reply bot based on aiohttp

Example

From examples/simple_echo.py:

from kakaobot import KakaoBot

bot = KakaoBot()

@bot.on_message
async def handle_message(message, **args):
    if args['type'] == 'text':
        return 'Echoing: %s' % message
    else:
        return 'Cannot understand'

if __name__ == '__main__':
    bot.run(host='0.0.0.0', port=8080)

Nice, isn’t it?

Why not Flask or Django?

Because setting up full Flask/Django development environment is a bit of pain, especially for this kind of tiny application with no front-end view. It is well-known using default development server for Flask/Django is not the way you run your web application. But in aiohttp, it is. That’s why I chose aiohttp.

Project details


Download files

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

Source Distribution

python-kakaobot-0.0.2.tar.gz (3.0 kB view hashes)

Uploaded Source

Built Distribution

python_kakaobot-0.0.2-py3-none-any.whl (5.8 kB view hashes)

Uploaded Python 3

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