Answers for "send notification to slack python"

1

slack send message python

import os
import slack

slack_token = os.environ["SLACK_API_TOKEN"]
client = slack.WebClient(token=slack_token)

client.chat_postMessage(
  channel="C0XXXXXX",
  text="Hello from your app! :tada:"
)
Posted by: Guest on January-11-2020
0

slack notification pytthon

import os

import slack_notifications as slack


slack.ACCESS_TOKEN = 'xxx'


slack.send_notify('channel-name', username='Bot', text='@channel This is test message')
Posted by: Guest on May-24-2021

Code answers related to "send notification to slack python"

Python Answers by Framework

Browse Popular Code Answers by Language