Skip to main content

A tool designed to shut down a running Jupyter kernel programmatically using jupyter_client, releasing all associated resources.

Project description

Swarmauri Logo

PyPI - Downloads Hits PyPI - Python Version PyPI - License PyPI - swarmauri_tool_jupytershutdownkernel


Swarmauri Tool · Jupyter Shutdown Kernel

A Swarmauri-compatible utility that performs graceful or forced shutdowns of running Jupyter kernels. It is ideal for automated resource clean-up, CI workflows that recycle kernels between test suites, and agents that need to reclaim compute when a conversation finishes.

  • Supports graceful and forced shutdown paths with configurable timeouts.
  • Returns structured status payloads suitable for orchestration pipelines.
  • Builds on swarmauri_base/swarmauri_standard abstractions so it can be registered like any other tool inside a Swarmauri agent graph.

Requirements

  • Python 3.10 – 3.13.
  • Local access to the target kernel's connection file (typically lives in Jupyter's runtime directory on the same host).
  • Dependencies (jupyter_client, swarmauri_base, swarmauri_standard, pydantic) install automatically with the package.

Installation

Install the package with the workflow that matches your environment. All commands below resolve transitive dependencies.

pip

pip install swarmauri_tool_jupytershutdownkernel

Poetry

poetry add swarmauri_tool_jupytershutdownkernel

uv

# Add to the current project and lockfile
uv add swarmauri_tool_jupytershutdownkernel

# or install into the active environment without editing pyproject.toml
uv pip install swarmauri_tool_jupytershutdownkernel

Tip: When using uv inside this repository, run commands from the repository root so uv can discover the consolidated pyproject.toml.

Quick Start

The tool exposes a callable interface. Instantiate it and provide the kernel identifier along with an optional timeout (seconds). The identifier should match the kernel_id used by Jupyter when the connection file kernel-<kernel_id>.json is created.

from jupyter_client import KernelManager
from swarmauri_tool_jupytershutdownkernel import JupyterShutdownKernelTool

# 1. Launch a kernel (acts as stand-in for an existing notebook kernel).
km = KernelManager(kernel_name="python3")
km.start_kernel()

# 2. Capture the kernel identifier Jupyter assigned (UUID-style string).
kernel_identifier = km.kernel_id or km.connection_file.split("kernel-")[-1].split(".json")[0]
print(f"Kernel identifier: {kernel_identifier}")

# 3. Shut the kernel down with the Swarmauri tool.
shutdown_tool = JupyterShutdownKernelTool()
response = shutdown_tool(kernel_id=kernel_identifier, shutdown_timeout=10)
print(response)

The returned dictionary always contains kernel_id, status, and message. A status of error indicates the tool attempted a forced shutdown or encountered an issue loading the connection file.

Usage Scenarios

Automate Notebook Clean-up After Batch Execution

import json
from pathlib import Path
from swarmauri_tool_jupytershutdownkernel import JupyterShutdownKernelTool

runtime_dir = Path.home() / ".local" / "share" / "jupyter" / "runtime"
shutdown_tool = JupyterShutdownKernelTool()

for connection_file in runtime_dir.glob("kernel-*.json"):
    kernel_id = connection_file.stem.replace("kernel-", "")
    result = shutdown_tool(kernel_id=kernel_id, shutdown_timeout=5)
    print(json.dumps(result, indent=2))

This script discovers every live kernel connection file on the current host and attempts to close it gracefully. It is useful for CI jobs that leave stray kernels active between notebook test suites.

Shut Down Kernels Started Via MultiKernelManager

from jupyter_client import MultiKernelManager
from swarmauri_tool_jupytershutdownkernel import JupyterShutdownKernelTool

multi = MultiKernelManager()

# Start a new kernel for an integration test and capture its UUID.
kernel_id = multi.start_kernel(kernel_name="python3")
print(f"Started kernel with id={kernel_id}")

# Run your test suite against the kernel ...

# When finished, shut it down through the Swarmauri tool.
shutdown_tool = JupyterShutdownKernelTool()
result = shutdown_tool(kernel_id=kernel_id, shutdown_timeout=8)
print(result)

Because MultiKernelManager stores connection files under the standard kernel-<kernel_id>.json naming pattern, the shutdown tool can resolve the same kernel and close it without needing direct access to the MultiKernelManager instance that launched it.

Troubleshooting

  • No such kernel – The tool could not locate a matching connection file. Make sure the process has read access to Jupyter's runtime directory and that you pass the raw identifier (for example, 03c7d8f9-ec4d-4a8a-8a90-cdb35ff9e6c9).
  • Connection file not found – The connection file was deleted or the kernel lives on a different machine. Run the shutdown tool on the same host where the kernel was started.
  • Forced shutdowns – If the kernel remains alive after the timeout expires, the tool switches to a forced shutdown. You can increase shutdown_timeout to give busy kernels more time to finish.
  • Sandboxed environments – Some containerized or restricted environments may block the network ports that Jupyter kernels use. In those cases, start kernels with appropriate permissions before attempting to shut them down programmatically.

License

swarmauri_tool_jupytershutdownkernel is released under the Apache 2.0 License. See LICENSE for details.

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

Built Distribution

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

File details

Details for the file swarmauri_tool_jupytershutdownkernel-0.8.2.dev7.tar.gz.

File metadata

  • Download URL: swarmauri_tool_jupytershutdownkernel-0.8.2.dev7.tar.gz
  • Upload date:
  • Size: 9.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.3 {"installer":{"name":"uv","version":"0.10.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for swarmauri_tool_jupytershutdownkernel-0.8.2.dev7.tar.gz
Algorithm Hash digest
SHA256 3bb54961e58cb4526cc1922d9420a7865213083df8a70c2c58b6623af21ce407
MD5 a8f2d8e89286bd95053a77c7ef083f04
BLAKE2b-256 aa3fd30f1b26d6d3ace1b9477cc19c7e2dd772a8b13e46e1472add2d2f7f5038

See more details on using hashes here.

File details

Details for the file swarmauri_tool_jupytershutdownkernel-0.8.2.dev7-py3-none-any.whl.

File metadata

  • Download URL: swarmauri_tool_jupytershutdownkernel-0.8.2.dev7-py3-none-any.whl
  • Upload date:
  • Size: 11.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.10.3 {"installer":{"name":"uv","version":"0.10.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for swarmauri_tool_jupytershutdownkernel-0.8.2.dev7-py3-none-any.whl
Algorithm Hash digest
SHA256 d3d1ff4180f6f167d01c4033328630857071a0f22e19103c3b4007c247310a3e
MD5 449f07e2d559e07e4fb44ae5625db6e4
BLAKE2b-256 46bc7bf25e9e7058bea97faca63c95baca45e9706c5ad2a8ad198b211dd655ee

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