Spaces:
Runtime error
Runtime error
Create new file
Browse files
app.py
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
"""The following program will read in 2 XL sheets of KP matches and the user will evaluate the quality of the matching"""
|
2 |
+
import streamlit as st
|
3 |
+
import pandas as pd
|
4 |
+
xl1 = st.file_uploader("Choose a file")
|
5 |
+
st.write(pd.read_excel(xl1))
|