Skip to main content

Simple, async-first Telegram alerts for Python

Project description

py-telegram-alert

Simple, async-first Telegram alerts for Python.

PyPI version Python 3.11+ License: GPL v3

Installation

pip install py-telegram-alert

Setup

1. Create a Telegram Bot

  1. Open Telegram and message @BotFather
  2. Send /newbot and follow the prompts
  3. Copy the bot token you receive

2. Get Your Chat ID

  1. Message your new bot (send any message)
  2. Visit https://api.telegram.org/bot<YOUR_TOKEN>/getUpdates
  3. Find "chat":{"id": in the response - that's your chat ID

3. Configure Your Credentials

Rename .env.example to .env and fill in your values:

TELEGRAM_TOKEN=your-bot-token-here
TELEGRAM_CHAT_ID=your-chat-id-here

4. Send Messages

from telegram_alert import TelegramAlert

alert = TelegramAlert()

# Async
await alert.send("Hello World!")

# Sync (for simple scripts)
alert.send_sync("Hello World!")

That's it!

Examples

Basic Messages

from telegram_alert import TelegramAlert

alert = TelegramAlert()
await alert.send("Server started successfully")

Silent Messages

Send without notification sound:

await alert.send("Background task complete", silent=True)

Test Your Credentials

Verify your bot token works without sending a message:

alert = TelegramAlert()
if alert.test_sync():
    print("Credentials are valid!")
else:
    print("Check your .env file")

Multiple Chat IDs

Send to multiple chats at once:

# Option 1: Comma-separated in .env
# TELEGRAM_CHAT_ID=123456,789012,345678

# Option 2: Pass a list
alert = TelegramAlert(chat_id=["123456", "789012"])
await alert.send("Broadcast message")  # Sends to all

# Option 3: Send to specific chat
await alert.send_to("999999", "Just for this chat")

Formatted Messages

# HTML formatting
await alert.send("<b>Bold</b> and <i>italic</i>", parse_mode="HTML")

# MarkdownV2 (auto-escaped)
await alert.send("*Bold* and _italic_", parse_mode="MarkdownV2")

Progress Bar

from telegram_alert import progress_bar

msg = f"Download: {progress_bar(75, 100)}"
await alert.send(msg)
# Output: Download: [███████████████░░░░░] 75/100

Context Manager

Reuse connections for better performance:

async with TelegramAlert() as alert:
    await alert.send("Message 1")
    await alert.send("Message 2")  # Reuses connection

File Attachments

Send photos, documents, videos, audio, and more:

# Send a file (type auto-detected from extension)
await alert.send_file("screenshot.png")
await alert.send_file("report.pdf", caption="Monthly report")

# Send with explicit type
await alert.send_file("data.bin", file_type="document")

# Send raw bytes
await alert.send_file(image_bytes, filename="chart.png")

# With formatted caption
await alert.send_file("photo.jpg", caption="*Important* update", parse_mode="MarkdownV2")

# Sync version
alert.send_file_sync("export.csv", caption="Data export")

Supported file types (auto-detected from extension):

  • photo - jpg, jpeg, png, webp
  • video - mp4, mov, avi, mkv, webm
  • audio - mp3, wav, flac, m4a
  • voice - ogg
  • animation - gif
  • document - everything else (default)

Error Handling

from telegram_alert import TelegramAlert, ConfigError, SendError, RateLimitError

try:
    alert = TelegramAlert()
    await alert.send("Test message")
except ConfigError as e:
    print(f"Check your .env file: {e}")
except RateLimitError as e:
    print(f"Too many messages, retry after {e.retry_after}s")
except SendError as e:
    print(f"Failed to send: {e}")

Sync Usage

For simple scripts that don't use async:

from telegram_alert import TelegramAlert

alert = TelegramAlert()
alert.send_sync("Deployment complete!")

Note: send_sync() won't work in Jupyter notebooks or async frameworks (FastAPI, etc.) since they already have an event loop running. In those environments, use await alert.send() directly.

API Reference

TelegramAlert

alert = TelegramAlert(
    token="...",           # Optional, falls back to TELEGRAM_TOKEN
    chat_id="...",         # Optional, falls back to TELEGRAM_CHAT_ID (can be list)
    rate_limit_delay=1.0,  # Seconds between messages
)

# Async methods
await alert.send(message, parse_mode=None, silent=False, ...)
await alert.send_to(chat_id, message, ...)
await alert.send_file(file, caption=None, file_type=None, filename=None, ...)
await alert.send_file_to(chat_id, file, ...)
await alert.test()  # Verify credentials
await alert.close()  # Close connections

# Sync wrappers
alert.send_sync(message, ...)
alert.send_to_sync(chat_id, message, ...)
alert.send_file_sync(file, ...)
alert.send_file_to_sync(chat_id, file, ...)
alert.test_sync()

# Properties
alert.chat_id      # Primary chat ID
alert.chat_ids     # All configured chat IDs

Formatters

  • escape_markdown(text) - Escape MarkdownV2 special characters (preserves emojis)
  • progress_bar(value, max_value, width=20) - Visual progress bar
  • truncate(text, max_length=4096) - Truncate to Telegram's 4096 char limit

Exceptions

  • ConfigError - Missing or invalid .env configuration
  • SendError - Message failed to send
  • RateLimitError - Too many messages (has .retry_after seconds)

License

GPL-3.0

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

py_telegram_alert-0.2.0.tar.gz (27.5 kB view details)

Uploaded Source

Built Distribution

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

py_telegram_alert-0.2.0-py3-none-any.whl (23.6 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: py_telegram_alert-0.2.0.tar.gz
  • Upload date:
  • Size: 27.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for py_telegram_alert-0.2.0.tar.gz
Algorithm Hash digest
SHA256 68e7717a8e40d9c1639b4013d5de2328e5168a48c107c3774f2fc6ff0f4ef10e
MD5 4daa4bf8f03e503c685f535c39313cc3
BLAKE2b-256 6ab659c1273f0f37b6e55012b683754f2b4998707456b5b259e678f627a90a3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_telegram_alert-0.2.0.tar.gz:

Publisher: publish.yml on cainky/py-telegram-alert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

File hashes

Hashes for py_telegram_alert-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 5db8d7bd93626dc870f0d48d8d2d197df3c272a47082cab96669d010dc14f822
MD5 48f439f40b3fa704908d24b17131261b
BLAKE2b-256 7c7c50460b2c70e99fd73495302848dd0611c6ecc8c34f5321abc4cbfd9126ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for py_telegram_alert-0.2.0-py3-none-any.whl:

Publisher: publish.yml on cainky/py-telegram-alert

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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