Skip to main content

No project description provided

Project description

pydantic-core

CI Coverage pypi versions license

This package provides the core functionality for pydantic validation and serialization.

Pydantic-core is currently around 17x faster than pydantic V1. See tests/benchmarks/ for details.

Example of direct usage

NOTE: You should not need to use pydantic-core directly; instead, use pydantic, which in turn uses pydantic-core.

from pydantic_core import SchemaValidator, ValidationError


v = SchemaValidator(
    {
        'type': 'typed-dict',
        'fields': {
            'name': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'str',
                },
            },
            'age': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'int',
                    'ge': 18,
                },
            },
            'is_developer': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'default',
                    'schema': {'type': 'bool'},
                    'default': True,
                },
            },
        },
    }
)

r1 = v.validate_python({'name': 'Samuel', 'age': 35})
assert r1 == {'name': 'Samuel', 'age': 35, 'is_developer': True}

# pydantic-core can also validate JSON directly
r2 = v.validate_json('{"name": "Samuel", "age": 35}')
assert r1 == r2

try:
    v.validate_python({'name': 'Samuel', 'age': 11})
except ValidationError as e:
    print(e)
    """
    1 validation error for model
    age
      Input should be greater than or equal to 18
      [type=greater_than_equal, context={ge: 18}, input_value=11, input_type=int]
    """

Getting Started

You'll need rust stable installed, or rust nightly if you want to generate accurate coverage.

With rust and python 3.7+ installed, compiling pydantic-core should be possible with roughly the following:

# clone this repo or your fork
git clone git@github.com:pydantic/pydantic-core.git
cd pydantic-core
# create a new virtual env
python3 -m venv env
source env/bin/activate
# install dependencies and install pydantic-core
make install

That should be it, the example shown above should now run.

You might find it useful to look at python/pydantic_core/_pydantic_core.pyi and python/pydantic_core/core_schema.py for more information on the python API, beyond that, tests/ provide a large number of examples of usage.

If you want to contribute to pydantic-core, you'll want to use some other make commands:

  • make build-dev to build the package during development
  • make build-prod to perform an optimised build for benchmarking
  • make test to run the tests
  • make testcov to run the tests and generate a coverage report
  • make lint to run the linter
  • make format to format python and rust code
  • make to run format build-dev lint test

Project details


Release history Release notifications | RSS feed

Download files

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

Source Distribution

pydantic_core-2.2.0.tar.gz (306.4 kB view details)

Uploaded Source

Built Distributions

pydantic_core-2.2.0-pp310-pypy310_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.2.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

pydantic_core-2.2.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pydantic_core-2.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.2.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.2.0-pp39-pypy39_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.2.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

pydantic_core-2.2.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pydantic_core-2.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pydantic_core-2.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.2.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.2.0-pp38-pypy38_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.2.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

