Django项目定时任务django-crontab

首先定义一个定时任务函数tasks.py(见文章末尾示例),编写函数,然后在setting.py中配置定时任务

1、首先安装django-crontab

python 复制代码
pip install django-crontab

2、在setting.py中添加应用 (在所有自定义注册app之上)

python 复制代码
INSTALLED_APPS = [
    ...
    'django_crontab',
]

在项目根路径setting.py中设置定时任务

python 复制代码
# 定时任务
CRONJOBS = [
    # 每分钟发送一条通知
    # app:为应用名,cron为py文件名,inform为文件中的函数
    ('0 12 * * *', 'GuaranteeCommitmentLetter.tasks.Dacheck_and_send_email'),  # 每天12点执行
    ('0 12 * * *', 'GuaranteeCommitmentLetter.tasks.Macheck_and_send_email'),
    ('0 12 * * *', 'GuaranteeCommitmentLetter.tasks.Macheck_and_send_dingtalk'),
    ('0 12 * * *', 'GuaranteeCommitmentLetter.tasks.Dacheck_and_send_dingtalk'),
    ('0 12 * * *', 'GuaranteeCommitmentLetter.tasks.Macheck_and_send_mas'),
]

3、非英文字符处理,在setting.py中加入这行

python 复制代码
CRONTAB_COMMAND_PREFIX = 'LANG_ALL=zh_cn.UTF-8'

4、开启定时任务

python 复制代码
python manage.py crontab add

5、查看定时任务

python 复制代码
python manage.py crontab show

6、删除定时任务

python 复制代码
python manage.py crontab remove

7、直接运行定时任务,任务id在你add的时候前面有一个哈希的id

python 复制代码
python manage.py crontab run <任务id>        

附:项目tasks.py,实际使用中,需根据自己情况编码

python 复制代码
# tasks.py
import datetime
import base64
import hashlib
import json

import urllib3
import requests
from django.core.mail import send_mail

import GovernmentManagement.settings
from GuaranteeCommitmentLetter.models import MunicipalGuaranteeCommitmentLetter, DistrictGuaranteeCommitmentLetterAudit


def Macheck_and_send_email():
    unit_company = MunicipalGuaranteeCommitmentLetter.objects.filter(guarantee_time__lt=datetime.datetime.now(), audit_status=0)
    user_email = {}
    for i in unit_company:  # 获取company_name字段的值
        user_email[i.company_name] = i.user_email  # 获取email字段的值
    system_name = {}
    for i in unit_company:  # 获取company_name字段的值
        system_name[i.company_name] = i.system_name  # 获取email字段的值

    if unit_company:
        for i in unit_company:
            # 发送邮件
            subject = '标题'
            message = 内容
            from_email = GovernmentManagement.settings.EMAIL_HOST_USER
            recipient_list = [user_email[i.company_name]]
            send_mail(subject, message, from_email, recipient_list)  # 发送邮件
        return '邮件发送成功'
    else:
        return '无需发送邮件'

        return '无需发送短信'
相关推荐
uzong1 小时前
技术故障复盘模版
后端
GetcharZp1 小时前
基于 Dify + 通义千问的多模态大模型 搭建发票识别 Agent
后端·llm·agent
桦说编程2 小时前
Java 中如何创建不可变类型
java·后端·函数式编程
IT毕设实战小研2 小时前
基于Spring Boot 4s店车辆管理系统 租车管理系统 停车位管理系统 智慧车辆管理系统
java·开发语言·spring boot·后端·spring·毕业设计·课程设计
wyiyiyi2 小时前
【Web后端】Django、flask及其场景——以构建系统原型为例
前端·数据库·后端·python·django·flask
mit6.8242 小时前
[1Prompt1Story] 滑动窗口机制 | 图像生成管线 | VAE变分自编码器 | UNet去噪神经网络
人工智能·python
没有bug.的程序员2 小时前
JVM 总览与运行原理:深入Java虚拟机的核心引擎
java·jvm·python·虚拟机
甄超锋3 小时前
Java ArrayList的介绍及用法
java·windows·spring boot·python·spring·spring cloud·tomcat
阿华的代码王国3 小时前
【Android】RecyclerView复用CheckBox的异常状态
android·xml·java·前端·后端
Jimmy3 小时前
AI 代理是什么,其有助于我们实现更智能编程
前端·后端·ai编程