Metadata-Version: 2.4
Name: kedantic
Version: 0.1.0
Summary: Plugin to allow Pydantic Models as Node Inputs in Kedro
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: kedro>=1.1.1
Requires-Dist: pydantic>=2.12.5
Dynamic: license-file

# Kedantic

## Overview

Kedantic allows you to specify Pydantic models as parameter inputs
to your kedro nodes.
This has the following benefits

1. Offload parameter validation to Pydantic
2. Make unit testing of nodes simpler, due to point 1.
3. Better type hinting than generic dictionaries when working in an IDE with a lsp

## Installation

To install, simply run

```bash
pip install kedantic
```

## Use

To utilize, simply annotate your node's function parameters with pydantic models and kedantic
will take care of the rest. Kedantic will only automatically validate inputs that
are parameters into a node, i.e. the inputs name must start with "params:" on the
pipeline definition.
