Re: RSS combinator

2013-03-07 Thread hinnack
Is'n that something for yahoo pipes? http://pipes.yahoo.com/pipes/ Of course pipes are not django... Hinnack Am Freitag, 8. März 2013 04:24:39 UTC+1 schrieb Lachlan Musicman: > > Hola, > > Does anyone know of a django app that would take a number of rss feeds > >1 and turn it into a single blo

Re: RSS combinator

2013-03-07 Thread Thomas Lockhart
On 3/7/13 7:24 PM, Lachlan Musicman wrote: Hola, > > Does anyone know of a django app that would take a number of rss > feeds and turn it into a single blog feed/stream? I'm using feedjack and I think it has features to amalgamate the feeds; I use it to subscribe to feeds then choose sets of f

Re: RSS combinator

2013-03-07 Thread Lachlan Musicman
I think feedparser is what I'm after - then it's just a matter of wrapping a template around the results. It could be done with any template really... https://pypi.python.org/pypi/feedparser https://code.google.com/p/feedparser/ Cheers L. On 8 March 2013 14:50, Shawn Milochik wrote: > I doubt t

Re: RSS combinator

2013-03-07 Thread Shawn Milochik
I doubt there's a Django app for that -- it's not a problem for a Web framework. You may be able to find a project that does this on Github or Bitbucket. RSS feeds are just XML files. You need something that will parse the XML from multiple files, then re-write one XML file containing the items fr