Skip to main content

pico-pydantic

PyPI Ask DeepWiki License: MIT CI (tox matrix) codecov Quality Gate Status Duplicated Lines (%) Maintainability Rating Docs Interactive Lab

Pico-Pydantic

Pico-Pydantic integrates Pico-IoC with Pydantic, enabling declarative, aspect-oriented validation of method arguments within your service layer.

It uses Pico-IoC's MethodInterceptor system to perform validation based on Pydantic BaseModel type hints before your method's business logic runs. This is the ideal tool for ensuring arguments passed between IoC-managed services are structurally correct.

Requires Python 3.11+ Works with Pydantic 2.0+ Supports async and sync methods Enables unit testing of validation separate from business logic


Why pico-pydantic

While web frameworks handle validation at the HTTP boundary, business services often need to guarantee input integrity internally, especially when components are called from CLI tools, workers, or other services.

Pico-Pydantic provides:

  • Declarative @validate boundaries for service methods.
  • Aspect-Oriented Programming (AOP) for argument validation.
  • Clear error handling with ValidationFailedError.
  • Centralized validation logic, decoupled from the core service code.
Concern Pico-IoC Default pico-pydantic
Argument checking Manual if/raise Declarative @validate
Schema definition None Pydantic BaseModel type hints
Handling errors Raw ValidationError Wrapped ValidationFailedError

Core Features

  • Method validation via @validate decorator.
  • ValidationInterceptor for AOP execution.
  • Seamless compatibility with BaseModel type annotations.
  • Correct handling of positional, keyword, and default arguments.
  • Zero coupling to web frameworks.

Installation

pip install pico-pydantic

Quick Example

1. Define the Data Model and Service:

from pydantic import BaseModel, Field
from pico_ioc import component
from pico_pydantic import validate

class ItemData(BaseModel):
    name: str = Field(min_length=3)
    price: float = Field(gt=0)

@component
class InventoryService:
    @validate
    async def add_item(self, data: ItemData) -> dict:
        # Validation happens BEFORE this line
        print(f"Adding item: {data.name}")
        return data.model_dump()

2. Full Example: Initialization, Success, and Failure Handling

import asyncio
from pico_boot import init
from pico_pydantic import ValidationFailedError

# 'components' is used here as the module containing InventoryService.
container = init(modules=["components"])

async def main():
    service = container.get(InventoryService)

    # --- Success: Validation Passes ---
    print("--- Testing Success ---")
    result = await service.add_item({"name": "Hammer", "price": 10.50})
    print(f"Result: {result}")
    
    # --- Failure: ValidationFailedError is thrown by the Interceptor ---
    print("\n--- Testing Failure ---")
    try:
        # Fails: 'price' is negative, violating Field(gt=0)
        await service.add_item({"name": "A", "price": -5})
    except ValidationFailedError as e:
        print(f"Validation failed for method '{e.method_name}'.")
        print(e.pydantic_error) # Shows the detailed Pydantic error
    
    await container.cleanup_all_async()
    container.shutdown()

if __name__ == "__main__":
    asyncio.run(main())

How It Works

  • The @validate decorator attaches ValidationInterceptor to the method's AOP chain via @intercepted_by.
  • When the method is called:
  • The interceptor captures the call arguments.
  • It inspects the method signature for arguments with the BaseModel type hint.
  • It validates each argument using TypeAdapter.validate_python(value).
  • If validation fails, it wraps the error in ValidationFailedError and stops execution.
  • If successful, call_next is executed, and the original method runs.

No manual checks inside the service method. Logic stays clean.


Architecture Overview

                 ┌─────────────────────────────┐
                 │         Your App            │
                 │ (Service Layer)             │
                 └──────────────┬──────────────┘
                                │
                        @validate called
                                │
                 ┌──────────────▼───────────────┐
                 │          Pico-IoC            │
                 └──────────────┬───────────────┘
                                │
                    ValidationInterceptor (AOP)
                                │
                 ┌──────────────▼───────────────┐
                 │         pico-pydantic        │
                 │  Inspect & validate_python()  │
                 └──────────────┬───────────────┘
                                │
                             Pydantic 2.0+

AI Coding Skills

Install Claude Code or OpenAI Codex skills for AI-assisted development with pico-pydantic:

curl -sL https://raw.githubusercontent.com/dperezcabrera/pico-skills/main/install.sh | bash -s -- pydantic
Command Description
/add-validation Add Pydantic validation to component methods
/add-component Add components, factories, interceptors, settings
/add-tests Generate tests for pico components

All skills: curl -sL https://raw.githubusercontent.com/dperezcabrera/pico-skills/main/install.sh | bash

See pico-skills for details.


License

MIT

Download files

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

Source Distribution

pico_pydantic-0.2.3.tar.gz (40.8 kB view details)

Uploaded Source

Built Distribution

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

pico_pydantic-0.2.3-py3-none-any.whl (12.8 kB view details)

Uploaded Python 3

File details

Details for the file pico_pydantic-0.2.3.tar.gz.

File metadata

  • Download URL: pico_pydantic-0.2.3.tar.gz
  • Upload date:
  • Size: 40.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pico_pydantic-0.2.3.tar.gz
Algorithm Hash digest
SHA256 cc6d5b1a76f19b1494e3b8b4c898f336eecb7dcea985b7b778f443ca502ead09
MD5 5db4516d14f32f125fc17de4af1ab95f
BLAKE2b-256 33d32b3af7364a6e3db59a710110c684fbc50d182ee704e82dafeb3b0fc670cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for pico_pydantic-0.2.3.tar.gz:

Publisher: publish-to-pypi.yml on dperezcabrera/pico-pydantic

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

File details

Details for the file pico_pydantic-0.2.3-py3-none-any.whl.

File metadata

  • Download URL: pico_pydantic-0.2.3-py3-none-any.whl
  • Upload date:
  • Size: 12.8 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for pico_pydantic-0.2.3-py3-none-any.whl
Algorithm Hash digest
SHA256 29a90e6b1dcd58db1a13fdc108ceb6faf9f054f5ae80c15a9dc023f689a30720
MD5 984444965ee5e935a8748e842211d3a4
BLAKE2b-256 8b07138e44760563d002272a095a405f82c47e2f030ab7496ffd3d46cf62bae4

See more details on using hashes here.

Provenance

The following attestation bundles were made for pico_pydantic-0.2.3-py3-none-any.whl:

Publisher: publish-to-pypi.yml on dperezcabrera/pico-pydantic

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

Release history Release notifications | RSS feed

This release

0.2.3 This release

2 files

0.2.2

2 files

0.2.1

2 files

0.2.0

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page