views:

86

answers:

1

Greetings,

I want to read excel 2007 files via python on my Ubuntu server. I have already checked http://www.python-excel.org/ xlwt and xlrd but it seems like none of them can read excel 2007 files.

What would be your recommendation?

Regards

+1  A: 

Try pyXLSX. There is also openpyxl which can also write .xlsx files.

miles82