我已经在python中修改了最重要的机器人,以便能够代表用户提出一些API请求。我现在正在研究类似于松弛的功能,可以在此为同事设置提醒,例如提醒@xyz每1小时检查一次代码。
我正在使用计划模块,这是我的代码:
@listen_to('remind \"(.*)\" every (.*) seconds', re.IGNORECASE)
def reply_every_seconds(message, content, seconds):
print ("reminder function triggered, we are waiting for {} seconds ".format(seconds))
print ("our content is {}".format(content))
schedule.every(int(seconds)).seconds.do(message.reply, content)
当我输入@bot_test时,提醒@xyz每60秒检查一次代码,在聊天窗口中根本没有任何响应。
但是我确实将打印语句显示在控制台窗口中。
谁能告诉我为什么调度程序不触发?