码迷,mamicode.com
首页 > 其他好文 > 详细

django计划任务_使用装饰器

时间:2016-12-16 02:11:15      阅读:373      评论:0      收藏:0      [点我收藏+]

标签:tar   style   simple   imp   min   schedule   mon   时间   当前时间   

功能实现:每秒输出当前时间

from apscheduler.scheduler import Scheduler
import datetime

schedudler = Scheduler(daemonic=False)


@schedudler.cron_schedule(day=‘*/1‘, hour=‘*/1‘,minute=‘*/1‘,second=‘*/1‘)
def quote_send_sh_job():
    print(‘a simple cron job start at‘, datetime.datetime.now())


schedudler.start()

APScheduler版本为2.1.2

本文出自 “我的博客” 博客,请务必保留此出处http://10552290.blog.51cto.com/10542290/1883094

django计划任务_使用装饰器

标签:tar   style   simple   imp   min   schedule   mon   时间   当前时间   

原文地址:http://10552290.blog.51cto.com/10542290/1883094

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!