vives commited on
Commit
d8a4dbe
·
1 Parent(s): 33204b2

Create new file

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