这类似于我之前的问题在 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