From ffd1cebdaf990e8ed687ab547054292c2c68c2c8 Mon Sep 17 00:00:00 2001 From: Dan Dembinski Date: Thu, 20 Jun 2019 14:35:46 -0400 Subject: [PATCH] Started work on fetching shipping costs. --- main.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/main.py b/main.py index fd187e8..151c350 100644 --- a/main.py +++ b/main.py @@ -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():