我想显示来自 disqus 的最新 3 条评论并将它们链接到它们所属的帖子。我进行了一些研究,他们通常会解释如何创建 rss 提要,但我想获取 rss 数据。当我打开这个 rss 时,我看到这样的 xml:
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
<channel>
<title>unicrow - Latest Comments</title>
<link rel="http://api.friendfeed.com/2008/03#sup" href="http://disqus.com/sup/all.sup#forumcomments-e63e6ca0" type="application/json" xmlns="http://www.w3.org/2005/Atom"/>
<link>http://unicrowblog.disqus.com/</link>
<description/>
<atom:link href="http://unicrowblog.disqus.com/comments.rss" rel="self"/>
<language>en</language>
<lastBuildDate>Thu, 01 Nov 2012 10:54:23 -0000</lastBuildDate>
<item>
<title>Re: http://box:8005/post/git-flow/</title>
<link>http://box:8005/post/git-flow/#comment-697865561</link>
<description><p>hjkgjfgtk</p></description>
<dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">kripton1</dc:creator>
<pubDate>Thu, 01 Nov 2012 10:54:23 -0000</pubDate>
</item>
...
</channel>
</rss>
我想在我的 django 项目中使用这个 xml。如何获取这个 xml RSS 提要?