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.0.tar.gz (18.6 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.0-py3-none-any.whl (13.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: select_notifier-0.2.0.tar.gz
  • Upload date:
  • Size: 18.6 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.0.tar.gz
Algorithm Hash digest
SHA256 0177c9b8020f86689576bb31969862d5300f16f5dbe9430012ee2f7cbda22b06
MD5 be367b93ca6c50acd8ae518017f92cb6
BLAKE2b-256 4dce375193cbb5fdd1797909e40ae9fa6281d85d7e771ab9e53c7e5dbcad1960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for select_notifier-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 149465cc2c1abddf5964204f0742310b5afe19816bd7395d6bc43f7be11625fc
MD5 3707373f6d03acc5f7ff3e942fdbdbee
BLAKE2b-256 6daa72f7305a313dd68795463e09f63bc2e4f9c105052cb1a4368628a2a7f283

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