1

pythons OPENPYXL モジュールを使用して、Excel スプレッドシートにスタイルを設定しようとしています。私はこのエラーを思い付き続けます:

「str」オブジェクトには属性「BLACK」がありません

基本的に、私のコードは .xlsx ファイルから既知の値のリストを読み取り、それらを Python リストに配置します。そのリストを使用して、アクセス テーブルの列の値を比較し、各セルの値が既知の値と比較して正しいことを確認します。

私のスクリプトが失敗するのは、openpyxl を使用してスタイルを設定しようとしたときです。なぜか上記のエラーが出ます。厄介なことに、スタイルでBLACKをどこでも使用していないため、塗りつぶしを設定しようとするとエラーが発生するようです。スクリプトのSearchCursor部分では、各行を反復処理します。スクリプトが失敗するのは 2 番目のパスです。何かを上書きしたいような気がしますが、何がわかりません。

import openpyxl, arcpy
from arcpy import env
from openpyxl import Workbook

env.workspace = r"Z:\Access_Tables\Access_Table.gdb"

TableList = []
for row in arcpy.SearchCursor(r"Z:\Domains\Domains.xlsx\DOMAINS$"):
    TableList.append(row.Code)


# Create workbook for report. Openpyxl
workbook = openpyxl.Workbook()
ws = workbook.get_active_sheet()
ws.title = "Test"
workbook.remove_sheet(ws)

# List out the access tables in the workspace
for fc in arcpy.ListFeatureClasses():

    # Processing SOIL Point access table
    if fc == "SOIL":

        # List the column headings from the access table to be applied to the .xlsx table
        fieldnames = [f.name for f in arcpy.ListFields(fc)]    
        # Create Sheet. Openpyxl
        new_sheet = workbook.create_sheet(None,fc)

        dictFieldnames = {}
        for num,fname in enumerate(fieldnames):
            dictFieldnames[num] = fname

            # Write to cell, openpyxl                 
            new_sheet.cell(None,0,num).value = fname
            col_let = openpyxl.cell.get_column_letter(num + 1)
            new_sheet.column_dimensions[col_let].width = len(fname) + 3

        # Process SOIL Field
        if "SOIL" in fieldnames:

            # Set a counter and Loop through each row of the access table
            x = 1    
            for row in arcpy.SearchCursor(fc):

                for key, value in dictFieldnames.iteritems():
                    if value == "SOIL":
                        fieldKey = key

                if not row.SOIL or len(row.SOIL.strip()) == 0:

                    # Openpyxl write. Set fill and color for cell. Write the unique id to the cell.
                    new_sheet.cell(None,x,fieldKey).style.fill.fill_type = openpyxl.style.Fill.FILL_SOLID
                    new_sheet.cell(None,x,fieldKey).style.fill.start_color.index = openpyxl.style.Color = 'FF808000' 
                    new_sheet.cell(None,x,fieldKey).value = row.OBJECTID
                    x += 1
                    print 'first'
                elif len(row.INCLUSION_TYPE) not in range(2,5):


                    # Openpyxl write. Set fill and color for cell. Write the unique id to the cell.
                    new_sheet.cell(None,x,fieldKey).style.fill.fill_type = openpyxl.style.Fill.FILL_SOLID
                    new_sheet.cell(None,x,fieldKey).style.fill.start_color.index = openpyxl.style.Color = 'FF2F4F4F'                     
                    new_sheet.cell(None,x,fieldKey).value = row.OBJECTID                        
                    x += 1
                    print 'second'
                elif row.SOIL.upper() not in [y.upper() for y in TableList]:


                    # Openpyxl write.  Set fill and color for cell. Write the unique id to the cell.
                    new_sheet.cell(None,x,fieldKey).style.fill.fill_type = openpyxl.style.Fill.FILL_SOLID
                    new_sheet.cell(None,x,fieldKey).style.fill.start_color.index = openpyxl.style.Color = 'FF00FFFF'                    
                    new_sheet.cell(None,x,fieldKey).value = row.OBJECTID                        
                    x += 1
                    print 'third'

                print x
4

1 に答える 1