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 '无需发送短信'
相关推荐
z千鑫3 分钟前
【人工智能】深入理解PyTorch:从0开始完整教程!全文注解
人工智能·pytorch·python·gpt·深度学习·ai编程
MessiGo26 分钟前
Python 爬虫 (1)基础 | 基础操作
开发语言·python
Tech Synapse32 分钟前
Java根据前端返回的字段名进行查询数据的方法
java·开发语言·后端
.生产的驴32 分钟前
SpringCloud OpenFeign用户转发在请求头中添加用户信息 微服务内部调用
spring boot·后端·spring·spring cloud·微服务·架构
微信-since811921 小时前
[ruby on rails] 安装docker
后端·docker·ruby on rails
肥猪猪爸1 小时前
使用卡尔曼滤波器估计pybullet中的机器人位置
数据结构·人工智能·python·算法·机器人·卡尔曼滤波·pybullet
LZXCyrus1 小时前
【杂记】vLLM如何指定GPU单卡/多卡离线推理
人工智能·经验分享·python·深度学习·语言模型·llm·vllm
Enougme1 小时前
Appium常用的使用方法(一)
python·appium
懷淰メ1 小时前
PyQt飞机大战游戏(附下载地址)
开发语言·python·qt·游戏·pyqt·游戏开发·pyqt5
hummhumm2 小时前
第 22 章 - Go语言 测试与基准测试
java·大数据·开发语言·前端·python·golang·log4j