我想在每天的7:00在特定时间从我的机器人发送消息,而无需cron和类似的东西。我该怎么办??
import telebot
bot = telebot.TeleBot("TOKEN")
@bot.message_handler(commands=['start', 'help'])
def send_welcome(message):
bot.reply_to(message, "Howdy, how are you doing?")
bot.polling()
我不能因为bot.polling()
而独自一人。这行代码只会将我的程序放入无限循环中,在该循环中我无法插入
if time() == specific time:
send.message()
请帮帮我