Discord-webhook

Latest version: v1.4.1

Safety actively analyzes 724206 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 5 of 5

0.5.0

🎉 Features

- `.execute()` now returns the webhook response

0.4.1

🩹 Fixes

- convert `DiscordEmbed` to `dict` because `DiscordEmbed` is not JSON serializable

0.4.0

- import from package instead of submodule

🎉 Features

- send files and message/embed simultaneously

0.3.0

🎉 Features

If you have to use a proxy, you can now add your proxies with the `proxies` parameter

python
from discord_webhook.webhook import DiscordWebhook

proxies = {
'http': 'http://10.10.1.10:3128',
'https': 'http://10.10.1.10:1080',
}
DiscordWebhook(url="webhook URL", proxies=proxies)


or with the `set_proxies()` function

python
from discord_webhook.webhook import DiscordWebhook

proxies = {
'http': 'http://10.10.1.10:3128',
'https': 'http://10.10.1.10:1080',
}
webhook = DiscordWebhook(url="webhook URL")
webhook.set_proxies(proxies)

0.2.0

🎉 Features

- send webhook with files

0.1.0

🎉 Features

- send basic webhook
- send webhook with embedded content

Page 5 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.