I have some (Excel 2000) workbooks. I want to extract the data in each worksheet to a separate file.

I am running on Linux.

Is there a library I can use to access (read) XLS files on Linux from Python?

link|improve this question

62% accept rate
could always export the excel spreadsheet to csv format which should be easy to parse in Python – cristobalito Dec 4 '10 at 19:42
5  
Did you have a look at python-excel.org? – Sven Marnach Dec 4 '10 at 19:42
Or save as XML and use XML parser. – khachik Dec 4 '10 at 19:44
+1 @Sven, python-excel looks perfect. – Matt Ball Dec 4 '10 at 19:44
feedback

4 Answers

up vote 6 down vote accepted

http://www.lexicon.net/sjmachin/xlrd.htm might work for you.

link|improve this answer
+1: xlrd has always worked flawlessly for me. It does not read the latest Excel format yet, unfortunately. – EOL Dec 4 '10 at 20:17
2  
@EOL: An "alpha" version of code that reads Excel 2007 xls[xm] files is available by e-mail request to serious testers. Just ask. – John Machin Dec 4 '10 at 20:26
feedback

Get xlrd from PyPI. Also go to the python-excel website to find out about (a) a tutorial (b) a discussion group (c) xlwt and xlutils.

[Dis]claimer: I'm the author & maintainer of xlrd, and maintainer of xlwt (which is a fork of pyExcelerator with bugs fixed and numerous enhancements).

link|improve this answer
feedback

The easiest way would be to run excel up under Wine or as a VM and do it from Windows. You can use Mark Hammond's COM bindings, which come bundled with ActiveState Python. Alternatively, you could export the data in CSV format and read it from that.

link|improve this answer
I'd be interested in your reasons for saying that win32 COM + Excel would be easier than xlrd – John Machin Dec 4 '10 at 20:29
Gives you access to named ranges and the whole Excel API. I have used xlrd and it works pretty much cell by cell. You can get a whole sheet out at a time and work with it en masse through the API. – ConcernedOfTunbridgeWells Dec 5 '10 at 11:17
2  
xlrd gives access to named ranges. The OP is on Linux and wants to extract the data(for which xlrd provides row-at-a-time access); he doesn't need "the whole Excel API" and the whole overhead of setting up a Windows-compatible environment and probably doesn't even have/want a licenced copy of Excel. – John Machin Dec 5 '10 at 20:34
feedback

I've been using pyexcelerator for this purpose in the past with good results.

link|improve this answer
And yes, spreadsheet parsing was made mostly on linux – barti_ddu Dec 4 '10 at 19:46
1  
currently this is better performed with xlrd and xlwt libraries. AFAIK pyexcelerator is not maintained anymore – joaquin Dec 4 '10 at 20:07
-1 pyExcelerator ia abandonware (check out the bug tracker on sourceforge). Its xls reading component has minimal functionality. – John Machin Dec 4 '10 at 20:08
@joaquin: maybe, just telling from own experience (we had some code written with it in production) and I've checked, it is still in the repo :) – barti_ddu Dec 4 '10 at 20:14
feedback

Your Answer

 
or
required, but never shown

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