gpt4 book ai didi

python - 如何让 Python-Telegram Bot 在没有收到命令的情况下发送消息?

转载 作者:行者123 更新时间:2023-12-04 01:09:20 29 4
gpt4 key购买 nike

我正在使用 Python-Telegram-bot 制作 Telegram Bot 。我想让它向一个特定用户(在这种情况下是我自己)发送一条消息来选择一个选项。之后,它应该将该选项作为命令并照常工作。但是 30 分钟后……它应该向我发送相同的消息,让我像以前一样选择一个选项。我怎样才能让我工作?

def start(update: Update, context: CallbackContext) -> None:
user = update.message.from_user.username
print(user)
context.bot.send_message(chat_id=update.effective_chat.id, text= "Choose an option. ('/option1' , '/option 2', '/...')")


def main():

updater = Updater("<MY-BOT-TOKEN>", use_context=True)

updater.dispatcher.add_handler(CommandHandler('start', start))

updater.start_polling()
updater.idle()


if __name__ == '__main__':
main()
我希望它在不获取/start 命令(更新)的情况下运行。但在此之后......会有正常的功能会得到更新,30分钟后我想再次运行这个“启动”功能而不得到更新。

最佳答案

您可以获得 bot来自更新程序或调度程序的对象:

updater = Updater('<bot-token>')
updater.bot.sendMessage(chat_id='<user-id>', text='Hello there!')

# alternative:
updater.dispatcher.bot.sendMessage(chat_id='<user-id>', text='Hello there!')

关于python - 如何让 Python-Telegram Bot 在没有收到命令的情况下发送消息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65349950/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com