telethonから次のサンプル コードを実行しようとしています。
from telethon import TelegramClient, sync
# These example values won't work. You must get your own api_id and
# api_hash from https://my.telegram.org, under API Development.
api_id = 12345
api_hash = '0123456789abcdef0123456789abcdef'
client = TelegramClient('session_name', api_id, api_hash)
client.start()
しかし、次のエラーが発生します。
[root@server cli]# python3.6 client.py
Traceback (most recent call last):
File "client.py", line 1, in <module>
from telethon import TelegramClient, sync
ImportError: cannot import name 'sync'
また、次のコマンドを使用して同期をインストールしようとしました。
pip3.6 install sync
問題について何か考えはありますか?