Pydantic Validation for Pint Quantities.
Project description
Pydantic Pint
Pydantic is a Python library for data validation and data serialization. Pint is a Python library for defining, operating, and manipulating physical quantities. By default, they do not play well with each other.
Many projects that have a need for data validation may also need to work with physical quantities. Pydantic Pint aims to bridge that gap by providing Pydantic validation for Pint quantities.
from pydantic import BaseModel
from pydantic_pint import PydanticPintQuantity
from pint import Quantity
from typing import Annotated
class Box(BaseModel):
length: Annotated[Quantity, PydanticPintQuantity("m")]
width: Annotated[Quantity, PydanticPintQuantity("m")]
box = Box(
length="4m",
width="2m",
)
Getting Started
Installation
Pydantic Pint is available as pydantic-pint on PyPI.
Pydantic Pint requires both Pydantic and Pint to be installed.
It also requires typing.Annotated (for older version of python use typing-extensions).
pip install pydantic-pint
Usage
Pydantic Pint provides PydanticPintQuantity which enabled Pydantic validation for Pint quantities.
For a field of a Pydantic model to have quantity validation, it must be annotated with a PydanticPintQuantity for a given unit.
from pydantic import BaseModel
from pydantic_pint import PydanticPintQuantity
from pint import Quantity
from typing import Annotated
class Coordinates(BaseModel):
latitude: Annotated[Quantity, PydanticPintQuantity("deg")]
longitude: Annotated[Quantity, PydanticPintQuantity("deg")]
altitude: Annotated[Quantity, PydanticPintQuantity("km")]
Users of the model can input anything to the field with a specified unit that is convertible to the units declared in the annotation.
For instance, the units for Coordinates.altitude are kilometers, however users can specify meters instead.
PydanticPintQuantity will handle the conversion from meters to kilometers.
coord = Coordinates(
latitude="39.905705 deg",
longitude="-75.166519 deg",
altitude="12 meters",
)
print(coord)
#> latitude=<Quantity(39.905705, 'degree')> longitude=<Quantity(-75.166519, 'degree')> altitude=<Quantity(0.012, 'kilometer')>
print(f"{coord!r}")
#> Coordinates(latitude=<Quantity(39.905705, 'degree')>, longitude=<Quantity(-75.166519, 'degree')>, altitude=<Quantity(0.012, 'kilometer')>)
print(coord.model_dump())
#> {'latitude': <Quantity(39.905705, 'degree')>, 'longitude': <Quantity(-75.166519, 'degree')>, 'altitude': <Quantity(0.012, 'kilometer')>}
print(coord.model_dump(mode="json"))
#> {'latitude': '39.905705 degree', 'longitude': '-75.166519 degree', 'altitude': '0.012 kilometer'}
print(f"{coord.model_dump_json()!r}")
#> '{"latitude":"39.905705 degree","longitude":"-75.166519 degree","altitude":"0.012 kilometer"}'
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pydantic_pint-0.3.tar.gz.
File metadata
- Download URL: pydantic_pint-0.3.tar.gz
- Upload date:
- Size: 28.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9ec5240768aaccbd52179629911fb06c52384ae9aebe5a24b3a84e3516d6aedc
|
|
| MD5 |
c3fc1c81547b05111be07819e5111489
|
|
| BLAKE2b-256 |
c844506e1f10163bc01356fd6a936eb2df6c197aed08b8f12862a82648bb3ebe
|
File details
Details for the file pydantic_pint-0.3-py3-none-any.whl.
File metadata
- Download URL: pydantic_pint-0.3-py3-none-any.whl
- Upload date:
- Size: 9.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.11
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9d44ed7d2a952f6dbfe5c3d893fd75318cb2d9ff4591b6bbb3f83a701877640c
|
|
| MD5 |
bfbccfacbe9e574fd045ecedfab34e03
|
|
| BLAKE2b-256 |
003709d37281d16f90f655fe4cdb99d92ced62ba6381368a1249b5cf9830623a
|