Skip to main content

jupyasyncclient

jupyasyncclient is an async Python client for running code on Jupyter kernels. It connects to servers that implement the standard kernels API, including rustygate, jupygate, and jupyter_server.

Kernel creation, interruption, restart, and deletion use HTTP. Each client exchanges messages over one websocket. Sends await the websocket transport. The client does not depend on zmq or tornado.

Three classes provide jupyter_client-style interfaces:

  • JupyAsyncKernelClient manages one kernel’s lifecycle, channels, and messages.
  • JupyAsyncKernelManager starts and stops one kernel and creates clients for it.
  • JupyAsyncMultiKernelManager manages multiple kernels. ensure_kernel('some-key') returns the live kernel registered under that key or starts one.

The core notebook builds the client bottom-up and demonstrates every method against a live server. The managers are HTTP wrappers in plain modules. Two other notebooks cover gateway APIs:

JupyAsyncCellsClient.view returns selected cells with the current notebook path and requested metadata. cells returns the selected cell list. Both accept a filename or a kernel binding through the client constructor.

Install

pip install jupyasyncclient

You also need a kernel server. These examples use rustygate serving ipymini kernels. The test suite also runs against a stock jupyter_server.

Use

The client’s execute, complete, inspect, history, kernel_info, and wait_for_ready methods follow their jupyter_client namesakes. Choose how to receive execution results:

  • execute sends without waiting for a reply.
  • reply awaits one execute_reply.
  • run collects every message caused by an execution.

Every inbound message also reaches the on_jmsg callback once, in receive order, after request routing. The callback can be synchronous or asynchronous. The reader awaits it before taking the next message. Do not await replies on the same websocket from the callback. JmsgQueues provides queues for applications that need to pull the same messages instead.

Every protocol *_request type is callable by name and returns an awaitable for its reply. This includes subshell requests. New protocol messages do not require a client release.

Messages are standard Jupyter dictionaries with a channel key. The server handles zmq-specific behaviour, including sync-send edge consumption, slow-joiner subscriptions, and socket identity.

import asyncio
from rustygate.tools import start_gateway
g = start_gateway()
g
<Gateway http://127.0.0.1:60487 pid=47781 up>

start_new_server_kernel starts a kernel and returns its manager and a ready client. This example uses a single jmsg queue for iopub and stdin messages:

km, kc = await start_new_server_kernel(g.url)
qs = JmsgQueues(kc, queues=('jmsg',), merge=dict(iopub='jmsg', stdin='jmsg'))
rep = await kc.reply("print('hello'); 6*7", timeout=30)
rep['content']['status']
'ok'

Kernel output arrives on the iopub channel. Read the stream message from the queue:

m = await qs.jmsg_for('stream', timeout=15)
m['content']['text']
'hello\n'

Calling input() in the kernel produces an input_request on the stdin channel. Answer with the client’s input method. It sets the reply’s parent to the request:

fut = asyncio.ensure_future(kc.reply("name = input('who? ')", timeout=30))
prompt = await qs.jmsg_for('input_request', timeout=15)
kc.input('Jeremy')
(await fut)['content']['status']
'ok'

Call protocol requests by name and await their replies. This example creates and deletes a JEP 91 subshell:

sub = (await kc.create_subshell(timeout=15))['content']['subshell_id']
rep = await kc.reply('40+2', timeout=30, subshell_id=sub)
await kc.delete_subshell(sub, timeout=15)
rep['content']['status']
'ok'

Use the multimanager to keep a kernel for each named task. Repeated calls to ensure_kernel with the same key reuse its live kernel:

mkm = JupyAsyncMultiKernelManager(g.url)
k1 = await mkm.ensure_kernel('analysis')
k2 = await mkm.ensure_kernel('analysis')
k1 == k2
True
await kc.aclose()
await km.shutdown_kernel()
await mkm.shutdown_all()

Pass token=... to any of the three classes when the server requires a bearer token. HTTP requests send it in the Authorization header. Websocket connections send it as a query parameter.

Release files for jupyasyncclient 0.2.16

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Source distribution (sdist)

Source distribution for jupyasyncclient 0.2.16
File Size Uploaded
jupyasyncclient-0.2.16.tar.gz 22.6 kB Details

Built distribution (wheel)

Table of built distributions (wheels) for jupyasyncclient 0.2.16
File Interpreter ABI Platform
jupyasyncclient-0.2.16-py3-none-any.whl Python 3 none any Details

Total release size: 45.6 kB

Release files / jupyasyncclient-0.2.16.tar.gz

Download URL jupyasyncclient-0.2.16.tar.gz
Size 22.6 kB
Tags Source
SHA-256 checksum
How to use checksums
c70ca1e4b94cd72d7e749ae639bac2f731f6e071e00eb634a0f3156b2f9f626e
BLAKE2b-256 checksum
How to use checksums
7546364095424e87d2889792925fd84b7c0fdbfb07ba0be9b8ce9caa54d15129
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.15

Release files / jupyasyncclient-0.2.16-py3-none-any.whl

Download URL jupyasyncclient-0.2.16-py3-none-any.whl
Size 22.9 kB
Tags Python 3
SHA-256 checksum
How to use checksums
c16bbf9c1061107e17cfc1e39d2c0d6a201ff4fca81cfbedc0589eb272929e38
BLAKE2b-256 checksum
How to use checksums
ec68c5d91f048f737388c9a5b1fa1c04a1527cd2bfa514009763f58eecedd24c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.15

Release history Release notifications | RSS feed

0.2.19

2 release files

0.2.18

2 release files

0.2.17

2 release files

This release

0.2.16 This release

2 release files

0.2.11

2 release files

0.2.10

2 release files

0.2.9

2 release files

0.2.8

2 release files

0.2.7

2 release files

0.2.6

2 release files

0.2.5

2 release files

0.2.4

2 release files

0.2.3

2 release files

0.2.2

2 release files

0.2.1

2 release files

0.2.0

2 release files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page