mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-10 19:46:36 +03:00
88f87f6de2
Making a distinction between a bare client and a full-featured client will make it easier to create instances of the bare client itself that can be simultaneously and hence have two separate connections which do not interfer with eachother. While writing the bare client, full reconnection to a different data center is once again done only on .connect().
6 lines
203 B
Python
6 lines
203 B
Python
from .errors import *
|
|
from .telegram_bare_client import TelegramBareClient
|
|
from .telegram_client import TelegramClient
|
|
from .interactive_telegram_client import InteractiveTelegramClient
|
|
from . import tl
|