Django equivalent to paster for backend processes

Posted by intractelicious on Stack Overflow See other posts from Stack Overflow or by intractelicious
Published on 2010-05-02T19:59:28Z Indexed on 2010/05/02 20:08 UTC
Read the original article Hit count: 238

Filed under:
|

I use pylons in my job, but I'm new to django. I'm making an rss filtering application, and so I'd like to have two backend processes that run on a schedule: one to crawl rss feeds for each user, and another to determine relevance of individual posts relative to users' past preferences. In pylons, I'd just write paster commands to update the db with that data. Is there an equivalent in django? EG is there a way to run the equivalent of python manage.py shell in a non-interactive mode?

© Stack Overflow or respective owner

Related posts about django

Related posts about paster