我使用lxml
库来读取xml模板,插入/更改一些元素,然后保存生成的xml。我使用etree.Element
和etree.SubElement
方法动态创建的元素之一:
tree = etree.parse(r'xml_archive\templates\metadata_template_pts.xml')
root = tree.getroot()
stream = []
for element in root.iter():
if isinstance(element.tag, basestring):
stream.append(element.tag)
# Find "keywords" element and insert a new "theme" element
if element.tag == 'keywords' and 'theme' not in stream:
theme = etree.Element('theme')
themekt = etree.SubElement(theme, 'themekt').text = 'None'
for tk in themekeys:
themekey = etree.SubElement(theme, 'themekey').text = tk
element.insert(0, theme)
很好地打印到屏幕print etree.tostring(theme, pretty_print=True)
:
<theme>
<themekt>None</themekt>
<themekey>Hydrogeology</themekey>
<themekey>Stratigraphy</themekey>
<themekey>Floridan aquifer system</themekey>
<themekey>Geology</themekey>
<themekey>Regional Groundwater Availability Study</themekey>
<themekey>USGS</themekey>
<themekey>United States Geological Survey</themekey>
<themekey>thickness</themekey>
<themekey>altitude</themekey>
<themekey>extent</themekey>
<themekey>regions</themekey>
<themekey>upper confining unit</themekey>
<themekey>FAS</themekey>
<themekey>base</themekey>
<themekey>geologic units</themekey>
<themekey>geology</themekey>
<themekey>extent</themekey>
<themekey>inlandWaters</themekey>
</theme>
但是,当使用etree.ElementTree(root).write(out_xml_file, method='xml', pretty_print=True)
写出xml时,此元素在输出文件中变平:
<theme><themekt>None</themekt><themekey>Hydrogeology</themekey><themekey>Stratigraphy</themekey><themekey>Floridan aquifer system</themekey><themekey>Geology</themekey><themekey>Regional Groundwater Availability Study</themekey><themekey>USGS</themekey><themekey>United States Geological Survey</themekey><themekey>thickness</themekey><themekey>altitude</themekey><themekey>extent</themekey><themekey>regions</themekey><themekey>upper confining unit</themekey><themekey>FAS</themekey><themekey>base</themekey><themekey>geologic units</themekey><themekey>geology</themekey><themekey>extent</themekey><themekey>inlandWaters</themekey></theme>
文件的其余部分写得很好,但这个特殊元素导致(纯粹美学)麻烦。关于我做错了什么的想法?
以下是模板xml文件中的标记片段(将其另存为&#34; template.xml&#34;在底部使用代码片段运行)。只有当我解析现有文件并插入新元素时,才会出现标签变平,而不是在使用lxml
从头开始创建xml时。
<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" href="fgdc_classic.xsl"?>
<metadata xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://water.usgs.gov/GIS/metadata/usgswrd/fgdc-std-001-1998.xsd">
<keywords>
<theme>
<themekt>ISO 19115 Topic Categories</themekt>
<themekey>environment</themekey>
<themekey>geoscientificInformation</themekey>
<themekey>inlandWaters</themekey>
</theme>
<place>
<placekt>None</placekt>
<placekey>Florida</placekey>
<placekey>Georgia</placekey>
<placekey>Alabama</placekey>
<placekey>South Carolina</placekey>
</place>
</keywords>
</metadata>
以下是与标记片段一起使用的代码片段(上图):
# Create new theme element to insert into root
themekeys = ['Hydrogeology', 'Stratigraphy', 'inlandWaters']
tree = etree.parse(r'template.xml')
root = tree.getroot()
stream = []
for element in root.iter():
if isinstance(element.tag, basestring):
stream.append(element.tag)
# Edit theme keywords
if element.tag == 'keywords':
theme = etree.Element('theme')
themekt = etree.SubElement(theme, 'themekt').text = 'None'
for tk in themekeys:
themekey = etree.SubElement(theme, 'themekey').text = tk
element.insert(0, theme)
# Write XML to new file
out_xml_file = 'test.xml'
etree.ElementTree(root).write(out_xml_file, method='xml', pretty_print=True)
with open(out_xml_file, 'r') as f:
lines = f.readlines()
with open(out_xml_file, 'w') as f:
f.write('<?xml version="1.0" encoding="UTF-8"?>\n')
for line in lines:
f.write(line)
答案 0 :(得分:4)
如果您替换此行:
tree = etree.parse(r'template.xml')
这些行:
parser = etree.XMLParser(remove_blank_text=True)
tree = etree.parse(r'template.xml', parser)
那么它将按预期工作。诀窍是使用remove_blank_text
选项设置为True
的{{3}}。任何现有的可忽略的空格都将被删除,因此不会破坏随后的漂亮打印。