Skip to main content

Jupyter Python Comm implementation, for usage in ipykernel, xeus-python etc.

Project description

Comm

It provides a way to register a Kernel Comm implementation, as per the Jupyter kernel protocol. It also provides a base Comm implementation and a default CommManager that can be used.

Register a comm implementation in the kernel:

Case 1: Using the default CommManager and the BaseComm implementations

We provide default implementations for usage in IPython:

import comm


class MyCustomComm(comm.base_comm.BaseComm):
    def publish_msg(self, msg_type, data=None, metadata=None, buffers=None, **keys):
        # TODO implement the logic for sending comm messages through the iopub channel
        pass


comm.create_comm = MyCustomComm

This is typically what ipykernel and JupyterLite's pyolite kernel will do.

Case 2: Providing your own comm manager creation implementation

import comm

comm.create_comm = custom_create_comm
comm.get_comm_manager = custom_comm_manager_getter

This is typically what xeus-python does (it has its own manager implementation using xeus's C++ messaging logic).

Comm users

Libraries like ipywidgets can then use the comms implementation that has been registered by the kernel:

from comm import create_comm, get_comm_manager

# Create a comm
comm_manager = get_comm_manager()
comm = create_comm()

comm_manager.register_comm(comm)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

comm-0.2.0.tar.gz (5.8 kB view details)

Uploaded Source

Built Distribution

comm-0.2.0-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file comm-0.2.0.tar.gz.

File metadata

  • Download URL: comm-0.2.0.tar.gz
  • Upload date:
  • Size: 5.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for comm-0.2.0.tar.gz
Algorithm Hash digest
SHA256 a517ea2ca28931c7007a7a99c562a0fa5883cfb48963140cf642c41c948498be
MD5 9383dba9cb77ae1905c35fc63f59a134
BLAKE2b-256 e71de55f4664491a5e490ff48f7f6d7555771a46541d226e13348d847ae271c1

See more details on using hashes here.

Provenance

File details

Details for the file comm-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: comm-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 7.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.6

File hashes

Hashes for comm-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2da8d9ebb8dd7bfc247adaff99f24dce705638a8042b85cb995066793e391001
MD5 603a24039a148910ace8cc0aa2cd4ed8
BLAKE2b-256 7ba65fd0242e974914b139451eea0a61ed9fd2e47157e33a67939043c50a94dd

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page