My application pulls data and stores it in a dataframe. The streamlit application displays this data. In order to constantly update the dataframe, I use a while 1 loop that continues to pull new data.
When I run this, streamlit doesn’t allow me to interact with the webapp, it only shows that it’s running. It only works when I don’t use a while loop.
Are there any workarounds to this?