mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
12 lines
511 B
Python
12 lines
511 B
Python
"""
|
|
This package defines clients as subclasses of others, and then a single
|
|
`telethon.client.telegramclient.TelegramClient` which is subclass of them
|
|
all to provide the final unified interface while the methods can live in
|
|
different subclasses to be more maintainable.
|
|
|
|
The ABC is `telethon.client.telegrambaseclient.TelegramBaseClient` and the
|
|
first implementor is `telethon.client.users.UserMethods`, since calling
|
|
requests require them to be resolved first, and that requires accessing
|
|
entities (users).
|
|
"""
|