這篇文章給大家介紹定時任務怎么在Django中設置,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。
目前累計服務客戶超過千家,積累了豐富的產(chǎn)品開發(fā)及服務經(jīng)驗。以網(wǎng)站設計水平和技術(shù)實力,樹立企業(yè)形象,為客戶提供做網(wǎng)站、網(wǎng)站建設、網(wǎng)站策劃、網(wǎng)頁設計、網(wǎng)絡營銷、VI設計、網(wǎng)站改版、漏洞修補等服務。創(chuàng)新互聯(lián)始終以務實、誠信為根本,不斷創(chuàng)新和提高建站品質(zhì),通過對領先技術(shù)的掌握、對創(chuàng)意設計的研究、對客戶形象的視覺傳遞、對應用系統(tǒng)的結(jié)合,為客戶提供更好的一站式互聯(lián)網(wǎng)解決方案,攜手廣大客戶,共同發(fā)展進步。Django 作為后端Web開發(fā)框架,有時候我們需要用到定時任務來或者固定頻次的任務來執(zhí)行某段代碼,這時我們就要用到Celery了。Django中有一個中間件:Django-celery
環(huán)境:
Python 3.6
Django為小于1.8版本
Celery為3.1版本
第一步安裝:django-celery
pip install django-celery
第二步:配置celery和任務
創(chuàng)建測試django環(huán)境:
django-admin.py createproject test django-admin.py startapp demo
創(chuàng)建好的項目布局如下:
- proj/ - manage.py - proj/ - __init__.py - celery.py - settings.py - urls.py - demo/ - migrations - __init__.py - admin.py - apps.py - models.py - tasks.py - tests.py - views.py
2.1 配置celery.py文件
需要替換的內(nèi)容,我都在對應的行后提示了,剩下的內(nèi)容默認就好
創(chuàng)建test/test/celery.py文件,內(nèi)容如下:
from __future__ import absolute_import, unicode_literals import os from celery import Celery # set the default Django settings module for the 'celery' program. os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'proj.settings') # “proj.settings”替換為你的項目信息:test.settings app = Celery('proj') # 這里的proj替換為你的項目名稱:test # Using a string here means the worker doesn't have to serialize # the configuration object to child processes. # - namespace='CELERY' means all celery-related configuration keys # should have a `CELERY_` prefix. app.config_from_object('django.conf:settings', namespace='CELERY') # Load task modules from all registered Django app configs. app.autodiscover_tasks() @app.task(bind=True) def debug_task(self): print('Request: {0!r}'.format(self.request))
2.2 配置項目的init.py中配置celery內(nèi)容
打開test/test/__init_.py文件,添加內(nèi)容:
from __future__ import absolute_import, unicode_literals # This will make sure the app is always imported when # Django starts so that shared_task will use this app. from .celery import app as celery_app __all__ = ('celery_app',)
2.3 在task.py中添加計劃任務
編輯test/demo/task.py文件,添加計劃任務,內(nèi)容如下:
# Create your tasks here from __future__ import absolute_import, unicode_literals from celery import shared_task @shared_task def add(x, y): return x + y @shared_task def mul(x, y): return x * y @shared_task def xsum(numbers): return sum(numbers)
第三步:任務執(zhí)行
運行django項目: python manage.py runserver
3.1 后臺添加計劃任務
訪問“http://localhost:8000/admin/”,在celery的管理頁面里,選擇Periodic tasks,進行任務添加。選擇對應的任務,設置定時或者周期時間
3.2 啟動定時的celery服務
注意:celery依賴redis服務,需要提前運行redis服務:`redis-server`
# 以下兩個命令在不同的shell窗口里執(zhí)行,需要在django的目錄下 python manager.py celery beat -l info #接收定時任務的命令 python manager.py celery worker -l info #執(zhí)行定時任務的命令,此shell窗口會看到任務的輸入信息
3.3 啟動單次的celery服務
注意:celery依賴redis服務,需要提前運行redis服務:`redis-server`
python manager.py shell # 進到django的shell里 from demo.task import mul, xsum # 導入task任務 a = mul() b = xsum() # 執(zhí)行a, b會輸出信息 a(1,2) b(1)
PS:django-crontab實現(xiàn)Django定時任務
django-crontab安裝:
pip install django-crontab
django-crontab加入:只需要將django-crontab加入到settings.py的INSTALLED_APPS即可。如下代碼:
INSTALLED_APPS = ( 'django_crontab', ... )
django-crontab配置:settings.py中加入django-crontab的命令即可:
CRONJOBS = [ ('47 11 * * *', 'django.core.management.call_command', ['closepoll'],{},'>> /var/run.log'), ]
格式:
參數(shù)1:定時 例如47 11 * * * 表示每天的11時47分執(zhí)行
參數(shù)2:方法的python模塊路徑,如果執(zhí)行django-admin命令,則寫django.core.management.call_command
參數(shù)3:方法的位置參數(shù)列表(默認值:[]),如果執(zhí)行django-admin命令,則填寫所需執(zhí)行的命令,例如我們在polls中已經(jīng)定義過的closepoll
參數(shù)4:方法的關(guān)鍵字參數(shù)的dict(默認值:{})
參數(shù)5:執(zhí)行l(wèi)og存放位置(即重定向到文件,默認:'')
django-crontab任務加載:
django-crontab任務加載比較簡單,只需要運行 python manage.py crontab add 即可
查看已經(jīng)激活的任務使用 python manage.py crontab show
刪除已經(jīng)有的任務使用 python manage.py crontab remove
如果你修改了任務記得一定要使用 python manage.py crontab add 這個會更新定時任務
關(guān)于定時任務怎么在Django中設置就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
另外有需要云服務器可以了解下創(chuàng)新互聯(lián)scvps.cn,海內(nèi)外云服務器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務器、裸金屬服務器、高防服務器、香港服務器、美國服務器、虛擬主機、免備案服務器”等云主機租用服務以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應用場景需求。
標題名稱:定時任務怎么在Django中設置-創(chuàng)新互聯(lián)
瀏覽路徑:http://m.rwnh.cn/article36/iiisg.html
成都網(wǎng)站建設公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁設計公司、ChatGPT、App開發(fā)、網(wǎng)站內(nèi)鏈、電子商務、網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)