登录 注册
当前位置:主页 > 资源下载 > 9 > Python任务调度工具py-task.zip下载

Python任务调度工具py-task.zip下载

  • 更新:2024-06-29 10:30:08
  • 大小:18KB
  • 推荐:★★★★★
  • 来源:网友上传分享
  • 类别:其它 - 开发技术
  • 格式:ZIP

资源介绍

py-task是一个Python下的任务调度工具 支持简单的周期性调度 支持Cron格式的任务调度 安装方法python setup.py install 或者pip install py-task示例代码:from task import task from task import task_container from task.job import job from task.trigger import cron_trigger class MyJob(job.Job):     def __init__(self):         pass     def execute(self):         print 'Hello now is '   str(time.time()) cron = '0-59/5 10,15,20 * * * * 2015' new_task = task.Task('Task', MyJob(), cron_trigger.CronTrigger(cron)) container.add_task(new_task) container.start_all() 标签:pytask