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>
以下是我在Python中使用ElementTree
的方法:
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
。我不确定长标签是如何混合在标签中的。有没有人有这个想法?
答案 0 :(得分:0)
此库(与其他人一样)尝试对用于标记名称的命名空间进行编码。这是通过在花括号中添加名称空间来完成的。所以这只是一个你可能不知道的功能,对你来说可能很麻烦。但是,如果您将来自各种源的XML与各种名称空间混合,否则标记名称会发生冲突。