我想怎么做:调度操作,如何结束文件发送。但事实证明,该动作持续了 5 秒,然后又花了 5 秒来发送文件,而这次用户不明白是机器人被冻结还是文件仍在发送。如何在直接发送文件之前增加操作持续时间?
import telebot
...
def send_file(m: Message, file):
bot.send_chat_action(m.chat.id, action='upload_document')
bot.send_document(m.chat.id, file)
慕桂英3389331
相关分类