Posted in Python onFebruary 18, 2015
由于Google reader的关闭,这段时间接触rss的东西相对多很多。试过qq的reader,不怎么样,阅读速度没有,是否阅读的标记也没有。其他网站的不想用,又要多注册账户。
找到python的rss处理包feedparser,官方文档很详细。http://pythonhosted.org/feedparser/
>>> import feedparser >>> d = feedparser.parse(‘http://0x55aa.sinaapp.com/feed') >>> a = d.feed >>> a.title
可以使用keys来查看字典键,可以很清楚的弄懂每一个的意思。官方文档上每一个都有介绍。
>>> d['feed'].keys()
rss订阅的文章在d.entries里面是一个列表。
详细使用和高级用法见feedparser官方文档。
Python处理RSS、ATOM模块FEEDPARSER介绍
- Author -
junjie声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@