Anyone doing this currently? What do you use?
+4
A:
xlrd is "a library for developers to use to extract information from Microsoft Excel spreadsheet files."
import xlrd
book = xlrd.open_workbook('myfile.xls')
print book.nsheets
print book.sheet_names()
sh = book.sheet_by_index(0)
print sh.name, sh.nrows, sh.ncols
Corey Goldberg
2010-08-17 16:33:16
thanks, yes sorry about the near duplicate
interstar
2010-08-17 18:14:17