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
Release history Release notifications | RSS feed
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)
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
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f05bbae33717029769284f9def93644e67edf1e58b3645afa84b11fba3d4667 |
|
MD5 | 3e181c6c5ecfcf4ac0c5a8357d39f379 |
|
BLAKE2b-256 | 32750d3a909c748390dafb1c66515e0e758797e517e350ac08f40268888824b6 |