[Python]Xml add a node from another xml document
- by michele
Hi,
I have two xml file:
1)model.xml
2)projectionParametersTemplate.xml
I want to extract from 1) Algorithm Node with his child and put it in 2)
I have wrote this code but it doesn't function.
from xml.dom.minidom import Document
from xml.dom import minidom
xmlmodel=minidom.parse("/home/michele/Scrivania/d/model.xml")…