标签: 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()