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
|
feedback
|
|
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 | ||||
|
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 | |||
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 | |||
|
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 | |||
|
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 | |||
|
feedback
|