code enquest wrote:
> I need to do the following with Django.
> I need to read diffrent RSS or Atom feeds And print the latest on a page 
> according date.
> 
> How would I do this with Django? What would be the best practice to 
> achieve this?
> 

there is nothing specific regarding django...

you can basically go 2 ways:

1. in your view, you fetch all the RSS feeds, and construct the 
response, and show it.

or

2. (if you do not want to fetch those RSS feeds everytime when your page 
is viewed) you can fetch those RSS feeds on the background (for example 
using a cron-job to fetch them every hour), and store them in the 
database, and then in the view, read them from the database, construct 
the response and show it.

(alternatively you can take #1, and simply use the caching framework).

to parse the rss/atom i would recommend this: http://feedparser.org/

gabor

--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to