-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathmain.py
47 lines (40 loc) · 1.17 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
#!/usr/bin/env python3
import generate_url
import get_tracking_numbers
import import_report
import manual_input
import reconcile
def get_choice():
while True:
print("Buying Group Reconciliation Tool")
print("Choose an option, or 0 to exit: ")
print("1: Get tracking numbers and upload to BG portals and Google Sheets")
print("2: Reconcile shipments with results from BG portals")
print("3: Manually import or delete tracking numbers and order details")
print("4: Import an Amazon Business spreadsheet from a Google Sheet")
print("5: Generate an Amazon cart URL")
print("")
value = input("Enter your choice [1-5] or 0 to exit: ")
try:
int_value = int(value)
if int_value < 0 or int_value > 5:
raise Exception
return int_value
except:
print("Please enter an integer 1-5 or 0 to exit.")
def main():
choice = get_choice()
if choice == 0:
quit()
elif choice == 1:
get_tracking_numbers.main()
elif choice == 2:
reconcile.main()
elif choice == 3:
manual_input.main()
elif choice == 4:
import_report.main()
elif choice == 5:
generate_url.main()
if __name__ == "__main__":
main()