Python modify an xml file
Posted
by michele
on Stack Overflow
See other posts from Stack Overflow
or by michele
Published on 2010-05-14T17:14:05Z
Indexed on
2010/05/17
7:10 UTC
Read the original article
Hit count: 286
I have this xml model.
So I have to add some node (see the text commented) to this file. How I can do it?
I have writed this partial code but it doesn't work:
xmldoc=minidom.parse(directory)
child = xmldoc.createElement("map")
for node in xmldoc.getElementsByTagName("Environment"):
node.appendChild(child)
Thanks in advance.
© Stack Overflow or respective owner