bokeh.settings¶
Control global configuration options with environment variables. A global settings object that other parts of Bokeh can refer to.
BOKEH_BROWSER — What browser to use when opening plots.
Valid values are any of the browser names understood by the python standard library webbrowser module.
BOKEH_DEV — Whether to use development mode.
This uses absolute paths to development (non-minified) BokehJS components, sets logging to
debug, makes generated HTML and JSON human-readable, etc.This is a meta variable equivalent to the following environment variables:
BOKEH_BROWSER=noneBOKEH_LOG_LEVEL=debugBOKEH_MINIFIED=falseBOKEH_PRETTY=trueBOKEH_PY_LOG_LEVEL=debugBOKEH_RESOURCES=absolute-devBOKEH_SIMPLE_IDS=trueAccepted values are
yes/no,true/falseor0/1.
BOKEH_DOCS_CDN— What version of BokehJS to use when building sphinx- ~bokeh.resources.Resources class reference for full details.
BOKEH_DOCS_VERSION — What version of Bokeh to show when building sphinx docs locally.
Useful for re-deployment purposes.
Set to
"local"to use a locally built dev version of BokehJS.Note
This variable is only used when building documentation from the development version.
BOKEH_DOCS_CSS_SERVER — Where to get the CSS stylesheet from.
By default use CSS from bokehplots.com
Note
This variable is only used when building documentation from the development version.
Set to
"local"to use a locally built dev version of BokehJS.
BOKEH_LOG_LEVEL — The BokehJS console logging level to use.
Valid values are, in order of increasing severity:
tracedebuginfowarnerrorfatalThe default logging level is
info.Note
When running server examples, it is the value of this
BOKEH_LOG_LEVELthat is set for the server that matters.
BOKEH_MINIFIED — Whether to emit minified JavaScript for bokeh.js.
Accepted values areyes/no,true/falseor0/1.
BOKEH_PRETTY — Whether to emit “pretty printed” JSON.
Accepted values areyes/no,true/falseor0/1.
BOKEH_PY_LOG_LEVEL — The Python logging level to set.
As in the JS side, valid values are, in order of increasing severity:
tracedebuginfowarnerrorfatalnoneThe default logging level is
none.
BOKEH_RESOURCES — What kind of BokehJS resources to configure.
For example:inline,cdn,server. See theResourcesclass reference for full details.
BOKEH_ROOTDIR — Root directory to use with relative resources.
See theResourcesclass reference for full details.
BOKEH_SIMPLE_IDS — Whether to generate human-friendly object IDs.
Accepted values areyes/no,true/falseor0/1. Normally Bokeh generates UUIDs for object identifiers. Setting this variable to an affirmative value will result in more friendly simple numeric IDs counting up from 1000.
BOKEH_VERSION — What version of BokehJS to use with cdn resources.
See theResourcesclass reference for full details.