Spaces:
Runtime error
Runtime error
"""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)) |