Which Library Should I Use To Write An Xls From Linux / Python?
Solution 1:
What's wrong with xlwt?
Solution 2:
+1 for xlwt. See Matt Harrison's blog for posts on how to use xlwt and how to deal with large spreadsheets. Also, check out the python-excel group on Google "If you use Python to read, write or otherwise manipulate Excel files".
Solution 3:
I'd use JExcelApi, but only because I've used it before. Never have touched HSSF. Biggest show-stopper I can recall is JExcelApi doesn't support multiple formats in one cell (e.g. half the text in bold, the other half in italic or something like that). I think in general JExcelApi is more limited than HSSF, but the limitations never got in my way.
And yes, documentation is sparse for the interface (and nonexistent for the underlying mechanisms), but I thought it was doable...
Solution 4:
i personally dis-advise JExcel if you intent to use anything more then very simple text to excel and vice versa.
the more advanced features are abstracted very leaky from the underlying (basically undocumented) low-level code / (documented) Excel specs.
another problem we ran into is jexcel fails fatally when encountering invalid formulas. and if you need to parse client supplied spreadsheets this is a problem.
also the new POI version support (almost) seemless both xls and xlsx at the same time.
Solution 5:
Excel exposes the same OLE automation API used by VBA to anything that supports COM. You can use win32com (which is included with ActiveState Python by default) to manipulate spreadsheets in much the same way that you would do in VBA.
Post a Comment for "Which Library Should I Use To Write An Xls From Linux / Python?"