Skip to content

Slack

To send messages to Slack channels or users, you first need to create a Slack App and configure an Incoming Webhook.

Go to the Slack API Apps page and click Create New App → From scratch.

Choose a name for the app and select the Slack workspace where it will be installed.

In the app settings, navigate to Incoming Webhooks and enable them.

Click Add New Webhook to Workspace and choose the channel you want the app to post to.

Copy the Webhook URL — you’ll use this to send messages.

For more information, refer to the official Slack Webhook documentation.

Example Webhook URL

https://hooks.slack.com/services/T00000000/B00000000/XXXXXXXXXXXXXXXXXXXXXXXX

Once you have your webhook URL, you can post messages to Slack using a simple HTTP POST request.

import polars as pl
import requests
import os
import json
SLACK_WEBHOOK_URL = os.environ["SLACK_WEBHOOK_URL"]
def send_slack_message(message, channel=None):
payload = {
"text": message
}
if channel:
payload["channel"] = channel
response = requests.post(
SLACK_WEBHOOK_URL,
data=json.dumps(payload),
headers={"Content-Type": "application/json"}
)
print(response.text)
return response.json()
def transform():
text = """
⚠️ *New Alert!*
"""
response = send_slack_message(text)
return pl.LazyFrame(response)
Formatting and examples

Slack supports basic formatting using Markdown-like syntax:

  • *bold*bold
  • _italic_italic
  • `code`code
  • <https://example.com|Custom Link> → Custom Link

You can also include emojis and attachments for richer notifications.