当前位置:主页 > >

Django crontab定时任务模块操作方法解析

时间:2020-09-10 20:00:19 | 栏目: | 点击:

Django crontab定时任务

安装

pip install django-crontab

配置

在settings.py中 INSTALLED_APP中添加'django_crontab'

CRONJOBS = [
	('*/1 * * * *','echo "hello world" > /dev/null')
]

应用

函数

def demo():
	你所要执行的业务逻辑
CRONJOBS = [
	('*/1 * * * *','demo函数路径" ')
]

查看已有的定时任务

python manage.py crontab show

添加定时任务

python manage.py crontab add

从服务器确认定时任务是否已经添加

crontab -l
crontab -e

您可能感兴趣的文章:

相关文章