我想用扭曲的应用程序实现类似cron的行为。 我想触发定期通话(让我们每周说出来),但只在准确的时间运行,而不是在我启动应用程序时运行。
我的用例如下: 我的python应用程序在本周的任何时间启动。我希望每个星期一早上8点开始通话。 但是我不想要主动等待(使用time.sleep()),我想使用callLater在下周一触发调用,然后从该日期开始循环调用。
任何想法/建议? 谢谢, 学家
答案 0 :(得分:5)
如果你完全爱上了cron风格的说明符,你也可以考虑使用parse-crontab
然后你的代码基本上就像:
from crontab import CronTab
monday_morning = CronTab("0 8 * * 1")
def do_something():
reactor.callLater(monday_morning.next(), do_something)
# do whatever you want!
reactor.callLater(monday_morning.next(), do_something)
reactor.run()
答案 1 :(得分:1)
如果我正确理解了您的问题,您正在考虑首次执行计划任务以及如何为应用程序提供初始启动时间。如果是这种情况,您只需要计算传递给callLater的timedelta值(以秒为单位)。
import datetime
from twisted.internet import reactor
def cron_entry():
full_weekseconds = 7*24*60*60
print "I was called at a specified time, now you can add looping task with a full weekseconds frequency"
def get_seconds_till_next_event(isoweekday,hour,minute,second):
now = datetime.datetime.now()
full_weekseconds = 7*24*60*60
schedule_weekseconds = ((((isoweekday*24)+hour)*60+minute)*60+second)
now_weekseconds=((((now.isoweekday()*24)+now.hour)*60+now.minute)*60+now.second)
if schedule_weekseconds > now_weekseconds:
return schedule_weekseconds - now_weekseconds
else:
return now_weekseconds - schedule_weekseconds + full_weekseconds
initial_execution_timedelta = get_seconds_till_next_event(3,2,25,1)
"""
This gets a delta in seconds between now and next Wednesday -3, 02 hours, 25 minutes and 01 second
"""
reactor.callLater(initial_execution_timedelta,cron_entry)
reactor.run()