Does anyone know of a way of accessing MS Excel from Python? Specifically I am looking to create new sheets and fill them with data, including formulae.

Preferably I would like to do this on Linux if possible, but can do it from in a VM if there is no other way.

link|improve this question

1  
A general comment is that Office file formats themselves are very complicated, but most of the Office tools will read in much simpler formats. Have you considered writing a .csv instead? – katrielalex Jul 14 '11 at 19:01
feedback

2 Answers

up vote 6 down vote accepted

xlwt and xlrd can read and write Excel files, without using Excel itself:

http://www.python-excel.org/

link|improve this answer
1  
Unfortunately they do not support formulae – jamesj Jul 14 '11 at 18:38
1  
@jamesj: You can read/write formulae. You can't evaluate them. See e.g. secure.simplistix.co.uk/svn/xlwt/trunk/xlwt/examples/… – Thomas K Jul 14 '11 at 18:41
1  
Thank you, I misunderstood. I thought you could only write them. – jamesj Jul 14 '11 at 18:43
1  
I think you can access them too. xlrd is more complex than xlwt. – Thomas K Jul 14 '11 at 18:50
Yes after looking at this example and trying it out myself with some more non-trivial examples you can. Thanks! – jamesj Jul 14 '11 at 18:50
show 1 more comment
feedback

It's surely possible through the Excel object model via COM: just use win32com modules for Python. Can't remember more but I once controlled the Media Player through COM from Python. It was piece of cake.

link|improve this answer
1  
I was hoping to do it on linux, which wouldn't give me access to win32com – jamesj Jul 14 '11 at 18:46
1  
Yes, I understand. But when it comes to the Microsoft proprietary formats (now open, but practically useless) it's better leave the document generation and processing to the original code. You can always find an earlier version of Excel to run under Wine... – Vladimir Sinenko Jul 14 '11 at 18:55
feedback

Your Answer

 
or
required, but never shown

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