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 details)

Uploaded Source

File details

Details for the file djmodelcron-0.1.0.tar.gz.

File metadata

  • Download URL: djmodelcron-0.1.0.tar.gz
  • Upload date:
  • Size: 3.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for djmodelcron-0.1.0.tar.gz
Algorithm Hash digest
SHA256 3f05bbae33717029769284f9def93644e67edf1e58b3645afa84b11fba3d4667
MD5 3e181c6c5ecfcf4ac0c5a8357d39f379
BLAKE2b-256 32750d3a909c748390dafb1c66515e0e758797e517e350ac08f40268888824b6

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