AxiosError: Request failed with status code 403

Summary

Hi

I try to upload file in replit.com with streamlit. However after upload the file, it reply the * AxiosError: Request failed with status code 403
Is there anyone have the same issue?
Thank you so much for your help.

Code snippet:


import streamlit as st

uploaded_files = st.file_uploader("Choose a CSV file", accept_multiple_files=True)
for uploaded_file in uploaded_files:
    bytes_data = uploaded_file.read()
    st.write("filename:", uploaded_file.name)
    st.write(bytes_data)

I am having the same problem. my code was working until yesterday but not working after upgrading to the latest version…

Hey guys, Iam having the same issue, just after upgrade to streamlit 1.20

I’m getting the same error while trying to upload csv files…

Same error for me when uploading a large CSV