views:

158

answers:

1

Is there a third party django app for eaily importing rss items (specifically wordpress blog posts) in google-code? I've been searching for 20 minutes and can't pull anything up.

Ideally the end result would be something like:

def news(request):
    most_recent_post = ??? #get most recent rss post from http://feeds.feedburner.com/codinghorror/
    return rendex_to_response(
         "news.html", {
             'most_recent_post': most_recent_post,
          }, context_instance=RequestContext(request)
    )
+3  A: 

http://www.feedparser.org/

Adam