python sched实现任务调度

### 除了之前提到的crontab在linux中定时调度py之外,还可以使用coding…….

# -*- coding:utf-8 -*-
# __author__ = 'jakey'

import time
import sched


schedule = sched.scheduler(time.time, time.sleep)


def task_time(skip_time):
    """
    待调度的任务
    :return:
    """
    # todo
    print "实现自己的业务逻辑代码"
    # skip_time时间之后再次调用自己
    schedule.enter(skip_time, 0, task_time, (skip_time, ))

if __name__ == "__main__":
    # 10s之后启动task_time任务
    schedule.enter(10, 0, task_time, (5, ))
    schedule.run()

博客来源: http://blog.csdn.net/juanjuel

你可能感兴趣的:(python)