xxxxxxxxxx
# streamlit read excel sheet to pandas. You may have to download openpyxl
df_upload = st.file_uploader(type=['xlsx'], accept_multiple_files=False, key="fileUploader", label="")
excel_data = ExcelFile(BytesIO(df_upload.read()))
final_df = excel_data.parse(sheet_name="sheet1")