使用Telebot在特定时间运行代码

时间:2018-07-18 05:12:23

标签: python python-3.x telegram telegram-bot

我想在每天的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()

请帮帮我

0 个答案:

没有答案