python 好用的定时包schedule

import schedule,time,typer
from datetime import datetime
from new_schedule.spider.fsonlines.index import MiniprogressSpider
run_app=typer.Typer()

def run_task():
    # try:
    MiniprogressSpider(datetime.today()).start()
    # except Exception as e:
    #     print('定时任务异步失败:', str(e))

# 定义每日调度任务
def daily_schedule():
    print('定时任务配置开始')
    schedule.every().day.at("11:20").do(run_task)
    schedule.every().day.at("10:50").do(run_task)

# 启动调度器
def start_scheduler():
    print('调度任务开始')
    while True:
        schedule.run_pending()
        time.sleep(1)

@run_app.command()
def start():
    # 启动每日调度任务
    daily_schedule()
    # 启动调度器
    start_scheduler()

if __name__ == '__main__':
    start()

网上很多schedule 调用windows 上的程序都不能正常运行。目前这个还是非常稳的

你可能感兴趣的:(python,前端,开发语言)