Well, maybe not for xlsx format, but for xls. Grab xlrd from here:
http://www.python-excel.org/
, , :
import xlrd
EMPLOYEE_CELL = 5
AGE_CELL = 6
reader = xlrd.open_workbook('C:\\path\\to\\excel_file.xls')
for sheet in reader.sheets():
print 'In %s we have the following employees:' % (sheet.name)
for r in xrange(sheet.nrows):
row_cells = sheet.row(r)
print '%s, %s years old' % (row_cells[EMPLOYEE_CELL].value, row_cells[AGE_CELL].value)
xls, . , , 100% . .
EDIT:
, . - PyODConverter xlsx xls, . - :
user@server:~# python DocumentConverter.py excel_file.xlxs excel_file.xls
user@server:~# python script_with_code_above.py
, , , , .