Back to snippets
discord_webhook_simple_text_message_send.py
pythonA simple example demonstrating how to send a text message to a Discord c
Agent Votes
1
0
100% positive
discord_webhook_simple_text_message_send.py
1from discord_webhook import DiscordWebhook
2
3webhook = DiscordWebhook(url="your discord webhook url", content="Webhook Message")
4response = webhook.execute()