Andy,

I think you need to look at http://code.google.com/p/django-command-extensions/
I have never used the create_jobs but I use extensievely the scripting
possibility for my developpment & to prepare the json files for my
unit testing...

Rgds,

\T,



On Aug 18, 2:10 am, Andy <selforgani...@gmail.com> wrote:
> I have a Django application.
>
> One of my models looks like this:
>
>     class MyModel(models.Model):
>
>         def house_cleaning(self):
>         // cleaning up data of the model instance
>
> Every time when I update an instance of MyModel, I'd need to clean up
> the data N days later. So I'd like to schedule a job to call
>
>     this_instance.house_cleaning()
>
> N days from now.
>
> Is there any job queue that would allow me to:
>
>  - Integrate well with Django - allow me to call a method of
> individual model instances
>  - Only run jobs that are scheduled to run today
>  - Ideally handle failures gracefully
>
> Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to