Re: Background Programs in Django

2012-09-26 Thread Tiago Albineli Motta
Create a django command to do the job and put it in the crontab On Wednesday, September 26, 2012 9:07:23 AM UTC-3, surya wrote: > > I have to use RSS/ Atom feeds of blogs in my Django app. So, I thought to > use Google Feed API. All the API provides is a BIG list of feeds.. > > If I need a post

Re: Background Programs in Django

2012-09-26 Thread John DeRosa
There are a number of technologies out there for background asynchronous tasks in Python. They differ on attributes such as how the tasks are managed and administered; the run queues' sophistication (how many, how they're divvied up, whether they can be pinned to servers, etc.), whether the

Background Programs in Django

2012-09-26 Thread surya
I have to use RSS/ Atom feeds of blogs in my Django app. So, I thought to use Google Feed API. All the API provides is a BIG list of feeds.. If I need a post (say no 25), I need to GET the whole feeds and search every time which is redundant. *So, I am thinking to run a background program