Python3 Telebot在没有用户交互的情况下发送消息

时间:2020-04-26 11:31:34

标签: python python-3.x api

如何在不引起用户惰性的情况下向机器人用户发送警报消息?在我的情况下,当用户键入spec命令时,我可以发送消息。

import telebot


bot = telebot.TeleBot('TOKWN')

@bot.message_handler()
def function_name(message):
    bot.send_message(message.chat.id, text= 'Hello')

bot.polling()

0 个答案:

没有答案