I’m merging my current project with a streamlit frontend. I have a main app.py to control the whole page, while there are some log/prints/progress in other imported modules or classes i’d like to show either. Besides passing a positional st.empty() object into it and write, I’m thinking use st.write() to show things if frontend is on. Since it’s also possible that I run these scripts directly in python console, st.write is bypassed, of cause, but i get these warnings:
Blockquote
Warning: to view this Streamlit app on a browser, run it with the following
command:
streamlit run C:\Program Files\JetBrains\PyCharm 2020.1\plugins\python\helpers\pydev\pydevconsole.py [ARGUMENTS]
Is there a way to suppress these warnings because it’s exactly what I want ?
I would also like to turn this off, as I can call my script from both the command line or as an interactive app – is there a solution for suppressing this warning?
Thank you so much Randy! I didn’t initially think this would be found in the config settings, but that does make sense now. Your solution works perfectly
This is not the same issue. In this case, the warning is letting you know that for the code version of Streamlit you have installed, you should rename any references to st.beta_columns to st.columns.
@st.dialog(“Get Full Data”)
def show_dialog():
st.write("Suggestion: Currently you are trying to fetch a huge amount of data. "
“I would suggest using various filters and groups to reduce the size of the data.”)
st.write(“Still, do you want to fetch full Data?”)
# Create columns for “Yes” and “No” buttons
col1, col2 = st.columns(2)
with col1:
st.button(“Yes”, on_click=vote, args=(True,),key=‘Yes_key’)
with col2:
st.button(“No”, on_click=vote, args=(False,),key=‘No_key’)
st.rerun()
st.button(“Get Full Data”,on_click=show_dialog,key=f’full_data_key1’)
I need dialog box with yes and no button and on click of button get