通過sched模組可以實現通過自定義時間,自定義函式,自定義優先順序來執行函式。
範例一
1import
time
2import
sched
34 schedule =sched.scheduler( time.time,time.sleep)56
deffunc(string1):
7print
"now excuted func is %s
"%string189
"start
"10 schedule.enter(2,0,func,(1,))
11 schedule.enter(2,0,func,(2,))
12 schedule.enter(3,0,func,(3,))
13 schedule.enter(4,0,func,(4,))
14schedule.run()
1516
"end
"
schedule是乙個物件,叫什麼名字都可以
schedule.enter(delay,priority,action,arguments)
第乙個引數是乙個整數或浮點數,代表多少秒後執行這個action任務
第二個引數priority是優先順序,0代表優先順序最高,1次之,2次次之,當
兩個任務是預定在同乙個時刻執行時,根據優先順序決定誰先執行。
第三個引數就是你要執行的任務,可以簡單理解成你要執行任務的函式的函式名
第四個引數是你要傳入這個定時執行函式名函式的引數,最好用括號包起來,如果只傳入乙個
引數的時候用括號包起來,該引數後面一定要加乙個逗號,如果不打逗號,會出現錯誤。
例如schedule.enter(delay, priority, action, (argument1,))
run()一直被阻塞,直到所有任務全部執行結束。每個任務在同一執行緒中執行,所以如果乙個任務執行時間大於
其他任務的等待時間,那麼其他任務會推遲任務的執行時間,這樣保證沒有任務丟失,但這些任務的呼叫時間會比設定的推遲。
多執行緒執行定時任務
範例二
1import
time
2import
sched
3from threading import
timer
4def
print_name(str):
5print
"i'm %s
"%str
6print
"start
"7 timer(5,print_name,("
superman
",)).start()
8 timer(10,print_name,("
spiderman
",)).start()
9print
"end
"
通過多執行緒,實現定時任務
在多執行緒中,如果只通過schedule,會因為執行緒安全的問題會出現阻塞,乙個任務執行,如果沒有結束而另乙個任務就要等待。
通過threading.timer可以避免這個問題效果就是直接執行print start和print end,而定時任務會分開執行。列印end不會阻塞。
Python定時任務sched(一)
這裡介紹一下python中定時任務 sched import datetime import schedule import time import sched schedule2 sched.scheduler time.time,time.sleep def fun2 string1 time....
python定時任務 sched模組
通過sched模組可以實現通過自定義時間,自定義函式,自定義優先順序來執行函式。schedule sched.scheduler time.time,time.sleep schedule是乙個物件,叫什麼名字都可以。schedule.enter delay,priority,action,argu...
springboot之定時任務 Scheduled
1 pom.xml中匯入必要的依賴 org.springframework.boot spring boot starter parent 2.0.1.release org.springframework.boot spring boot starter web org.springframewo...