On Sun, Mar 8, 2009 at 9:08 PM, adelevie <adele...@gmail.com> wrote:

>
> I am building an app that uses the python-twitter module (a python
> library for twitter's api). I want to gather data from the public
> timeline which is updated about every minute. I have a function that
> given a feed will store it in the db. What is a good approach to
> making it so this function runs about every minute?
>
> Thanks,
> Alan
> >
>
Django doesn't have a special facility for doing this so the right way is to
use your OS level services, in the case of Unix, cron jobs.  Just right a
script to do this(possibly as a management command) and schedule it to run
every X minutes.

ALex

-- 
"I disapprove of what you say, but I will defend to the death your right to
say it." --Voltaire
"The people's good is the highest law."--Cicero

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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