Определение кода цвета ячеек Excel с помощью пакета XLRD - PullRequest
27 голосов
/ 03 ноября 2011

Я пишу скрипт на Python для чтения данных из таблицы Excel, используя xlrd . Немногие из ячеек рабочего листа выделены другим цветом, и я хочу определить цветовой код ячейки. Есть ли способ сделать это? Пример был бы очень признателен.

Ответы [ 2 ]

37 голосов
/ 03 ноября 2011

Вот один из способов справиться с этим:

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_xf_index(row, col)
            xf = book.xf_list[xfx]
            bgx = xf.background.pattern_colour_index
            print bgx

Подробнее о Python-Excel Google Group .

1 голос
/ 29 сентября 2017

Эта функция возвращает значение rgb фона ячейки в кортеже.

def getBGColor(book, sheet, row, col):
    xfx = sheet.cell_xf_index(row, col)
    xf = book.xf_list[xfx]
    bgx = xf.background.pattern_colour_index
    pattern_colour = book.colour_map[bgx]

    #Actually, despite the name, the background colour is not the background colour.
    #background_colour_index = xf.background.background_colour_index
    #background_colour = book.colour_map[background_colour_index]

    return pattern_colour
...