Skip to main content

Manage your crontab directly from DB.

Project description

django-dbcron
=============

Manage crontab directly from your Django database

Why
---

They are plenty of implementation of crontabs in Python and Django, but our
issue was their elasticity. Generally a set of classes will allow you to
create a crontab, here in django-dbcron, things are stored in database
instead of Python classes.


Installation
------------

Classic pip install: ::

pip install django-dbcron


Add it to you ``INSTALLED_APPS``: ::

INSTALLED_APPS = (
...
'dbcron',
...
)

Launch migrations: ::

./manage.py migrate dbcron

Usage
-----

This app owns its own cron daemon, launch it with: ::

./manage.py crond

The daemon will act as a classic cron and will run each task in a new thread,
leaving the main one continuing.

From admin
~~~~~~~~~

The cron table is set in database and the Django admin site is a quick
solution to manage you jobs.

From Python
~~~~~~~~~~

Just play with the model: ::

from dbcron.models import Job

# Run now() each minute
job = Job.object.create(
name='My job',
func='django.utils.timezone.now',
is_active=True,
sec="0",
min="*/1,
hou="*",
dom="*",
mon="*",
dow="*",
yea="*"
)

# Test it
job.run()

Warning
-------

The cron daemon launches jobs as they are requested with:

- function's path
- arguments and keyword arguments

There's no security about who/when/how, just functions launched abritairly,
Be careful who can set crontab, and do not hesitate to limit possible values.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-dbcron-0.5.3.tar.gz (12.9 kB view details)

Uploaded Source

File details

Details for the file django-dbcron-0.5.3.tar.gz.

File metadata

  • Download URL: django-dbcron-0.5.3.tar.gz
  • Upload date:
  • Size: 12.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.9.1 pkginfo/1.4.1 requests/2.18.4 setuptools/40.5.0 requests-toolbelt/0.8.0 tqdm/4.19.4 CPython/3.5.2

File hashes

Hashes for django-dbcron-0.5.3.tar.gz
Algorithm Hash digest
SHA256 352e279e82bf10883c944b3af34d68b7dfa4ea2562a1e49a3b21b2467964b169
MD5 9a7ac481de172be444a8750380062917
BLAKE2b-256 3eb929230bfbcd2d2e42ce330e845d572d6a52b3ed5dfa148633271309db137a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page