felixz commited on
Commit
f51e197
1 Parent(s): 4f86d4f

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +12 -0
app.py ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ import pandas as pd
3
+
4
+ st.title('Excel File Uploader')
5
+
6
+ st.markdown('Upload an Excel file to view the data in a table.')
7
+
8
+ uploaded_file = st.file_uploader('Choose a file', type='xlsx')
9
+
10
+ if uploaded_file is not None:
11
+ data = pd.read_excel(uploaded_file)
12
+ st.dataframe(data)