Spaces:
Running
on
Zero
Running
on
Zero
File size: 25,624 Bytes
d1ed09d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 |
#-----------------------------------------------------------------------------
# Copyright (c) 2012 - 2022, Anaconda, Inc., and Bokeh Contributors.
# All rights reserved.
#
# The full license is in the file LICENSE.txt, distributed with this software.
#-----------------------------------------------------------------------------
''' Control global configuration options with environment variables.
A global settings object that other parts of Bokeh can refer to.
Defined Settings
~~~~~~~~~~~~~~~~
Settings are accessible on the ``bokeh.settings.settings`` instance, via
accessor methods. For instance:
.. code-block:: python
settings.minified()
Bokeh provides the following defined settings:
.. bokeh-settings:: settings
:module: bokeh.settings
Precedence
~~~~~~~~~~
Setting values are always looked up in the following prescribed order:
immediately supplied values
These are values that are passed to the setting:
.. code-block:: python
settings.minified(minified_val)
If ``minified_val`` is not None, then it will be returned, as-is.
Otherwise, if None is passed, then the setting will continute to look
down the search order for a value. This is useful for passing optional
function paramters that are None by default. If the parameter is passed
to the function, then it will take precedence.
previously user-set values
If the value is set explicity in code:
.. code-block:: python
settings.minified = False
Then this value will take precedence over other sources. Applications
may use this ability to set values supplied on the command line, so that
they take precedence over environment variables.
user-specified config override file
Values from a YAML configuration file that is explicitly loaded:
.. code-block:: python
settings.load_config("/path/to/bokeh.yaml)
Any values from ``bokeh.yaml`` will take precedence over the sources
below. Applications may offer command line arguments to load such a
file. e.g. ``bokeh serve --use-config myconf.yaml``
environment variable
Values found in the associated environment variables:
.. code-block:: sh
BOKEH_MINIFIED=no bokeh serve app.py
local user config file
Bokeh will look for a YAML configuration file in the current user's
home directory ``${HOME}/.bokeh/bokeh.yaml``.
global system configuration (not yet implemented)
Future support is planned to load Bokeh settings from global system
configurations.
local defaults
These are default values defined when accessing the setting:
.. code-block:: python
settings.resources(default="server")
Local defaults have lower precendence than every other setting mechanism
except global defaults.
global defaults
These are default values defined by the setting declarations. They have
lower precedence than every other setting mechanism.
If no value is obtained after searching all of these locations, then a
RuntimeError will be raised.
API
~~~
There are a few methods on the ``settings`` object:
.. autoclass:: Settings
:members:
'''
#-----------------------------------------------------------------------------
# Boilerplate
#-----------------------------------------------------------------------------
from __future__ import annotations
import logging # isort:skip
log = logging.getLogger(__name__)
#-----------------------------------------------------------------------------
# Imports
#-----------------------------------------------------------------------------
# Standard library imports
import os
from os.path import abspath, expanduser, join
from typing import (
TYPE_CHECKING,
Any,
Callable,
Dict,
Generic,
List,
Sequence,
Type,
TypeVar,
Union,
cast,
)
# External imports
import yaml
from typing_extensions import Literal
# Bokeh imports
from .util.paths import bokehjsdir
if TYPE_CHECKING:
from .core.types import PathLike
from .resources import ResourcesMode
#-----------------------------------------------------------------------------
# Globals and constants
#-----------------------------------------------------------------------------
__all__ = (
'settings',
)
#-----------------------------------------------------------------------------
# General API
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Dev API
#-----------------------------------------------------------------------------
def convert_str(value: str) -> str:
''' Return a string as-is.
'''
return value
def convert_bool(value: Union[bool, str]) -> bool:
''' Convert a string to True or False.
If a boolean is passed in, it is returned as-is. Otherwise the function
maps the following strings, ignoring case:
* "yes", "1", "on" -> True
* "no", "0", "off" -> False
Args:
value (str):
A string value to convert to bool
Returns:
bool
Raises:
ValueError
'''
if isinstance(value, bool):
return value
val = value.lower()
if val in ["yes", "1", "on", "true", "True"]:
return True
if val in ["no", "0", "off", "false", "False"]:
return False
raise ValueError(f"Cannot convert {value} to boolean value")
def convert_str_seq(value: Union[List[str], str]) -> List[str]:
''' Convert a string to a list of strings.
If a list or tuple is passed in, it is returned as-is.
Args:
value (seq[str] or str) :
A string to convert to a list of strings
Returns
list[str]
'''
if isinstance(value, (list, tuple)):
return value
try:
return value.split(",")
except Exception:
raise ValueError(f"Cannot convert {value} to list value")
LogLevel = Literal["trace", "debug", "info", "warn", "error", "fatal"]
PyLogLevel = Union[int, None]
_log_levels = {
"CRITICAL" : logging.CRITICAL,
"ERROR" : logging.ERROR,
"WARNING" : logging.WARNING,
"INFO" : logging.INFO,
"DEBUG" : logging.DEBUG,
"TRACE" : 9, # Custom level hard-coded to avoid circular import
"NONE" : None,
}
def convert_logging(value: Union[str, int]) -> PyLogLevel:
'''Convert a string to a Python logging level
If a log level is passed in, it is returned as-is. Otherwise the function
understands the following strings, ignoring case:
* "critical"
* "error"
* "warning"
* "info"
* "debug"
* "trace"
* "none"
Args:
value (str):
A string value to convert to a logging level
Returns:
int or None
Raises:
ValueError
'''
if value is None or isinstance(value, int):
if value in set(_log_levels.values()):
return value
else:
value = value.upper()
if value in _log_levels:
return _log_levels[value]
raise ValueError(f"Cannot convert {value} to log level, valid values are: {', '.join(_log_levels)}")
ValidationLevel = Literal["none", "errors", "all"]
def convert_validation(value: Union[str, ValidationLevel]) -> ValidationLevel:
'''Convert a string to a validation level
If a validation level is passed in, it is returned as-is.
Args:
value (str):
A string value to convert to a validation level
Returns:
string
Raises:
ValueError
'''
VALID_LEVELS = {"none", "errors", "all"}
lowered = value.lower()
if lowered in VALID_LEVELS:
return cast(ValidationLevel, lowered)
raise ValueError(f"Cannot convert {value!r} to validation level, valid values are: {VALID_LEVELS!r}")
class _Unset: pass
T = TypeVar("T")
Unset = Union[T, Type[_Unset]]
def is_dev() -> bool:
return convert_bool(os.environ.get("BOKEH_DEV", False))
class PrioritizedSetting(Generic[T]):
''' Return a value for a global setting according to configuration precedence.
The following methods are searched in order for the setting:
7. immediately supplied values
6. previously user-set values (e.g. set from command line)
5. user-specified config override file
4. environment variable
3. local user config file
2. global system config file (not yet implemented)
1. local defaults
0. global defaults
Ref: https://stackoverflow.com/a/11077282/3406693
If a value cannot be determined, a ValueError is raised.
The ``env_var`` argument specifies the name of an environment to check for
setting values, e.g. ``"BOKEH_LOG_LEVEL"``.
The optional ``default`` argument specified an implicit default value for
the setting that is returned if no other methods provide a value.
A ``convert`` agument may be provided to convert values before they are
returned. For instance to concert log levels in environment variables
to ``logging`` module values.
'''
_parent: Settings | None
_user_value: Unset[Union[str, T]]
def __init__(self, name: str, env_var: str | None = None, default: Unset[T] = _Unset,
dev_default: Unset[T] = _Unset, convert: Callable[[Union[T, str]], T] | None = None, help: str = "") -> None:
self._convert = convert if convert else convert_str
self._default = default
self._dev_default = dev_default
self._env_var = env_var
self._help = help
self._name = name
self._parent = None
self._user_value = _Unset
def __call__(self, value: Union[T, str] | None = None, default: Unset[T] = _Unset) -> T:
'''Return the setting value according to the standard precedence.
Args:
value (any, optional):
An optional immediate value. If not None, the value will
be converted, then returned.
default (any, optional):
An optional default value that only takes precendence over
implicit default values specified on the property itself.
Returns:
str or int or float
Raises:
RuntimeError
'''
# 7. immediate values
if value is not None:
return self._convert(value)
# 6. previously user-set value
if self._user_value is not _Unset:
return self._convert(self._user_value)
# 5. user-named config file
if self._parent and self._name in self._parent.config_override:
return self._convert(self._parent.config_override[self._name])
# 4. environment variable
if self._env_var and self._env_var in os.environ:
return self._convert(os.environ[self._env_var])
# 3. local config file
if self._parent and self._name in self._parent.config_user:
return self._convert(self._parent.config_user[self._name])
# 2. global config file
if self._parent and self._name in self._parent.config_system:
return self._convert(self._parent.config_system[self._name])
# 1.5 (undocumented) dev defaults take precedence over other defaults
if is_dev() and self._dev_default is not _Unset:
return self._convert(self._dev_default)
# 1. local defaults
if default is not _Unset:
return self._convert(default)
# 0. global defaults
if self._default is not _Unset:
return self._convert(self._default)
raise RuntimeError(f"No configured value found for setting {self._name!r}")
def __get__(self, instance: Any, owner: Type[Any]) -> PrioritizedSetting[T]:
return self
def __set__(self, instance: Any, value: Union[str, T]) -> None:
self.set_value(value)
def set_value(self, value: Union[str, T]) -> None:
''' Specify a value for this setting programmatically.
A value set this way takes precedence over all other methods except
immediate values.
Args:
value (str or int or float):
A user-set value for this setting
Returns:
None
'''
# This triggers LGTMs "mutable descriptor" warning. Since descriptors
# are shared among all instances, it is usually not avised to store any
# data directly on them. But in our case we only ever have one single
# instance of a Settings object.
self._user_value = value # lgtm [py/mutable-descriptor]
def unset_value(self) -> None:
''' Unset the previous user value such that the priority is reset.
'''
self._user_value = _Unset
@property
def env_var(self) -> str | None:
return self._env_var
@property
def default(self) -> Unset[T]:
return self._default
@property
def dev_default(self) -> Unset[T]:
return self._dev_default
@property
def name(self) -> str:
return self._name
@property
def help(self) -> str:
return self._help
@property
def convert_type(self) -> str:
if self._convert is convert_str:
return "String"
if self._convert is convert_bool:
return "Bool"
if self._convert is convert_logging:
return "Log Level"
if self._convert is convert_str_seq:
return "List[String]"
if self._convert is convert_validation:
return "Validation Level"
raise RuntimeError("unreachable")
_config_user_locations: Sequence[str] = (
join(expanduser("~"), ".bokeh", "bokeh.yaml"),
)
class Settings:
'''
'''
_config_override: Dict[str, Any]
_config_user: Dict[str, Any]
_config_system: Dict[str, Any]
def __init__(self) -> None:
self._config_override = {}
self._config_user = self._try_load_config(_config_user_locations)
self._config_system = {} # TODO (bev)
for x in self.__class__.__dict__.values():
if isinstance(x, PrioritizedSetting):
x._parent = self
@property
def config_system(self) -> Dict[str, Any]:
return dict(self._config_system)
@property
def config_user(self) -> Dict[str, Any]:
return dict(self._config_user)
@property
def config_override(self) -> Dict[str, Any]:
return dict(self._config_override)
@property
def dev(self) -> bool:
return is_dev()
allowed_ws_origin: PrioritizedSetting[List[str]] = PrioritizedSetting("allowed_ws_origin", "BOKEH_ALLOW_WS_ORIGIN", default=[], convert=convert_str_seq, help="""
A comma-separated list of allowed websocket origins for Bokeh server applications.
""")
auth_module: PrioritizedSetting[str | None] = PrioritizedSetting("auth_module", "BOKEH_AUTH_MODULE", default=None, help="""
A path to a Python modules that implements user authentication functions for
the Bokeh server.
.. warning::
The contents of this module will be executed!
""")
browser: PrioritizedSetting[str | None] = PrioritizedSetting("browser", "BOKEH_BROWSER", default=None, dev_default="none", help="""
The default browser that Bokeh should use to show documents with.
Valid values are any of the predefined browser names understood by the
Python standard library :doc:`webbrowser <python:library/webbrowser>`
module.
""")
cdn_version: PrioritizedSetting[str | None] = PrioritizedSetting("version", "BOKEH_CDN_VERSION", default=None, help="""
What version of BokehJS to use with CDN resources.
See the :class:`~bokeh.resources.Resources` class reference for full details.
""")
cookie_secret: PrioritizedSetting[str | None] = PrioritizedSetting("cookie_secret", "BOKEH_COOKIE_SECRET", default=None, help="""
Configure the ``cookie_secret`` setting in Tornado. This value is required
if you use ``get_secure_cookie`` or ``set_secure_cookie``. It should be a
long, random sequence of bytes
""")
docs_alert: PrioritizedSetting[str | None] = PrioritizedSetting("docs_alert", "BOKEH_DOCS_ALERT", default=None, help="""
Text for an alert banner to display when building the docs locally (for
testing the alert banner capability).
""")
docs_cdn: PrioritizedSetting[str | None] = PrioritizedSetting("docs_cdn", "BOKEH_DOCS_CDN", default=None, help="""
The version of BokehJS that should be use for loading CDN resources when
building the docs.
To build and display the docs using a locally built BokehJS, use ``local``.
For example:
.. code-block:: sh
BOKEH_DOCS_CDN=local make clean serve
Will build a fresh copy of the docs using the locally built BokehJS and open
a new browser tab to view them.
Otherwise, the value is interpreted a version for CDN. For example:
.. code-block:: sh
BOKEH_DOCS_CDN=1.4.0rc1 make clean
will build docs that use BokehJS version ``1.4.0rc1`` from CDN.
""")
docs_version: PrioritizedSetting[str | None] = PrioritizedSetting("docs_version", "BOKEH_DOCS_VERSION", default=None, help="""
The Bokeh version to stipulate when building the docs.
This setting is necessary to re-deploy existing versions of docs with new
fixes or changes.
""")
ignore_filename: PrioritizedSetting[bool] = PrioritizedSetting("ignore_filename", "BOKEH_IGNORE_FILENAME", default=False, convert=convert_bool, help="""
Whether to ignore the current script filename when saving Bokeh content.
""")
log_level: PrioritizedSetting[LogLevel] = PrioritizedSetting("log_level", "BOKEH_LOG_LEVEL", default="info", dev_default="debug", help="""
Set the log level for JavaScript BokehJS code.
Valid values are, in order of increasing severity:
- ``trace``
- ``debug``
- ``info``
- ``warn``
- ``error``
- ``fatal``
""")
minified: PrioritizedSetting[bool] = PrioritizedSetting("minified", "BOKEH_MINIFIED", convert=convert_bool, default=True, dev_default=False, help="""
Whether Bokeh should use minified BokehJS resources.
""")
legacy: PrioritizedSetting[bool] = PrioritizedSetting("legacy", "BOKEH_LEGACY", convert=convert_bool, default=False, dev_default=False, help="""
Whether Bokeh should use legacy (IE and phantomjs compatible) BokehJS resources.
""")
nodejs_path: PrioritizedSetting[str | None] = PrioritizedSetting("nodejs_path", "BOKEH_NODEJS_PATH", default=None, help="""
Path to the Node executable.
NodeJS is an optional dependency that is required for PNG and SVG export,
and for compiling custom extensions. Bokeh will try to automatically locate
an installed Node executable. Use this environment variable to override the
location Bokeh finds, or to point to a non-standard location.
""")
perform_document_validation: PrioritizedSetting[bool] = PrioritizedSetting("validate_doc", "BOKEH_VALIDATE_DOC", convert=convert_bool, default=True, help="""
whether Bokeh should perform validation checks on documents.
Setting this value to False may afford a small performance improvement.
""")
pretty: PrioritizedSetting[bool] = PrioritizedSetting("pretty", "BOKEH_PRETTY", default=False, dev_default=True, help="""
Whether JSON strings should be pretty-printed.
""")
py_log_level: PrioritizedSetting[PyLogLevel] = PrioritizedSetting("py_log_level", "BOKEH_PY_LOG_LEVEL", default="none", dev_default="debug", convert=convert_logging, help="""
The log level for Python Bokeh code.
Valid values are, in order of increasing severity:
- ``trace``
- ``debug``
- ``info``
- ``warn``
- ``error``
- ``fatal``
- ``none``
""")
resources: PrioritizedSetting[ResourcesMode] = PrioritizedSetting("resources", "BOKEH_RESOURCES", default="cdn", dev_default="absolute-dev", help="""
What kind of BokehJS resources to configure, e.g ``inline`` or ``cdn``
See the :class:`~bokeh.resources.Resources` class reference for full details.
""")
rootdir: PrioritizedSetting[PathLike | None] = PrioritizedSetting("rootdir", "BOKEH_ROOTDIR", default=None, help="""
Root directory to use with ``relative`` resources
See the :class:`~bokeh.resources.Resources` class reference for full details.
""")
secret_key: PrioritizedSetting[str | None] = PrioritizedSetting("secret_key", "BOKEH_SECRET_KEY", default=None, help="""
A long, cryptographically-random secret unique to a Bokeh deployment.
""")
sign_sessions: PrioritizedSetting[bool] = PrioritizedSetting("sign_sessions", "BOKEH_SIGN_SESSIONS", default=False, help="""
Whether the Boeh server should only allow sessions signed with a secret key.
If True, ``BOKEH_SECRET_KEY`` must also be set.
""")
simple_ids: PrioritizedSetting[bool] = PrioritizedSetting("simple_ids", "BOKEH_SIMPLE_IDS", default=True, convert=convert_bool, help="""
Whether Bokeh should use simple integers for model IDs (starting at 1000).
If False, Bokeh will use UUIDs for object identifiers. This might be needed,
e.g., if multiple processes are contributing to a single Bokeh Document.
""")
ssl_certfile: PrioritizedSetting[str | None] = PrioritizedSetting("ssl_certfile", "BOKEH_SSL_CERTFILE", default=None, help="""
The path to a certificate file for SSL termination.
""")
ssl_keyfile: PrioritizedSetting[str | None] = PrioritizedSetting("ssl_keyfile", "BOKEH_SSL_KEYFILE", default=None, help="""
The path to a private key file for SSL termination.
""")
ssl_password: PrioritizedSetting[str | None] = PrioritizedSetting("ssl_password", "BOKEH_SSL_PASSWORD", default=None, help="""
A password to decrypt the SSL keyfile, if necessary.
""")
validation_level: PrioritizedSetting[ValidationLevel] = PrioritizedSetting("validation_level", "BOKEH_VALIDATION_LEVEL", default="none", convert=convert_validation, help="""
Whether validation checks should log or raise exceptions on errors and warnings.
Valid values are:
- ``none``: no exceptions raised (default).
- ``errors``: exception raised on errors (but not on warnings)
- ``all``: exception raised on both errors and warnings
""")
xsrf_cookies: PrioritizedSetting[bool] = PrioritizedSetting("xsrf_cookies", "BOKEH_XSRF_COOKIES", default=False, convert=convert_bool, help="""
Whether to enable Tornado XSRF cookie protection on the Bokeh server. This
is only applicable when also using an auth module or custom handlers. See
https://www.tornadoweb.org/en/stable/guide/security.html#cross-site-request-forgery-protection
for more information about XSRF protection in Tornado. All PUT, POST, and
DELETE handlers will need to be appropriately instrumented when this setting
is active.
""")
# Non-settings methods
def bokehjsdir(self) -> str:
''' The location of the BokehJS source tree.
'''
return bokehjsdir(self.dev)
def css_files(self) -> List[str]:
''' The CSS files in the BokehJS directory.
'''
css_files: List[str] = []
for root, _, files in os.walk(self.bokehjsdir()):
for fname in files:
if fname.endswith(".css"):
css_files.append(join(root, fname))
return css_files
def js_files(self) -> List[str]:
''' The JS files in the BokehJS directory.
'''
js_files: List[str] = []
for root, _, files in os.walk(self.bokehjsdir()):
for fname in files:
if fname.endswith(".js"):
js_files.append(join(root, fname))
return js_files
def load_config(self, location: str) -> None:
''' Load a user-specified override config file.
The file should be a YAML format with ``key: value`` lines.
'''
try:
self._config_override = yaml.load(open(abspath(location)), Loader=yaml.SafeLoader)
except Exception:
raise RuntimeError(f"Could not load Bokeh config file: {location}")
def secret_key_bytes(self) -> bytes | None:
''' Return the secret_key, converted to bytes and cached.
'''
if not hasattr(self, '_secret_key_bytes'):
key = self.secret_key()
if key is None:
self._secret_key_bytes = None
else:
self._secret_key_bytes = key.encode("utf-8")
return self._secret_key_bytes
def _try_load_config(self, locations: Sequence[str]) -> Dict[str, Any]:
for location in locations:
try:
return yaml.load(open(location), Loader=yaml.SafeLoader)
except Exception:
pass
return {}
#-----------------------------------------------------------------------------
# Private API
#-----------------------------------------------------------------------------
#-----------------------------------------------------------------------------
# Code
#-----------------------------------------------------------------------------
settings = Settings()
_secret_key = settings.secret_key()
if _secret_key is not None and len(_secret_key) < 32:
import warnings
warnings.warn("BOKEH_SECRET_KEY is recommended to have at least 32 bytes of entropy chosen with a cryptographically-random algorithm")
del _secret_key
if settings.sign_sessions() and settings.secret_key() is None:
import warnings
warnings.warn("BOKEH_SECRET_KEY must be set if BOKEH_SIGN_SESSIONS is set to True")
|