ElementTree -- adding one structure to another?

J

Jan Danielsson

If have an element tree representing an XML document, and I load
another tree from a file, is there an easy way to stick the second tree
into the first one?

fooElement = ET.SubElement(...)

tree = ET.parse(TEMPLDIR + '/welcome.xml')
elem = tree.getroot()

Now I want to stick elem as a subelement of fooElement. Do I need to
traverse the elem tree manually, or is there a way to just 'stick it in
there'?
 
J

Jan Danielsson

Jan said:
If have an element tree representing an XML document, and I load
another tree from a file, is there an easy way to stick the second tree
into the first one?

fooElement = ET.SubElement(...)

tree = ET.parse(TEMPLDIR + '/welcome.xml')
elem = tree.getroot()

Now I want to stick elem as a subelement of fooElement. Do I need to
traverse the elem tree manually, or is there a way to just 'stick it in
there'?

Found it two seconds after sending the post. fooElement.append().
Obviously.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
474,431
Messages
2,571,677
Members
48,796
Latest member
Greg L.

Latest Threads

Top