Upload app.py
Browse files
app.py
CHANGED
@@ -65,7 +65,8 @@ menu_options = [
|
|
65 |
{"label": "Manual BQ upload", "icon": "π", "description": "Schedule an email with BigQuery data"},
|
66 |
{"label": "Invoice splitter", "icon": "π", "description": "Schedule an email with BigQuery data"},
|
67 |
{"label": "Seller sale validation", "icon": "π", "description": "Schedule an email with BigQuery data"},
|
68 |
-
{"label": "MID checker", "icon": "π", "description": "Schedule an email with BigQuery data"}
|
|
|
69 |
]
|
70 |
|
71 |
# Create the custom option menu
|
@@ -408,5 +409,8 @@ elif selected_option == "MID checker":
|
|
408 |
with open('mid.py') as file:
|
409 |
exec(file.read())
|
410 |
|
|
|
|
|
|
|
411 |
|
412 |
|
|
|
65 |
{"label": "Manual BQ upload", "icon": "π", "description": "Schedule an email with BigQuery data"},
|
66 |
{"label": "Invoice splitter", "icon": "π", "description": "Schedule an email with BigQuery data"},
|
67 |
{"label": "Seller sale validation", "icon": "π", "description": "Schedule an email with BigQuery data"},
|
68 |
+
{"label": "MID checker", "icon": "π", "description": "Schedule an email with BigQuery data"},
|
69 |
+
{"label": "Fynder", "icon": "π", "description": "Schedule an email with BigQuery data"}
|
70 |
]
|
71 |
|
72 |
# Create the custom option menu
|
|
|
409 |
with open('mid.py') as file:
|
410 |
exec(file.read())
|
411 |
|
412 |
+
elif selected_option == "Fynder":
|
413 |
+
with open('bot.py') as file:
|
414 |
+
exec(file.read())
|
415 |
|
416 |
|