我一直在使用xlwt自动执行报告。我必须添加一个COUNTIFS公式,不幸的是,该公式不适用于xls中的xlwt,因此我必须使用openpyxl重新创建整个python脚本。我遇到的问题是,要提取的数据来自其他API,并且某些值以“传感器”的开头标识。下面的代码显示了我在尝试使用pyxl的过程,注释行是我在xlwt中使用的行。如果有人可以告诉我如何使openpyxl做xlwt所做的事情,那将是很棒的。
book = Workbook("")
sheet = book.active
sheet["A1"] = "id"
#worksheet.write(0, column_number, 'id')
sheet['B1'] = "hostname"
#worksheet.write(0, column_number, 'hostname')
sheet['C1'] = "os"
#worksheet.write(0, column_number, 'os')
sheet['D1'] = "ip_address"
#worksheet.write(0, column_number, 'ip_address')
sheet['E1'] = "last_checkin_time"
#worksheet.write(0, column_number, 'last_checkin_time')
sheet['F1'] = "days_offline"
#worksheet.write(0, column_number, 'days_offline')
sheet['G1'] = "console"
#worksheet.write(0, column_number, 'console')
cb = CbResponseAPI()
sensors = list(cb.select(Sensor))
row = 1
for sensor in sensors:
#print sensor
if sensor.uninstall == False and (sensor.uninstalled == False or sensor.uninstalled == None):
last_checkin_time = sensor.last_checkin_time.strftime('%m/%d/%Y')
p = datetime.now().strftime('%m/%d/%Y')
d = datetime_object = datetime.strptime(last_checkin_time, '%m/%d/%Y')
q = datetime_object = datetime.strptime(p, '%m/%d/%Y')
delta = (q - d).days
cell = sheet.cell(row=2, column=1)
cell.value = "sensor.id"
cell = sheet.cell(row=2, column=2)
cell.value = "sensor.hostname"
#worksheet.write(row, 0, sensor.id)
#worksheet.write(row, 1, sensor.computer_name)
if "Windo 7" in sensor.os_environment_display_string:
cell = sheet.cell(row=2, column=3)
cell.value = "sensor.os_environment_display_string"
#sensor.os_environment_display_string = "Windo 7"
#worksheet.write(row, 2, sensor.os_environment_display_string)
elif "Windo Server 2008" in sensor.os_environment_display_string:
cell = sheet.cell(row=2, column=3)
cell.value = "sensor.os_environment_display_string"
#sensor.os_environment_display_string = "Windo Server 2008"
#worksheet.write(row, 2, sensor.os_environment_display_string)
elif "Windo Server 2012" in sensor.os_environment_display_string:
cell = sheet.cell(row=2, column=3)
cell.value = "sensor.os_environment_display_string"
#sensor.os_environment_display_string = "Windo Server 2012"
#worksheet.write(row, 2, sensor.os_environment_display_string)
elif "Windo XP" in sensor.os_environment_display_string:
cell = sheet.cell(row=2, column=3)
cell.value = "sensor.os_environment_display_string"
#sensor.os_environment_display_string = "Windo XP"
#worksheet.write(row, 2, sensor.os_environment_display_string)
elif "Mac OSX" in sensor.os_environment_display_string:
cell = sheet.cell(row=2, column=3)
cell.value = "sensor.os_environment_display_string"
#sensor.os_environment_display_string = "Mac OSX"
#worksheet.write(row, 2, sensor.os_environment_display_string)
elif "Windo Server 2003" in sensor.os_environment_display_string:
cell = sheet.cell(row=2, column=3)
cell.value = "sensor.os_environment_display_string"
#sensor.os_environment_display_string = "Windo Server 2003"
#worksheet.write(row, 2, sensor.os_environment_display_string)
elif "Windo 10" in sensor.os_environment_display_string:
cell = sheet.cell(row=2, column=3)
cell.value = "sensor.os_environment_display_string"
#sensor.os_environment_display_string = "Windo 10"
#worksheet.write(row, 2, sensor.os_environment_display_string)
elif "Windo 8" in sensor.os_environment_display_string:
cell = sheet.cell(row=2, column=3)
cell.value = "sensor.os_environment_display_string"
#sensor.os_environment_display_string = "Windo 8"
#worksheet.write(row, 2, sensor.os_environment_display_string)
elif "Windo Server 2016" in sensor.os_environment_display_string:
cell = sheet.cell(row=2, column=3)
cell.value = "sensor.os_environment_display_string"
#sensor.os_environment_display_string = "Windo Server 2016"
#worksheet.write(row, 2, sensor.os_environment_display_string)
else:
cell = sheet.cell(row=2, column=3)
cell.value = "sensor.os_environment_display_string"
cell = sheet.cell(row=2, column=4)
cell.value = "sensor.network_adapters"
cell = sheet.cell(row=2, column=5)
cell.value = "sensor.last_checkin_time"
cell = sheet.cell(row=2, column=6)
#worksheet.write(row, 2, sensor.os_environment_display_string)
#worksheet.write(row, 3, sensor.network_adapters)
# worksheet.write(row, 4, last_checkin_time)
# worksheet.write(row, 5, delta)
# worksheet.write(row, 6, "DELI")
row+=1
print("-> DELI-RESPONSE - Done exporting! <-")
book.save("sensor_export.xlsx")
答案 0 :(得分:1)
好的。我对此很业余,但是我看到了几件事。
1.在for循环中,行+ = 1缩进了4个空格。它位于if循环内,而不是for循环内。更具体地说,它位于底部的else循环内。
2.您有一个变量“行”。但是在openpyxl中,“行”是单元的属性。因此,这是一个实用的词。我不确定是否可以通过将“ row”用作变量和属性来使其工作。我会将您的变量更改为“ r”。然后在if和elif中,您可以拥有:
cell = sheet.cell(row = r,column = 3)。
就像现在的代码一样,您要告诉openpyxl每个实例中的row = 2。
祝你好运。