使用django.core.management的cron作业

时间:2017-04-04 00:50:16

标签: python django cron

在一个项目中,一个人(现在旅行)创建了带有内容的cron.py

# -*- coding: utf-8 -*-

from __future__ import unicode_literals
from django.core import management


def hourly():
    management.call_command(
        'transactions',
        check_completed=True,
        verbosity=0,
        interactive=False)


def deposits():
    management.call_command(
        'transactions',
        deposits=True,
        push=True,
        verbosity=0,
        interactive=False)


def debit():
    management.call_command(
        'transactions',
        debits=True,
        push=True,
        verbosity=0,
        interactive=False)

任何人都可以告诉我hourly()deposits()debit()是什么?我们怎么能用它来做cron工作?他似乎把它用于cron工作,但对我来说还不清楚。

谢谢!

0 个答案:

没有答案