我在做解析。我想在描述标签中获取图像。我正在使用 urllib 和 BeautifulSoup。我可以获取单独标签内的图像,但无法以编码格式获取描述标签内的图像。
xml代码
<item>
<title>Kidnapped NDC member and political activist tells his story</title>
<link>http://www.yementimes.com/en/1724/news/3065</link>
<description><img src="http://www.yementimes.com/images/thumbnails/cms-thumb-000003081.jpg" border="0" align="left" hspace="5" />
‘I kept telling them that they would never break me and that the change we demanded in 2011 would come whether they wanted it or not’
<br clear="all"></description>
视图.py
for q in b.findAll('item'):
d={}
d['desc']=strip_tags(q.description.string).strip(' ')
if q.guid:
d['link']=q.guid.string
else:
d['link']=strip_tags(q.comments)
d['title']=q.title.string
for r in q.findAll('enclosure'):
d['image']=r['url']
arr.append(d)
谁能给我一个想法来做这件事。
这就是我在单独标签内解析图像所做的事情...我试图了解它是否在描述中,但我做不到。