Telethon/telethon/extensions/__init__.py

8 lines
316 B
Python

"""
Several extensions Python is missing, such as a proper class to handle a TCP
communication with support for cancelling the operation, and an utility class
to read arbitrary binary data in a more comfortable way, with int/strings/etc.
"""
from .binary_reader import BinaryReader
from .tcp_client import TcpClient