Skip to main content

Migrating v1 Pydantic ValidatedFunction to v2.

Project description

Pydantic Function Models

uv pdm-managed 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. There is no built-in command-line interface; usage is purely through Python imports.

Command-Line Interface

This library does not provide a CLI. All functionality is accessed by importing and using its classes in Python code. The remaining “Examples” section demonstrates typical usage patterns.

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.11.tar.gz (9.0 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.11-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

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

File metadata

File hashes

Hashes for pydantic_function_models-0.1.11.tar.gz
Algorithm Hash digest
SHA256 28292961bc71f9e4d75ae608ef1cf820ce650ba019067776ee82c6612ccf1cca
MD5 2f148bd0d4bdbed1f98dc9494da60fb7
BLAKE2b-256 ba9f9f89602abf782693974d1812657b7b0bab346c011f31d7a05ca71f5643e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydantic_function_models-0.1.11.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.11-py3-none-any.whl.

File metadata

File hashes

Hashes for pydantic_function_models-0.1.11-py3-none-any.whl
Algorithm Hash digest
SHA256 1c17d45f7b7b95ad1644226a9b8d6d05ce1565a0d0bbe03f4ec86e21487aff2b
MD5 260abf164526feb7fad202bc3f1aaa61
BLAKE2b-256 8b5ccd8bd73e893604e335f4347539851a8f8dede32fbf6d7a009f564c2c6681

See more details on using hashes here.

Provenance

The following attestation bundles were made for pydantic_function_models-0.1.11-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