https://github.com/maxpoletaev/slack-simplebot
Slack realtime framework
https://github.com/maxpoletaev/slack-simplebot
Last synced: 5 months ago
JSON representation
Slack realtime framework
- Host: GitHub
- URL: https://github.com/maxpoletaev/slack-simplebot
- Owner: maxpoletaev
- Created: 2015-07-14T08:03:54.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-09-10T15:45:22.000Z (almost 10 years ago)
- Last Synced: 2025-01-07T05:19:07.216Z (6 months ago)
- Language: Python
- Size: 102 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Slack SimpleBot
===============Slack bot engine for realtime protocol.
Examples
--------::
from slack_simplebot import SlackRtm
from slacker import Slackclient = Slack()
rtm = SlackRtm.from_slacker(client, debug=True)@rtm.command('hello')
def say_hello(event, *args):
rtm.send_mesage(...)