我正在使用urllib和beautifulsoup来解析django中的xml文件。 我无法用CDATA解析description标记的内容。
我的xml标签。
<item>
<title>EU Confronting US Over Surveillance</title>
<description><![CDATA[Voice of America is an international news and broadcast organization serving Central and Eastern Europe, the Caucasus, Central Asia, Russia, the Middle East and Balkan countries]]></description>
<guid>http://www.voanews.com/content/eu-confronting-us-over-surveillance/1778928.html</guid>
</item>
此描述标记位于item标记内 views.py
for i in soup.findAll('item'):
print i.description.string
如果CDATA不存在意味着我可以解析descirption标签内的内容。我不知道如何解析这个内容。 请帮帮我 另外如何在标签内获取图像..
<description><img src='http://static.ibnlive.in.com/ibnlive/pix/sitepix/10_2013/tony-abbott-visits-afghanistan-says-australias-war-is-over_291013013344_338x225.jpg' width='90' height='62'><p>"Australia's longest war" is ending and its defence forces mission in Afghanistan will be complete by 2013 end, Prime Minister Tony Abbott announced in a statement on Tuesday.</p></description>
答案 0 :(得分:0)
可以像这样访问CData:
>>> import BeautifulSoup
>>> txt = '''<description><![CDATA[Voice of America is an international news and broadcast organization serving Central and Eastern Europe, the Caucasus, Central Asia, Russia, the Middle East and Balkan countries]]></description>'''
>>> soup = BeautifulSoup.BeautifulSoup(txt)
>>> for cd in soup.findAll(text=True):
... if isinstance(cd, BeautifulSoup.CData):
... print 'CData value: %r' % cd
...
CData value: u'Voice of America is an international news and broadcast organi
zation serving Central and Eastern Europe, the Caucasus, Central Asia, Russia, t
he Middle East and Balkan countries'
>>>
基于您的评论的编辑应该有所帮助。
from bs4 import BeautifulSoup, CData
import urllib
source_txt = urllib.urlopen("http://voanews.com/api/epiqq")
soup = BeautifulSoup.BeautifulSoup(source_txt.read())
for cd in soup.findAll(text=True):
if isinstance(cd, CData):
print 'CData value: %r' % cd
注意事项:
urlopen
参数。它需要http