Recommended Python RSS/Atom feed generator? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-30T09:15:16Z http://stackoverflow.com/feeds/question/57117 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/57117/recommended-python-rss-atom-feed-generator 21 Recommended Python RSS/Atom feed generator? lupefiasco 2008-09-11T17:17:30Z 2009-05-14T23:52:59Z <p>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.</p> http://stackoverflow.com/questions/57117/recommended-python-rss-atom-feed-generator/57129#57129 6 Answer by Blair Conrad for Recommended Python RSS/Atom feed generator? Blair Conrad 2008-09-11T17:25:13Z 2008-09-11T17:25:13Z <p>I haven't used them myself, but these exist:</p> <ul> <li><a href="http://www.dalkescientific.com/Python/PyRSS2Gen.html" rel="nofollow">PyRSS2Gen</a></li> <li><a href="http://pypi.python.org/pypi/atomixlib/0.6.1a" rel="nofollow">atomxlib</a></li> </ul> http://stackoverflow.com/questions/57117/recommended-python-rss-atom-feed-generator/57182#57182 14 Answer by Ricardo Reyes for Recommended Python RSS/Atom feed generator? Ricardo Reyes 2008-09-11T17:48:14Z 2008-09-11T17:48:14Z <p>I can recommend that you use <a href="http://www.dalkescientific.com/Python/PyRSS2Gen.html" rel="nofollow">PyRSS2Gen</a>. I've used it before and it's really simple and effective</p> http://stackoverflow.com/questions/57117/recommended-python-rss-atom-feed-generator/467209#467209 -1 Answer by lupefiasco for Recommended Python RSS/Atom feed generator? lupefiasco 2009-01-21T22:00:37Z 2009-01-21T22:00:37Z <p>Thanks for the help everyone, the links were useful.</p> http://stackoverflow.com/questions/57117/recommended-python-rss-atom-feed-generator/505310#505310 -1 Answer by lupefiasco for Recommended Python RSS/Atom feed generator? lupefiasco 2009-02-02T22:49:51Z 2009-02-02T22:49:51Z <p>PyRSS2Gen and atomxlib</p> http://stackoverflow.com/questions/57117/recommended-python-rss-atom-feed-generator/866446#866446 2 Answer by Daryl Spitzer for Recommended Python RSS/Atom feed generator? Daryl Spitzer 2009-05-14T23:52:59Z 2009-05-14T23:52:59Z <p>According to <a href="http://trac.defuze.org/wiki" rel="nofollow">http://trac.defuze.org/wiki</a> &amp; <a href="http://trac.defuze.org/wiki/atomixlib" rel="nofollow">http://trac.defuze.org/wiki/atomixlib</a>: <a href="http://trac.defuze.org/wiki/atomixlib" rel="nofollow">atomxlib</a> is "deprecated in favor of the more generic <a href="http://trac.defuze.org/wiki/bridge" rel="nofollow">bridge</a>".</p> <p>So knowing that atomxlib is no longer updated, the choice (for me) is now between <a href="http://www.dalkescientific.com/Python/PyRSS2Gen.html" rel="nofollow">PyRSS2Gen</a> and a <a href="http://stackoverflow.com/questions/337/xml-processing-in-python">generic XML library</a> (but not necessarily bridge).</p>