Python-在给定时间启动函数

如何在给定时间在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, ())

我能做什么?


慕侠2389804
浏览 368回答 3
3回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python