📜  用于从电报频道下载音乐的 c# 脚本 - Python 代码示例

📅  最后修改于: 2022-03-11 14:45:34.670000             🧑  作者: Mango

代码示例1
from telethon import TelegramClient, events, 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()