小码问答,有问必答!

Python如何执行定时任务?每隔5秒执行一次任务

Python

收藏

1个回答

我要回答

  • author
    牛叔叔 2021-01-23 11:14
    #主控程序,开启定时任务,播放铃声
    #使用APScheduler定时框架  pip install apscheduler
    from apscheduler.schedulers.blocking import BlockingScheduler
    from datetime import datetime
    
    def job():
        print(f'wanmait.com测试{datetime.now().strftime("%Y-%m-%d %H:%M:%S")}')
    
    scheduler = BlockingScheduler()
    scheduler.add_job(job,'interval',seconds=5)
    scheduler.start()