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.
feedback
|
|
I can recommend that you use PyRSS2Gen. I've used it before and it's really simple and effective | |||
|
feedback
|
|
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). | |||
|
feedback
|
|
You can use my dict2rss Library to create a RSS-Feed from JSON/DICT Hashes. http://pastebucket.de/paste/749ce8de << Download this python-Modul and save it in your Python-Path. (Use dict2rss as Filename) The Syntax is very easy. Justuse this bunch of code.
You should now get the following Output in XML:
| |||||||||
feedback
|
|
WebHelpers has a feedgenerator class. | ||||
|
feedback
|