pydantic_core-2.2.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pydantic_core-2.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pydantic_core-2.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.2.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.2.0-pp37-pypy37_pp73-win_amd64.whl (1.6 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.2.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

pydantic_core-2.2.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pydantic_core-2.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pydantic_core-2.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.2.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.2.0-cp312-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12 Windows x86-64

pydantic_core-2.2.0-cp312-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.12 Windows x86

pydantic_core-2.2.0-cp312-cp312-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pydantic_core-2.2.0-cp312-cp312-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pydantic_core-2.2.0-cp312-cp312-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.24+ s390x

pydantic_core-2.2.0-cp312-cp312-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.24+ ppc64le

pydantic_core-2.2.0-cp312-cp312-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pydantic_core-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pydantic_core-2.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

pydantic_core-2.2.0-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pydantic_core-2.2.0-cp312-cp312-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

pydantic_core-2.2.0-cp311-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11 Windows x86-64

pydantic_core-2.2.0-cp311-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.11 Windows x86

pydantic_core-2.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pydantic_core-2.2.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pydantic_core-2.2.0-cp311-cp311-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ s390x

pydantic_core-2.2.0-cp311-cp311-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ ppc64le

pydantic_core-2.2.0-cp311-cp311-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pydantic_core-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pydantic_core-2.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

pydantic_core-2.2.0-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pydantic_core-2.2.0-cp311-cp311-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

pydantic_core-2.2.0-cp310-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10 Windows x86-64

pydantic_core-2.2.0-cp310-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.10 Windows x86

pydantic_core-2.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pydantic_core-2.2.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pydantic_core-2.2.0-cp310-cp310-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ s390x

pydantic_core-2.2.0-cp310-cp310-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ ppc64le

pydantic_core-2.2.0-cp310-cp310-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pydantic_core-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pydantic_core-2.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

pydantic_core-2.2.0-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pydantic_core-2.2.0-cp310-cp310-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

pydantic_core-2.2.0-cp39-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9 Windows x86-64

pydantic_core-2.2.0-cp39-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.9 Windows x86

pydantic_core-2.2.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pydantic_core-2.2.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pydantic_core-2.2.0-cp39-cp39-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ s390x

pydantic_core-2.2.0-cp39-cp39-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ ppc64le

pydantic_core-2.2.0-cp39-cp39-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pydantic_core-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pydantic_core-2.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pydantic_core-2.2.0-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pydantic_core-2.2.0-cp39-cp39-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

pydantic_core-2.2.0-cp38-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8 Windows x86-64

pydantic_core-2.2.0-cp38-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.8 Windows x86

pydantic_core-2.2.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pydantic_core-2.2.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pydantic_core-2.2.0-cp38-cp38-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ s390x

pydantic_core-2.2.0-cp38-cp38-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ ppc64le

pydantic_core-2.2.0-cp38-cp38-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pydantic_core-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pydantic_core-2.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pydantic_core-2.2.0-cp38-cp38-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pydantic_core-2.2.0-cp38-cp38-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

pydantic_core-2.2.0-cp37-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7 Windows x86-64

pydantic_core-2.2.0-cp37-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.7 Windows x86

pydantic_core-2.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

pydantic_core-2.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

pydantic_core-2.2.0-cp37-cp37m-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.24+ s390x

pydantic_core-2.2.0-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.24+ ppc64le

pydantic_core-2.2.0-cp37-cp37m-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

pydantic_core-2.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pydantic_core-2.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pydantic_core-2.2.0-cp37-cp37m-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.7m macOS 11.0+ ARM64

pydantic_core-2.2.0-cp37-cp37m-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7m macOS 10.7+ x86-64

File details

Details for the file pydantic_core-2.2.0.tar.gz.

File metadata

  • Download URL: pydantic_core-2.2.0.tar.gz
  • Upload date:
  • Size: 306.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.2.0.tar.gz
Algorithm Hash digest
SHA256 433e3cbaaa1420cb10ca212e09a398d62d5237865cfdbf9e2b5963537a589188
MD5 806f326613377e76035685c37d7072b4
BLAKE2b-256 f2975cd58849a79277dceef161310b04fe266c3577ed01fda722ca0419ba6f9c

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 410732746bd893029881a84f3399aefaa5a552a9157ead391baa819d1d1ce4cb
MD5 45c36da07d9b9e50b9ca53576085ad83
BLAKE2b-256 51d57158214acc3596d04525cf66c610dea0e58ccb4c557e2fa57a4d9dba25e7

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 63f6dc7e5697d9be08094fffbd3f355a3180707a8584d9143b83aee616110395
MD5 630bfa12b29aea0efd2bdeabf44bf88e
BLAKE2b-256 2fb0d07493b1360ffc34a40d61ea640646b2eee4d58c7bab2d23ac1fd7edeb7e

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c964a339f9520a2e6e28eff0697e03739189437ea841d6f19d7587b2c2d51d7b
MD5 9f62f2988bbff4f2db6a9d641cacc645
BLAKE2b-256 59031219e3340ba11ca9782723d882cf685bb75a787ec16a29420f5245a392d8

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d9b9a2a894f8da57386ef3e5455bdd9a81b89d63ced8cb4af2a03d8958cf8817
MD5 f51e836936aaf91086c1340247e7843c
BLAKE2b-256 59cd65ee8c5e8c4fa7e86c05e402a007541cd96d4325620afab68827929c0c90

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8ca0cbf9189641ddf7879de4fddbd50797bcb35f943c964965ae7eafd448949
MD5 6e6eb1e88947baa2030eb0688430afaf
BLAKE2b-256 f00ab18019863180caa32b562afc04b6a2f0a49796a1809012151e0abf4ca87c

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a85dc70d31eeee3d5fc65ff303350c9aa05a6c83dcf46b4587f1ae5346413418
MD5 ec1cc11b3b5b9aab49c668845ec69be8
BLAKE2b-256 eca040bbc81f6cd6713973f7415f924a306e58f89d77f1554a29db9fd122e7a8

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b43c0fea0a3e0d2b021ba3ba7454cb0898d09940d99da6cae9c97677cfa106d0
MD5 9a6b99c9249d907ad595ced78b6a9b44
BLAKE2b-256 65f8203d1ec3335a79d345f0a85cf7760d528fa12b6f1c81b721e2998e69aa15

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e6c4bd5fc3c0ac0c22328eb9094fbd6645ff7d51a472e8a50c4c951c6e0c8449
MD5 0d95f00bad6591d85ad6ee5d81543a4d
BLAKE2b-256 9896015127b825e7d4e843878eeba17bd634e33ac59461eea9c6b3b4929431ae

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9e441d3d939be0ff369a3c4e41a510a63b4489aa0c5e5ca0f3f914340a149a28
MD5 93e64aec952c31b15b81da44a80bbbda
BLAKE2b-256 2ca16f9892c426c662aa4846f02393eb5b64b60d6b357e59eccf5bcb1eb84f71

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0a445ff6045e41e1461ed6f86b1fe90ed645eb40cb94c5c9d445af093e8031a3
MD5 d909658b9e702aed9b50828f360f21d7
BLAKE2b-256 47c81bbd4ea1220da76635a5ee71b7cd2a025a31cdc64107a85dc8fc8252acd6

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfe4496b90e11da9024955ff9b928fed191972400c880fe731db6ffdd81d3af8
MD5 cac1f5891d42b583b4caa8a275ee505a
BLAKE2b-256 dc8abf31c2c462d1f3dd4d94d3d5dc4adef6b8ee56ddea5b7f9083b729bdb661

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aad46923f66a32d15f1df3c225601861bbb62187b5860bfd7d587f1de684c380
MD5 e280a72559e7262cdd17467c97e75a7e
BLAKE2b-256 30df5de25b114995fd0990411b192a21a4f5b39a92abf92adededbe5c8bacc44

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5544c9b8710227364ed4921701bfab3f470b3f5f7d720ed3896f4f0b4f22986c
MD5 12b47701e9fdedb08ea8b560b09aa5aa
BLAKE2b-256 d5f86ea5e197ac5a3ff6e70f4db0d3067ce03c2fdfb9db81798e12ad49c192a3

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1b51c45253f19ce0e9a0a8a8b01a0fce848228407a633581eaf5c1f60a9badf8
MD5 76e1f04329acabfb744f8a8bc9291432
BLAKE2b-256 d093df7c7fcb2391563ccc7f12a92cb811f6bb97549e812e3f569b4ed431f5db

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fe8ca37746de446cc7b25534f1cad0a2eacc7999976f7aba9c48bc7b21ebf39f
MD5 9860b322fa4b0893d6428db532fc4216
BLAKE2b-256 1c501c054ab002cf8e08009940007a24ac2ae04d38e7ebd97aa656d116147b25

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2610dd6899ece7d7900a8293f833917e05faf2325fc3dad97d0f20518300ff56
MD5 9d02117d7aabeb48c2c7ba2f6a908c05
BLAKE2b-256 37cb62ce47bd0a241ab5c43164fd95c068e039875203ab69a84bec0140b04846

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 be75edabf1995bc5dac677f5890367f2c0cbcb6338dba8245f916cfba273c7f3
MD5 4748ae99f7183d0faf6bd9605e40eda0
BLAKE2b-256 6c37198b819a887d95b761c38aba1e231ec4f288b25bc33968fc28ef33c042ff

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16379566c9e42fff2874e26ed5d70dba91539dd9c446ba7fdbc9aafa5cdf749d
MD5 de18cd7580cf8bdf5fd10012afa0334d
BLAKE2b-256 22b4a337c6b3bbc0e32d1310e29e771bb1203590e63dd586be9fd489c2a23ffe

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6cb7e8aa489e2770686aab2f08f770ed8ee39e2734cfd84d7361fa7059a660e
MD5 0145b794b37a96988efe4841c923492e
BLAKE2b-256 0ed1824f546c8708e84f6ab897ca57540ceada0261af85a02efc6c40191490f1

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e92d657bbed06ae3aac03a299fef4602c4aa5ef36d5171fc60c5e10539491e09
MD5 99e8d3ebbb90576406e6425030614af7
BLAKE2b-256 3c36e89711b675df82cb0cf27c718034342b6895d0d76189b2f3ecd5e492199c

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e4bd4a2c95d8c068c9c4f3bad2bc462933e9d554d94fa2e9c98e5438b9ad2c70
MD5 a5c94c41a6ad4c41ab19a5f493ef35ef
BLAKE2b-256 a7be11b5035acc3a53603ac26dc502e9179255fa504a64d67cadf6857f7ce53b

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fcf3ee48c272b7f9b5f285fbbe7aa1af74fe1b3dd8f770cefe7fe7da4fff6631
MD5 313e56551484c9b13dac08f89bc817da
BLAKE2b-256 2c17090e9f0722fbfe4837056124e38ba79b27ba3daec41ebc949e78301a00ac

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4b75c83ccd7e2a1937df3166edf3a614830aaa4d2969fcb029f3d867db57658c
MD5 77991f38fdcced0eeb8ab74ceeaf804f
BLAKE2b-256 3ebfb09a3ecfe6c8dbe5ad47a980f5bc0b4d7dd4ce7d9192d646c62c0bb0473f

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fefb3dc25b8e816cc0cbbe73004a2a080f4a550442fbd43daab0c5290c93186e
MD5 9d0b75fa3387bce833f86050bdf1aadd
BLAKE2b-256 d1efcbc05fe20e4b322cfcff9177dc807032c1ac5a9aa4c1599b3c6898faaf98

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 16d1c2093ef66b4f003ad08947e6b20ff7d07e2d0db48d2dd774469ba8580b46
MD5 ee4175993f781ffa809b0f67230c7069
BLAKE2b-256 f7ba41989d8c35870ae6a3304784a4fdf56549ec51505dc6c655f35005924f73

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b910405bdcfe70db7a14b5abd4f51b07602273efa058e9f97e07da45f026822e
MD5 94f845f5aa4d43a786e3ce48e5127b3a
BLAKE2b-256 10a8224a8902de12fa7aa492fba6b3529b83c92958560fe880851825d7dda077

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9b4ea60da290444eba82e6b8d7b14548d1783c65fc2b9ef0e20a054c5e71dfc4
MD5 90ef3cfccebac02b6ae06bcd9729b58d
BLAKE2b-256 61501704012974a517ea6bcb62efb4e8471cd386c730c8e9c6f4f26a2ffb7e6a

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e007ec29144a493023c8acab5f0b1f8a5974a8584192297049849a3428ff07db
MD5 34fdcc2f17b33ba22b036ba5815f7d59
BLAKE2b-256 f8bd54a3b34082a559d7c8b31169a97bdd23627f36f148ed9fd7239f9a782f0e

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 77d6df06744c46305c7e2ed63b040177aedcc004699e5eda1a5e5252885d9f78
MD5 00a03fa868991b23f728fc1a714859e8
BLAKE2b-256 df3d3e209e0110f61fc26dec5b58c1b820b63784d0b4d561eae6afa67cfff361

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp312-none-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 6072d8cc5c68900dab95e13d38d10cd417e7bb421d201decb26eb99185fb421a
MD5 c8697fb40690197d0ddf0b1c99b21515
BLAKE2b-256 2361e13199e688ee7daad43ea2c718d504d1e6eecdd6a4bfbccee82c1d8b267b

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 261c7261e450c1757f6be6d638b02423a991a4912beb51895d0d013446758c0a
MD5 04001665f6cb2f9d1fbf3216f039e9d0
BLAKE2b-256 c7d6bf74ef6111e8c7ffa21e1452c4106d77fceb5f756ae975e90ed08c82a9f9

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b989b24c78e371f120a84575772b9823a1f2ffa39518fd321ee6f0f74595c00d
MD5 6c1894e00c8d9a7a48e68beb59e4668a
BLAKE2b-256 ef30612d90c598533386a1290da4c24f655d24805e51088c093da65c596dfec2

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp312-cp312-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp312-cp312-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 771f01b1cac807b1c8a555f995b87b30ca430bd7f30b467e7750a07229265069
MD5 8038249c2afb48465f1b7686393f63ad
BLAKE2b-256 54813f9781f0335b06d85a91090e9ae5bdfa73e7055cb69a56f8ae66b4f16664

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp312-cp312-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp312-cp312-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 6fa3f1252d96e6127b8d8483ae16f4e6b9648ca4b7c68bd1db271ccb8aa6863e
MD5 c878e736bd7b678ed391839df8829f4f
BLAKE2b-256 3fa7fd446b895c3bca1a5d86a5463ac30c9d7622225dec9f7e220bc2c9818c82

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp312-cp312-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp312-cp312-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 a6982c69e8611bc425a85188f04991c9eb9b69862283e1fae9ca6d25a042ad83
MD5 bc74c5047d7e648b5e9a220982803139
BLAKE2b-256 3bd5e49748fda2e4d45bac0269b4ccce377eb121d4022dd57f3cbbad9d879dfc

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7e5f71cbb542ee71c82cd73ce5ad346b2e35d38f37629f7dbf80f9e64a088bb
MD5 a0f2d060f35502eb37fb35e6af84f4c7
BLAKE2b-256 fddba556ce535099fb152bbebbe052deffd1ca62792bbd668e2da07836df4986

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d074df347c34e1949f9b14f17c7ebc67d58a50c4b602e4bdce1db16ec9c9258c
MD5 fd012aade8a4004d2a703cd33d82eebe
BLAKE2b-256 d668a7222eb6621487f4e5edc541fc9d9d5ebeb6089ab5c4e1e360f18e6a52f3

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 20df31558ebb9b44a07240efa7d9616cc3d28850a643c9444f2c4c0ebf78d8d1
MD5 0a41023f7480608c2771b7c69ac2077b
BLAKE2b-256 d5e36e35b0bc7b44201ef922d3f84b81320f7527c49252684c7dde1a42ef61e4

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9d277d2a226dea3758cc2caa449649adc26c83cdb8fbcee9b3c87484cbc1c27
MD5 2446e5da8016320a6e6e17d4f0cc998f
BLAKE2b-256 db3f5feaab44725360a3ea1dffa0d7a73aa85e4748aee75e48e5ec87c53e9560

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8c791e152d4d7d538238703b2da1c55c59a0e37f4bc11ae1939f8a459c698bcf
MD5 6ccd27a4b728933c613a43adf56dd3d4
BLAKE2b-256 bbcde139db79ad6d349363e97a6d5de5ad20bc40dbf26771a5ab9a961af7acaa

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4a5a8c6973e1a96044971f26494fdca5d3c216a26e9f9bef5f76f19111b3d630
MD5 b46d7ce4a186bd605445b8f88a7e3534
BLAKE2b-256 f38cd0892e5a2010215e8ae45e59f44d0a5fbce761fe152084e3e0a202a78b30

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp311-none-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 8a594e7f00d8120a0e1a185814a7807fc00f4e2af94212992e8c97a70babead9
MD5 2e72a03a4d56df5aa38f7943f6c49921
BLAKE2b-256 93a377d42ecb0a28ef709e8e1e08a61516d237de8865a24ffe75a4edbc918a24

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9e3f1037b6eec54a5ecf54bbdcbec4572f6b86a909a40c3eb4686805e8495883
MD5 381534aff1a15d9854bd4658b5ae32bd
BLAKE2b-256 02593e0eaf0217d70bc4f7a863eddbd65e0d39a4889450f85900c1d686205d1b

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 07f6df465718b7eebcccf6dc1b0ac23390c59ba661a9199cbf395efbdb9ce09b
MD5 6b546947157662056d2c0b125967753c
BLAKE2b-256 7a08d39f8f5d35ef6a91a60fa3780da60066fc354363c5d3cbea0a9e77655381

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp311-cp311-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 fab22397ee30375cb24323f72373cadf79044f135629873a7eaa25bbb213879f
MD5 691dbf0cdd52478f8f941f46854a5f29
BLAKE2b-256 47cba4b238e132abe7bc949d82f508853facf5df6a0a12532895e1deecaf385d

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp311-cp311-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 535dc9a17b3f8efec5bcf019d67a4d25295350475c2dec30afe713460b904274
MD5 ece09bfd0611252e21890310d3e046f6
BLAKE2b-256 d1a56a283bab8c5bf593e433028e96bcb12f048b6082d0c4fafaf9a9ddb8d5c3

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp311-cp311-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 9e14a1562bb467521e62a8aa2da1e34308fc6ff8d9f4c6a4057d8d581007ace8
MD5 c6f450d7eba7646447fe609701fa9a3a
BLAKE2b-256 a980cce996d3f22ca57246e3304fb58e2eb8b416758568192308acbf8d917d29

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 456bce585349b4aee80264cf6498ebe7d1fbc57b8de88a058cecb7713ac0e48f
MD5 c6713334e8de6c7932a8f3a1182048a2
BLAKE2b-256 ad41c0f0760291bc6f7230f5d9046e310621423e02adcaf203785243a8cc470f

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff3004c913e78f5793d06428558630f213d3d4d117e3ca576106a27dad660549
MD5 ea4e501115b99ba61373db64052cef54
BLAKE2b-256 57b461aa6d07c89517b0708cc707208bfacc428ffee9077f91b1f75907bcef70

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2bb1bfbe2d5f21f4c7858e9c0be793cef5c5a9f8f00692cb430e43d973afbc30
MD5 745b724356a4e3ba8dfe3f6ac059a466
BLAKE2b-256 491295c0edcdf47740c80a735e02daa5704c2dd63972e8933d72c258fd9d8063

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64a143ec1323d58f72f9a118cc3b5f019b24fb86c95c7178025a26dc217fef7d
MD5 e9cbae7c6aea451337b09c2e64edd7af
BLAKE2b-256 2d579ffb5a1f7eabe024cf8d8a2549ed99502ebfeadbea3449cf6e4801d651cc

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 22c0636d4028305895b6b5743988f6f9193d3e14eb32645ebca242e6f34100c6
MD5 0d0af2efe9f2fbb696292c4dda765a4a
BLAKE2b-256 d736f0f3c7b6821f9a0f69ba9b0b4c75168cbfb3e40520bd0833de2d05ca4469

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e687cb0a31f17624867ffb1ba21746619922228da6d2822b888eafac3916251d
MD5 99b3a32fd2a0514d7bd2d779bb2f9ce7
BLAKE2b-256 dcd42fda872a750a969036b6c4b02e5c02f3873c6341d05c167712499b82578c

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp310-none-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e262efa38f8a0ba1cefefb26ac6ffd75584366f0292cc3cb19ba66523d75bec2
MD5 f17df2b9d2c2a90e635d1f393f23fd9b
BLAKE2b-256 eb76e8ffd63f5f3561e9c09d83a24bccca1993db8c0368bcbcf2076fda5be41e

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a6d93648e90024442c058e321192292bebf4af7c5664f40ae1139b6ee3806be0
MD5 476eb1a5eac9a196812706a3d46780b8
BLAKE2b-256 3126d6bbf9666633b42f8a8436bc782c259d34c93f8ecc78ee8e607f5b87b5ea

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 db90122a64cffc203dc5a09774d765908ff4b79c8b52c4186cbab1c641247615
MD5 f4c1c485d6be7f637d4a375108c8bb7e
BLAKE2b-256 55738fec52ceff182cfbcc7b91e2b3d5418ae0965522dc0bc0bea80eb2aa7ff0

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp310-cp310-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 dd62d9d5ab3c247a8bda224c9fde22da9e2177854da906de7c0aae84acc0fae5
MD5 fad5aa3ab9a779f8eb0a771588ac42b8
BLAKE2b-256 3ebd1e597028e2beeb6b79830a8e8510a11fc8f6130a83dad92c9cc0e3c37478

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp310-cp310-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 16d2bf2ee8d3f660b224c802370670d83e0c62954d0b9dc8f0b308565b8121a8
MD5 3156d228c2e307dc7b6d92b7eae93c9c
BLAKE2b-256 246b0865c66aa56864f7bd893bb1de85ab2133e0dd4ee0ea67ab3302beaaa487

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp310-cp310-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 ad2c863a0fd8afddef75eeb6d0e3de2fb0ccaf7027fe0843e1e4cd0d8baee19e
MD5 5fb67e2366286c4ba5015b4220a643de
BLAKE2b-256 85d7963cd6c1989e0f1ffe6ad7850a25ff00e34b6de2eeca775dfae562f53e6c

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e333a1c6948a2863bdd910f6b29ff0ff87b7f7656b36c9603fa538af37664fb8
MD5 1f34611020edb7d843fef1b23cdb6255
BLAKE2b-256 f3d0d6621ff02aa12f46849fa52d4ed37390c00f3227d36e276dbbc9dda37a9c

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d78b1170fc170c2cd080bc55619b7fd06d12b2bae411fe55b577e7c9d9d1cf26
MD5 6f9e041eaa85d34656bd4d0714782e1a
BLAKE2b-256 6f9d019f5c6bb37777db455770942a9007f1814639aec1c70d473968e5b24f06

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 73ea7f8c6f7275ea3236e3b5b8c70b006b9c4bc1fdce4be99dfdeb247dfcf2d3
MD5 64a8b4fa5364b89f31fe03dc2d7320be
BLAKE2b-256 a72788bc2f3a4a0361ae952a43d2a8b4034e1b0adc67ca37c084fedf5b50d7df

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6b11d5e6276700c33577af891d52361e9ddaa5d708fd993f351e25a68a4f937
MD5 ec23715f82e94aa3083c7cb403f7132e
BLAKE2b-256 4340ddb44694b0175068ae6a8346451f824ae8cd7e1ef6445a890e70c5df5d47

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bf4c17374429a70cedaec4d0c7097bd656c196d0e861bcebb3faa596b63ef153
MD5 385119fda3e2f4d41f121545206d1464
BLAKE2b-256 e77bfb045d651ffe09bff8f6dcc33c97966ca2eba0caf2a5e1b2b992ec6b3234

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 562d37b275f23b43f4fa9ea9d00b7229024447b993f4ceb76d1c6ad6965336e8
MD5 0d897ca58111eb45acad6c1dcdc35cdb
BLAKE2b-256 fb040996a73b7ddce8dcde159a3ddf5bdadee074026001e20b926985e26e0667

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp39-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.2.0-cp39-none-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.2.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 4426c885603d57b99df750efd387f1d8d7fd5ba34c31cf7916f74807b9238d7f
MD5 7d5c6d9b8dc8efd6bae49cb1f27ae627
BLAKE2b-256 8c52cf5fbee5ad769cc334109c04541517dcff8f5d90edc268aba72ba83f4184

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3bb45f04bd3ae2b0fee1d9e34a1465fa64511d7760d2ec65c02f420e8bc83072
MD5 da2e020f58e2d9079ab1b9bc2117c8c2
BLAKE2b-256 2555680b179047bfe37d0a993c2c9de97868d0d88be9253512cc55736a3e9854

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 78b8d8cb6bd25d7af3419baf69eedd51b46cf15247e5c1ed2278b6615d5e71cf
MD5 e1803e166d974400372440a824e5fda4
BLAKE2b-256 c7d76140fa9aa39b5e20307fab7bdcce4b3fef81a76d5e6a84664476cc07d6b1

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp39-cp39-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 a2c6990f70aea9854670e18b0385d8f9b1b81ea8dc8492e1054a74e73af97d31
MD5 6a01d053098698f043de0ef285a9f078
BLAKE2b-256 bef17f6c2786382707d69a565250933c9eedbd404c5404997c869f6f249b3e9b

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp39-cp39-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 91f6be1372de48e27960b5bcded233c9df0ee146d824bd072f60ad13cc1bfaa7
MD5 1b915d767646c05ffc6d625663215cea
BLAKE2b-256 6a05dee44c43dd7285dfcce6359cf214b17559aee8d8bca4a94e58af2344974f

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp39-cp39-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 5e6bca706ff6b6bb9207a255e5bf5664b72b16300228237440f8f95ca4d12aad
MD5 39d45332df26793d790dbd8ede89e7ca
BLAKE2b-256 a1bd4e776cf7598693e764727b9e3c89f3a85acfe1780c51f94fdb55ca399fde

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 398a6eebe444082dbd5990d206cdfa560085b0650b6cd383b72b85654aeb22ab
MD5 4d1350d5bcb2cf1997eff3ba959d258d
BLAKE2b-256 9f0320d80ed3d3bcb8d1fe2a8a804cc49f92c4038f70b8f10ec66d4b6244b4b8

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bd1394dc0e631bedd8457020bf1adba460c67a958a584991cf72046d5a956a17
MD5 7a5566dac13e5793e95e22a9a194e3e0
BLAKE2b-256 55dce3255bde24df90219d60b80493e7317b93a3ef1494804be1d145c5127563

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f697443c6e42996b2718d553dd4d49e088d5cf9308751b78201b5658bebceed8
MD5 7cf30406415a2bb384224b1a34278218
BLAKE2b-256 9d22a5a91783b828f5e50ec9f935d96ff3ddc4242771de780f99b990ef7203d7

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f097a830b3e924950360ec966b6eb6aff84c31fe82f59128644de4078f331a1
MD5 7fed196ae43fa3c93999efa889799c49
BLAKE2b-256 287847aec95d33680204b0a7fbf296afa014b9f3f629129f40f34d491e317482

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 18583601758b44a3815406801bcc41e279926e87bf7225e640a1d461d7208bd8
MD5 1dd1883abf4a5496367dc355e86233f8
BLAKE2b-256 f4c7a4fc049bb48448b3216a46039c7a677d535bbffa37e3d691ae5bb6dd5c20

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 59504327eb8439cd050f87225f0516bcd920fec67f5d548ba16762642fa251b8
MD5 7cc6077e6538b539339bc2baf6109e8a
BLAKE2b-256 1c9024f4429aea91ea30bb42d84371d9c917dbc476b0679bd62e2cb193c8caa2

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp38-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.2.0-cp38-none-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.2.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 b738af7c6ce9dae1e904b3400bbe14497897bc81a3880ea66321a51a62d08ae7
MD5 32eb8e9766b8f9ca3642e895b6331b90
BLAKE2b-256 87009cbdc2689d796c6349a500346f4117c88fd4b658be5beeeb2faa3b9085f8

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 80babafc5c647b90dd969542b150e0869a4d2005d7e89825e12b153bdd23121b
MD5 020cb0eb43f1e489e92bd91a4a30ffa2
BLAKE2b-256 898311c38059f01a250dbfa147416246115a5256104921a1973695945c9b6674

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5b2061a76de6f9efbff74b370efc624c5d87e26da59a56cfd461c5d1a70a961f
MD5 bbb50e6b3c804ae35c4f88d59069a84c
BLAKE2b-256 c44c69d5cf231e91a0fb5e83c3effe60e787ae9a0001a44eb83622510d97fe23

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp38-cp38-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 eab1f207a518f2506f74d70a549c1ec2a3acbc2ab0f1415ebac554ed6232a39e
MD5 a849a8fe102dfb7d8eab47ff906d2329
BLAKE2b-256 bec61e342cea4d0515e020e6cf9b853925aeeeb448c49b531d8638f43919ecc6

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp38-cp38-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 e7301f121977965877883b5e22b277dd6ce550dd208a4a40d4f216d30c9d8592
MD5 bcb459b544646920e8faacf52eb08726
BLAKE2b-256 046fec1837b2507c2dc10644c7edc06488bb3c6e8461b6116f9828bdb2ccb1a0

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp38-cp38-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8b7b02e42e1589cf34b6a3ff50e3419549d2aeee8bd959842dd65f766757ac59
MD5 557c48724d1b2274db97280305790a68
BLAKE2b-256 640bc876975d2187813b8b984d648e57de3f5b539f07111ae81fd73c3d32c8be

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a25fe5842ec4ddb4fa451ea16f5e1a7dcd75239a071f3b4e1d5b8c0002c43bd6
MD5 33e5d18c5384d92e679804c2b3719677
BLAKE2b-256 cc9eb91d11c3f801adc62a2b4a8e0d7a2b5e3ae5ad99c1b9ec079dfe6e978e84

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 476d9e5d7710d7bf7b8852bfe34612222ddc76dd3d7dcceedd6ad71a34317b77
MD5 70e4bc6644d9e9f329c9ac426ad42c39
BLAKE2b-256 0e1dbd4bc4b704309e5aabf15fe8f311be7ada4c4f4f14c55374db860567a71b

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f9889ae36eddd23ef1b5f848bd70e2c828d75cd67e4b163e122ba573f3cd1f6
MD5 eda486d855e10ce0e4376cf63f707df6
BLAKE2b-256 8f5ba8520b98d0e995bfdf682419e3741a3e1a57361b9e97d8d612649ec35cb7

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcc9def40fc979c392cc435d314b06ef2463749ef2b5f7f3f5e02a7778cef3a6
MD5 1dee2c649eac7b809ddb50f512137ff6
BLAKE2b-256 fb4b272bf1a161796008abed16e3cac123b52a1b6b57b4769a2b71bb027139ae

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 72b7c067bc3bfc8381f2e2907062bd900d771d740d78abf5a880b4fe4733d133
MD5 3974b7d4cbb7edbff597f5ecd52b6245
BLAKE2b-256 d103c9619d905331beb263abd4597e280de361183048184a8ac73ae9a59d23a3

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 067f7e566886ac2b4899bf88135b1252f4f5cc9ec61c247571c514f353385edc
MD5 d1268662adeed8a5a13a782adc34e9c5
BLAKE2b-256 48159fa9d444ab1cd757990f8171b84927903971772e8ebb56bfe4db1443566b

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp37-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.2.0-cp37-none-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.2.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 11983e3daffed3851637aad3bbad0e535a452f2002ac9278b8c32cb7680ed0dc
MD5 c34674e52475775b4bd23192cb92cbba
BLAKE2b-256 fd7d591e673e033033682134b11db003fb352b68e1c19ffdfcc5b9d02d20c358

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9c77a4a28eb2fa26d0fb9200c62bbe9734cae9a8c43077db98ffbd3c17a85f79
MD5 9fbf481a6ae9b56f9798b58f326674c9
BLAKE2b-256 1ce31c1572b125de8a76a66f45a7205acf054a494611c56fa91223adab59a3da

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 293527fb52ba4ef74fdeb11682b92d7711251ce00f029321c30ad71fa64dec60
MD5 d6a73ac09781ca7b4eaa9a7b9b5ac358
BLAKE2b-256 180dec5833db41aed75a5e8f982d6dc9138033cdeede9d136ad0db1c2c3616bf

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp37-cp37m-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 1bff07b6a0731fdcb7b04fa0e2360435d3c3bc63eddd3834a9ef44b91919c93d
MD5 c50ceb8f45fb0ddb5140e5ce60e8f7ca
BLAKE2b-256 e27617103808b69e89ae020a54e155613a57066c56d94d8596c52a76457ced8e

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp37-cp37m-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 67a24179b16a4d2681cc4cc9d9377196eb2cc066ffbfe91703d23e5290ccd189
MD5 a0b2bbce29620465471ea874d6df0f29
BLAKE2b-256 647ec304379fe580b735d3dd5da614872bc30eddd567a1ebfdbc4e6f879e3772

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp37-cp37m-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 00f9504029328e300b5d9087246e7d1104105a9abd80417dbfde0a8534108b88
MD5 64b4378d7ab48c738da762ef30a3e908
BLAKE2b-256 726044c5752cc78678cd927ed993648f83abf591e4e0107a5ed9dc12d6a6c212

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d0847ec933b6eac526b1f53c649cc3c8fef6e1d624e669dd259c87dfb16a867
MD5 3f9d03d8099e259702cced224b808b2d
BLAKE2b-256 0ff125830ea126a09ed781679461d834750b72a6f3a88006d43001c224d52425

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c44adfb280d77947658cd0f627b593801e8ca37a561312b58e24f3fd9a58bd5e
MD5 6ac4d701aba86a403cfcccc4b9d77d8e
BLAKE2b-256 fd3d22c77827665e7abc8ac599600afbb341aac029c3d59286237fdde70b13cb

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dbe1b0492abcaafe810c86bb37f44ba96e015c28e0a2e7e43176a752c1893bbe
MD5 dd09b1a10c9437b890c37e60d6ddb4b8
BLAKE2b-256 59edf1feeaf075406a927ab9a93cfd6c33b2012f2f2d123683bd76ea6c4510a2

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp37-cp37m-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebe338e767ad2b95260c1b1db814a5701b044aba1e6854a1b5a7ec14a81e8d54
MD5 66194b1461b796390bdf173676a02f6f
BLAKE2b-256 a6404aaca0d18b367467c45156dadacb57e9432c14077129c82d93dd34c12710

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.2.0-cp37-cp37m-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.2.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6aadb56f0b57f5699ae16f20ab62980f766d9e306c2a90e7371057c196cb731a
MD5 cff64328ac3570c0252fe5e562f12678
BLAKE2b-256 bf8ada5fb78dfe10c7422a7f8eba62dbd2eed25a7d76ef41a36ac4cc3c678244

See more details on using hashes here.

Provenance

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