1. 使用schedule
模块 安装:pip install schedule
schedule
模块就像一个日程表,让你的Python程序按计划运行。看这个例子:
import schedule
import timedef job():print("定时任务执行啦!")# 每天早上8点执行
schedule.every().day.at("08:00").do(job)while True:schedule.run_pending()time.sleep(1)
2. 使用APScheduler
安装:pip install apscheduler
这个库的强大之处在于可以处理复杂的调度需求。比如,我们设置每小时执行一次:
from apscheduler.schedulers.blocking import BlockingSchedulerdef job():print("执行任务")scheduler = BlockingScheduler()
scheduler.add_job(job, 'interval', hours=1) # 每隔一小时执行
scheduler.start()
3. 使用threading
模块 如果你的任务是多线程的,可以利用threading
来创建一个守护线程,让它在主线程结束后依然执行:
import threadingdef timed_task():print("定时任务开始")time.sleep(5) # 假设这是你的任务,实际替换为你的代码print("定时任务结束")thread = threading.Thread(target=timed_task)
thread.setDaemon(True) # 设为守护线程
thread.start()
4. 结合time
模块和os
模块 最基础的方法就是利用time.sleep()
和os.system()
,简单粗暴地定时执行命令:
import time
import osdef run_at特定时间(command):time.sleep(60 * 30) # 等待30分钟os.system(command) # 执行命令,如:os.system("your_command_here")run_at_specific_time("your_command_here")
5. 使用Windows任务计划器(仅限Windows) 如果你是在Windows环境下,Python作为服务运行,可以利用任务计划器。首先,将你的Python脚本打包成.exe文件,然后在任务计划器中设置定时任务。