Full-featured Telegram client library for Python 3
Project description
⭐️ Thanks everyone who has starred the project, it means a lot!
Telethon is an asyncio Python 3 library to interact with Telegram’s API.
If you don’t like asyncio, you can still use a simpler version that uses threads instead.
What is this?
Telegram is a popular messaging application. This library is meant to make it easy for you to write Python programs that can interact with Telegram. Think of it as a wrapper that has already done the heavy job for you, so you can focus on developing an application.
Installing
pip3 install telethon-aio
Creating a client
import asyncio
loop = asyncio.get_event_loop()
from telethon import TelegramClient
# These example values won't work. You must get your own api_id and
# api_hash from https://my.telegram.org, under API Development.
api_id = 12345
api_hash = '0123456789abcdef0123456789abcdef'
client = TelegramClient('session_name', api_id, api_hash)
loop.run_until_complete(client.start())
Doing stuff
async def main():
me = await client.get_me()
print(me.stringify())
await client.send_message('username', 'Hello! Talking to you from Telethon')
await client.send_file('username', '/home/myself/Pictures/holidays.jpg')
await client.download_profile_photo('me')
messages = await client.get_messages('username')
await messages[0].download_media()
loop.run_until_complete(main())
Next steps
Do you like how Telethon looks? Check out Read The Docs for a more in-depth explanation, with examples, troubleshooting issues, and more useful information.
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
File details
Details for the file Telethon-aio-1.0.tar.gz
.
File metadata
- Download URL: Telethon-aio-1.0.tar.gz
- Upload date:
- Size: 1.1 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1d4892984c4055d899b736517860b513093f25917ff94577fd90c5fc67f105a3 |
|
MD5 | 23a2b06e98e65837037854743dee8291 |
|
BLAKE2b-256 | 3047c294e34f2f427e08e97452168664256a0bb7895495afe66e85a83493cfc3 |
File details
Details for the file Telethon_aio-1.0-py3-none-any.whl
.
File metadata
- Download URL: Telethon_aio-1.0-py3-none-any.whl
- Upload date:
- Size: 308.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d9a3438457d74d3d82e5e38e4bb75448ddce7795309fd029796f0dc89a0a3d38 |
|
MD5 | 904d1df24d997dd210aa1a924c25dcd1 |
|
BLAKE2b-256 | 1089a4921ec76ef84cb8ac8d54663913d80d9e3c6f7974676f26532763584ab6 |