Simple Slack library for sending chat messages to slack from Python on Google App Engine
###Setup
- Copy the slack folder to your appengine project directory.
- Activate
deferred: onin yourapp.yamlfile builtins.
app.yaml
builtins:
- deferred: on
Sending a message
import slack
...
slack.post_to_slack(channel='#general', message='Hello World!', username='gaebot')