如何在给定时间在Python中运行函数?
例如:
run_it_at(func, '2012-07-17 15:50:00')
它将func在2012-07-17 15:50:00 运行该功能。
我尝试了sched.scheduler,但是它没有启动我的功能。
import time as time_module
scheduler = sched.scheduler(time_module.time, time_module.sleep)
t = time_module.strptime('2012-07-17 15:50:00', '%Y-%m-%d %H:%M:%S')
t = time_module.mktime(t)
scheduler_e = scheduler.enterabs(t, 1, self.update, ())
我能做什么?
相关分类