A simple starting point for creating a Beep Boop hostable, Python based Slack bot.
Visit Beep Boop to get the scoop on the the Beep Boop hosting platform. The Slack API documentation can be found here.
- You have already signed up with Beep Boop and have a local fork of this project.
- You have sufficient rights in your Slack team to configure a bot and generate/access a Slack API token.
Install dependencies (virtualenv is recommended.)
pip install -r requirements.txt
export SLACK_TOKEN=<YOUR SLACK TOKEN>; python rtmbot.py
Things are looking good if the console prints something like:
Connected <your bot name> to <your slack team> team at https://<your slack team>.slack.com.
If you want change the logging level, prepend export LOG_LEVEL=<your level>;
to the python rtmbot.py
command.
docker build -t starter-python-bot .
docker run --rm -it -e SLACK_TOKEN=<YOUR SLACK API TOKEN> starter-python-bot
If you have linked your local repo with the Beep Boop service (check here), changes pushed to the remote master branch will automatically deploy.
This code was forked from https://github.com/slackhq/python-rtmbot and utilizes the awesome https://github.com/slackhq/python-slackclient project by @rawdigits. Please see https://github.com/slackhq/python-rtmbot/blob/master/README.md for a description about the organization of this code and using the plugins architecture.
See the LICENSE file for license rights and limitations (MIT).