sandesh - a simple app to send messages on slack
Project description
+-+-+-+-+-+-+-+ |s|a|n|d|e|s|h| +-+-+-+-+-+-+-+
sandesh (संदेश) in Hindi means message. This is a simple python library to send messages to Slack using webhook urls.
Installing
You can install the bleeding edge version of this library by doing:
git clone git@github.com:abhishekkrthakur/sandesh.git
cd sandesh
python setup.py install
Or from pip:
pip install sandesh
Usage
Using sandesh is very easy.
First of all you need a webhook. You can either keep this webhook as environment variable: SANDESH_WEBHOOK
Or you can send it in the send
function: sandesh.send(msg, webhook="XXXXX")
.
I like to keep it as environment variable so that I dont accidently push it to GitHub ;)
You can send a message to the provided webhook by doing:
import sandesh
loss = 0.15
msg = f"Training loss was {loss}"
sandesh.send(msg)
sandesh also supports dictionaries, OrderedDict and defaultdict. An example for OrderedDict is provided below:
import collections
import sandesh
log = collections.OrderedDict([
('training_epoch', 5),
('loss', 0.08)
])
sandesh.send(log)
If you want to go fancy, take a look at custom messages for slack. You can create your own custom message and send using:
import sandesh
# data = Fancy slack json
sandesh.send(data, use_raw=True)
This is a simple app that I use to send me notifications of my training processes from home workstation or AWS/GCP machines.
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 Distributions
Built Distribution
File details
Details for the file sandesh-0.3.2-py3-none-any.whl
.
File metadata
- Download URL: sandesh-0.3.2-py3-none-any.whl
- Upload date:
- Size: 3.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 33e5c35e40ca7c879c88180b5bd222d0a31a557e193cfbae012be95b2a7e13e0 |
|
MD5 | f1643b62b6745d3288c2cbd639eb374e |
|
BLAKE2b-256 | 0b3ecdacda5a2fcf690860edb37c15603d82431bdedeb11d9ee36dd171473898 |