Skip to main content

Simple Discord webhook wrapper

Project description

⚠️ Be Aware

There are cloned, forked, or unofficial versions of this repository circulating online that contain malware and may compromise your system. This repository is the official source, as verified by its complete commit history, active maintenance, and updates directly from the original author.

If you are unsure whether you're using the correct version, always refer to:
👉 Official Repository

Using unofficial or outdated copies may result in missing features, bugs, or security issues not present in the official version.

DO NOT download any .zip files from unofficial sources!

This library is officially published on PyPi — installing via PyPi is the preferred and safest way to acquire it.

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.

PyPI Python License Size

🔧 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"], values=["Player", "150"], inline=[True, True])

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


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.4.tar.gz (106.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

simplehook-1.4.4-py3-none-any.whl (112.1 kB view details)

Uploaded Python 3

File details

Details for the file simplehook-1.4.4.tar.gz.

File metadata

  • Download URL: simplehook-1.4.4.tar.gz
  • Upload date:
  • Size: 106.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for simplehook-1.4.4.tar.gz
Algorithm Hash digest
SHA256 2a756e94f5aaa25031ab76557bd5b8264a5280585025e1e5b822c161c8024452
MD5 d779708140292afb95fb544da47fd811
BLAKE2b-256 8905dca9a9b26fe5421a8dd73a5ba0121d245c7d1fab5cbe2f13955a5ed083ac

See more details on using hashes here.

File details

Details for the file simplehook-1.4.4-py3-none-any.whl.

File metadata

  • Download URL: simplehook-1.4.4-py3-none-any.whl
  • Upload date:
  • Size: 112.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for simplehook-1.4.4-py3-none-any.whl
Algorithm Hash digest
SHA256 bc8aedce2cccb586b0d354ada40f6998335d5a919947bd1d9c6062954408cf20
MD5 e8278f679544479052a17d7d6eeb960b
BLAKE2b-256 8208c70a55344de9c9717c1063e64a5e7cefcde201d0e3991e7dd84de20d481b

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page