A tool that reads a Jupyter Notebook file using nbformat, converting the JSON file into a NotebookNode object.
Project description
Swarmauri Tool Jupyterreadnotebook
The swarmauri_tool_jupyterreadnotebook package provides a tool (JupyterReadNotebookTool) that reads a Jupyter Notebook file from the local filesystem, validates it using nbformat, and returns it for further processing. This is especially useful in scenarios where you need to programmatically read and inspect notebooks, or integrate them into automated workflows.
Installation
-
Make sure you have Python 3.10 or above installed on your system.
-
Install the package using your preferred Python dependency management method. For example, with pip: • pip install swarmauri_tool_jupyterreadnotebook
Alternatively, if you use Poetry, add the following to your pyproject.toml under dependencies, then run poetry install:
[tool.poetry.dependencies] swarmauri_tool_jupyterreadnotebook = "*"
-
Ensure all required dependencies (found in pyproject.toml) are satisfied. This package relies on: • nbformat for reading and validating notebooks. • swarmauri_core and swarmauri_base for base tool definitions used throughout the Swarmauri ecosystem.
-
Once installed, you can immediately import and use the tool in your own project.
Usage
The primary entry point is the JupyterReadNotebookTool class. It inherits from the Swarmauri base class ToolBase and integrates seamlessly into the Swarmauri environment. However, it can also be used independently.
Here is a simple usage example demonstrating how to invoke the tool in your code:
from swarmauri_tool_jupyterreadnotebook import JupyterReadNotebookTool
def read_notebook_example():
"""
Demonstrates how to read a Jupyter Notebook from the filesystem using the JupyterReadNotebookTool.
"""
# Instantiate the tool
notebook_reader = JupyterReadNotebookTool()
# Provide the path to the notebook and optionally specify nbformat version
result = notebook_reader(
notebook_file_path="path_to_your_notebook.ipynb",
as_version=4
)
if "notebook_node" in result:
# Successfully read the notebook
print("Notebook content:")
notebook_data = result["notebook_node"]
# You can inspect the notebook data as needed, e.g., listing cells
for i, cell in enumerate(notebook_data.cells):
print(f"Cell {i} type:", cell.cell_type)
else:
# An error occurred
print("Error reading notebook:", result["error"])
read_notebook_example()
In this example: • We instantiate JupyterReadNotebookTool with default settings. • We call it, passing in the notebook file path and optional nbformat version. • On a successful read, the dictionary returned will contain a "notebook_node" key with the parsed Jupyter notebook contents. Otherwise, it will contain an "error" key.
Detailed Parameters for JupyterReadNotebookTool
• notebook_file_path (str): REQUIRED - The file path to the Jupyter Notebook to be read. • as_version (int): OPTIONAL - The nbformat version (e.g., 4) to parse the notebook as. Defaults to 4 if not specified.
Internal Logic
The tool follows these steps:
- Reads the specified notebook file from the provided path.
- Parses the notebook data using the requested nbformat version (default is version 4).
- Validates notebook data to ensure schema compliance.
- Returns the notebook data or an error message if something went wrong (such as a missing file or a validation error).
By leveraging this straightforward approach, the swarmauri_tool_jupyterreadnotebook package helps ensure that your notebooks remain valid, consistent, and ready for further processing.
Dependencies
Below is a list of primary dependencies used by this package: • nbformat for reading/executing/validating Jupyter Notebooks. • swarmauri_core and swarmauri_base for base classes and decorators as required by Swarmauri components. • pydantic for type validation (where relevant).
All dependencies are detailed in pyproject.toml. No additional manual installation is needed beyond installing this package.
License
swarmauri_tool_jupyterreadnotebook is licensed under the Apache License 2.0. See the LICENSE file for more details.
© 2025 Swarmauri. All rights reserved.
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_jupyterreadnotebook-0.7.2.dev2.tar.gz.
File metadata
- Download URL: swarmauri_tool_jupyterreadnotebook-0.7.2.dev2.tar.gz
- Upload date:
- Size: 8.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
890a249a5109d8c13f12ca7ff36c49abcfdf019817557fe65ba1b3c8c039fd6d
|
|
| MD5 |
55fa0dffa2777d3ab06a2eb9d0bdc98b
|
|
| BLAKE2b-256 |
0336ff73a5a6eba296b18b05bf143a43c8bd6a07a7a00ecbd9991e13d9a7700a
|
File details
Details for the file swarmauri_tool_jupyterreadnotebook-0.7.2.dev2-py3-none-any.whl.
File metadata
- Download URL: swarmauri_tool_jupyterreadnotebook-0.7.2.dev2-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.6.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6799823a508a6f2b646d0b303c67e185e58e932846a3d3983483b66131c22e57
|
|
| MD5 |
19b161070482116aa53ef3df98b0ec32
|
|
| BLAKE2b-256 |
59957e6281947df7eb47d2fddd948571eb037aeb3f8fb50b0a38fd2c3f662d40
|