Recommended Python RSS/Atom feed generator? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T09:15:16Zhttp://stackoverflow.com/feeds/question/57117http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/57117/recommended-python-rss-atom-feed-generator21Recommended Python RSS/Atom feed generator?lupefiasco2008-09-11T17:17:30Z2009-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#571296Answer by Blair Conrad for Recommended Python RSS/Atom feed generator?Blair Conrad2008-09-11T17:25:13Z2008-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#5718214Answer by Ricardo Reyes for Recommended Python RSS/Atom feed generator?Ricardo Reyes2008-09-11T17:48:14Z2008-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-1Answer by lupefiasco for Recommended Python RSS/Atom feed generator?lupefiasco2009-01-21T22:00:37Z2009-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-1Answer by lupefiasco for Recommended Python RSS/Atom feed generator?lupefiasco2009-02-02T22:49:51Z2009-02-02T22:49:51Z<p>PyRSS2Gen and atomxlib</p>
http://stackoverflow.com/questions/57117/recommended-python-rss-atom-feed-generator/866446#8664462Answer by Daryl Spitzer for Recommended Python RSS/Atom feed generator?Daryl Spitzer2009-05-14T23:52:59Z2009-05-14T23:52:59Z<p>According to <a href="http://trac.defuze.org/wiki" rel="nofollow">http://trac.defuze.org/wiki</a> & <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>