So, I successfully shared my app via Streamlit Sharing. Even the upload file part works but, my quesion is, does the file persist anywhere (i.e., will it be there in a few days somewhere like in Github ( i didn’t see it)) or, does it reside in memory and clear when the browser/session is terminated?
When you upload a file using file_uploader, the data is written to RAM. It will persist in memory for a while (depending on the cache settings), but it will never persist on disk unless you choose to do that yourself.