Ninad077 commited on
Commit
6c10917
Β·
verified Β·
1 Parent(s): d4deb6e

Upload app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -1
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