vives's picture
Create new file
d8a4dbe
raw
history blame
233 Bytes
"""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))