Started work on fetching shipping costs.

This commit is contained in:
Dan Dembinski
2019-06-20 14:35:46 -04:00
parent 7d41521576
commit ffd1cebdaf

11
main.py
View File

@@ -76,7 +76,16 @@ def Run_Report(ticket, URL, HOST, REPORT_FIELDS, ws, wb):
results.append(childs.text)
ws.append(results)
results = []
wb.save('report.xlsx')
test = []
for cell in ws['A']:
test.append(cell.value)
test.pop(0)
print(test)
# wb.save('report.xlsx')
def loadMenu():