8

実際に xlrd モジュール 0.8 バージョンを使用していますが、背景色、フォント、セルがロックされているかどうかなどのセル プロパティの読み取り方法がわかりません。

使ってみた

import xlrd
wb = xlrd.open_workbook(...)
sh = wb.sheet_by_index(...)
sh.sh._cell_xf_indexes(2, 2)

の読み取り中にフォーマット情報を設定する必要があるというエラーが発生しますがwb、そのパラメーターがあった場合、まだ実装されていないことが示されます。

別のモジュールがありますか、またはこのモジュール自体がセルのプロパティを読み取るようにするにはどうすればよいですか?

4

1 に答える 1

14

xlrd バージョン 0.7.6 を使用すると、次のように動作します。

from xlrd import open_workbook

wb = open_workbook('tmp.xls', formatting_info=True)
sheet = wb.sheet_by_name("1")
cell = sheet.cell(6, 0)
print "cell.xf_index is", cell.xf_index
fmt = wb.xf_list[cell.xf_index]
print "type(fmt) is", type(fmt)
print
print "fmt.dump():"
fmt.dump()

fmtXF クラスのインスタンスです。https://secure.simplistix.co.uk/svn/xlrd/trunk/xlrd/doc/xlrd.html#formatting.XF-classを参照

このdump()メソッドは、フォーマットに関するすべての情報を出力します。上記のコードの出力は次のとおりです。

cell.xf_index is 497
type(fmt) is <class 'xlrd.formatting.XF'>

fmt.dump():
_alignment_flag: 1
_background_flag: 1
_border_flag: 1
_font_flag: 1
_format_flag: 0
_protection_flag: 0
alignment (XFAlignment object):
    hor_align: 1
    indent_level: 0
    rotation: 0
    shrink_to_fit: 0
    text_direction: 0
    text_wrapped: 0
    vert_align: 2
background (XFBackground object):
    background_colour_index: 64
    fill_pattern: 1
    pattern_colour_index: 17
border (XFBorder object):
    bottom_colour_index: 0
    bottom_line_style: 0
    diag_colour_index: 0
    diag_down: 0
    diag_line_style: 0
    diag_up: 0
    left_colour_index: 0
    left_line_style: 0
    right_colour_index: 0
    right_line_style: 0
    top_colour_index: 56
    top_line_style: 1
font_index: 72
format_key: 0
is_style: 0
lotus_123_prefix: 0
parent_style_index: 0
protection (XFProtection object):
    cell_locked: 1
    formula_hidden: 0
xf_index: 497

これらの値の一部は、ワークブックのリストへのインデックスwbです。たとえば、fmt.font_indexは 72 であり、クラスwb.font_list[72]のインスタンスです(https://secure.simplistix.co.uk/svn/xlrd/trunk/xlrd/doc/xlrd.html#formatting.Font-class)。Font

于 2012-09-22T06:03:18.470 に答える