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

c# - sqlDecimal to decimal clr stored procedure Unable to cast object of type 'System.Data.SqlTypes.SqlDecimal' to type 'System.IConvertible' -

Calling GetGUIThreadInfo from Outlook VBA -

Obfuscating Python code? -