Telethon/telethon/__init__.py

14 lines
362 B
Python
Raw Normal View History

from .client.telegramclient import TelegramClient
from .network import connection
2018-06-26 16:48:56 +03:00
from .tl import types, functions, custom
from .tl.custom import Button
2018-11-03 14:44:49 +03:00
from . import version, events, utils, errors
__version__ = version.__version__
2018-06-13 12:41:12 +03:00
__all__ = [
'TelegramClient', 'Button',
'types', 'functions', 'custom', 'errors',
'events', 'utils', 'connection'
]