Simple Discord webhook wrapper
Project description
SimpleHook
SimpleHook is a minimalistic Python wrapper for Discord webhooks. It allows you to easily send messages, files, and embedded content to a Discord channel using just a few lines of code.
🔧 Features
- Send plain text messages
- Customize username and avatar
- Mention users or everyone/here
- Use text-to-speech
- Use embeds
- Upload files and images
- Create and send polls
🚀 Usage
Import and setup
from simplehook import SimpleHook # or from simplehook import SimpleHookAsync
# Initialize with your webhook URL
hook = SimpleHook("https://discord.com/api/webhooks/your_webhook_url")
# or
hook = SimpleHookAsync("https://discord.com/api/webhooks/your_webhook_url")
Core functions
# Send a simple message
hook.send_message("Hello, world!")
# Send a file
hook.send_file("example.txt")
# Send a message with a custom username, avatar, and text-to-speech
hook.send_customized_message(
message="I'm a bot!",
username="CoolBot",
avatar_url="https://i.imgur.com/your_avatar.png",
tts=True
)
# Mention a user by ID or everyone/here
hook.send_customized_message(message="Look here!", mention="123456789012345678") # user mention
hook.send_customized_message(message="Attention!", mention="everyone") # @everyone
Embed functions
# Send embedded files (max 10)
hook.send_embedded_files(paths=["img1.png", "img2.jpg"], message="Check these out!", color=53231)
# Send embedded message
hook.send_embedded_message(title="Hello!", color=321)
# Send embedded author message
hook.send_embedded_author(name="Paul", avatar_url="https://i.imgur.com/your_avatar.png")
# Send embedded URL with a custom title
hook.send_embedded_url(title="Google!", url="https://www.google.com")
# Send embedded image from the web
hook.send_embedded_url_image(url="https://i.imgur.com/your_image.png")
# Send embed message with multiple fields
hook.send_embedded_field(names=["Username", "Score", "Level"], values=["Player 1", "1500", "5"], inline=[True, True, False])
Poll function
# Create and send a poll
hook.create_poll(
question="What's your favorite color?",
answers=["Blue", "Red", "Green"],
emojis=["🔵", "🔴", "🟢"],
duration=48,
allow_multiselect=True
)
📦 Installation
pip install simplehook
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
simplehook-1.4.1.tar.gz
(7.3 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file simplehook-1.4.1.tar.gz.
File metadata
- Download URL: simplehook-1.4.1.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12b9dd3de7cdcd0201cbbda2350aa455945d64aed811f9885445a8cdab1f65ff
|
|
| MD5 |
96e59ee9179fb42b243245a249a14f5d
|
|
| BLAKE2b-256 |
97ec6a13cc17fd4db7fc546bb4632bf841440046038265ed698dbdb5457f0ce0
|
File details
Details for the file simplehook-1.4.1-py3-none-any.whl.
File metadata
- Download URL: simplehook-1.4.1-py3-none-any.whl
- Upload date:
- Size: 9.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.11.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
eccc25ff1cd52a0c6e711aa87c6dbb187497145184f7e7f9d9cd9971cd345c76
|
|
| MD5 |
39a4803695c2339522f25246f7192007
|
|
| BLAKE2b-256 |
1d28fb674ec26781c376c0a4946ab956cd06b0dc1d95a5c07350dbdf87c019bd
|