实际上我使用的是xlrd模块1.1.0版本,但我不知道如何读取单元格属性,如背景颜色,字体以及单元格是否被锁定。
我尝试使用
import xlrd
book = xlrd.open_workbook("sample.xls", formatting_info=True)
sheets = book.sheet_names()
print "sheets are:", sheets
for index, sh in enumerate(sheets):
sheet = book.sheet_by_index(index)
print "Sheet:", sheet.name
rows, cols = sheet.nrows, sheet.ncols
print "Number of rows: %s Number of cols: %s" % (rows, cols)
for row in range(rows):
for col in range(cols):
print "row, col is:", row+1, col+1,
thecell = sheet.cell(row, col)
# could get 'dump', 'value', 'xf_index'
print thecell.value,
xfx = sheet.cell_`enter code here`xf_index(row, col)
xf = book.xf_list[xfx]
bgx = xf.background.pattern_colour_index
print bgx
引发错误,说在读取wb时需要设置格式化信息,但如果我有那个参数,那么它表明它仍未实现。
是否有另一个模块或该模块本身如何读取单元属性?
python xlrd提前谢谢
答案 0 :(得分:0)
<强>文档强>
您需要使用xf_index
来获取xlrd.formatting.XF
个对象。比使用各种索引从book
对象本身获取信息。导致大多数实际样式信息(如颜色)存储在书中。所有其他元素只有索引指向书籍的数据列表或词典:
赞,colour_map
:
http://xlrd.readthedocs.io/en/latest/api.html#xlrd.book.Book.colour_map
或者,font_list
:
http://xlrd.readthedocs.io/en/latest/api.html#xlrd.book.Book.font_list
<强> CODE 强>
我认为你正在寻找类似的东西:
import xlrd
book = xlrd.open_workbook("sample.xls", formatting_info=True)
def get_front_color(xf):
font = book.font_list[xf.font_index]
if not font:
return None
return get_color(font.colour_index)
def get_back_color(xf):
if not xf.background:
return None
return get_color(xf.background.background_colour_index)
def get_color(color_index):
return book.colour_map.get(color_index)
def get_if_protected(xf):
if not xf.protection:
return False
return xf.protection.cell_locked
sheets = book.sheet_names()
for index, sh in enumerate(sheets):
sheet = book.sheet_by_index(index)
print "Sheet:", sheet.name
rows, cols = sheet.nrows, sheet.ncols
for row in range(rows):
for col in range(cols):
c = sheet.cell(row, col)
xf = book.xf_list[c.xf_index]
print u'{},{}:{:>6}: FRONT: {:>20} | BACK: {:>20} | LOCKED: {}'.format(
row, col, c.value, get_front_color(xf), get_back_color(xf), get_if_protected(xf)
)
警告:虽然我不确定锁定旗帜。我无法完全测试它,因为我使用Libre Office并且文档提到了Open Office衍生产品的一些问题: http://xlrd.readthedocs.io/en/latest/api.html#xlrd.formatting.XFProtection