I read last year that xlrd was being updated to be able to read xlsx files (Excel 2007, 2010). Is there any news on this development, or the use of other Python utilities?

Thanks, Kevin

link|improve this question
feedback

5 Answers

Eric Gazoni has written openpyxl which reads/writes xlsx files More details available from his blog and the code repository for any Python coders wanting to try it

link|improve this answer
feedback

Reading XLSX files is pretty simple, actually.

They're ZIP archives with certain XML documents with fixed names.

You can -- without too much code -- open the ZIP archive, parse the relevant XML documents, and process the relevant bits of data.

Here are some hints: http://slott-softwarearchitect.blogspot.com/2010/10/xlsm-and-xlsx-files-finally-reaching.html

link|improve this answer
old formats no longer undocumented. New fmts not fully doc'd -- eg. cell ID ("Z99") and row id ("99") are stated to be optional in the "standard" --- reverse engineering still req'd to check what Excel actually accepts. Deceptively simple; you must not have had any dates or datetimes in your xlsx files :-) – John Machin Dec 7 '10 at 6:13
feedback

""" Support for reading basic data (open_workbook(..., formatting_info=False)) from Excel 2007 .xlsx and .xlsm files is in alpha test at the moment. See previous postings in this group (search for "excel 2007 xlsx"). """

From the forum Regarding xlrd support for excel

link|improve this answer
feedback

I wrote something on dealing with XLSX files with Python a while ago - maybe you can use it: http://blog.codeus.net/reading-xlsx-files-from-python/

Cheers, Alex

link|improve this answer
feedback

I had the same problem: Convert xlsx to csv. Here is my solution:

https://bitbucket.org/ericgazoni/openpyxl/issue/79/example-xlsx-to-csv

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.