Skip to content
Advertisement

Group branches in an XML tree with Python on a common field

I have a list of order details in a CSV, and want to join all items from the lines together on one order.

Example date is:

JavaScript

I want everything to be listed in an XML with the root as the Order Number, Child as the Line Number and Sub-Children as Item and Price.

I want the output to look like:

JavaScript

Here is my code:

JavaScript

(NOTE: I moved something and got an error, but not sure what happened)

Advertisement

Answer

During loop, consider keeping a tracker on Number to conditionally decide to create an element and keep related underlying items together. Additionally, consider csv.DictReader to iterate csv rows as a dictionary which takes first row headers as keys. Finally, use the built-in minidom to pretty print output. Below will incorporate all XML items under the single <Orders> root:

JavaScript

Online Demo

User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement