Python wrapper for the Slack Blocks API
Project description
slackblocks
What is it?
slackblocks
is a Python API for building messages in the fancy Slack Block Kit API.
Documentation
Full documentation is provided here.
Requirements
slackblocks
requires Python >= 3.8.
As of version 0.1.0 it has no dependencies outside the Python standard library.
Installation
pip install slackblocks
Basic Usage
from slackblocks import Message, SectionBlock
block = SectionBlock("Hello, world!")
message = Message(channel="#general", blocks=block)
message.json()
Will produce the following JSON string:
{
"channel": "#general",
"mrkdwn": true,
"blocks": [
{
"type": "section",
"block_id": "992ceb6b-9ad4-496b-b8e6-1bd8a632e8b3",
"text": {
"type": "mrkdwn",
"text": "Hello, world!"
}
}
]
}
Which can be sent as payload to the Slack message API HTTP endpoints.
Of more practical uses is the ability to unpack the objects directly into the Python Slack Client in order to send messages:
from os import environ
from slack import WebClient
from slackblocks import Message, SectionBlock
client = WebClient(token=environ["SLACK_API_TOKEN"])
block = SectionBlock("Hello, world!")
message = Message(channel="#general", blocks=block)
response = client.chat_postMessage(**message)
Note the **
operator in front of the message
object.
Can I use this in my project?
Yes, please do! The code is all open source and dual BSD-3.0 and MIT licensed (use what suits you best).
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
Built Distribution
Hashes for slackblocks-1.0.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 47eeb7396fda2e8a4851d170074692104cc742da92052c2d4c4c89262eb18625 |
|
MD5 | b1c7c261c000f24243b5e05d3a990f11 |
|
BLAKE2b-256 | 21e56effa6e0b98c13ad5dca5f417b33e47bd7190e06de4d7213e5ee5598acab |