Create Excel XML files from Python -


I need to create excel XML files from Python.

Excel XML format is quite simple. I looked at a sample XML file saved from Excel 2003 and it is quite simple.

I am looking for a graphical, prepared library that can be created such that instead of changing any one,

is something that I Can use:

  book = Expy.Workbook () s1 = book.add_sheet () s1 [0, 2] = "A3" s1 [0, 0] = 12 s1 [ 0, 9] = Expy.Formula ("= Sum (A1: A3)") book.write ("excelfile.xml")  

Anyone know anything?

xlwt looks old, supports only python 2.x, and writes xls file, not xml

give a try


Comments

Popular posts from this blog

paypal - How to know the URL referrer in PHP? -

oauth - Facebook OAuth2 Logout does not remove fb_ cookie -

wpf - Line breaks and indenting for the XAML of a saved FlowDocument? -