您好我正在尝试从多个站点rss中提取图像。
第一个rss
<enclosure type="image/jpeg" length="321742" url="http://www.sitio.com.uy//uploads/2014/10/19/54441d68e01af.jpg"/>
第二个rss
<g:image_link>http://img.sitio2.com/imagenes/314165_20150422201743_635653477836873822w.jpg</g:image_link>
需要提取图片的网址。
我的代码是python中的Beatifulsoup
response = requests.get(url)
soup = bs4.BeautifulSoup(response.text)
items = soup.find_all('item')
for item in items:
title = item.find('title').get_text().encode('utf-8')
description = item.find('description').get_text().encode('utf-8')
category = item.find('category').get_text().encode('utf-8')
image = item.find('enclosure')
print(image)
答案 0 :(得分:0)
您可以使用标记列表搜索多个标记。
item.find(['enclosure', 'g:image_link'])
这将返回它找到的第一个标签。如果有多个代码,请使用find_all
。
item.find_all(['enclosure', 'g:image_link'])