I have a button, which if clicked by the user, clears the cache and refreshes the app. Is there a way I can capture the timestamp of the refresh being successful?
if st.button('Refresh Data'):
st.legacy_caching.clear_cache()
else:
pass
I have a button, which if clicked by the user, clears the cache and refreshes the app. Is there a way I can capture the timestamp of the refresh being successful?
if st.button('Refresh Data'):
st.legacy_caching.clear_cache()
else:
pass