bokeh.application.application (original) (raw)

Provide the Application class.

Application instances are factories for creating new Bokeh Documents.

When a Bokeh server session is initiated, the Bokeh server asks the Application for a new Document to service the session. To do this, the Application first creates a new empty Document, then it passes this new Document to themodify_document method of each of its handlers. When all handlers have updated the Document, it is used to service the user session.

class Application(*handlers: Handler, metadata: dict[str, Any] | None = None)[source]#

An Application is a factory for Document instances.

__init__(*handlers: Handler, metadata: dict[str, Any] | None = None) → None[source]#

Application factory.

Parameters:

handlers (seq _[_Handler]) – List of handlers to call. The URL is taken from the first one only.

Keyword Arguments:

metadata (dict) –

arbitrary user-supplied JSON data to make available with the application.

The server will provide a URL http://applicationurl/metadatawhich returns a JSON blob of the form:

{ "data": { "hi": "hi", "there": "there" }, "url": "/myapp" }

The user-supplied metadata is returned as-is under the"data" key in the blob.

add(handler: Handler) → None[source]#

Add a handler to the pipeline used to initialize new documents.

Parameters:

handler (Handler) – a handler for this Application to use to process Documents

create_document() → Document[source]#

Creates and initializes a document using the Application’s handlers.

initialize_document(doc: Document) → None[source]#

Fills in a new document using the Application’s handlers.

on_server_loaded(server_context: ServerContext) → None[source]#

Invoked to execute code when a new session is created.

This method calls on_server_loaded on each handler, in order, with the server context passed as the only argument.

on_server_unloaded(server_context: ServerContext) → None[source]#

Invoked to execute code when the server cleanly exits. (Before stopping the server’s IOLoop.)

This method calls on_server_unloaded on each handler, in order, with the server context passed as the only argument.

Warning

In practice this code may not run, since servers are often killed by a signal.

async on_session_created(session_context: SessionContext) → None[source]#

Invoked to execute code when a new session is created.

This method calls on_session_created on each handler, in order, with the session context passed as the only argument.

May return a Future which will delay session creation until theFuture completes.

async on_session_destroyed(session_context: SessionContext) → None[source]#

Invoked to execute code when a session is destroyed.

This method calls on_session_destroyed on each handler, in order, with the session context passed as the only argument.

Afterwards, session_context.destroyed will be True.

process_request(request: HTTPServerRequest) → dict[str, Any][source]#

Processes incoming HTTP request returning a dictionary of additional data to add to the session_context.

Parameters:

request – HTTP request

Returns:

A dictionary of JSON serializable data to be included on the session context.

property handlers_: tuple[Handler, ...]_#

The ordered list of handlers this Application is configured with.

property metadata_: dict[str, Any] | None_#

Arbitrary user-supplied metadata to associate with this application.

property safe_to_fork_: bool_#

property static_path_: str | None_#

Path to any (optional) static resources specified by handlers.

class ServerContext[source]#

A harness for server-specific information and tasks related to collections of Bokeh sessions.

This base class is probably not of interest to general users.

abstract property sessions_: list[ServerSession]_#

SessionContext instances belonging to this application.

Subclasses must implement this method.

class SessionContext(server_context: ServerContext, session_id: ID)[source]#

A harness for server-specific information and tasks related to Bokeh sessions.

This base class is probably not of interest to general users.

__init__(server_context: ServerContext, session_id: ID) → None[source]#

abstract with_locked_document(func: Callable[[Document], Awaitable[None]]) → Awaitable[None][source]#

Runs a function with the document lock held, passing the document to the function.

Subclasses must implement this method.

Parameters:

func (callable) – function that takes a single parameter (the Document) and returns None or a Future

Returns:

a Future containing the result of the function

abstract property destroyed_: bool_#

If True, the session has been discarded and cannot be used.

A new session with the same ID could be created later but this instance will not come back to life.

property id_: ID_#

The unique ID for the session associated with this context.

property server_context_: ServerContext_#

The server context for this session context