slack-webhook is a python client library for slack api Incoming Webhooks on Python 3.6 and above.
Project description
slack-webhook
slack-webhook is a python client library for slack api Incoming Webhooks on Python 3.6 and above.
Installation
$ pip install slack-webhook
Usage
basic
from slack_webhook import Slack
slack = Slack(url='https://hooks.slack.com/services/T00/B00/XXX')
slack.post(text="Hello, world.")
advanced
from slack_webhook import Slack
slack = Slack(url='https://hooks.slack.com/services/T00/B00/XXX')
slack.post(text="Robert DeSoto added a new task",
attachments = [{
"fallback": "Plan a vacation",
"author_name": "Owner: rdesoto",
"title": "Plan a vacation",
"text": "I've been working too hard, it's time for a break.",
"actions": [
{
"name": "action",
"type": "button",
"text": "Complete this task",
"style": "",
"value": "complete"
},
{
"name": "tags_list",
"type": "select",
"text": "Add a tag...",
"data_source": "static",
"options": [
{
"text": "Launch Blocking",
"value": "launch-blocking"
},
{
"text": "Enhancement",
"value": "enhancement"
},
{
"text": "Bug",
"value": "bug"
}
]
}
]
}]
)
Getting started
For help getting started with Incoming Webhooks, view our online documentation.
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
slack-webhook-1.0.7.tar.gz
(3.3 kB
view details)
Built Distribution
File details
Details for the file slack-webhook-1.0.7.tar.gz
.
File metadata
- Download URL: slack-webhook-1.0.7.tar.gz
- Upload date:
- Size: 3.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78f3cae5f7a5669ba7cfd15f5c98454c539eeb5d5498b22e23fd9e803a8b6215 |
|
MD5 | 5c0c38efa35c261f7b1486561dad8c45 |
|
BLAKE2b-256 | d8b8e66a00f989b580865c0aa16c320267d4e8be17a32930faaf868ebcdcd293 |
File details
Details for the file slack_webhook-1.0.7-py3-none-any.whl
.
File metadata
- Download URL: slack_webhook-1.0.7-py3-none-any.whl
- Upload date:
- Size: 3.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.7.1 importlib_metadata/4.8.2 pkginfo/1.8.2 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.10.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 56ce0dd5d2cf48758201670c95384e2d132c0e9eb68e1a5d7348ea99adcc201a |
|
MD5 | ac522eeea27167122fb1442625e05498 |
|
BLAKE2b-256 | c0e16514f89cf7aa66c3ba7736e766a45e93141eaf520fdc50983ad5cd5eed77 |