使用python的schedule模块,我如何在特定时间开始工作,并且应该在其上定期进行调度。
假设我想从上午09:00开始每4小时安排一次任务。
schedule.every(4).hours.at("09:00").do(task) # This doesn't work
如何实现以上目标?
答案 0 :(得分:1)
您可以将内部时间表(每4小时)转换为一个单独的功能,该功能将由主时间表(固定时间)调用。内部调度功能将是调用您的工作功能的功能。
示例-
import schedule
import time
def job():
print "I am working" #your job function
def schedule_every_four_hours():
job() #for the first job to run
schedule.every(4).hour.do(job)
return schedule.CancelJob
schedule.every().day.at("09:00").do(schedule_every_four_hours)
while True:
schedule.run_pending()
time.sleep(1)
如果您想根据自己的要求取消时间表,请在此处阅读更多内容。 Check here。
答案 1 :(得分:0)
如果有多个时间表,则上述解决方案将无法使用,因为时间表.CancelJob将取消管道上的其他时间表,最好使用清除标记 p>
import schedule
from datetime import datetime
import time
def task():
print 'I am here...',datetime.now()
def schedule_every_four_hours(clear):
if clear =='clear':
schedule.every(2).seconds.do(task).tag('mytask1') #for the first job to runschedule.every(4).hour.at("9:00").do(task)
else:
schedule.every(5).seconds.do(task).tag('mytask2') # for the second job to runschedule.every(4).hour.at("9:00").do(task)
print clear
schedule.clear(clear)
now = datetime.now()
times = str(now.hour+0)+ ":"+str(now.minute+1)
times1 = str(now.hour+0)+ ":"+str(now.minute+3)
schedule.every().day.at(times).do(schedule_every_four_hours,'clear').tag('clear')
schedule.every().day.at(times1).do(schedule_every_four_hours,'clear1').tag('clear1')
while True:
schedule.run_pending()
time.sleep(1)