I have code very similar to @Encrypt, but it is not working as expected. When the function return value is already cached but on button press the cached function gets called again, for a second or two the progress bar shows up. It is moving very fast to 100% and then disappears. This happens even though I confirmed via print() statements that the function body is not run again. This looks annoying. How to prevent this?
Could you please share your code snippet? I suspect there might be a bug causing the progress value to become 0. I have provided a sample code below where progress bar shouldn’t disappear after data loading.
import streamlit as st
import time
@st.cache_data(show_spinner=False)
def load_data(data_id):
progress = 0
progress_bar = st.progress(progress, "Loading data...")
for progress in range(0, 101):
time.sleep(0.1)
progress_bar.progress(progress, "Loading data...")
return "Some data"
# Load data
data_id = "1"
data = load_data(data_id)
st.write(data)
Thanks for stopping by! We use cookies to help us understand how you interact with our website.
By clicking “Accept all”, you consent to our use of cookies. For more information, please see our privacy policy.
Cookie settings
Strictly necessary cookies
These cookies are necessary for the website to function and cannot be switched off. They are usually only set in response to actions made by you which amount to a request for services, such as setting your privacy preferences, logging in or filling in forms.
Performance cookies
These cookies allow us to count visits and traffic sources so we can measure and improve the performance of our site. They help us understand how visitors move around the site and which pages are most frequently visited.
Functional cookies
These cookies are used to record your choices and settings, maintain your preferences over time and recognize you when you return to our website. These cookies help us to personalize our content for you and remember your preferences.
Targeting cookies
These cookies may be deployed to our site by our advertising partners to build a profile of your interest and provide you with content that is relevant to you, including showing you relevant ads on other websites.