如何将列表传递给telethon中的回调方法?

时间:2017-11-25 09:03:40

标签: python-3.x telegram telethon

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

def callback(update):
    channel_entity = client.get_entity('myzoomg') #Get specific Channel information
    update.message.to_id.channel_id == zoomg_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方法只将update参数作为输入。我的问题是如何将列表传递给此方法?

0 个答案:

没有答案