-
-
Save xuanyuanaosheng/4ff11d5aaf23a992ff823496580c6d48 to your computer and use it in GitHub Desktop.
使用python的sched和Timer执行定时任务
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# -*- coding: UTF-8 -*- | |
import sched, time | |
from threading import Thread, Timer | |
import subprocess | |
s = sched.scheduler(time.time, time.sleep) | |
class Job(Thread): | |
def run(self): | |
'''主要业务执行方法''' | |
print_time() | |
print "-------------- compiling --------------" | |
subprocess.Popen("compile.sh", cwd="/bes/nj-build") | |
def each_day_time(hour,min,sec,next_day=True): | |
'''返回当天指定时分秒的时间''' | |
struct = time.localtime() | |
if next_day: | |
day = struct.tm_mday + 1 | |
else: | |
day = struct.tm_mday | |
return time.mktime((struct.tm_year,struct.tm_mon,day, | |
hour,min,sec,struct.tm_wday, struct.tm_yday, | |
struct.tm_isdst)) | |
def print_time(name="None"): | |
print name, ":","From print_time",\ | |
time.time()," :", time.ctime() | |
def do_somthing(): | |
job = Job() | |
job.start() | |
def echo_start_msg(): | |
print "-------------- auto compile begin running --------------" | |
def main(): | |
#指定时间点执行任务 | |
s.enterabs(each_day_time(1,0,0,True), 1, echo_start_msg, ()) | |
s.run() | |
while(True): | |
Timer(0, do_somthing, ()).start() | |
time.sleep(24 * 60 * 60) | |
if __name__ = "__main__": | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment