python django 定时循环调用某个方法
时间: 2023-08-28 18:03:44 浏览: 178
你可以使用Python的定时任务库`schedule`来实现定时循环调用某个方法。下面是一个简单的示例代码,将会每隔5秒钟调用一次`hello()`方法:
```python
import schedule
import time
def hello():
print("Hello World!")
schedule.every(5).seconds.do(hello)
while True:
schedule.run_pending()
time.sleep(1)
```
你可以根据需要修改`hello()`方法的内容和定时任务的时间间隔。
阅读全文