Skip to main content

Generic cron task for running instances of django models

Project description

What’s that?

Is a library that you can use to attach programmed executions of a method in the instances of any model in your django applications.

How to use

Install djmodelcron and django-recurrence.

You need to add a generic relation to the cron model of the djmodelcron app.

Using it

INSTALLED_APPS = (
             ...
             'djmodelcron',
             'recurrence',
)



# In your models.py
from djmodelcron.models import Cron

class MyModel(models.Model):
 title = models.CharField(max_length=125)
 cron = generic.GenericRelation(Cron)

 def run(self):
  print "This is call every time associated cron is executed"

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

djmodelcron-0.1.0.tar.gz (3.4 kB view hashes)

Uploaded Source

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