Skip to main content

Automatically generate two versions of your pydantic models: one with Extra.forbid and one with Extra.ignore

Project description

Pydantic Duality

Automatically and lazily generate three versions of your pydantic models: one with Extra.forbid, one with Extra.ignore, and one with all fields optional


Test Coverage PyPI Supported Python versions

Installation

pip install pydantic-duality

Quickstart

Given the following models:

from pydantic_duality import DualBaseModel


class User(DualBaseModel):
    id: UUID
    name: str

class Auth(DualBaseModel):
    some_field: str
    user: User

Using pydantic-duality is roughly equivalent to making all of the following models by hand:

from pydantic import BaseModel

# Equivalent to User and User.__request__
class UserRequest(BaseModel, extra=Extra.forbid):
    id: UUID
    name: str

# Rougly equivalent to Auth and Auth.__request__
class AuthRequest(BaseModel, extra=Extra.forbid):
    some_field: str
    user: UserRequest


# Rougly equivalent to User.__response__
class UserResponse(BaseModel, extra=Extra.ignore):
    id: UUID
    name: str

# Rougly equivalent to Auth.__response__
class AuthResponse(BaseModel, extra=Extra.ignore):
    some_field: str
    user: UserResponse


# Rougly equivalent to User.__patch_request__
class UserPatchRequest(BaseModel, extra=Extra.forbid):
    id: UUID | None
    name: str | None

# Rougly equivalent to Auth.__patch_request__
class AuthPatchRequest(BaseModel, extra=Extra.forbid):
    some_field: str | None
    user: UserPatchRequest | None

So it takes you up to 3 times less code to write the same thing. Note also that pydantic-duality does everything lazily so you will not notice any significant performance or memory usage difference when using it instead of writing everything by hand. Think of it as using all the customized models as cached properties.

Inheritance, inner models, custom configs, custom names, config kwargs, isinstance and subclass checks work intuitively and in the same manner as they would work if you were not using pydantic-duality.

Help

See documentation for more details

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_duality-1.2.2.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

pydantic_duality-1.2.2-py3-none-any.whl (5.7 kB view details)

Uploaded Python 3

File details

Details for the file pydantic_duality-1.2.2.tar.gz.

File metadata

  • Download URL: pydantic_duality-1.2.2.tar.gz
  • Upload date:
  • Size: 5.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.12.6 Darwin/24.0.0

File hashes

Hashes for pydantic_duality-1.2.2.tar.gz
Algorithm Hash digest
SHA256 42fcdbb4de7025d899468bf3d0c1c883ceac6d78e999652f912510bf99b4a8f7
MD5 1d710a73394f22d5a7ce6bd4dcf2d6dc
BLAKE2b-256 9eebc8eb7fe6a771c0cc325b92b1874fab628632751e75919096df44dea513a2

See more details on using hashes here.

File details

Details for the file pydantic_duality-1.2.2-py3-none-any.whl.

File metadata

File hashes

Hashes for pydantic_duality-1.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 e4fd4f75818387cee45fecaec0ae283704513415d77936e16912ed8cc1f44f1b
MD5 d5a1bde461aa2b104f75f0c26e76cde4
BLAKE2b-256 b684d6481bd2e8364045c8c38da577c4402b0ff827096d0da387d3935e40c0b5

See more details on using hashes here.

Supported by

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