作者giive (lala)
看板Ruby
标题[心得] Feed Reader 实做
时间Thu Sep 21 13:11:01 2006
出自我的Blog
http://lightyror.blogspot.com/2006/09/feed-reader.html
Ruby 下面要实做 RSS 2.0 Reader 实在相当的简单
require 'rss/2.0'
require 'open-uri'
feed_url = '
http://blog.yam.com/twmovie/rss.xml'
open(feed_url) do |feed|
RSS::Parser.parse(feed.read , false).items.each do |item|
puts 'Title ' + item.title
puts 'Link ' + item.link
puts 'Content ' + item.description
puts 'Time ' + item.pubDate.to_s
puts "\n\n"
end
end
上面这一段就是读取相关的资讯
如果你只想取出前几个 feed ,你可以使用 each_with_index
require 'rss/2.0'
require 'open-uri'
feed_url = '
http://blog.yam.com/twmovie/rss.xml'
@feed_contents = Array.new
open(feed_url) do |feed|
RSS::Parser.parse(feed.read , false).items.each_with_index do |item , i|
@feed_contents << class="keyword">if i < class="keyword">end
end
这段就是取出前三的 feed 的 content 放入 @feed_contents 这个 array
程式码参考自此连结
http://www.robbyonrails.com/articles/2005/05/11/parsing-a-rss-feed
PS.
文中的 RSS Feed
http://blog.yam.com/twmovie/rss.xml
是一个极有意义的 Blog 因为有您 国片起飞
http://blog.yam.com/twmovie/
支持 Ruby on Rails 也请支持优质国片
ATOM 1.0 Reader 是这样做的
首先要先用 gem install atom 套件
gem install atom
然後再用 http / uri / atom 来 parse
我不确定 open-uri 可不可以使用 atom @@!
require 'atom'
require 'net/http'
require 'uri'
feed_url = '
http://blog.ning.com/atom.xml'
Atom::Feed.new(Net::HTTP::get(URI::parse(feed_url))).entries.each do
|entry|
puts "'#{entry.title}' by #{entry.authors.first.name} on
#{entry.published.strftime('%m/%d/%Y')}"
puts "'#{entry.summary}'"
puts "'#{entry.content.value}'"
end
本程式参考自这个网页
http://split-s.blogspot.com/2006/04/atom-10-parser-for-ruby.html
--
lighty RoR 是一个介绍 lighttpd , SQLite , Ruby and Rails 的 Blog
http://lightyror.blogspot.com/
--
※ 发信站: 批踢踢实业坊(ptt.cc)
◆ From: 61.218.90.242
※ 编辑: giive 来自: 61.218.90.242 (09/21 13:12)