Handling Files with Streamlit
Learn to upload and download files with Streamlit.
We'll cover the following...
Streamlit has widgets that provide file handling capabilities for our application.
File uploading
To upload a file, we use the st.file_uploader()
widget. It allows us to specify the type and ...