django+crontab 定时任务

1.安装pip install django-crontab

2.settings.py

INSTALLED_APPS
中添加  'django_crontab'

3.设置function

在 pc.py  中添加方法
def test():
    print('django_crontab test')

4.settings.py

每天早上8 点开始跑定时任务
# CRONJOBS = [
# ('0 8 * * *', 'pc.cron.get_urls','>>/home/cronfile/test.log'),
# ]

5.添加定时任务

python manage.py crontab add
备注
1.移除定时任务
python manage.py crontab remove
2.查看定时任务
crontab -l

你可能感兴趣的:(django+crontab 定时任务)