标签: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
标签:tar style simple imp min schedule mon 时间 当前时间
原文地址:http://10552290.blog.51cto.com/10542290/1883094