Simple Interface for Telegram read and listen
Project description
TelegramManager
A Python CLI tool and module for fetching and monitoring Telegram messages from public channels and groups. Built with Telethon for reliable Telegram API integration.
Installation
Install TelegramManager using pip:
pip install .
For development installation:
pip install -e .[dev]
Configuration
Environment Configuration
Create a .env file in your project root directory:
TELEGRAM_API_ID=your_api_id
TELEGRAM_API_HASH=your_api_hash
TELEGRAM_PHONE_NUMBER=+1234567890
The default TelegramManager() constructor automatically loads these environment variables.
Manual Configuration
For programmatic usage without environment files:
from telegram_manager.controller import TelegramManager
tg = TelegramManager(
api_id=123456,
api_hash="your_api_hash_here",
phone_number="+1234567890"
)
Command Line Interface
The tm command provides two primary operations:
Fetch Messages
Retrieve historical messages from a channel or group:
tm fetch <channel> [--min-id <id>] [--limit <n>]
Example:
tm fetch @openai --limit 10
Listen for Messages
Monitor channels for new messages in real-time:
tm listen <channel>
Example:
tm listen "Some Group Chat"
Python API
Basic Usage
from telegram_manager import TelegramManager
# Initialize with environment configuration
tg = TelegramManager()
Fetching Messages
tg.fetch_messages(
chat_identifier="@somechannel",
message_processor=lambda m: print(m.id, m.text),
limit=5
)
Real-time Message Monitoring
tg.listen("@somechannel", message_handler=lambda m: print(f"New: {m.message}"))
Supported Input Formats
TelegramManager accepts multiple channel identifier formats:
- Telegram URLs:
https://t.me/channelname - Username format:
@channelname - Dialog names:
"Channel Display Name"
Authentication
- Session files are created locally to maintain authentication across sessions
- First-time usage requires verification code entry
- Authentication state persists between program runs
Requirements
- Python 3.7 or higher
- Valid Telegram API credentials
- Network connectivity for Telegram API access
License
MIT License
Project details
Release history Release notifications | RSS feed
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 telegrammanager-0.1.7.tar.gz.
File metadata
- Download URL: telegrammanager-0.1.7.tar.gz
- Upload date:
- Size: 5.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
703c51dfc014a2127405b800b16cd8432cccfb8aab7632860ba4ce40912f0629
|
|
| MD5 |
111bfc83a1edaaad2336909be95e26e6
|
|
| BLAKE2b-256 |
e85a040c5b21b705c40c8877b1ca3c3b35b1e39395b949fd4e35eca27d9201a9
|
File details
Details for the file telegrammanager-0.1.7-py3-none-any.whl.
File metadata
- Download URL: telegrammanager-0.1.7-py3-none-any.whl
- Upload date:
- Size: 5.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2cbd8ce817c490c04cb3774f14871c8e752b6174e57ae6b5b3893ba5f3b716f1
|
|
| MD5 |
c071227fcd2cd1bb0f899352f5cd59df
|
|
| BLAKE2b-256 |
775a9040d9cce9788541dc82cc90027f16db7a7c4a5bbe47a7d83487cbd86a79
|