I know about the XLWT library, which I've used before on a Django project. XLWT is very neat but as far as I know, it doesn't support .xlsx which is the biggest obstacle in my case. I'm probably going to be dealing with more than 2**16 rows of information. Is there any other mature similar library? Or even better, is there a fork for the XLWT with this added functionality? I know there are libraries in C#, but if a python implementation already exists, it would be a lot better.

Thanks a bunch!

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

This is pretty good. I used it for a couple of small things:

http://packages.python.org/openpyxl/

link|improve this answer
I'll look into this. Seems good. – chiurox Sep 28 '11 at 14:20
I tested it in the shell and it seems pretty good. How good is it dealing with say... millions of rows? Also, if I'm doing a query in a site powered by Pyramid and SQLAlchemy, how does it handle the load with the optimized writer? Will the browser time out? – chiurox Sep 29 '11 at 23:45
I tried it with about 2-3 thousand rows so I can't comment. If you are doing millions of rows or the process is time consuming, I'd make it an "offline" process initiated from a web page and save the file somewhere. When the export is complete, you can then mail a link to the user so they can collect it. It saves blocking the browser. – Deleted Sep 30 '11 at 6:18
Seems like a good idea. Or maybe when the export file is clicked, it shows a progress bar then provides a link to the user to download when it is finished processing. I know that XLWT is ok with exporting really big files without letting the browser timeout, but I think using it is out of the question since I'd have to split the rows across many worksheets if it reaches the limit. – chiurox Sep 30 '11 at 14:23
XLSX has a higher row limit than XLS so should be ok. – Deleted Sep 30 '11 at 21:11
show 9 more comments
feedback

Another really good alternative, actually what I switched to from Openpyxl is TabLib.

http://tablib.org

link|improve this answer
It would help others if you explained why. – John Machin Oct 6 '11 at 6:57
TabLib supports not only XLSX but also JSON, HTML, CSV, etc. I actually implemented exporting with both libraries. – chiurox Oct 10 '11 at 21:34
Tablib uses xlwt for its .xls support and openpyxl for its .xlsx support. – John Y Apr 13 at 18:35
feedback

Export a CSV don't use .xlsx..

link|improve this answer
Not an alternative for me at the moment. It's an internal application where everyone wants it in .xlsx. – chiurox Sep 29 '11 at 23:45
feedback

Your Answer

 
or
required, but never shown

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