JupyterBackendRegistration

JupyterBackendRegistration#

namedtuple JupyterBackendRegistration(name: str, handler: Callable[..., object], source: str)[source]#

Describe one registered custom Jupyter backend.

Returned by registered_jupyter_backends().

Added in version 0.48.0.

Attributes:
namestr

Backend name.

handlercallable()

The backend handler callable.

sourcestr

Human-readable origin in the form 'module.qualname' for explicit registrations or the entry-point value for plugin-discovered registrations.

Fields:
  1.  name (str) – Alias for field number 0

  2.  handler (Callable[…, object]) – Alias for field number 1

  3.  source (str) – Alias for field number 2