File size: 233 Bytes
d8a4dbe
 
 
 
 
1
2
3
4
5
"""The following program will read in 2 XL sheets of KP matches and the user will evaluate the quality of the matching"""
import streamlit as st
import pandas as pd
xl1 = st.file_uploader("Choose a file")
st.write(pd.read_excel(xl1))