A simple package to send notifications on Discord, Slack and Email.
Project description
notification-py
notification-py
is a Python package that provides a simple and convenient way to send notifications to Discord, Slack, and Email. You can send notification to either of these using a single command.
Motivation
Lately I noticed several critical errors poping up in my python backend, I thought of a simple way to get notified about these failues (be it Stripe webhooks or anything else). So I came up with this idea to create a simple notification package which can be imported and used when unexpected errors are thrown by code.
Using this package, developers can receive notifications through various combinations of Discord, Slack, and Email. The package supports sending notifications to all three platforms simultaneously, any two of them, or just one platform, depending on the provided credentials and configuration. This flexibility allows developers to customize their notification setup based on their specific requirements and preferences.
How to install?
To install notification-py
using pip:
pip install notification-py
Usage
1. Importing types
To use notification-py in your Python project, you can import the send_notification
function from the package. :
from notification_py.custom_types import (
DiscordCreds,
Message,
Creds,
EmailCreds,
MessageDetails,
SlackCreds,
)
2. Creating Message Object:
Message
object is core to the functionality of the notification-py
package.
message = Message(
message_details=MessageDetails(
title="Test Title",
text="Test Text",
severity=2,
source="Test Source",
filename="Test Filename",
line_number=0,
time=datetime.now(),
),
creds=Creds(
discord=DiscordCreds(
token="your_discord_bot_token",
channel_id=your_discord_channel_id,
team_id=your_discord_team_id,
),
slack=SlackCreds(webhook_url="your_slack_webhook_url"),
email=EmailCreds(
email="your_email",
password="your_email_password",
smtp_server="your_smtp_server",
smtp_port=your_smtp_port,
target_email="target_email",
),
),
)
The Message object consists of two main parts:
message_details
: An instance ofMessageDetails
that contains the details of the notification message, such as the title, text, severity, source, filename, line number, and timestamp.creds
: An instance ofCreds
that holds the credentials for Discord, Slack, and email notifications.
These creds are independent of each other and one can just send Discord notifications using this message object (same applies for other combinations of these):
message = Message(
message_details=MessageDetails(
title="Test Title",
text="Test Text",
severity=2,
source="Test Source",
filename="Test Filename",
line_number=0,
time=datetime.now(),
),
creds=Creds(
discord=DiscordCreds(
token="your_discord_bot_token",
channel_id=your_discord_channel_id,
team_id=your_discord_team_id,
),
slack=None,
email=None,
),
)
3. Sending notification:
You can just call this async function notify
to send notification to all the services at a go.
from notification_py.main import send_notification
async def notify(message):
await send_notification(message)
Please note that only those services which have valid creds will be notified.
Creating Credentials
To send notifications to Discord, Slack, and email, you need to provide the necessary credentials. Here's how you can create the credential objects:
1. Discord:
- You can obtain your Discord bot token by simply following this tutorial.
- Once you have the token and the bot is installed on your Discord server, just get your channel id and id of the role that you want to notify for the notification.
2. Slack:
- Just go to apps and create a new app for your workspace.
- Once app is created, select the channel to enable the webhooks on this url
- Copy that webhooks url and it's gtg.
3. Email (for gmail):
- Make sure you have 2FA enabled.
- Just follow along this discussion to get your
app password
- Once that is done, save the generated password and create email creds like this:
email = "YOUR_ID@gmail.com"
password = "GENERATED_APP_PASSWORD"
smtp_server = "smtp.gmail.com"
smtp_port = "587"
target_email = "RECIPIENT_ID@gmail.com"
Sample notifications
1. Discord
2. Slack
3. Email
Contact me
To raise any issues/requests you may refer the issue page here.
You may mail me here on my mail id.
Feel free to connect with me on my LinkedIn.
Please do check out my other projects on my GitHub here.
Also I have made many cool Firefox Add ons. They are pretty useful, you may want to check them out here.
If you like my work, you may want to buy me a book here.
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
Built Distribution
File details
Details for the file notification_py-1.0.5.tar.gz
.
File metadata
- Download URL: notification_py-1.0.5.tar.gz
- Upload date:
- Size: 12.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.8 Linux/6.8.4-zen1-1-zen
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c872bf8def9e42f442235b5c37b0de16258918c6ad2e428e4a6f363b0ef5a359 |
|
MD5 | 0e5f3602c2f4d5640ed1603ab60ba91f |
|
BLAKE2b-256 | 86e72be1b07f5cf41b847752eb3078791bb351cd98c2f955fe7d40b9f3ef0ee0 |
File details
Details for the file notification_py-1.0.5-py3-none-any.whl
.
File metadata
- Download URL: notification_py-1.0.5-py3-none-any.whl
- Upload date:
- Size: 12.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.8 Linux/6.8.4-zen1-1-zen
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5258288a5f3c051445747343cc4285fc72de70e47cc8d58d0158b3cac12317ae |
|
MD5 | 7e4222005aebfad46b399a06652934ba |
|
BLAKE2b-256 | 0e4e021275fa8b2a3383a24b9ea6efc647e50890150fe97f2a0445cd0fb328c2 |