XML ファイルは次のようになります。
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<MINiML
xmlns="http://www.ncbi.nlm.nih.gov/geo/info/MINiML"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.ncbi.nlm.nih.gov/geo/info/MINiML http://www.ncbi.nlm.nih.gov/geo/info/MINiML.xsd"
version="0.5.0" >
<Contributor iid="contrib1">
<Person><First>ENCODE</First><Last>DCC</Last></Person>
<Email>encode-help@lists.stanford.edu</Email>
<Organization>ENCODE DCC</Organization>
<Address>
<Line>300 Pasteur Dr</Line>
<City>Stanford</City>
<State>CA</State>
<Zip-Code>94305-5120</Zip-Code>
<Country>USA</Country>
</Address>
</Contributor>
</MINiML>
ElementTree
Python でを使用する方法は次のとおりです。
import xml.etree.cElementTree as ET
tree=ET.parse("the_file_above.xml")
root = tree.getroot()
for c in root:
print c.tag, c.attrib
戻り値:
{http://www.ncbi.nlm.nih.gov/geo/info/MINiML}Contributor {'iid': 'contrib1'}
の値は でc.tag
あり'{http://www.ncbi.nlm.nih.gov/geo/info/MINiML}Contributor'
、これは であると予想していContributor
ました。タグに長い URL がどのように混在しているかはわかりません。誰かがこれについてアイデアを持っていますか?