Hi All,
I just upgrade 1.31.1 to test write_stream(Which is amazing btw), but during that I encounter 403 problem on my ongoing locally running project.
My code is
uploaded_file = st.file_uploader('Excel upload')
# st.write(uploaded_file)
if uploaded_file is None:
st.stop()
else:
with st.spinner('Analyzing Excel File'):
b = pd.ExcelFile(uploaded_file)
if len(b.sheet_names) > 1:
sn = st.selectbox('Sheets: ', b.sheet_names)
df = pd.read_excel(uploaded_file, sheet_name=sn)
Please help~
Best Regards