Python里面如何添加定时任务
时间: 2023-07-04 07:17:11 浏览: 75
Python3实现定时任务的四种方式
在 Python 中可以使用第三方库 `schedule` 来添加定时任务。首先需要安装该库,可以通过以下命令来安装:
```
pip install schedule
```
安装完成之后,就可以使用该库来添加定时任务。下面是一个例子,演示如何每隔 10 秒钟打印一次当前时间:
```python
import schedule
import time
def print_time():
print(time.strftime("%Y-%m-%d %H:%M:%S", time.localtime()))
schedule.every(10).seconds.do(print_time)
while True:
schedule.run_pending()
time.sleep(1)
```
在这个例子中,`print_time` 函数用来打印当前时间,`schedule.every(10).seconds.do(print_time)` 这一行代码表示每隔 10 秒钟执行一次 `print_time` 函数。最后的 `while` 循环用来不断检查定时任务是否需要执行,如果需要执行则调用相应的函数。
你可以根据自己的需求,修改这个例子中的代码来添加自己的定时任务。
阅读全文