django定時(shí)任務(wù)
最近在做django項(xiàng)目時(shí),需要在項(xiàng)目運(yùn)行過程中運(yùn)行定時(shí)任務(wù),下面是調(diào)研的幾種方法。
一、django-contab插件
1、安裝:pip install django-crontab
2、定時(shí)測試腳本:
3、在settings.py上配置:
INSTALLED_APPS = (
‘django_crontab’,
…
)
CRONJOBS = [<br style="box-sizing: border-box;"/>
('*/1 * * * *','crontab_test.mycron.my_cron','>> '+os.path.join(BASE_DIR,'info.log')+' 2>&1')
]
4、啟動(dòng)定時(shí)任務(wù)
說明:定時(shí)器一般只用于linux系統(tǒng),linux本身帶了crontab的定時(shí)任務(wù)功能
使用下面的命令將定時(shí)任務(wù)寫入系統(tǒng)的crontab中,在系統(tǒng)中使用crontab –l可以看到
python manage.py crontab add
刪除定時(shí)任務(wù)命令
Python manage.py crontab remove
查看定時(shí)任務(wù)
Python manage.py crontab show
二、APScheduler
1、安裝
pip install apscheduler
2、在settings.py上配置:
INSTALLED_APPS = [
…
‘django_apscheduler’,#定時(shí)執(zhí)行任務(wù)
]
3、執(zhí)行遷移命令:
python manage.py migrate
4、使用
5、啟動(dòng)定時(shí)任務(wù)
sched.start()
DON’T
WORRY
BE
HAPPY
陪伴是最長情的告白
每日為你推送最in的測試技術(shù)
關(guān)注我哦