Lightweight notification package(email & Rocket.Chat) for Select services
Project description
Name
Select-Notifier: Lightweight Notification Module (Email + Rocket.Chat)
Description
Select-Notifier is a small, production-friendly Python package that provides a unified interface for sending notifications.
It currently supports:
- EmailNotifier — SMTP with robust input validation, STARTTLS/SSL support, retries & backoff
- RocketNotifier — Rocket.Chat integration via REST API (
chat.postMessage) with retries & backoff
The package is designed to be embedded inside Select services and pipelines where a simple, reliable notifier is needed.
Badges
On some READMEs, you may see small images that convey metadata, such as whether or not all the tests are passing for the project.
You can use Shields.io to add badges. Many services also have instructions for adding a badge.
Visuals
Depending on what you are making, it can be a good idea to include screenshots or even a video (you'll frequently see GIFs rather than actual videos).
Tools like ttygif can help, but check out Asciinema for a more sophisticated method.
Features
✅ Email (SMTP):
- STARTTLS (587) and SMTPS/SSL (465)
- Retries with exponential backoff
- Clear, actionable log messages
- Validation for sender/recipient, subject/body
- Password normalization:
• Removes whitespace
• Converts non-ASCII digits (e.g., Persian ۰-۹) to ASCII
✅ Rocket.Chat (REST API):
- Auth with userId + authToken
- Send to channels (#channel) or direct messages (@user)
- Retries with exponential backoff
- Handles transient vs permanent errors cleanly
✅ Minimal Dependencies:
- Email: standard library only
- Rocket: [`httpx`](https://www.python-httpx.org/) for HTTP
Repository Structure
select-notifier/
├── src/
│ └── select_notifier/
│ ├── __init__.py
│ ├── __version__.py
│ ├── base.py # Core types & protocols
│ └── services/
│ ├── email.py # EmailNotifier
│ └── rocket.py # RocketNotifier
├── tests/
│ ├── test_base.py
│ ├── test_email_notifier.py
│ └── test_rocket_notifier.py
├── version_and_changelog.py # Version bump + changelog generator
├── versioning_strategy.md # Versioning policy
├── pyproject.toml
├── requirements.txt
├── requirements-dev.txt
└── README.md
Installation
- Clone the repository:
git clone http://repo.afe.ir/afeai/select-notifier.git
cd select-notifier
- Create virtual environment:
python -m venv .venv
source .venv/bin/activate # Linux/Mac
.venv\Scripts\activate # Windows
- Install requirements:
pip install -r requirements.txt
Usage
EmailNotifier (STARTTLS, port 587)
from select_notifier.services.email import EmailNotifier
notifier = EmailNotifier.create(
sender="noreply@example.com",
password="your-app-password",
server="smtp.example.com",
port=587,
use_tls=True,
use_ssl=False,
timeout=30.0,
)
notifier.send_text(
subject="Hello from Select-Notifier",
body="This is a test message.",
to=["user@dest.com"],
)
EmailNotifier (SMTPS, port 465)
from select_notifier.services.email import EmailNotifier
notifier = EmailNotifier.create(
sender="noreply@example.com",
password="your-app-password",
server="smtp.example.com",
port=465,
use_tls=False,
use_ssl=True,
)
notifier.send_text(
subject="Secure Email",
body="Body here",
to=["user@dest.com"],
)
RocketNotifier (REST API)
from select_notifier.services.rocket import RocketNotifier
notifier = RocketNotifier.create(
domain="https://chat.company.com",
user_id="YOUR_USER_ID",
auth_token="YOUR_AUTH_TOKEN",
)
notifier.send_text(
subject="Deploy",
body="Production deployment finished",
to=["#ops"], # or ["@username"]
)
Notes
- For Gmail, use an App Password (no spaces) and ensure “Less secure apps” is not required.
- The module normalizes secrets by stripping whitespace and converting non-ASCII digits to ASCII digits.
- Rocket.Chat API requires a valid userId and authToken. The user must have permission to post into the target channel/DM.
- Retry/backoff behavior is configurable (retries, backoff).
License
Private Repository:
This codebase is private and currently not distributed under any open-source license.
Contact the project owner for more information or collaboration requests.
Contact
For questions, ideas, or collaboration, please reach out to the project maintainer.
Project Status
Under Development:
This project is still evolving. While core functionalities are operational, enhancements and stability improvements are ongoing.
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
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 select_notifier-0.1.1.tar.gz.
File metadata
- Download URL: select_notifier-0.1.1.tar.gz
- Upload date:
- Size: 13.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6ed2baebec1528536aff3aabba221601514af4a9b5e14fdcda7103f805382476
|
|
| MD5 |
21b580b8ede88cac4f361fc1367c55cb
|
|
| BLAKE2b-256 |
2abf49126d4ac287c29b3a04ef3de99877f784d1dec8057aeb68de3e3d0185c3
|
File details
Details for the file select_notifier-0.1.1-py3-none-any.whl.
File metadata
- Download URL: select_notifier-0.1.1-py3-none-any.whl
- Upload date:
- Size: 10.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1cd27658b4890eea1f26b38631a7b426e14ac32c87834ba3deb20ef5e62ae640
|
|
| MD5 |
033c66c70b517d8765960ca98f0267aa
|
|
| BLAKE2b-256 |
f2485a86570f8edc62d8cc3b0ec7754c0ebc68b266fe51a70ad2ebb0b8f90118
|