I have an element node like
<Relationship Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Id="rId61" Target="media/image1.png"/>
I need the attributes to be sorted in an order. The output should look like
<Relationship Id="rId61" Type="http://schemas.openxmlformats.org/officeDocument/2006/relationships/fontTable" Target="media/image1.png"/>
How do i rearrange this? Currently I am using lxml library
Thanks