deco_slack notifies you if a method has completed successfully or not.
Project description
decoslack
decoslack notifies you via Slack if a method has completed successfully or not.
Description
- Notify Slack when a process starts, ends normally, or ends abnormally.
- Each notification can be set on or off.
Configurations
Environment variables to set
- SLACK_TOKEN
- Slack bot token that can be used with chat:write.public scope.
- SLACK_CHANNEL
- Channel name to be notified without # (like notify_xxx not #notify_xxx)
Example
from deco_slack import deco_slack @deco_slack( # These parameters are all optional start={ "text": "start text", "title": 'start', "color": "good" }, success={ "text": "success text", "title": 'success', "color": "good" }, error={ "title": 'error', "color": "danger", "stacktrace": True # Set True if you need stacktrace in a notification }, ) def test1(): print('test1') @deco_slack( success={ "text": "success text", "title": 'success', "color": "good" }, error={ "title": 'error', "color": "danger", "stacktrace": True }, ) def error1(): raise ValueError('error occured.')
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
deco_slack-0.0.1.tar.gz
(2.5 kB
view hashes)
Built Distribution
Close
Hashes for deco_slack-0.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d60fb3f0a08f60b4012dd12925b557a8349888d5667e7c450ef345bcd56e458 |
|
MD5 | 8646d8d25f7d82512ce9eee98828e9a8 |
|
BLAKE2-256 | 7f41d71ee7ff0e82cfac54f726e83cbc70138043a3393e3cdaabbf088be837ae |