Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/maxpoletaev/slack-simplebot

Slack realtime framework
https://github.com/maxpoletaev/slack-simplebot

Last synced: about 1 month ago
JSON representation

Slack realtime framework

Awesome Lists containing this project

README

        

Slack SimpleBot
===============

Slack bot engine for realtime protocol.

Examples
--------

::

from slack_simplebot import SlackRtm
from slacker import Slack

client = Slack()
rtm = SlackRtm.from_slacker(client, debug=True)

@rtm.command('hello')
def say_hello(event, *args):
rtm.send_mesage(...)