How to change the Page Name and Icon of Streamlit Apps

Поділитися
Вставка
  • Опубліковано 28 січ 2025

КОМЕНТАРІ • 19

  • @obentti
    @obentti 3 роки тому +7

    Thank you Jess for all your great tutorials!!! Just a reminder if someone face this: is no longer "beta_set_page_config('page_title')" now is "set_page_config('page_title')"

  • @denizbektas8708
    @denizbektas8708 Рік тому

    Why is the page icon not changing on my side? I just added the same parameter "page_icon" to the set_page_config function with the value ":smiley:". However, I still see the streamlit icon only...

  • @raakeshbhardwaj
    @raakeshbhardwaj 4 роки тому

    Nice Tutorial!

  • @canelbuino7087
    @canelbuino7087 4 роки тому

    Great videos Thanks. I have a question about selectbox: After selecting a value how can a person set the value back to the default value only using code?

    • @JCharisTech
      @JCharisTech  4 роки тому

      Hi, you can rely on the if,elif else conditional and make the default to fallback to the else condition.
      eg
      choice = st.selectbox('Choice',['A','B',C','Default'])
      if choice == 'A':
      do something
      else:
      ''use 'Default'''
      Alternatively you can also use the multiselect(default='Your default') if you are working with multi-selection.
      Hope this helps

  • @gabiie9839
    @gabiie9839 4 роки тому

    Nice tutorial, the nav bar in the right can also remove or change?

  • @feliperoque18
    @feliperoque18 3 роки тому

    it's possible to add a image at the sidebar?

  • @CrusaderTube
    @CrusaderTube 2 роки тому

    Is it possible to remove "Streamlit" from the page name?

  • @avikasliwal4283
    @avikasliwal4283 4 роки тому

    Thnx.