Skip to main content

ipymini

ipymini is a Jupyter kernel for Python with a Rust protocol engine, a small(ish), readable(ish) codebase, and strong IPython parity.

This was almost entirely implemented by AI, and no human currently fully understands all the generated code, so please be very careful, because we don't actually know what this code does. The AI closely referenced the ipykernel, xeus, xeus-python, and jupyter_kernel_test projects during development. So all credit for this project belongs to the authors of those packages, and to authors of the excellent documentation and specifications referred to (e.g DAP spec; JEPs; etc) - but of course all blame for mistakes is entirely our/AI's fault.

Having said all that, we have been working on this and testing it for ~6 months before making it public, and it is working well for our needs at least (Mac and Linux usage on nbclassic and Solveit). We have restructured it a number of times to make it more modular and understandable, and added a lot of tests of concurrency, complex workflows, etc.


What we’ve aimed to do

  • Keep the Jupyter engine in Rust and Python language semantics in IPython.
  • Match ipykernel behavior where it matters (IOPub ordering, message shapes, history, inspect, etc.).
  • Use IPython instead of re‑implementing Python semantics.
  • Expand protocol‑level tests (IOPub, interrupts, completions, etc.) to approach upstream parity.

Requirements

  • Python 3.11+

Install

From PyPI:

pip install ipymini

The install puts a kernelspec in the environment. Jupyter from that environment lists it as the py kernel, with no separate install step. An editable install (pip install -e .) does the same, with a copy of kernel.json taken at install time.

Installing the kernel spec

An install already puts the kernelspec in its own environment. From a source checkout, the built-in installer copies the kernelspec into another Jupyter kernels directory. Install it for the current user:

python -m ipymini install --user

Or install into the current environment:

python -m ipymini install --sys-prefix

After either option, you should see it in:

jupyter kernelspec list

Alternatively, use the repo’s JUPYTER_PATH during development. Set JUPYTER_PATH to include the repo’s share/jupyter:

export JUPYTER_PATH=/path/to/ipymini/share/jupyter:$JUPYTER_PATH

Running manually

ipymini is a normal Jupyter kernel executable. It expects a connection file:

python -m ipymini -f /path/to/connection.json

(When run via Jupyter, that file is created and passed automatically.)


Concurrent execution helpers

Inside an ipymini cell, get_ipython().kernel.subshell() routes later execute requests from the same client session to a temporary subshell, while get_ipython().kernel.sidecar() uses the persistent kernel-wide sidecar:

with get_ipython().kernel.subshell():
    await something()

with get_ipython().kernel.sidecar():
    await something_reentrant()

The same helpers are also available as from ipymini import sidecar, subshell.


Configuring env and working directory

For per-launch configuration, rely on the kernel launcher:

  • KernelManager: pass env and cwd to start_kernel(...).
  • Kernelspec: add an "env" dict to share/jupyter/kernels/py/kernel.json for static defaults.

Example (KernelManager):

from jupyter_client import KernelManager

km = KernelManager(kernel_name="py")
km.start_kernel(env={"MY_FLAG": "1"}, cwd="/path/to/workdir")

Optional env flags:

  • KERNMINI_IOPUB_QMAX: maximum number of queued IOPub events (default 10000).
  • KERNMINI_HOLD_TIMEOUT: maximum time in seconds for an unreleased held execution (default 3600).
  • KERNMINI_CELL_NAME: override the temporary debugger filename for a cell.
  • IPYMINI_USE_JEDI: enable or disable IPython's Jedi completer.

On POSIX, ipymini isolates the kernel into its own process group and terminates that group as the last shutdown step, so user-created child processes are cleaned up with the kernel. Nested ipymini kernels started by KernelManager watch their parent pid and shut themselves down when that parent exits. Direct SIGTERM to the kernel uses the same cleanup path. Windows does not provide this process-group cleanup guarantee; after normal cleanup the kernel process exits with os._exit().


Developer guide

See DEV.md.

Release files for ipymini 0.1.23

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

Source distribution (sdist)

Source distribution for ipymini 0.1.23
File Size Uploaded
ipymini-0.1.23.tar.gz 61.5 kB Details

Built distribution (wheel)

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

Total release size: 89.7 kB

Release files / ipymini-0.1.23.tar.gz

Download URL ipymini-0.1.23.tar.gz
Size 61.5 kB
Tags Source
SHA-256 checksum
How to use checksums
f06ec144e7a2880ee9f155400334f4f7a62dac60a2ac9c98c2ed38733a0e2782
BLAKE2b-256 checksum
How to use checksums
80a474d45638ec7d0a1de9905bd9d67161c87cf6c38af0c534fab1c9094ca312
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via twine/7.0.0 CPython/3.13.15

Release files / ipymini-0.1.23-py3-none-any.whl

Download URL ipymini-0.1.23-py3-none-any.whl
Size 28.2 kB
Tags Python 3
SHA-256 checksum
How to use checksums
f3e8693460c2d7fb7a63e1ef6b0eb4c28624b94a8b040e47557fb4d5d38e6897
BLAKE2b-256 checksum
How to use checksums
99482d211ddebc25c7135f0806c077d811f9c79ff4a5cc3856cb6a52e6fbee0f
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

This release

0.1.23 This release

2 release files

0.1.22

2 release files

0.1.21

2 release files

0.1.20

2 release files

0.1.16

2 release files

0.1.15

2 release files

0.1.14

2 release files

0.1.13

2 release files

0.1.11

2 release files

0.1.10

2 release files

0.1.9

2 release files

0.1.8

2 release files

0.1.7

2 release files

0.1.6

2 release files

0.1.5

2 release files

0.1.4

2 release files

0.1.3

2 release files

0.1.2

2 release files

0.1.1

2 release files

0.1.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