Telethon/telethon/network/__init__.py

14 lines
569 B
Python
Raw Normal View History

2017-11-30 15:20:51 +03:00
"""
This module contains several classes regarding network, low level connection
with Telegram's servers and the protocol used (TCP full, abridged, etc.).
"""
2018-06-07 17:32:12 +03:00
from .mtprotoplainsender import MTProtoPlainSender
2016-09-04 13:42:11 +03:00
from .authenticator import do_authentication
from .mtprotosender import MTProtoSender
from .connection import (
ConnectionTcpFull, ConnectionTcpIntermediate, ConnectionTcpAbridged,
ConnectionTcpObfuscated, ConnectionTcpMTProxyAbridged,
ConnectionTcpMTProxyIntermediate,
ConnectionTcpMTProxyRandomizedIntermediate, ConnectionHttp, TcpMTProxy
)