crystal
crystal

Reputation: 363

Modify excel file in python on linux enviroment

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?

Upvotes: 2

Views: 3540

Answers (2)

Bram
Bram

Reputation: 825

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.

Upvotes: 1

ghostdog74
ghostdog74

Reputation: 342353

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

Upvotes: 2

Related Questions