An asynchronous Telegram bot designed for sending alerts and notifications with a message queuing system.
Project description
Telegram Alert Bot
A simple asynchronous Telegram bot for sending alerts and notifications with message queuing capabilities.
Features
- Asynchronous message handling
- Message queuing system
- Error handling for Telegram API communications
- Support for mentioning other bots in messages
- Logging functionality
- Optional message merging based on a specified pattern
Installation
pip install telegram-alert-bot
Prerequisites
- Python 3.7+
- python-telegram-bot library
- A Telegram Bot Token (obtained from @BotFather)
- Your Telegram User ID
Usage
Basic Setup
from telegram_alert_bot import TelegramAlertBot
import asyncio
# Initialize the bot
bot = TelegramAlertBot(
token="YOUR_BOT_TOKEN",
user_id="YOUR_TELEGRAM_USER_ID"
)
# Create an async function to run your bot
async def main():
# Start the background polling
polling_task = asyncio.create_task(bot.background_bot_polling())
# Trigger an event (send a message)
await bot.event_trigger("Hello, World!", "mybot")
# Wait for the message to be processed
await bot.message_queue.join()
# Run the bot
asyncio.run(main())
API Reference
TelegramAlertBot Class
The main class for handling Telegram alerts. Implementation can be found in:
startLine: 6
endLine: 31
Methods
-
__init__(token: str, user_id: str, merge_pattern: str = None)token: Your Telegram bot tokenuser_id: The Telegram user ID to send messages tomerge_pattern: Optional string to detect messages for merging
-
async send_telegram_message(message: str)- Sends a message directly to the specified user
- Handles Telegram API errors and logs the outcome
-
async background_bot_polling()- Runs continuously in the background
- Processes messages from the queue
- Should be run in a separate task
-
async event_trigger(message: str, bot: str)- Queues a new message for sending
- Automatically adds bot mention in format
@bot - Messages are processed in FIFO order
Message Merging
The bot supports optional message merging functionality, which allows you to combine consecutive messages that match a specific pattern. This is particularly useful for status updates or repeated notifications.
Basic Message Merging Setup
from telegram_alert_bot import TelegramAlertBot
import asyncio
# Initialize bot with message merging enabled
bot = TelegramAlertBot(
token="YOUR_BOT_TOKEN",
user_id="YOUR_TELEGRAM_USER_ID",
merge_pattern="No profitable items found between"
)
async def main():
polling_task = asyncio.create_task(bot.background_bot_polling())
# These messages will be merged if sent consecutively
await bot.event_trigger(
"No profitable items found between 2024-01-01 10:00:00 and 2024-01-01 10:15:00.",
"status_bot"
)
await bot.event_trigger(
"No profitable items found between 2024-01-01 10:15:00 and 2024-01-01 10:30:00.",
"status_bot"
)
# Result in chat will be:
# "No profitable items found between 2024-01-01 10:00:00 and 2024-01-01 10:30:00."
# "@status_bot"
await bot.message_queue.join()
asyncio.run(main())
Message Merging Behavior
-
Pattern Matching: Only messages that start with the specified
merge_patternwill be considered for merging. -
Consecutive Messages: Merging only occurs for consecutive messages. If other messages appear in between, the merge chain breaks.
-
Time Extraction: The bot automatically extracts and combines time ranges from messages.
Advanced Usage Examples
Custom Pattern Merging
# Initialize with custom pattern
bot = TelegramAlertBot(
token="YOUR_BOT_TOKEN",
user_id="YOUR_TELEGRAM_USER_ID",
merge_pattern="Status update:"
)
async def main():
polling_task = asyncio.create_task(bot.background_bot_polling())
# These messages will be merged
await bot.event_trigger("Status update: System check at 09:00", "system_bot")
await bot.event_trigger("Status update: System check at 10:00", "system_bot")
# This message won't be merged (different pattern)
await bot.event_trigger("Alert: New user registered", "system_bot")
await bot.message_queue.join()
Error Handling
The bot includes built-in error handling for Telegram API communications. All errors are logged using Python's logging module. Error handling implementation can be found in:
startLine: 14
endLine: 18
Logging
The bot uses Python's built-in logging module to track:
- Message sending attempts
- Successful message delivery
- Error states
- Event triggers
- Bot polling status
Version
Current version: 0.1.0
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License. See the LICENSE file for details.
Support
For support, please open an issue in the GitHub repository.
Authors
pudjo_jotaro https://github.com/pudjojotaro
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 telegram_alert_bot-0.2.1.tar.gz.
File metadata
- Download URL: telegram_alert_bot-0.2.1.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e375c312e5924c12f8e9589f15118c93008493ad886d12d6fd2c52f73b154d8e
|
|
| MD5 |
ecee6c3d5c773be172bf72ec09dd1d20
|
|
| BLAKE2b-256 |
6eeb2b39b83bf9f477d1cebd3739459031bed7eb760a2ff128062ecacd22f2fa
|
File details
Details for the file telegram_alert_bot-0.2.1-py3-none-any.whl.
File metadata
- Download URL: telegram_alert_bot-0.2.1-py3-none-any.whl
- Upload date:
- Size: 5.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6930339d3ce876fbd9d38e1f083309d015fc0d4f02b681ee7414375d61e4d21e
|
|
| MD5 |
06d449ae032f8f04d6346d7743942cd5
|
|
| BLAKE2b-256 |
1a53f0e05ecba2c656042f83dab6803746038e2af5b578057ae7b085466daec4
|