Full-featured Telegram client library for Python 3, forked for userbot use
Project description
Telethon-MCUB is a maintained Telethon fork for MCUB and userbot-oriented workloads. The Python import path remains telethon, but the package name for installation and publishing is Telethon-MCUB.
Installation
Install the base package:
pip install -U Telethon-MCUB
Install with optional extras:
pip install -U "Telethon-MCUB[cryptg]"
pip install -U "Telethon-MCUB[socks]"
pip install -U "Telethon-MCUB[media]"
pip install -U "Telethon-MCUB[speedups]"
pip install -U "Telethon-MCUB[all]"
Optional extras:
cryptg for faster encryption/decryption.
socks for proxy support through python-socks[asyncio].
media for image resizing and media metadata extraction via pillow and hachoir.
speedups for faster gzip handling through isal.
all to install every optional dependency listed above.
Quick Start
from telethon import TelegramClient, events, sync
api_id = 12345
api_hash = "0123456789abcdef0123456789abcdef"
client = TelegramClient("session_name", api_id, api_hash)
client.start()
print(client.get_me().stringify())
client.send_message("username", "Hello from Telethon-MCUB")
@client.on(events.NewMessage(pattern="(?i)hi|hello"))
async def handler(event):
await event.respond("Hey!")
Fork Notes
The package is published as Telethon-MCUB, but existing code should keep importing telethon.
MCUB-specific changes and release history are tracked in CHANGELOG.md.
Core Telethon concepts and API documentation are still largely applicable: https://docs.telethon.dev
Project Links
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 telethon_mcub-1.43.12.tar.gz.
File metadata
- Download URL: telethon_mcub-1.43.12.tar.gz
- Upload date:
- Size: 713.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
962ab08f0eb46db2e3c9a547fe67aacad24532fe198e1f597955ad841976a87a
|
|
| MD5 |
4b7f63610a0ce751eccd9380c893eb2e
|
|
| BLAKE2b-256 |
d8d33107b87d9506b4c0fe4fcbcbcf183b41b18b67af61b85b9e57f8aebaf60f
|
File details
Details for the file telethon_mcub-1.43.12-py3-none-any.whl.
File metadata
- Download URL: telethon_mcub-1.43.12-py3-none-any.whl
- Upload date:
- Size: 786.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
53b7a399ae9f44b6d81498e3887c4e80cb121de563ffbceb822c9e2d2e13526b
|
|
| MD5 |
15ddf7f44a5613d9983532487da43598
|
|
| BLAKE2b-256 |
96777610c07ba7616fe57e3aec7437d04d95bd08d894a0d97fcefcca7323fa5a
|