Skip to main content

Lightweight notification package(email & Rocket.Chat, Telegram) for Select services

Project description

Name

Select-Notifier: Lightweight Notification Module (Email + Rocket.Chat + Telegram)


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 (subject required)
  • RocketNotifier — Rocket.Chat integration via REST API (chat.postMessage) with retries & backoff (subject optional)
  • TelegramNotifier — Telegram Bot API integration using python-telegram-bot with retries & backoff (subject optional)

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
    - Validation for sender/recipient, subject/body (subject is required)
    - Password normalization (removes whitespace, converts non-ASCII digits)

✅ Rocket.Chat (REST API):
    - Auth with userId + authToken
    - Send to channels (#channel) or direct messages (@user)
    - Retries with exponential backoff
    - Subject is optional

✅ Telegram (Bot API via python-telegram-bot):
    - Bot token + chat_id
    - Send to private chats (after user has started the bot) or groups (bot must be added)
    - Retries with exponential backoff
    - Subject is optional
    - Proxy support for restricted regions

✅ Minimal Dependencies:
    - Email: standard library only
    - Rocket: [`httpx`](https://www.python-httpx.org/)
    - Telegram: [`python-telegram-bot`](https://docs.python-telegram-bot.org/)

Repository Structure

select-notifier/
├── src/
│   └── select_notifier/
│       ├── __init__.py
│       ├── __version__.py
│       ├── base.py                 # Core types & protocols
│       └── services/
│           ├── email.py            # EmailNotifier
│           ├── rocket.py           # RocketNotifier
│           └── telegram.py         # TelegramNotifier
├── tests/
│   ├── test_base.py
│   ├── test_email_notifier.py
│   ├── test_rocket_notifier.py
│   └── test_telegram_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

  1. Clone the repository:
git clone http://repo.afe.ir/afeai/select-notifier.git
cd select-notifier
  1. Create virtual environment:
python -m venv .venv
source .venv/bin/activate    # Linux/Mac
.venv\Scripts\activate       # Windows
  1. 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,
    retries=2,
    backoff=1.5,
)

notifier.send_text(
    subject="Hello from Select-Notifier",   # subject REQUIRED for email
    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",   # use an app password, not your login password
    server="smtp.example.com",
    port=465,
    use_tls=False,                  # no STARTTLS on SMTPS
    use_ssl=True,                   # implicit SSL (SMTPS)
    timeout=30.0,
    retries=2,
    backoff=1.5,
)

notifier.send_text(
    subject="Hello from Select-Notifier",
    body="This is a test message over SMTPS (465).",
    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",
    retries=2,
    backoff=1.5,
)

notifier.send_text(
    subject="Deploy",   # subject OPTIONAL
    body="Production deployment finished",
    to=["#ops"],   # or ["@username"]
)

TelegramNotifier (subject optional, with proxy example)

from select_notifier.services.telegram import TelegramNotifier
from select_notifier.base import normalize_message

notifier = TelegramNotifier.create(
    bot_token="YOUR_BOT_TOKEN",
    api_base="https://api.telegram.org",
    proxy_url="http://127.0.0.1:10809",   # optional
    retries=1,
    backoff=1.5,
)
# user must have started the bot, or bot must be added to group
msg = normalize_message(subject="", body="Hello via Telegram ✅", to=["123456789"])
notifier.send(msg)

Notes & Limitations

  • Gmail: Use an App Password (no spaces).
  • Rocket.Chat: Requires a valid userId and authToken. User must have permission to post in the target channel/DM.
  • Telegram:
    • To DM, the user must have clicked Start on the bot at least once.
    • To send in a group, add the bot to the group (make admin if you want it to manage messages).
    • chat_id can be retrieved using getUpdates or helper bots (e.g., @userinfobot).
  • Proxy: If your region blocks Telegram or other services, provide proxy_url (http/socks) when creating the notifier.

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

select_notifier-0.2.1.tar.gz (18.7 kB view details)

Uploaded Source

Built Distribution

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

select_notifier-0.2.1-py3-none-any.whl (14.1 kB view details)

Uploaded Python 3

File details

Details for the file select_notifier-0.2.1.tar.gz.

File metadata

  • Download URL: select_notifier-0.2.1.tar.gz
  • Upload date:
  • Size: 18.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.9

File hashes

Hashes for select_notifier-0.2.1.tar.gz
Algorithm Hash digest
SHA256 40d3ce5a5d5e708c8f8f597a34d94d9d3f304394c8918a4f44cdea3ae9ac3947
MD5 c64014d59827dc4b5845f99777f6d887
BLAKE2b-256 df273c41f130b11dcee8425d6c9715f41e7ad05146946ed44c3c2a3847ac9953

See more details on using hashes here.

File details

Details for the file select_notifier-0.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for select_notifier-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 ec6c181f4eb571df2b6ab2a9702bdef7d374146a96d9f030cdbf025f75135a5c
MD5 c44f774548f8d3e1dab1e8876258903e
BLAKE2b-256 17aeb114cfb41065a73ebe7a14bd28656a8a7d86b5eef4766e7863f7136bc629

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