What's a good way to mix RSS feeds using Python? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T21:46:26Zhttp://stackoverflow.com/feeds/question/816118http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/816118/whats-a-good-way-to-mix-rss-feeds-using-python0What's a good way to mix RSS feeds using Python?rick2009-05-03T02:15:47Z2009-05-03T18:08:20Z
<p>SimplePie lets you merge feeds together:</p>
<p><a href="http://simplepie.org/wiki/tutorial/sort_multiple_feeds_by_time_and_date" rel="nofollow">http://simplepie.org/wiki/tutorial/sort_multiple_feeds_by_time_and_date</a></p>
<p>Is there anything like this in the Python world? The Universal Feed Parser documentation doesn't say anything about merging multiple feeds together.</p>
http://stackoverflow.com/questions/816118/whats-a-good-way-to-mix-rss-feeds-using-python/816216#8162161Answer by Dustin for What's a good way to mix RSS feeds using Python?Dustin2009-05-03T03:12:42Z2009-05-03T03:12:42Z<p><a href="http://github.com/dustin/snippets/blob/master/python/net/http/combiner.py" rel="nofollow">This</a> may be a good start for you. I wrote it a long time ago for one very specific combination, but I don't think I wrote it <em>too</em> specifically for my needs.</p>
http://stackoverflow.com/questions/816118/whats-a-good-way-to-mix-rss-feeds-using-python/816268#8162681Answer by Ignacio Vazquez-Abrams for What's a good way to mix RSS feeds using Python?Ignacio Vazquez-Abrams2009-05-03T03:34:07Z2009-05-03T03:34:07Z<p> <a href="http://www.planetplanet.org/" rel="nofollow">Planet is a feed aggregator written in Python. Its development is basically dead, but the code lives on in several forks, including Planet Venus</a>.</p>
http://stackoverflow.com/questions/816118/whats-a-good-way-to-mix-rss-feeds-using-python/816553#8165530Answer by devnull0 for What's a good way to mix RSS feeds using Python?devnull02009-05-03T08:04:19Z2009-05-03T08:04:19Z<p>I'm using Yahoo pipes for that task. It's a set a very powerful tools. I havo pipes join feeds based on certain criteria, and have it generate a compliant rss feed that i then process with universal feed parser.</p>
http://stackoverflow.com/questions/816118/whats-a-good-way-to-mix-rss-feeds-using-python/817637#8176371Answer by Peter Hoffmann for What's a good way to mix RSS feeds using Python?Peter Hoffmann2009-05-03T18:08:20Z2009-05-03T18:08:20Z<p><strong><a href="http://atomisator.ziade.org/" rel="nofollow">Atomisator</a></strong> is a data aggregator framework. Its purpose is to provide an engine to build any kind of data by merging several sources of data. It was developed as an example application in the book Expert Python Programming. You can use different In- and Output Formats. An RSS aggregartor is part of the examples.</p>