views:

160

answers:

4

SimplePie lets you merge feeds together:

http://simplepie.org/wiki/tutorial/sort_multiple_feeds_by_time_and_date

Is there anything like this in the Python world? The Universal Feed Parser documentation doesn't say anything about merging multiple feeds together.

+1  A: 

This 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 too specifically for my needs.

Dustin
+1  A: 

 Planet is a feed aggregator written in Python. Its development is basically dead, but the code lives on in several forks, including Planet Venus.

Ignacio Vazquez-Abrams
SO seems to have issues with a link at the beginning of the answer. The URL for Planet Venus is http://intertwingly.net/code/venus/ .
Ignacio Vazquez-Abrams
A: 

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.

+1  A: 

Atomisator 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.

Peter Hoffmann