• Stars
    star
    313
  • Rank 129,446 (Top 3 %)
  • Language
    Python
  • License
    MIT License
  • Created over 12 years ago
  • Updated about 1 year ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Kronos makes it really easy to define and schedule tasks with cron

https://raw.githubusercontent.com/jgorset/django-kronos/master/docs/banner.png

https://coveralls.io/repos/github/jgorset/django-kronos/badge.svg?branch=master https://travis-ci.org/jgorset/django-kronos.svg?branch=master

Usage

Define tasks

Kronos collects tasks from cron modules in your project root and each of your applications:

# app/cron.py

import kronos
import random

@kronos.register('0 0 * * *')
def complain():
    complaints = [
        "I forgot to migrate our applications's cron jobs to our new server! Darn!",
        "I'm out of complaints! Damnit!"
    ]

    print random.choice(complaints)

Kronos works with Django management commands, too:

# app/management/commands/task.py

from django.core.management.base import BaseCommand

import kronos

@kronos.register('0 0 * * *')
class Command(BaseCommand):
    def handle(self, *args, **options):
        print('Hello, world!')

If your management command accepts arguments, just pass them in the decorator:

# app/management/commands/task.py

from django.core.management.base import BaseCommand

import kronos

@kronos.register('0 0 * * *', args={'-l': 'nb'})
class Command(BaseCommand):

    def add_arguments(self, parser):
        parser.add_argument(
            '-l', '--language',
            dest='language',
            type=str,
            default='en',
        )

    def handle(self, *args, **options):
        if options['language'] == 'en':
          print('Hello, world!')

        if options['language'] == 'nb':
          print('Hei, verden!')

Run tasks manually

$ python manage.py runtask complain
I forgot to migrate our applications's cron jobs to our new server! Darn!

Keep in mind that if the registered task is a django command you have to run it in the normal way:

$ python manage.py task

List all registered tasks

$ python manage.py showtasks
* List of tasks registered in Kronos *
>> Kronos tasks
    >> my_task_one
    >> my_task_two
>> Django tasks
    >> my_django_task

Register tasks with cron

$ python manage.py installtasks
Installed 1 task.

You can review the crontab with a crontab -l command:

$ crontab -l
0 0 * * * /usr/bin/python /path/to/manage.py runtask complain --settings=myprpoject.settings $KRONOS_BREAD_CRUMB
0 0 * * * /usr/bin/python /path/to/manage.py task --settings=myprpoject.settings $KRONOS_BREAD_CRUMB

Usually this line will work pretty well for you, but there can be some rare cases when it requires modification. You can achieve it with a number of settings variables used by kronos:

KRONOS_PYTHON
Python interpreter to build a crontab line (defaults to the interpreter you used to invoke the management command).
KRONOS_MANAGE
Management command to build a crontab line (defaults to manage.py in the current working directory).
KRONOS_PYTHONPATH
Extra path which will be added as a --pythonpath option to the management command.
KRONOS_POSTFIX
Extra string added at the end of the command. For dirty things like > /dev/null 2>&1
KRONOS_PREFIX
Extra string added at the beginning of the command. For dirty things like source /path/to/env &&. If you use the virtualenv, you can add the environment path by echo "KRONOS_PREFIX = 'source `echo $VIRTUAL_ENV`/bin/activate && '" >> myprpoject/settings.py

Define these variables in your settings.py file if you wish to alter crontab lines.

The env variable $KRONOS_BREAD_CRUMB is defined to detect which tasks have to be deleted after being installed.

Installation

$ pip install django-kronos

... and add kronos to INSTALLED_APPS.

Contribute

  • Fork the repository.
  • Do your thing.
  • Open a pull request.
  • Receive cake.

I love you

Johannes Gorset made this. You should tweet me if you can't get it to work. In fact, you should tweet me anyway.

More Repositories

1

facebook-messenger

Definitely the best way to make Bots on Facebook Messenger with Ruby
Ruby
959
star
2

facepy

Facepy makes it really easy to use Facebook's Graph API with Python
Python
864
star
3

fandjango

Fandjango makes it really easy to create Facebook applications with Django
Python
253
star
4

git.io

Command-line client for GitHub's URL shortener
Ruby
76
star
5

django-shortcuts

You spend too much time typing "python manage.py"
Python
62
star
6

Recorder

Record and play audio in Swift (and more easily than with AVFoundation)
Swift
37
star
7

django-respite

Respite conforms Django to Representational State Transfer (and, incidentally, HTTP)
Python
34
star
8

facebook

Facebook makes it even easier to interact with Facebook's Graph API
Python
22
star
9

label

Label describes the gems in your Gemfile so you don't have to look them up to see what they do
Ruby
19
star
10

fandjango-example

Example Facebook application powered by Fandjango
Python
19
star
11

push-it

Remember to push by the power of '80s classics
Shell
16
star
12

python-package-template

Minimal template for developing packages for Python
Python
11
star
13

discotech

Command lines can be bleak... disco time!
Ruby
11
star
14

meem

Meem is a command-line tool to create memes. It's pretty awesome.
Ruby
9
star
15

starred

Plays a victory fanfare when your repositories get starred on GitHub
JavaScript
8
star
16

lean-coffee

Lean Coffee for distributed teams
Ruby
8
star
17

john-terjify

Chrome extension that replaces "he" and "she" with "John Terje".
JavaScript
7
star
18

garble

Garble replaces words with synonyms
Ruby
7
star
19

adam

Adam is a library for all things EVE.
Ruby
5
star
20

reraises

Reraise an exception as another
Ruby
5
star
21

jjjaaa

JJJAAA
Ruby
4
star
22

jquery-placeholder

HTML5 placeholder emulation for older browsers
JavaScript
4
star
23

custodian

Lightweight resource monitor
Ruby
4
star
24

node-chat-server

Everyone has made a chat server in Node.js. This is mine.
JavaScript
3
star
25

lab

Command-line client for GitLab
Ruby
3
star
26

search

A file search and suggestion command
Ruby
3
star
27

can-i-hack-database

The database powering "can I hack".
3
star
28

github-commits-by-repository

A script to show commits for a given user, grouped by repository
JavaScript
2
star
29

cushion

Command-line Custodian client
Ruby
2
star
30

kingpin

Do-It-Yourself Heroku
Ruby
2
star
31

tig-dotfiles

2
star
32

whats-new-in-rails-4.1

My talk on Rails 4.1 for Hyper's Ruby meetup
Ruby
2
star
33

tmux-dotfiles

These are my TMUX dotfiles. I like them.
2
star
34

jquery-wizard

jQuery Wizard turns your forms into beautiful wizards without cluttering your markup.
JavaScript
2
star
35

zsh-dotfiles

These are my zsh dotfiles. I like them.
Shell
2
star
36

whisper-benchmarks

Python
1
star
37

vim-dotfiles

These are my VIM dotfiles. I like them.
Vim Script
1
star
38

Shame-Nun

Swift
1
star
39

jquery-collapsible

Collapse and expand DOM elements
JavaScript
1
star
40

jquery-table-of-contents

Table of Contents renders a table of contents for a given section of the document.
JavaScript
1
star
41

battlefield-timer

Respawn timers for vehicles in Battlefield 4
Ruby
1
star