Telethon/telethon/__init__.py
2019-01-11 15:52:30 +01:00

10 lines
305 B
Python

from .client.telegramclient import TelegramClient
from .network import connection
from .tl import types, functions, custom
from . import version, events, utils, errors
__version__ = version.__version__
__all__ = ['TelegramClient', 'types', 'functions', 'custom',
'events', 'utils', 'errors']