How to display numbers with Portuguese formatting in a Streamlit dashboard?
I am building a Streamlit dashboard where the final audience speaks Portuguese. In Portuguese, the decimal and thousands separators are different from English:
Stream lit message.chat keeps return green color text even i set font as white
Using st.file_uploader results in server being killed with large file in Streamlit
I am creating a streamlit dashboard locally where I want to upload a ~3.5gb video file. With the out-of-the-box st.file_uploader component this results in the streamlit server getting killed.
Streamlit doesnt work in production due to deprecated global.disableWatchdogWarning
My streamlit app works locally but when I deploy it in production on Posit connect, it throws the following error:
Streamlit doesnt work in production due to deprecated global.disableWatchdogWarning
My streamlit app works locally but when I deploy it in production on Posit connect, it throws the following error:
My app RERUNS from the beginning every time I enter a message in an st.chat_input(). How can I prevent the rerun from happening?
I have a simple chat bot application with a simple chat interface.
Streamlit Cloud cannot use custom font: PermissionError
I got a PermissionError on Streamlit Cloud when I try to write a font file to the /static/assets folder to allow streamlit to use the custom font, as explained in this discussion.
Streamlit PermissionError when writing to /static folder
I got a PermissionError on Streamlit Cloud when I try to write a font file to the /static/assets folder to allow streamlit to use the custom font, as explained in this discussion.
Issue with Streamlit Selectbox State Persistence Across Pages
I’m facing an issue with state persistence in my Streamlit application. Below is a snippet of my code:
streamlit: how to navigate to a page directly after file_uploader?
My streamlit app has two pages: a home page which shows some info and allows the user to load their data with st.file_uploader
. Once the user uploaded their data, I would like to navigate automatically to the second page which does the processing.