DataWizard9742 commited on
Commit
0697eef
·
verified ·
1 Parent(s): 9031857

Update src/streamlit_app.py

Browse files
Files changed (1) hide show
  1. src/streamlit_app.py +2 -3
src/streamlit_app.py CHANGED
@@ -50,9 +50,8 @@ def main():
50
  "Upload a monthly admissions report, filter by district/course, and explore "
51
  "KPIs, interactive tables, and rich visualizations."
52
  )
53
-
54
- # Sidebar: upload
55
- uploaded = pd.ExcelFile('src/Dataset.xlsx')
56
  if not uploaded:
57
  st.sidebar.info("Awaiting your Excel file…")
58
  return
 
50
  "Upload a monthly admissions report, filter by district/course, and explore "
51
  "KPIs, interactive tables, and rich visualizations."
52
  )
53
+
54
+ uploaded = st.sidebar.file_uploader("🔄 Upload Monthly Report (Excel)", type="xlsx")
 
55
  if not uploaded:
56
  st.sidebar.info("Awaiting your Excel file…")
57
  return