mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-11 03:56:36 +03:00
9 lines
350 B
Python
9 lines
350 B
Python
"""
|
|
This module contains several classes regarding network, low level connection
|
|
with Telegram's servers and the protocol used (TCP full, abridged, etc.).
|
|
"""
|
|
from .mtproto_plain_sender import MtProtoPlainSender
|
|
from .authenticator import do_authentication
|
|
from .mtproto_sender import MtProtoSender
|
|
from .connection import Connection, ConnectionMode
|