A tool designed to clear all outputs from a Jupyter Notebook using nbconvert’s ClearOutputPreprocessor, preparing the notebook for sharing or version control.
Project description
Swarmauri Tool Jupyter Clear Output
Removes outputs and execution counts from Jupyter notebooks using a Swarmauri tool wrapper. Ideal for cleaning notebooks before publishing or committing to version control.
Features
- Clears output arrays from all code cells and resets
execution_counttoNone. - Leaves markdown and raw cells untouched.
- Works with notebooks already loaded into memory (dict/JSON structure).
Prerequisites
- Python 3.10 or newer.
- Dependencies:
nbconvert,swarmauri_base,swarmauri_standard(installed automatically).
Installation
# pip
pip install swarmauri_tool_jupyterclearoutput
# poetry
poetry add swarmauri_tool_jupyterclearoutput
# uv (pyproject-based projects)
uv add swarmauri_tool_jupyterclearoutput
Quickstart
import json
from swarmauri_tool_jupyterclearoutput import JupyterClearOutputTool
notebook_data = json.loads(Path("notebooks/example.ipynb").read_text())
cleaner = JupyterClearOutputTool()
clean_notebook = cleaner(notebook_data)
Path("notebooks/example-clean.ipynb").write_text(json.dumps(clean_notebook, indent=2))
Tips
- Run this tool before committing notebooks to keep diffs small and avoid leaking secrets in output cells.
- Combine with Swarmauri pipelines that regenerate notebooks (e.g., parameterized runs) to ensure clean artifacts.
- For large notebooks, consider streaming to disk rather than loading entirely into memory before clearing.
Want to help?
If you want to contribute to swarmauri-sdk, read up on our guidelines for contributing that will help you get started.
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swarmauri_tool_jupyterclearoutput-0.9.3.dev18.tar.gz.
File metadata
- Download URL: swarmauri_tool_jupyterclearoutput-0.9.3.dev18.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fd7dc0a2a1769dc8213dc71433323219d1ad17935f9a1c6b94e3f41114d6ab8b
|
|
| MD5 |
f0f1b9ec737bbe11d36cc1e139187c37
|
|
| BLAKE2b-256 |
a27232269a47d880303be77532e452afb1e8d7cff001b5e0dee54b686fd393a3
|
File details
Details for the file swarmauri_tool_jupyterclearoutput-0.9.3.dev18-py3-none-any.whl.
File metadata
- Download URL: swarmauri_tool_jupyterclearoutput-0.9.3.dev18-py3-none-any.whl
- Upload date:
- Size: 8.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.12 {"installer":{"name":"uv","version":"0.10.12","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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b7e01dd1765f2242e78a099d222dc91af2e77b3faec44451278d2bfa4cb3d5a9
|
|
| MD5 |
607c68ec5164f5df03b99b142592d242
|
|
| BLAKE2b-256 |
86db5d13a43286b024d11da096b1a65e888dbdbd4df71af5241ee17ae985b255
|