tags:

views:

480

answers:

3

What's the best (or if that's too subjective, let's say "good", "well supported", "up-to-date", "you like it") python library, for generating RSS ?

(Circa 2009)

Update : Thanks everyone. Didn't see this was duplicate (http://stackoverflow.com/questions/57117/recommended-python-rssatom-feed-generator). Sorry.

+2  A: 

you may want to look at this question:

http://stackoverflow.com/questions/57117/recommended-python-rssatom-feed-generator

Vasil
A: 

I don´t know if it´s the best, but I´ve been using RawDogLib for years, hasn´t failed me yet. :-)

niklassaers
+1  A: 

I'd recommend using whichever comes integrated in framework you're using. For example in case of Django it'd be django.contrib.syndication.feeds

vartec
He might not be using a framework
obeattie