我想在Django中使用美麗的湯來提取xml標籤。這是我正在使用的標記示例:如何使用美麗湯從xml標籤中提取屬性?
<item>
<title>
Title goes here
</title>
<link>
Link1 goes here
</link>
<description>
Description goes here
</description>
<media:thumbnail url="Image URL goes here" height="222" width="300"/>
<pubDate>Thu, 15 Sep 2016 13:24:48 EDT</pubDate>
<guid isPermaLink="true">
Link2 goes here
</guid>
</item>
我已經獲得標題,鏈接和描述標記的字符串。但是我無法從media:thumbnail
標籤獲取網址。
這是我得到的標籤的其餘部分的值的片段:
soup=BeautifulSoup(urlopen(xmllink),'xml')
for items in soup.find_all('item'):
listTitle.append(items.title.get_text())
listURL.append(items.link.get_text())
listDescription.append(items.description.get_text())
幫助
向我們展示您到目前爲止嘗試過的方法。 –