python sched
__author__ = 'Administrator'
# -*- coding: utf-8 -*-
#! /usr/bin/env python
#coding=utf-8
#这里需要引入三个模块
import time, os, sched,threading
# 第一个参数确定任务的时间,返回从某个特定的时间到现在经历的秒数
# 第二个参数以某种人为的方式衡量时间
schedule = sched.scheduler(time.time, time.sleep)
def perform_command(cmd, inc):
os.system(cmd)
def timming_exe(cmd, inc = 60):
# enter用来安排某事件的发生时间,从现在起第n秒开始启动
schedule.enter(inc, 0, perform_command, (cmd, inc))
schedule.enter(10, 0, perform_command, (cmd, inc))
schedule.enter(3, 0, perform_command, (cmd, inc))
# 持续运行,直到计划时间队列变成空为止
t = threading.Thread(target=schedule.run)
#schedule.run()
t.start()
print("show time after 10 seconds:")
timming_exe("echo %time%", 5)
print "next"
免责声明:
① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。
② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341