2

スクリプトの目的は、cron ジョブから毎日生成される Excel ファイルからデータを取得し、そのデータを「マスター」Excel ファイルの末尾に追加することです。

これが私が今いる場所です:

# Find the most recent excel file created by the cron job & open it.

localtime = time.localtime(time.time())
yy = localtime.tm_year
mm = localtime.tm_mon
dd = localtime.tm_mday

file_name = 'daily_' + str(yy) + '_' + str(mm) + '_' + str(dd-1) + '.xls'
file_loc = '/Users/' + file_name
new_sheet = open_workbook(file_loc, on_demand=True).sheet_by_index(0)

# Grab all the data from the recent cron job file starting at row 2 to avoid
# including headers.

for row in range(1, new_sheet.nrows):
    values = []
    for col in range(new_sheet.ncols):
        values.append(new_sheet.cell(row,col).value)
"""
The above loop structures the list 'values[]' in a way that the print
statement of value looks like the below output; which matches the formatting of 
master_file.xlsx:

        2341511  Sports 12112 Dog   324.92
        71611    Other  18192 Cat   128.17
        ...
"""

# Find the excel master file & open it.

sheet = open_workbook('master_file.xlsx').sheet_by_index(0)

# Find the first row that is empty.
new_row = sheet.nrows + 1

# Append the values[] list to the master file starting at row(new_row) and save
# the db file.

for row_num, row in enumerate(values, new_row):
    for col_num, col in enumerate(row):
        sheet.row(row_num).write(col_num, col)

sheet.save('master_file.xlsx')

私のトレースバックエラーは次のとおりです。

File "daily.py", line 45, in <module>
    sheet.row(row_num).write(col_num, col)
  File "/Users/code/env/lib/python2.7/site-packages/xlrd/sheet.py", line 462, in row
    for colx in xrange(len(self._cell_values[rowx]))
IndexError: list index out of range

どんな助けでも大歓迎です!

4

2 に答える 2

1

コードからの直感は、反復する前に実際にワークシートに行を追加していないということです。

xlrd には、既存のワークシートを変更するメソッドが実際にあるようには見えません。役立つかもしれないこのSO投稿をチェックしてください...

xlrd を使用して .xls ファイルに新しい列と行を追加する方法

于 2012-12-12T22:21:52.907 に答える
0

次のように、col(new_row)代わりに を使用するつもりでしたか?col

for row_num, row in enumerate(values, col(new_row)):
    for col_num, col(new_row) in enumerate(row):
        sheet.row(row_num).write(col_num, col(new_row))

?

于 2012-12-12T22:00:04.773 に答える