Skip to content
Advertisement

How can I transfer the attributes of parent elements to child elements in XML using python?

Given the following structure of XML file:

JavaScript

how can transfer the attributes from parent to child and delete the parent element to get the following structure:

JavaScript

Advertisement

Answer

Well, you need to find <parent>, then find <child>, copy attributes from <parent> to <child>, append <child> to root node and remove <parent>. Everything is that simple:

JavaScript

Result:

JavaScript
Advertisement