from slack import WebClient
from django.conf import settings

def send_slack_message(channel, text):
    client = WebClient(token=settings.SLACK_BOT_TOKEN)
    client.chat_postMessage(channel=channel, text=text)