2、发现群组 Python代码

http://blog.csdn.net/sherri_du/article/details/50764341

python解析RSS(feedparser)介绍

feedparser的使用 
不得不说feedparser非常的强大不仅是因为它对各种rss版本的兼容性非常好,而且使用起来很简单,就一个函数(如假包换) 
上代码:

1  d = feedparser.parse('http://feed.cnblogs.com/blog/u/161528/rss')

可以看到就只有一个parse函数,这里传入的是我的博客的rss地址,这时候rss的全部内容就都在这个d里面了 


你可能感兴趣的:(2、发现群组 Python代码)