vives's picture
Update app.py
191c6ec
raw
history blame
255 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")
if xl1 is not None:
st.write(pd.read_excel(xl1))