Is there a Python module that writes Excel 2007+ files?
I'm interested in writing a file longer than 65535 lines and only Excel 2007+ supports it.

link|improve this question

77% accept rate
feedback

6 Answers

up vote 5 down vote accepted

There are two libraries you can take a look at.

Python-xlsx and PyXLSX

EDIT: As the comments mention, for writing you check out openpyxl

link|improve this answer
2  
-1 The OP wants to write Excel 2007+ files. Python-xlsx: "Tiny python code for parsing data from an Office Open XML Spreadsheet - xlsx"; pyXLSX: "pyXLSX - A python class library for reading Excel 2007 files" – John Machin Nov 23 '10 at 17:18
feedback

Take a look at Eric' Gazoni's openpyxl project. The code can be found on bitbucket.

link|improve this answer
feedback

You should take a look at xlsxcessive. It's for writing xlsx files, and is, perhaps, a bit more pythonic.

link|improve this answer
I prefere xlsxcessive for writing xlsx files, too. It supports merging cells, which is no supported by openpyxl. – guettli Aug 17 '11 at 9:05
Is this still being maintained? Commits on bitbucket seem to have come to a sudden stop (very regular until 2011-04-30 then nothing). – John Machin Mar 18 at 11:01
It may not be. That's around the time when the developer changed jobs, so I imagine he stopped updating. :( – chmullig Mar 22 at 18:00
feedback

If you are on Windows and have Excel 2007+ installed, you should be able to use pywin32 and COM to write XLSX files using almost the same code as you would would to write XLS files ... just change the "save as ...." part at the end.

Probably, you can also write XLSX files using Excel 2003 with the freely downloadable add-on kit but the number of rows per sheet would be limited to 64K.

link|improve this answer
feedback

So you want to write xlsx file, into my mind the Microsoft.office.excel.interop dll come to my mind, but not use it on a server.

I know you can call dll from python : http://msdn.microsoft.com/en-us/library/microsoft.office.interop.excel(office.11).aspx

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.