settings#

To display all available Bokeh settings and their current values, type bokeh settings on the command line.

bokeh settings

This will print all settings to standard output in a table format, such as:

Bokeh Settings:
==========================================================================
Setting                      Environment Variable              Value
--------------------------------------------------------------------------
log_level                    BOKEH_LOG_LEVEL                   info
minified                     BOKEH_MINIFIED                    True
browser                      BOKEH_BROWSER                     None
...

To get detailed help for one or more specific settings, provide their names:

bokeh settings log_level minified

This will show the current value, environment variable, and help text for each requested setting.

Use the -v option for verbose output with additional details:

bokeh settings -v log_level
bokeh settings -v log_level browser

If a setting name is not an exact match, substring and fuzzy matching will be used to suggest possible candidates:

bokeh settings logg

Did you mean one of these?
  log_level
  py_log_level
class Settings(parser: ArgumentParser)[source]#

Subcommand to print information about Bokeh settings.

invoke(args: Namespace) None[source]#

Handle the “bokeh settings” command behavior.