以下のXMLでtypeの値を取得する方法
<info><category>Flip</category><info>2</info><type>Tree</type></info>
以下のXMLでtypeの値を取得する方法
<info><category>Flip</category><info>2</info><type>Tree</type></info>
ElementTreeの使用:
import xml.etree.ElementTree as E
e = E.parse("test.xml")
print(e.find("type").text)
ミニダムの使用:
import xml.dom.minidom
d = xml.dom.minidom.parse("test.xml")
print(d.getElementsByTagName("type")[0].firstChild.data)
from BeautifulSoup import BeautifulStoneSoup
soup = BeautifulStoneSoup(open("test.xml"))
print(soup.find("type").text)