這篇文章帶給大家的內容是關於django中使用定時任務的兩種方法介紹,有一定的參考價值,有需要的朋友可以參考一下,希望對你有所幫助。
今天介紹在django中使用定時任務的兩種方式。
方式一: APScheduler
1)安裝:
pip install apscheduler
2)使用:
from apscheduler.scheduler import Scheduler from django.core.cache import cache # 实例化 sched = Scheduler() # 每30秒执行一次 @sched.interval_schedule(seconds=30) def sched_test(): """ 测试-定时将随机数保存到redis中 :return: """ seed = "123456789" sa = [] for i in range(4): sa.append(random.choice(seed)) code = ''.join(sa) cache.set("test_"+code, code)
3)啟動定時任務
# 启动定时任务 sched.start()
方式二: django-crontab
1) 安裝:
pip install django-crontab
2) 新增配置到INSTALL_APPS中
INSTALLED_APPS = (
'django_crontab',
)
3) 寫出定時函數:
在django的app中新建一个test_crontab.py文件,把需要定时执行的代码放进去
import random from django.core.cache import cache def test(): """ 测试-定时将随机数保存到redis中 :return: """ seed = "123456789" sa = [] for i in range(4): sa.append(random.choice(seed)) code = ''.join(sa) cache.set("test_"+code, code)
4)編寫定時命令
Django為專案中每一個應用下的management/commands目錄中名字沒有以下劃線開始的Python模組都註冊了一個manage.py命令, 自訂一個命令如下: 必須定義一個繼承自BaseCommand的Command類別, 並實作handle方法。
寫appname/management/commands/test.py檔
import random from django.core.management.base import BaseCommand from django.core.cache import cache class Command(BaseCommand): """ 自定义命令 """ def handle(self, *args, **options): """ 自定义命令 :return: """ seed = "123456789" sa = [] for i in range(4): sa.append(random.choice(seed)) code = ''.join(sa) cache.set("test_"+code, code)
定義完成後,執行python manage.py test, 會執行handle()函數
#5) 在settings.py中增加配置
# 运行定时函数 CRONJOBS = [ ('*/1 * * * *', 'appname.test_crontab.test','>>/home/python/test_crontab.log') ] # 运行定时命令 CRONJOBS = [ ('*/1 * * * *', 'django.core.management.call_command', ['test'], {}, '>> /home/python/test.log'), ]
上面主要有3個參數,分別表示: 定時任務執行時間(間隔), 待執行定時任務, 將定時任務的資訊追加到文件中
對於熟悉linux中定時任務crontab的同學可能對上面第一個參數的語法很親切。上面表示每隔1分鐘執行一次程式碼。
linux中的定時任務crontab的語法如下:
* * * * * command 分钟(0-59) 小时(0-23) 每个月的哪一天(1-31) 月份(1-12) 周几(0-6) shell脚本或者命令
範例:
0 6 * * * commands >> /tmp/test.log # 每天早上6点执行, 并将信息追加到test.log中 0 */2 * * * commands # 每隔2小时执行一次
有興趣的小夥伴可以深入研究下linux的crontab定時任務。
6) 新增並啟動定時任務
python manage.py crontab add
其它指令:
python manage.py crontab show: 显示当前的定时任务 python manage.py crontab remove: 删除所有定时任务
今天的定時任務就說到這裡,有錯誤之處,歡迎交流指正!
以上是django中使用定時任務的兩種方法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!