0

这类似于我之前的问题在 openpyxl 中获取格式化数据 唯一真正的区别是现在我真的想使用优化的工作簿来提高速度。

基本上,当我使用优化的阅读器时,我无法弄清楚如何检索格式细节。这是一个玩具样本,评论解释了我在打印声明中看到的内容。难道我做错了什么?有没有更好的方法来检索格式细节?

此外,如果有人知道支持 xlsx + 检索格式的 python 的不同 excel 阅读器,我愿意改变!(我已经尝试过 xlrd,虽然它在较新的版本中支持 xlsx,但它还不支持格式化)

from openpyxl import Workbook
from openpyxl.reader.excel import load_workbook
from openpyxl.style import Color, Fill
#this is all setup
wb = Workbook()
dest_filename = 'c:\\temp\\test.xlsx'

ws = wb.worksheets[0]

ws.title = 'test'

ws.cell('A1').value = 'foo'
ws.cell('A1').style.font.bold = True

ws.cell('B1').value = 'bar'
ws.cell('B1').style.fill.fill_type = Fill.FILL_SOLID
ws.cell('B1').style.fill.start_color.index = Color.YELLOW

wb.save(filename = dest_filename )
#setup complete    

book = load_workbook( filename = dest_filename, use_iterators = True )

sheet = book.get_sheet_by_name('test')

for row in sheet.iter_rows():
    for cell in row:
        print cell.coordinate
        print cell.internal_value 
        print cell.style_id #returns different numbers here (1, and 2 in case anyone is interested)
        print sheet.get_style(cell.coordinate).font.bold #returns False for both
        print sheet.get_style(cell.coordinate).fill.fill_type #returns none for bothe
        print sheet.get_style(cell.coordinate).fill.start_color.index #returns FFFFFFFF (white I believe) for both
        print

import openpyxl
print openpyxl.__version__ #returns 1.6.2
4

1 回答 1

0

style_ID 似乎是您可以在 workbook -> shared_styles(book.shared_styles 或 sheet.parent.shared_styles)中找到样式信息的索引。

在某些工作簿中,这完美无缺;但是,我还在其他工作簿中发现 style_ID 大于 shared_styles 的长度,当我尝试访问所述样式时,会出现“超出范围”异常。

于 2014-07-24T16:25:25.857 回答