Hi, I have an app which accepts file upload. When I upload, it calls a read function. Then from the file, I show some options as multiselect, when I submit the multiselect option, the read function calls again. I tried caching or session state but it is not working. Can someone help?
Steps to reproduce
Code snippet:
@st.cache_data(show_spinner=False)
def read_file(file):
with tempfile.NamedTemporaryFile(mode="wb") as temp:
with st.spinner('This may take a while. Wait for it...'):
bytes_data = file.getvalue()
temp.write(bytes_data)
df = MyFunctionReadsFromPathAndAggregations(temp.name)
return df
def app():
session_state = st.session_state
if "df" not in session_state:
file = st.file_uploader("Upload file.")
if file is not None:
df = read_file(file)
with st.form(key='my_form_to_submit'):
selected_authors = st.multiselect(
"Choose authors of the group",
df.author.unique().tolist())
submit_button = st.form_submit_button(label='Submit')
if submit_button:
# do the things
Expected behavior:
I expect to run my function inside read_file once. After reading, I show some keys from dataframe as multiselect, then user selects the scope and submits. Now it should not read dataframe again.
Actual behavior:
After clicking submit, it recalls read_file again.
That seems unrelated to the code you posted so I cannot help with it. When I fill the missing parts in your code and run it, the body of read_file() is called only once. That is all I can say.
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.