I have this array that I need to convert to xml.
array = [
{
'time': {"hour":"1", "minute":"30","seconds": "40"}
},
{
'place': {"street":"40 something", "zip": "00000"}
}
]
The xml should have a title that I can put in as a variable for example,
xml_title = "test"
The result I want based on the array above and the xml title is this:
<test>
<time hour="1" minute="30" second="40"></time>
<place>
<street>40 something</street>
<zip>00000</zip>
</place>
</test>
I liked the answer given in a similar stack overflow question (https://stackoverflow.com/a/18991263/875139) but I am confused how I can use that answer to get this desired result.
Help please.