Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 370 Bytes

README.md

File metadata and controls

17 lines (14 loc) · 370 Bytes

Slack-Notification

A simple way to send slack notification

Install

pip install -i slack-notification

Usage

from slack_notification.slack_notification import SlackNotification

CHANNEL = "YOUR_CHANNEL" #example TXXXXXXXXXX/BXXXXXXXX/NXXXXXXXXXX"
slack = SlackNotification(CHANNEL)
message = "YOUR_MESSAGE"
response = slack.notify(message)