我有三个XML文件(下面的示例)。我已使用audioId
属性的相应值命名文件。因此,相关文件将被称为93.xml
和2137.xml
:
93.xml:
<word BloomsTaxonomy="1,2,3" DictationGroupid="i-e combination List 7" Stage="0" Use="P,L" audioId="93" />
2173.xml:
<word BloomsTaxonomy="1,2,3" DictationGroupid="i-e combination List 7" Stage="0" Use="P,L" audioId="2137" />
mainDataSet.xml:
<word id="2137" title="over" level="1" grouping="Sight Words" YRule="0" MagicE="0" SoftC="0" doublevowel="0" longvowel="0" displayorder="101" silentletters="0"/>
文件mainDataSet.xml
包含约3,000个条目。为了这个问题,我只提供了一个条目。
我的问题是,如果title
我将如何将mainDataSet.xml
word
属性附加到2173.xml
的{{1}} mainDataSet.xml
标记id
两个文件中都匹配(或者即使id
中的mainDataSet.xml
与文件名称匹配)。例如,在我提供的示例中,输出应为:
<word BloomsTaxonomy="1,2,3" DictationGroupid="i-e combination List 7" Stage="0" Use="P,L" audioId="2137" title="over" />
要从mainDataSet.xml
解析我的XML,我现在正在做:
e = xml.etree.ElementTree.parse('mainDataSet.xml').getroot()
for atype in e.findall('word'):
print(atype.get('title'))
答案 0 :(得分:2)
要添加属性,请使用.attrib
字典。以下示例代码循环遍历word
内的mainDataSet.xml
元素,检索id
属性值,解析相应的XML文件(93.xml
和2173.xml
在这种情况下),更新word
元素并将树转储回文件:
import xml.etree.ElementTree as ET
e = ET.parse('mainDataSet.xml').getroot()
for word in e.findall('word'):
word_id = word.attrib.get("id")
if word_id:
filename = "%s.xml" % word_id
e_word = ET.parse(filename)
e_word.getroot().attrib['title'] = word.attrib.get('title')
e_word.write(filename)
我使用的示例mainDataSet.xml
:
<words>
<word id="2137" title="over" level="1" grouping="Sight Words" YRule="0" MagicE="0" SoftC="0" doublevowel="0" longvowel="0" displayorder="101" silentletters="0"/>
<word id="93" title="something else" level="1" grouping="Sight Words" YRule="0" MagicE="0" SoftC="0" doublevowel="0" longvowel="0" displayorder="101" silentletters="0"/>
</words>
以下是我在运行脚本后得到的内容:
93.xml
:
<word BloomsTaxonomy="1,2,3" DictationGroupid="i-e combination List 7" Stage="0" Use="P,L" audioId="93" title="something else" />
2173.xml
:
<word BloomsTaxonomy="1,2,3" DictationGroupid="i-e combination List 7" Stage="0" Use="P,L" audioId="2137" title="over" />
答案 1 :(得分:2)
对于OP或未来的读者,请考虑一个XSLT 1.0解决方案,Python可以使用lxml
模块运行。作为信息,XSLT是一种特殊目的语言(其脚本是格式良好的xml文件),旨在操作XML文件。该脚本可移植到其他通用语言(Java,PHP,C#),XSLT处理器(Saxon,Xalan),甚至是命令行解释器(Bash,PowerShell)。具体来说,对于这个问题,XSLT维护document()
函数,该函数可以访问外部xml文件中的节点以满足比较需求,例如ids。
输入 (添加根标签)
mainDataSet.xml
<root>
<word id="2137" title="over" level="1" grouping="Sight Words" YRule="0"
MagicE="0" SoftC="0" doublevowel="0" longvowel="0"
displayorder="101" silentletters="0"/>
</root>
2137.xml
<root>
<word BloomsTaxonomy="1,2,3" DictationGroupid="i-e combination List 7"
Stage="0" Use="P,L" audioId="2137" />
</root>
93.xml
<root>
<word BloomsTaxonomy="1,2,3" DictationGroupid="i-e combination List 7"
Stage="0" Use="P,L" audioId="93" />
</root>
XSLT 脚本(外部保存为.xsl;读入.py;假设所有XML文件位于同一目录中)
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
<xsl:output method="xml" indent="yes" encoding="UTF-8" />
<xsl:template match="root">
<xsl:copy>
<xsl:apply-templates select="word"/>
</xsl:copy>
</xsl:template>
<xsl:template match="word">
<xsl:copy>
<xsl:copy-of select="@*"/>
<xsl:if test="@audioId = document('mainDataSet.xml')/root/word/@id">
<xsl:attribute name="title">
<xsl:value-of select="document('mainDataSet.xml')/root/word/@title"/>
</xsl:attribute>
</xsl:if>
</xsl:copy>
</xsl:template>
</xsl:stylesheet>
Python 脚本
import lxml.etree as ET
# LOAD XML AND XSL
xslt = ET.parse('XSLTScript.xsl')
for i in ['2137', '93']:
dom = ET.parse('{}.xml'.format(i))
# TRANSFORM XML
transform = ET.XSLT(xslt)
newdom = transform(dom)
# PRETTY PRINT OUTPUT
tree_out = ET.tostring(newdom, encoding='UTF-8', pretty_print=True)
print(tree_out.decode("utf-8"))
# SAVE TO FILE
xmlfile = open('{}.xml'.format(i),'wb')
xmlfile.write(tree_out)
xmlfile.close()
输出 (使用发布的数据)
2173.xml
<root>
<word BloomsTaxonomy="1,2,3" DictationGroupid="i-e combination List 7" Stage="0"
Use="P,L" audioId="2137" title="over"/>
</root>
93.xml
<root>
<word BloomsTaxonomy="1,2,3" DictationGroupid="i-e combination List 7" Stage="0"
Use="P,L" audioId="93"/>
</root>