I have a code like this
import streamlit as st
db = {}
menu = st.sidebar.radio(...)
if menu == ... :
db['...'] = '.....'
else:
...
Now if I inspect that db
variable in the global scope or any other local scope it comes empty, any modification that happened inside of a streamlit blocked is like it never happened. Can someone help me with this?