Reputation: 914
Im trying to convert an XML file to a docx file, Do you know of any tool/open source that can help me achive this or may be convert XML to X - and convert X to docx?
Upvotes: 0
Views: 193
Reputation: 61
You could use python docx, it allows you to write any content to a docx file. You can use xml.etree to extract the information from xml file. XML.etree Python docx
Upvotes: 1