如何安排作业在每小时开始时开始

How to schedule jobs to start at the beginning of each hour

我想在每小时开始时安排一个任务,我不想让脚本开始时有初始时间,但我希望任务像系统每小时开始时一样开始时间 python

我使用一个名为 schedule made by Dan Bader 的库来安排我的任务。使用它非常容易,您可以像文档中提到的那样执行以下操作:

import schedule
import time

def job():
    print("I'm working...")

schedule.every().hour.do(job)

while True:
    schedule.run_pending()
    time.sleep(1)


安装:

pip install schedule

要了解更多安排时间、时间等的方法,请查看他的文档。