mirror of
https://github.com/LonamiWebs/Telethon.git
synced 2024-11-11 03:56:36 +03:00
12 lines
425 B
Python
12 lines
425 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 .mtprotoplainsender import MTProtoPlainSender
|
|
from .authenticator import do_authentication
|
|
from .mtprotosender import MTProtoSender
|
|
from .connection import (
|
|
ConnectionTcpFull, ConnectionTcpAbridged, ConnectionTcpObfuscated,
|
|
ConnectionTcpIntermediate
|
|
)
|