views:

4394

answers:

5

Can you recommend a feed generator library for Python? I could build the XML myself, but I'm looking for a recommended library that is built from the ground up around the RSS (or Atom) spec.

+6  A: 

I haven't used them myself, but these exist:

Blair Conrad
+18  A: 

I can recommend that you use PyRSS2Gen. I've used it before and it's really simple and effective

Ricardo Reyes
Thanks for the suggestion!
lupefiasco
A: 

PyRSS2Gen and atomxlib

lupefiasco
+3  A: 

According to http://trac.defuze.org/wiki & http://trac.defuze.org/wiki/atomixlib: atomxlib is "deprecated in favor of the more generic bridge".

So knowing that atomxlib is no longer updated, the choice (for me) is now between PyRSS2Gen and a generic XML library (but not necessarily bridge).

Daryl Spitzer
A: 
Pascal Raszyk