RoboSlack is a Slack bot python framework that allows you to create simple enough bots
- Regular expression matching
- RTM integration
- Threaded
- Conversational
- Tests
NOTE: RoboSlack requires python version 3.4+
pip install roboslack
There's just one configuration parameter, SLACK_API_KEY
environment variable, setting that to the appropriate
Slack token key will allow you to connect to the RTM API for Slack, for more information on that, visit Slack's
documentation
To create a simple bot, you could use this snippet, which will allow you to greet the bot.
from roboslack import RoboSlack
bot = RoboSlack()
def reply_to_hi(event, *args):
bot.say("hi dude", event)
bot.on(
'mention',
'^hi',
reply_to_hi
)
bot.on(
'direct_message',
'^hi',
reply_to_hi
)
bot.run()
To listen to different types of messages you can choose from mention
and direct_message
.
You can check out an example of how to use roboslack framework in the examples folder.
To develop the bot is as easy as having Docker and docker-compose installed, then typing make
will start the development environment for the bot. (Requires SLACK_API_KEY
environment variable) set in your current terminal.
MIT License
Copyright (c) 2016 Marc Lopez Rubio
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.