Beispiel #1
0
def config_show(**kwargs):
    """Show all of Streamlit's config settings."""

    _apply_config_options_from_cli(kwargs)

    _config.show_config()
Beispiel #2
0
def config_show(**kwargs):
    """Show all of Streamlit's config settings."""

    bootstrap.load_config_options(flag_options=kwargs)

    _config.show_config()
Beispiel #3
0
def config_show():
    """Show all of Streamlit's config settings."""
    _config.show_config()
Beispiel #4
0
def config_show():
    """Show all of Streamlit's config settings."""
    from streamlit import config
    config.show_config()