views:

212

answers:

3

Seeing that YQL is being promoted as a good way to do things, I was curious as to how to use YQL to fetch and merge 2 different feeds into one (sorted by pubDate).

It's pretty trivial to fetch 2 feeds but it turns out that the feeds are just concatenated together and not merged.

Here's the sample code.

select channel.title,channel.link,channel.item.title,channel.item.link
    from xml where url in(
      'http://code.flickr.com/blog/feed/rss/',
      'http://feeds.delicious.com/v2/rss/codepo8?count=15',
      'http://www.stevesouders.com/blog/feed/rss',
      'http://www.yqlblog.net/blog/feed/',
      'http://www.quirksmode.org/blog/index.xml'
    )
A: 

This should do the trick

select channel.item.title,channel.item.link, channel.item.pubDate
    from xml where url in(
      'http://code.flickr.com/blog/feed/rss/',
      'http://feeds.delicious.com/v2/rss/codepo8?count=15',
      'http://www.stevesouders.com/blog/feed/rss',
      'http://www.yqlblog.net/blog/feed/',
      'http://www.quirksmode.org/blog/index.xml'
    )
  | unique(field="channel.item.link")
  | sort(field="channel.item.pubDate", descending="true")

use the post-query functions unique to filter out duplicates and sort to re-order your result. Here the link to the documentation of those functions http://developer.yahoo.com/yql/guide/sorting.html

Heiko Behrens
I don't suppose you know how to get YQL to output this as RSS? My goal is to pull in a bunch of feeds, pick out what is needed and output as a single RSS feed. I tried your example and it looks like it outputs multiple <rss> tags. If it makes it easier, "select * from xml" is fine.
jnman
A: 

Thanks for this info. It works when accessing the rss object, too:

select title,link,pubDate from rss where url in (
    'http://feeds.delicious.com/v2/rss/hasematzel?count=3',
    'http://oliverschwarz.tumblr.com/rss',
    'http://twitter.com/statuses/user_timeline/818226.rss',
    'http://hasematzel.de/blog/feed/',
    'http://piepmatzel.de/feed/'
) | sort(field="pubDate", descending="true")

This is a very simple way to create a newsroom or a lifestream. Don't forget to force-cache the YQL return :)

Oliver
+1  A: 

As to the RSS question - YQL always returns XML - if you want to turn it into an RSS feed you can also use Yahoo Pipes and the YQL module to get it as RSS.

Chris Heilmann