菜比之路

走菜比的路,让大牛说去吧
  博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

【python】python定时器

Posted on 2016-09-08 14:36  毕加索的ma  阅读(247)  评论(0编辑  收藏  举报
#coding:utf-8
import os
import time

def print_ts(message):
    print "[%s] %s"%(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()), message)###转为为2016-09-08 13:36:32时间格式

def run(interval, command):
    print_ts("-"*100)
    print_ts("Command %s"%command)
    print_ts("Starting every %s seconds."%interval)
    print_ts("-"*100)

    while True:
        try:
            # sleep for the remaining seconds of interval,http://www.sharejs.com
            print_ts("Sleeping until %s (%s seconds)..."%((time.ctime(time.time()+interval)), interval))
            time.sleep(interval)
            print_ts("Starting command.")

            # execute the command
            status = os.system(command)
            print_ts("-"*100)
            print_ts("Command status = %s."%status)
        except Exception,e:
            print e

if __name__=="__main__":
    interval = 500
    command = r"ipconfig"
    run(interval, command)