本文介绍了如何解析“<media:group>"使用feedparser?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

rss 文件如下所示,我想获取 media:group 部分中的内容.我查看了 feedparser 的文档,但似乎没有提到这一点.怎么做?任何帮助表示赞赏.

<media:content url="http://media.XYZInfoX.com/images/archives_peace_comm_230_16mar_se_edited-1.jpg" medium="image" isDefault="false" height="230" width="230"/><media:content url="http://media.XYZInfoX.com/images/tex_trans_lawmans_230_16mar10_se.jpg" medium="image" isDefault="false" height="230" width="230"/><media:content url="http://www.XYZInfoX.com/MediaAssets2/learninghello/dalet/se-exp-outlaws-part2-17mar2010.Mp3" type="audio/mpeg" medium="audio" isDefault=假"/></media:group></项目>
解决方案

来自 PyPi 的 feedparser 4.1 有这个错误.

我的解决方案是从存储库中获取最新的 feedparser.py (4.2 pre).

svn checkout http://feedparser.googlecode.com/svn/trunk/feedparser-readonlycd feedparser-只读python setup.py 安装

现在您可以访问所有 Mrss 项目

>>>import feedparser # 新版本!>>>d = feedparser.parse(MY_

应该为你做这项工作

The rss file is shown as below, i want to get the content in section media:group . I check the document of feedparser, but it seems not mention this. How to do it? Any help is appreciated.

<?
解决方案

feedparser 4.1 as available from PyPi has this bug.

the solution for me was to get the latest feedparser.py (4.2 pre) from the repository.

svn checkout http://feedparser.googlecode.com/svn/trunk/ feedparser-readonly
cd feedparser-readonly
python setup.py install

now you can access all mrss items

>>> import feedparser  # the new version!
>>> d = feedparser.parse(MY_

should do the job for you

这篇关于如何解析“&lt;media:group&gt;"使用feedparser?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

06-21 13:25