Skip to main content

Migrating v1 Pydantic ValidatedFunction to v2.

Project description

Pydantic Function Models

uv PyPI Supported Python versions License pre-commit.ci status

A library to model Python function signatures using Pydantic, inspired by the now-deprecated ValidatedFunction from Pydantic v1. This package helps validate function arguments according to type hints, bridging the gap between Pydantic v1 and v2.

Installation

pip install pydantic-function-models

Features

  • Signature modelling: Wrap any Python function to model its signature (positional, keyword, etc.) using Pydantic. Note that if you are after just validation (whether the arguments are valid) then you want validate call
  • Painless migration from Pydantic v1: Provides a ValidatedFunction class ported to v2, for those who relied on ValidatedFunction in v1.
  • Clear error messages: Raises Pydantic ValidationError with helpful details if input arguments do not match the declared types.
  • Reserved name checks: Prevents usage of special parameter names (e.g., v__args, v__kwargs) that could conflict with internal validation logic.

Usage

Below is a general overview of how to use pydantic-function-models in your own code.

Example: Basic Validated Function

from pydantic_function_models import ValidatedFunction

def add(a: int, b: int) -> int:
    return a + b

vf = ValidatedFunction(add)

# Build arguments for validation
args_to_validate = (1,)
kwargs_to_validate = {"b": 2}

validated = vf.model.model_validate({
    "a": args_to_validate[0],
    "b": kwargs_to_validate["b"]
})
result = add(**validated.model_dump(exclude_unset=True))

print(result)  # 3

Here, ValidatedFunction creates an internal Pydantic model that enforces integer values for a and b. If you passed a string for a or b, it would raise a ValidationError.

Library Usage

Internally, each ValidatedFunction builds a Pydantic model representing the function’s signature. When you call .model.model_validate(...) or .build_values(...), it validates the provided arguments (whether positional or keyword-based) against the signature.


Project Structure

Take a look at the internals here:

  • validated_function.py: Core logic for ValidatedFunction, which encapsulates argument validation and Pydantic model generation.
  • parameters.py: Model definitions for function parameters/signatures, with checks for reserved argument names.

Contributing

Maintained by lmmx. Contributions are welcome!

  1. Issues & Discussions: Please open a GitHub issue or discussion for bugs, feature requests, or questions.
  2. Pull Requests: PRs are welcome!
    • Install the dev extra (e.g. with uv: uv pip install -e .[dev])
    • Run tests (e.g. pytest) and include updates to docs or examples if relevant.
    • If reporting a bug, please include the version and error message/traceback if available.

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydantic_function_models-0.1.12.tar.gz (5.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pydantic_function_models-0.1.12-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file pydantic_function_models-0.1.12.tar.gz.

File metadata

File hashes

Hashes for pydantic_function_models-0.1.12.tar.gz
Algorithm Hash digest
SHA256 530964fe7d77a3e153a7394bd4a6b1bbd7aa4bdfc7bc1420e58ebf815a527175
MD5 c2d9961816deb0be6013e022f2c6d2a9
BLAKE2b-256 1ad76afa9458be0e522b9332995cf15afacda5bdd081efe2965812d16b251cf4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydantic_function_models-0.1.12.tar.gz:

Publisher: CI.yml on lmmx/pydantic-function-models

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pydantic_function_models-0.1.12-py3-none-any.whl.

File metadata

File hashes

Hashes for pydantic_function_models-0.1.12-py3-none-any.whl
Algorithm Hash digest
SHA256 ef009e84000870770579895c490be7397f900112ba7a36bed5d0e5b98ea4f108
MD5 c6b357d9be1829c784d71ad7741ee607
BLAKE2b-256 fbcacc63a2ad7ddd490f77c59e37e2e88d8ad2a39bdaa8588101082b94359333

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydantic_function_models-0.1.12-py3-none-any.whl:

Publisher: CI.yml on lmmx/pydantic-function-models

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page