A tool designed to execute a single code cell in an IPython interactive shell, mimicking notebook cell execution.
Project description
Swarmauri Tool Jupyter Run Cell
Executes a code string inside the current IPython kernel and captures stdout/stderr/error text.
Features
- Runs arbitrary Python snippets with optional timeout.
- Returns
success,cell_output, anderror_outputkeys. - Designed for use inside running notebooks or IPython sessions.
Prerequisites
- Python 3.10 or newer.
- Running within IPython/Jupyter environment.
Installation
# pip
pip install swarmauri_tool_jupyterruncell
# poetry
poetry add swarmauri_tool_jupyterruncell
# uv (pyproject-based projects)
uv add swarmauri_tool_jupyterruncell
Quickstart
from swarmauri_tool_jupyterruncell import JupyterRunCellTool
runner = JupyterRunCellTool()
result = runner(code="print('Hello from Swarmauri!')", timeout=5)
if result["success"]:
print("stdout:", result["cell_output"])
else:
print("error:", result["error_output"])
Tips
- Set
timeout=0(or omit) to disable execution timeouts. - Capture
error_outputto diagnose exceptions raised by the executed code. - Use alongside other notebook automation tools (execute, export, etc.) to build richer pipelines.
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_jupyterruncell-0.9.3.dev9.tar.gz.
File metadata
- Download URL: swarmauri_tool_jupyterruncell-0.9.3.dev9.tar.gz
- Upload date:
- Size: 8.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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 |
bbc539e4a598834be520fde88b241bc60ed417192dde4835643734698d80fde2
|
|
| MD5 |
42dae74628eb9ed040c4087d1dca6f9e
|
|
| BLAKE2b-256 |
2e1ed05102c57537601249854d7db2607b709db54180083c1cdf68715d137379
|
File details
Details for the file swarmauri_tool_jupyterruncell-0.9.3.dev9-py3-none-any.whl.
File metadata
- Download URL: swarmauri_tool_jupyterruncell-0.9.3.dev9-py3-none-any.whl
- Upload date:
- Size: 9.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","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 |
8054c68a10ff4c1a55366ab8940447dc21a6c730d7971d7cb191e3798ad17c4b
|
|
| MD5 |
e5da5ef9b37ab704772d81fe262ee747
|
|
| BLAKE2b-256 |
a862e94564c38b62a5808292c93e27cf9c88f5635956a36115fa366e7c0fb725
|