Django - How to run a function EVERYDAY?

浪子不回头ぞ 提交于 2019-12-09 06:00:07

问题


I want to run this function everyday midnight to check expiry_date_notification. what can I do? I'm new to django and python.

def check_expiry_date(request):
    products = Product.objects.all()
    for product in products:
        product_id = product.id
        expiry_date = product.expiry_date
        notification_days = product.notification_days
        check_date = int((expiry_date - datetime.datetime.today()).days)
        if notification_days <= check_date:
            notification = Notification(product_id=product_id)
            notification.save()

回答1:


As others have said, Celery can schedule tasks to execute at a specific time.

from celery.schedules import crontab
from celery.task import periodic_task

@periodic_task(run_every=crontab(hour=7, minute=30, day_of_week="mon"))
def every_monday_morning():
    print("This is run every Monday morning at 7:30")

Install via pip install django-celery




回答2:


You can either write a custom management command and schedule its execution using cron, or you can use celery.




回答3:


Have a look at:

Celery - Distributed Task Queue



来源:https://stackoverflow.com/questions/23563934/django-how-to-run-a-function-everyday

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!