Metadata-Version: 2.3
Name: swarmauri_tool_jupyterexecutenotebookwithparameters
Version: 1.1.0.dev9
Summary: A tool designed to execute parameterized notebooks using papermill, allowing dynamic input and output capture for automated workflows.
License: Apache-2.0
Author: Swarmauri Contributors
Author-email: contributors@swarmauri.com
Requires-Python: >=3.10,<3.13
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Dist: papermill (>=2.6.0)
Requires-Dist: swarmauri_base
Requires-Dist: swarmauri_core
Requires-Dist: swarmauri_standard
Description-Content-Type: text/markdown

![Swarmauri Logo](https://res.cloudinary.com/dbjmpekvl/image/upload/v1730099724/Swarmauri-logo-lockup-2048x757_hww01w.png)

<p align="center">
    <a href="https://pypi.org/project/swarmauri_tool_jupyterexecutenotebookwithparameters/">
        <img src="https://img.shields.io/pypi/dm/swarmauri_tool_jupyterexecutenotebookwithparameters" alt="PyPI - Downloads"/></a>
    <a href="https://github.com/swarmauri/swarmauri-sdk/pkgs/community/swarmauri_tool_jupyterexecutenotebookwithparameters">
        <img src="https://hits.seeyoufarm.com/api/count/incr/badge.svg?url=https://github.com/swarmauri/swarmauri-sdk/pkgs/community/swarmauri_tool_jupyterexecutenotebookwithparameters&count_bg=%2379C83D&title_bg=%23555555&icon=&icon_color=%23E7E7E7&title=hits&edge_flat=false" alt="GitHub Hits"/></a>
    <a href="https://pypi.org/project/swarmauri_tool_jupyterexecutenotebookwithparameters/">
        <img src="https://img.shields.io/pypi/pyversions/swarmauri_tool_jupyterexecutenotebookwithparameters" alt="PyPI - Python Version"/></a>
    <a href="https://pypi.org/project/swarmauri_tool_jupyterexecutenotebookwithparameters/">
        <img src="https://img.shields.io/pypi/l/swarmauri_tool_jupyterexecutenotebookwithparameters" alt="PyPI - License"/></a>
    <br />
    <a href="https://pypi.org/project/swarmauri_tool_jupyterexecutenotebookwithparameters/">
        <img src="https://img.shields.io/pypi/v/swarmauri_tool_jupyterexecutenotebookwithparameters?label=swarmauri_tool_jupyterexecutenotebookwithparameters&color=green" alt="PyPI - swarmauri_tool_jupyterexecutenotebookwithparameters"/></a>
</p>

---

# `swarmauri_tool_jupyterexecutenotebookwithparameters`

## Overview

This package provides a tool for executing Jupyter notebooks with custom parameters, leveraging the power of papermill. With the incorporated parameter injection, you can modify variables and data sources without manually editing your notebooks.

## Installation

This package is published on the Python Package Index (PyPI). You can install it with:

    pip install swarmauri_tool_jupyterexecutenotebookwithparameters

### Dependencies

• papermill  
• swarmauri_core >= 0.6.0.dev1  
• swarmauri_base >= 0.6.0.dev1  

These dependencies will be automatically installed when you install this package from PyPI.

## Usage

After installing, import the tool in your Python project:

    from swarmauri_tool_jupyterexecutenotebookwithparameters import JupyterExecuteNotebookWithParametersTool

### Basic Example

Create an instance of the tool and call it with the required arguments:

    # Example usage in a script or notebook

    # Instantiate the tool
    tool_instance = JupyterExecuteNotebookWithParametersTool()

    # Execute a Jupyter notebook
    result = tool_instance(
        notebook_path="example_notebook.ipynb",
        output_notebook_path="example_output.ipynb",
        params={
            "input_data_path": "data/input.csv",
            "run_mode": "production"
        }
    )

    # Check for success or error
    if "executed_notebook" in result:
        print(f"Notebook executed successfully. Output saved at: {result['executed_notebook']}")
    else:
        print(f"Error executing notebook: {result['error']}")

In this example:
• notebook_path points to the original .ipynb file.  
• output_notebook_path is the output file that papermill writes after parameter injection and execution.  
• params contains key-value pairs injected into the notebook as variables.

### Advanced Usage

• Catching Exceptions: The tool automatically returns a dictionary containing "error" if any exceptions occur during execution, allowing for programmatic error handling in CI/CD pipelines or other automated processes.  

• Parameter Injection: You can pass in any number of parameters to the params dictionary. For instance, toggling debug flags or updating dataset paths dynamically is straightforward with this mechanism.  

• Integration: This tool is designed to be used standalone or within the Swarmauri framework. When integrated into a pipeline, different notebooks can share the same or overridden parameter sets for consistent processing across multiple steps.  

---

## Further Development

This tool follows PEP 8 style guidelines, includes docstrings for all classes and methods, and utilizes type hints for better readability and maintainability. It’s designed to fit seamlessly into your Python projects, enabling powerful, parameterized notebook executions with minimal boilerplate.
