如何进入下一个循环?

How to proceed to the next cycle?

如果有新成员加入,此代码会向 Telegram Supergroup 发送一条消息。当发送消息出错时,我想更改我的帐户以继续。有可能去下一个"item"。 如何在收到错误消息时循环转到下一个帐户?

from pyrogram import Client, Filters

list_account = ['001', '002']

for item in list_account:
    app = Client(item)
    @app.on_message(Filters.chat("public_link_chat") & Filters.new_chat_members)
    def welcome(client, message):
        try:
            client.send_message(
                message.chat.id, 'Test',
                reply_to_message_id=message.message_id,
                disable_web_page_preview=True
            )
        except Exception as e:
            print(e)
            # How do I go to the next account in a loop when I receive an error?

    app.start()
    app.join_chat("public_link_chat")
    app.idle()

函数 "continue" 在这种情况下不起作用。

此处功能说明:https://docs.pyrogram.ml/resources/UpdateHandling

只需添加 app.is_idle = False

from pyrogram import Client, Filters

list_account = ['001', '002']

for item in list_account:
    app = Client(item)
    @app.on_message(Filters.chat("public_link_chat") & Filters.new_chat_members)
    def welcome(client, message):
        try:
            client.send_message(
                message.chat.id, 'Test',
                reply_to_message_id=message.message_id,
                disable_web_page_preview=True
            )
        except Exception as e:
            print(e)
            # How do I go to the next account in a loop when I receive an error?
            app.is_idle = False

    app.start()
    app.join_chat("public_link_chat")
    app.idle()

你绝对应该检查热图源代码中的空闲逻辑 these lines

while self.is_idle:
    time.sleep(1)

如果你想要无限循环,check out itertools.cycle,可以这样使用:

for item in itertools.cycle(list_account):
    do_something()