how do i insert few row in an existing excel file using python? the excel file maybe be of any excel version. On windows that could have been possible by using win32com.client...but i need to make the changes in the linux environment. how can i do it?

link|improve this question

25% accept rate
feedback

3 Answers

you can use pyExcelerator. the package comes with example demos to write excel files

link|improve this answer
5  
xlwt is a fork of pyExcelerator so the demos are probably the same. Based on this groups.google.com/group/python-excel/browse_thread/thread/… I would say that pyExcelerator is no longer maintained – TheSteve0 Feb 25 '10 at 6:14
3  
@ghostdog74: pyExcelerator has a bad case of the Norwegian Blue Parrot syndrome. xlwt has extra functionality, better speed, uses less memory and has a tutorial ... see python-excel.org – John Machin Feb 25 '10 at 7:35
thanks. I used pyExcelerator long ago. – ghostdog74 Feb 25 '10 at 7:37
feedback

http://www.saltycrane.com/blog/2010/02/using-python-write-excel-openoffice-calc-spreadsheet-ubuntu-linux/

thats all you need

link|improve this answer
hi, is there some way where in i can directly insert the data into the exisiting sheet? the way you suggested helps, but then it will involve copying a existing sheet and then creating a new one to have my data included in it. – crystal Feb 25 '10 at 5:59
I am not sure - I usually use Java and POI. When I download the library and look at the source files the workbook object has a get_sheet method which returns a worksheet in the workbook. You can probably do all the insertions you want with that worksheet. – TheSteve0 Feb 25 '10 at 6:11
Don't believe everything that you read in a blog; "here is how to write Excel or OpenOffice.org Calc spreadsheet files using Python and the xlwt library" ... write OpenOffice.org Calc spreadsheet files with xlwt??? News to me. – John Machin Feb 25 '10 at 7:28
@crystal: That's exactly what happens when a user opens a file with Excel [loads contents into memory], adds some more data [in memory], and saves it [REMOVE OLD FILE, write new file from memory]. An Excel file has a complicated structure; it's a much bigger deal than appending a bunch of fixed-size blocks to an exiisting file. – John Machin Feb 25 '10 at 10:49
Hey John - I was just focusing on Crystal using it for excel - not the OO use. – TheSteve0 Feb 25 '10 at 21:27
show 2 more comments
feedback

I'm looking into this myself and found https://bitbucket.org/ericgazoni/openpyxl/wiki/Home . It is a new library that allows editing xlsx files.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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