使用crontab与django [英] Using crontab with django

查看:119
本文介绍了使用crontab与django的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要创建一个从crontab每天发送通讯的功能。我在互联网上找到了两种方法:

I need to create a function for sending newsletters everyday from crontab. I've found two ways of doing this on the internet :

首先将文件放在django项目文件夹中:

First - file placed in the django project folder:

#! /usr/bin/env python
import sys
import os

from django.core.management import setup_environ
import settings
setup_environ(settings)

from django.core.mail import send_mail
from project.newsletter.models import Newsletter, Address

def main(argv=None):
    if argv is None:
        argv = sys.argv

    newsletters = Newsletter.objects.filter(sent=False)
    message = 'Your newsletter.'

    adr = Address.objects.all()
    for a in adr:
        for n in newsletters:
            send_mail('System report',message, a ,['user@example.com'])

if __name__ == '__main__':
    main()

我不知道它是否可以工作,我不知道如何运行它。让我们说它叫做run.py,所以我应该在cron中使用 0 0 * * * python /path/to/project/run.py

I'm not sure if it will work and I'm not sure how to run it. Let's say it's called run.py, so should I call it in cron with 0 0 * * * python /path/to/project/run.py ?

第二个解决方案 - 在任何地方创建我的发送函数(就像一个正常的django函数),然后创建一个run.py脚本:

Second solution - create my send function anywhere (just like a normal django function), and then create a run.py script :

import sys
import os

os.environ['DJANGO_SETTINGS_MODULE'] = 'settings'

module_name = sys.argv[1]
function_name = ' '.join(sys.argv[2:])

exec('import %s' % module_name)
exec('%s.%s' % (module_name, function_name))

然后在cron调用: 0 0 * * * python /path/to/project/run.py newsletter.views daily_job()

And then in cron call : 0 0 * * * python /path/to/project/run.py newsletter.views daily_job()

推荐答案

我建议您创建您的功能 django-management-com如果您的命令是 send_newsletter 然后简单地

i would suggest creating your functionality as django-management-command and run it via crontab

运行它b
$ b

if your command is send_newsletter then simply

0 0 * * * python /path/to/project/manage.py send_newsletter

,在这种情况下您不需要设置设置模块/

and you don't need to take care of setting the settings module in this case/

这篇关于使用crontab与django的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