Telethon/telethon/__init__.py

13 lines
383 B
Python
Raw Normal View History

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