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?
feedback
|
|
http://www.lexicon.net/sjmachin/xlrd.htm might work for you. | |||||||
feedback
|
|
Get [Dis]claimer: I'm the author & maintainer of | |||
|
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. | |||||||||
feedback
|
|
I've been using pyexcelerator for this purpose in the past with good results. | |||||||||||
feedback
|