LoginSignup
2
2

More than 1 year has passed since last update.

ElementTreeでxml整形

Posted at
import xml.etree.ElementTree as ET

tree = ET.parse('input.xml')
ET.indent(tree, space='  ')
tree.write('output.xml', encoding='UTF-8', xml_declaration=True)

python3.9からElementTreeにindent関数が追加されている
https://docs.python.org/ja/3/library/xml.etree.elementtree.html#xml.etree.ElementTree.indent

2
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
2