Django定时任务 Python定时任务

搬运出处: https://blog.csdn.net/yongche_shi/article/details/48683529

django-crontab

django-crontab安装

  • django-crontab安装:
    pip install django-crontab

  • django-crontab加入:只需要将django-crontab加入到settings.py的INSTALLED_APPS即可。如下代码:

  INSTALLED_APPS = (
    'django-crontab',
    ...
  )

django-crontab配置

配置见链接: https://blog.csdn.net/yongche_shi/article/details/48683529

猜你喜欢

转载自www.cnblogs.com/lab-zj/p/12106004.html