python 簡單週期任務框架

#coding=utf-8 import time,sched,os   #初始化sched模塊的scheduler類 #第一個參數是一個能夠返回時間戳的函數,第二個參數能夠在定時未到達以前阻塞。 s = sched.scheduler(time.time,time.sleep)   #被週期性調度觸發的函數 def event_func():     print "Current Time:",
相關文章
相關標籤/搜索