2

我正在研究telethon中的回调函数,我的代码是这样的:

def callback(update):
    channel_entity = client.get_entity('myzoomg') #Get specific Channel information
    update.message.to_id.channel_id == channel_entity.id: #Check message from that specific channel
        # do something

client.add_update_handler(callback)
client.idle()  # ends with Ctrl+C
client.disconnect()

我想将参数作为列表项传递给get_entity方法,如下所示:

channel_entity = client.get_entity(channel_list[0])

这个目标通常可以通过channel_list作为参数传递给callback方法来访问,但实际上callback方法只是将更新参数作为输入。我的问题是如何将列表传递给此方法?

4

0 回答 0