`
dacoolbaby
  • 浏览: 1257217 次
  • 性别: Icon_minigender_1
  • 来自: 广州
社区版块
存档分类
最新评论

Python任务调度框架 APScheduler简介

阅读更多

#python任务调度轻量级框架

from apscheduler.scheduler import Scheduler
import time

# Start the scheduler
sched = Scheduler()


def job_function():
    print "Hello World"

print 'start to sleep'
sched.daemonic = False
sched.add_cron_job(job_function,day_of_week='mon-sun', hour='*', minute='0-59',second='*/5')
sched.start()
#下载包:http://pypi.python.org/pypi/APScheduler/

#参考:http://packages.python.org/APScheduler/index.html

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics