1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
|
# Pydantic Extra Types
[](https://github.com/pydantic/pydantic-extra-types/actions/workflows/ci.yml)
[](https://codecov.io/gh/pydantic/pydantic-extra-types)
[](https://pypi.python.org/pypi/pydantic-extra-types)
[](https://github.com/pydantic/pydantic-extra-types/blob/main/LICENSE)
A place for pydantic types that probably shouldn't exist in the main pydantic lib.
See [pydantic/pydantic#5012](https://github.com/pydantic/pydantic/issues/5012) for more info.
## Installation
Install this library with the desired extras dependencies as listed in [project.optional-dependencies](./pyproject.toml).
For example, if pendulum support was desired:
```shell
# via uv
$ uv add "pydantic-extra-types[pendulum]"
# via pip
$ pip install -U "pydantic-extra-types[pendulum]"
```
|