File size: 255 Bytes
d8a4dbe
 
 
 
191c6ec
 
1
2
3
4
5
6
"""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")
if xl1 is not None:
  st.write(pd.read_excel(xl1))