How to suppress warning during direct python running?

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 ?

2 Likes

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?

Yes, it can be toggled off by setting showWarningOnDirectExecution = false

https://docs.streamlit.io/en/stable/streamlit_configuration.html#view-all-configuration-options

Best,
Randy

2 Likes

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 :slight_smile:

Thanks again,
Matt

1 Like

Hi randyzwitch,

I’m trying to run an “dashboard” deployment with streamlit and always appear something like that:

How can I suppress that, thinking that I will deploy ?

I tried something at CLI but unsuccessfully

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.


How can i suppress this warning?

By not calling st.rerun() within a callback.

@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

Except for the warning, does that code do what you need?

https://discuss.streamlit.io/tag/session-state

image

when we click on yes it should rerun the app

Does the app rerun when you click on yes?