Skip to main content

A small, readable, Python-only Jupyter kernel with strong IPython parity.

Project description

ipymini

ipymini is a Python-only Jupyter kernel for Python with a small, readable codebase and strong IPython parity.

The design goal is: a small, readable, testable kernel with first‑class IPython behavior.

This was almost entirely implemented by AI, closely referencing 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).


What we’ve aimed to do

  • Implement a full Jupyter kernel in pure Python.
  • 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.

Repository layout

  • ipymini/
    • kernel.py: kernel loop + Jupyter protocol handling (ZMQ)
    • bridge.py: IPython integration (execute, display, history, comms, debug)
    • __main__.py: CLI entry (python -m ipymini -f <connection_file>)
  • ipymini_bridge.py: comm manager surface for tests
  • pytests/: protocol + behavior tests
  • share/jupyter/kernels/ipymini/kernel.json: kernel spec

Requirements

Python / Jupyter

  • Python 3.11+ recommended (we test with 3.12)
  • jupyter_client, jupyter_core, ipython, pyzmq
  • pytest if running tests
  • ipykernel is a test-only dependency (used by some e2e/debug harnesses)

ZMQ

pyzmq bundles or links against libzmq. If you need to install system libs on MacOS:

brew install libzmq

Install (editable)

From the repo root:

pip install -e .

Optional test deps:

pip install -e ".[test]"

Installing the kernel spec

You have a few options:

Option A: Use the built-in installer

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

Option B: Install the spec into your user Jupyter dir

jupyter kernelspec install --user /path/to/ipymini/share/jupyter/kernels/ipymini

Option C: Use the repo’s JUPYTER_PATH

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


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/ipymini/kernel.json for static defaults.

Example (KernelManager):

from jupyter_client import KernelManager

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

Tests

All tests must pass before changes are considered complete:

pytest -q

Note: e2e tests launch the kernel via jupyter_client.KernelManager in a separate process; make sure the kernelspec is discoverable (see JUPYTER_PATH above).

Note: debugger breakpoint-stop tests are enabled and pass; the kernel forces PYDEVD_USE_SYS_MONITORING=0 to avoid sys.monitoring stalls (see DEVLOG.md).


PRs and releases

Create a PR (GitHub CLI required):

tools/pr.sh [label] ["Message"]

Release flow (tags trigger GitHub Actions publish):

tools/release.sh [patch|minor|major]

Initial PyPI permission setup (one-time):

hatch build
twine upload dist/*

Behavior implemented so far

  • kernel_info replies
  • connect_request replies
  • stdout/stderr stream messages
  • execute_result
  • display_data + update_display_data
  • clear_output
  • comms (open/msg/close/info)
  • history (tail/search/range)
  • inspect
  • is_complete
  • completion (IPython-based; can use Jedi and the experimental completion API)
  • interrupts (signal‑based)
  • stop_on_error (aborts queued execute requests by default)
  • stdin input requests
  • kernel subshells (create/list/delete; concurrent shell handling; per‑subshell execution counts/history)
  • pager payloads (? / help)
  • set_next_input payloads (coalesced to one per execute)
  • iopub_welcome (XPUB)
  • debug_request (debugpy in-process adapter: initialize/attach/evaluate, breakpoints, stackTrace/scopes/variables, continue)

Design notes

  • Interrupts use the kernelspec interrupt_mode = signal; the kernel restores the default SIGINT handler so IPython turns interrupts into KeyboardInterrupt.
  • set_next_input is injected onto the IPython shell to emit the expected payloads.
  • stop_on_error aborts queued execute requests only; non-execute requests still return replies.
  • Subshells run in per‑subshell threads with a shared user namespace and thread‑local IO routing.
  • IOPub forwards buffers for display and comm messages when provided; comm handlers also accept binary buffers.
  • Interrupts while blocked on input cancel pending input waits and surface KeyboardInterrupt.

Style notes (fastcore)

  • Prefer store_attr() with no args when storing all params (except self).
  • If most params are stored and only a few are excluded, use store_attr(but='a,b').
  • Pass an explicit list (e.g. store_attr("a,b")) only when storing a subset of params.

Completion configuration (no traitlets required)

ipymini reads simple environment flags at startup:

  • IPYMINI_USE_JEDI=0|1 (defaults to IPython’s own default)
  • IPYMINI_EXPERIMENTAL_COMPLETIONS=0|1 (default: enabled if IPython supports it)

Where to start reading

  • ipymini/kernel.py – message loop + protocol handling
  • ipymini/bridge.py – IPython integration and output capture
  • pytests/ – protocol expectations
  • DEBUG.md – debugger test flow + failure modes
  • DEVLOG.md – detailed progress notes and next steps

Coding style

We follow the fastai style guide (not PEP8). A summary lives in style.md. Key points from the style guide:

  • Favor brevity and clarity: aim for one idea per line
    • Use single-line if/def when the body is a single statement.
  • Keep code readable at a glance: wrap at ~140 chars and avoid unnecessary vertical whitespace
    • e.g., group imports
  • Use short, conventional names and align similar statements where it helps scanning.
  • Avoid auto-formatters/linters that fight this style.
  • Dicts with 3+ identifier keys use dict(...) instead of {...}.
  • Repeated request/response plumbing is factored into small helpers
    • e.g., subshell send, DAP breakpoint helpers
  • No semicolons for chaining; only single-statement bodies are one-liners.

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

ipymini-0.1.0.tar.gz (305.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ipymini-0.1.0-py3-none-any.whl (26.2 kB view details)

Uploaded Python 3

File details

Details for the file ipymini-0.1.0.tar.gz.

File metadata

  • Download URL: ipymini-0.1.0.tar.gz
  • Upload date:
  • Size: 305.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.8

File hashes

Hashes for ipymini-0.1.0.tar.gz
Algorithm Hash digest
SHA256 2ab0b635d90c6d629250323a84fd1e2d9b81aad359c634af309e342ca631d982
MD5 4697935f1f2ed9ff4b8244aad8d1503a
BLAKE2b-256 c01def8cba275eed34c62395e61dca85d25882e4032889ee03d45e7b9e559e90

See more details on using hashes here.

File details

Details for the file ipymini-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: ipymini-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 26.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.8

File hashes

Hashes for ipymini-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 35c817e7314690bd877f389013932839f52ad93bbff0872fa8ff896859a85458
MD5 a4d133a8b6824b26ad8fcfd095704ffc
BLAKE2b-256 a7f8f13345b297a53454f715736230c25fa1841c09b31827f5cf1ec69d3e88a9

See more details on using hashes here.

Supported by

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