A powerful webhook handler for Discord and Slack
Project description
HookMe
A powerful and easy-to-use Python package for handling Discord and Slack webhooks.
Installation
Usage
Sending a Simple Message
from hookme import DiscordWebhook
webhook_url = "YOUR_DISCORD_WEBHOOK_URL"
webhook = DiscordWebhook(webhook_url)
response = webhook.send_message("Hello, Discord!")
print(response.status_code)
Sending an Embedded Message
from hookme import DiscordWebhook
webhook_url = "YOUR_DISCORD_WEBHOOK_URL"
webhook = DiscordWebhook(webhook_url)
embed = {
"title": "Sample Embed",
"description": "This is an embedded message",
"color": 0x00ff00
}
response = webhook.send_embed(
title=embed["title"],
description=embed["description"],
color=embed["color"]
)
print(response.status_code)
Sending a File
from hookme import DiscordWebhook
webhook_url = "YOUR_DISCORD_WEBHOOK_URL"
webhook = DiscordWebhook(webhook_url)
file_path = "path/to/your/file.txt"
response = webhook.send_file(file_path, content="Here is a file")
print(response.status_code)
Scheduling a Message
from hookme.automated_webhook import AutomatedWebhook
webhook_url = "YOUR_DISCORD_WEBHOOK_URL"
automated_webhook = AutomatedWebhook(webhook_url)
# Schedule a message to be sent every hour
schedule_id = automated_webhook.schedule_message(
schedule_type="interval",
schedule_value="1h",
content="This is a scheduled message"
)
# Start the scheduler
automated_webhook.start_scheduler()
Sending Multiple Files with an Embedded Message
from hookme import DiscordWebhook
webhook_url = "YOUR_DISCORD_WEBHOOK_URL"
webhook = DiscordWebhook(webhook_url)
files = ["path/to/your/file1.txt", "path/to/your/file2.txt"]
response = webhook.send_files_with_embed(
files=files,
title="Files with Embed",
description="These are multiple files with an embedded message",
color=0x00ff00
)
print(response.status_code)
Handling Automated Webhooks
from hookme.automated_webhook import AutomatedWebhook
webhook_url = "YOUR_DISCORD_WEBHOOK_URL"
automated_webhook = AutomatedWebhook(webhook_url)
# Schedule an embedded message to be sent daily at 9 AM
schedule_id = automated_webhook.schedule_embed(
schedule_type="cron",
schedule_value="0 9 * * *",
title="Daily Update",
description="This is a daily update",
color=0x00ff00
)
# Start the scheduler
automated_webhook.start_scheduler()
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
hookme-0.1.5.tar.gz
(14.2 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
hookme-0.1.5-py3-none-any.whl
(12.0 kB
view details)
File details
Details for the file hookme-0.1.5.tar.gz.
File metadata
- Download URL: hookme-0.1.5.tar.gz
- Upload date:
- Size: 14.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0651260533d1f5f97a73cdcdc41edf71ffb349049560d3742b8e7525645bad27
|
|
| MD5 |
4ac84c169ba568a628b8aacaf17bd738
|
|
| BLAKE2b-256 |
a6cbf536ac4f2d49b7571ec0cf75088e37e25771f4ab077875ca0a10a0518cca
|
File details
Details for the file hookme-0.1.5-py3-none-any.whl.
File metadata
- Download URL: hookme-0.1.5-py3-none-any.whl
- Upload date:
- Size: 12.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e95be81c82cbcb6dad6d4ffa6869c26caf159b4a61959097c7475867192d8b2d
|
|
| MD5 |
c5ac2c8cd2b7fe419000a29e03475187
|
|
| BLAKE2b-256 |
503e6744ac265b429562285846b6ef92d6749f3da2de4b91f6ad66405dda6e65
|