Skip to main content

Core functionality for Pydantic validation and serialization

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.9+ 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

Profiling

It's possible to profile the code using the flamegraph utility from flamegraph-rs. (Tested on Linux.) You can install this with cargo install flamegraph.

Run make build-profiling to install a release build with debugging symbols included (needed for profiling).

Once that is built, you can profile pytest benchmarks with (e.g.):

flamegraph -- pytest tests/benchmarks/test_micro_benchmarks.py -k test_list_of_ints_core_py --benchmark-enable

The flamegraph command will produce an interactive SVG at flamegraph.svg.

Releasing

  1. Bump package version locally. Do not just edit Cargo.toml on Github, you need both Cargo.toml and Cargo.lock to be updated.
  2. Make a PR for the version bump and merge it.
  3. Go to https://github.com/pydantic/pydantic-core/releases and click "Draft a new release"
  4. In the "Choose a tag" dropdown enter the new tag v<the.new.version> and select "Create new tag on publish" when the option appears.
  5. Enter the release title in the form "v<the.new.version> "
  6. Click Generate release notes button
  7. Click Publish release
  8. Go to https://github.com/pydantic/pydantic-core/actions and ensure that all build for release are done successfully.
  9. Go to https://pypi.org/project/pydantic-core/ and ensure that the latest release is published.
  10. Done 🎉

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.31.0.tar.gz (424.6 kB view details)

Uploaded Source

Built Distributions

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

pydantic_core-2.31.0-pp311-pypy311_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.31.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.31.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.31.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.31.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.31.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.31.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.31.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.31.0-pp310-pypy310_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.31.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.31.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.31.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.31.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.31.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.31.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.31.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.31.0-pp39-pypy39_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.31.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.31.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.31.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.31.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.31.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.31.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.31.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.31.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.31.0-cp313-cp313t-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13tWindows x86-64

pydantic_core-2.31.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

pydantic_core-2.31.0-cp313-cp313t-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

pydantic_core-2.31.0-cp313-cp313-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows ARM64

pydantic_core-2.31.0-cp313-cp313-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

pydantic_core-2.31.0-cp313-cp313-win32.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_core-2.31.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_core-2.31.0-cp313-cp313-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

pydantic_core-2.31.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_core-2.31.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pydantic_core-2.31.0-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.31.0-cp313-cp313-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_core-2.31.0-cp312-cp312-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows ARM64

pydantic_core-2.31.0-cp312-cp312-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.31.0-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_core-2.31.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_core-2.31.0-cp312-cp312-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

pydantic_core-2.31.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.31.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_core-2.31.0-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.31.0-cp312-cp312-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_core-2.31.0-cp311-cp311-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows ARM64

pydantic_core-2.31.0-cp311-cp311-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-2.31.0-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-2.31.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-2.31.0-cp311-cp311-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

pydantic_core-2.31.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.31.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-2.31.0-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.31.0-cp311-cp311-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_core-2.31.0-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-2.31.0-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-2.31.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-2.31.0-cp310-cp310-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

pydantic_core-2.31.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.31.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-2.31.0-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.31.0-cp310-cp310-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pydantic_core-2.31.0-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-2.31.0-cp39-cp39-win32.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-2.31.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-2.31.0-cp39-cp39-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

pydantic_core-2.31.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.31.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-2.31.0-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.31.0-cp39-cp39-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.31.0.tar.gz
  • Upload date:
  • Size: 424.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for pydantic_core-2.31.0.tar.gz
Algorithm Hash digest
SHA256 e1801a87ed2363889b1a10103d42c509c5d87bb24f5a9b7c6b11210598eb89d3
MD5 740cf531b56980bc10b50a55ffd3f94d
BLAKE2b-256 6c076c6947823e00ce70f4659d9ea11733b1772a06a5a80a75a92d47307ac25b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 606b3b162928dce4e2dd9cf16dd600b1d4a9a01f32ebd7da54d22ddf5313a3d3
MD5 cf0c7f5b1d8912becfd3b5673022768e
BLAKE2b-256 45e4f12f9a189cd896392cdb2c151e9309323e5db842914e02ffffeb4c1d2077

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f5a559fe25c8010bac030959bcfa89bfaea5e9f060262041d05e1fce860d8939
MD5 a4c5b0d08faff0546ad4a9a897c1129d
BLAKE2b-256 79f0c2c7afa7cd8a3c49cddcc069c48f00b3b9886d32f50fa134fb26071eeab9

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 44462c89409f47e80f690121d66772eeaf09cb4457fb2cd6ade44006ed865bc2
MD5 e716bac62527b14a66d2830fc236fc82
BLAKE2b-256 f0582cefbf90143f76f2edb56dcb3ef893d63fce73e9d61ed35ba5052887d1e0

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f07c827b1b674eff31445cc2730d2c44f2cdf5146772d6b2f8337b18efb2a491
MD5 b8d7eeff329b6b3b2a39d94b808849a5
BLAKE2b-256 fe747a375982b062466f1f7c9e7bb108c05e80949f798a18a286011025b53a9b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eaaa8f4dc5dae4485ef146cd96330b6714d9213437bbe14930c9e036c59e4c77
MD5 e70b1df91c92e3a2e843ec33525cd6de
BLAKE2b-256 567b4a9fc63d8fbd656a0253dae5e22078cf0c74e280575a50e2e9d04cc06a7d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfcda9618423d421b2a1f88d545b12448e935fdf91964c9d4aacdf01820f817f
MD5 a3846876f2ada54fca1eda1ab2a0519a
BLAKE2b-256 88bdcdad164e4641391967575a3297dc47ca8538cc1c2deae586fda7440a8ead

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 467b3ad57d3d48d4c7c76fcfa5dd01c826151de5b0f3b900983e0384f1d02955
MD5 c7abdef6c5db440784079e0ffbe92a3c
BLAKE2b-256 9cf7cc05c5f7a8b5f74557a6c56fc0cb93612d549e4f68a9d78086b2586d7866

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc132de79ba422c65d1525ce91b18be401f2aa1e372941e6ec84cb2930bab3de
MD5 5258a68fe7554452c2650b02dd19f46b
BLAKE2b-256 01a706c6ec8de9c68fe654b46aab9dc3f944a57b866cf711ef87bd41f352c8f1

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d27386bef1c90ed829dd4d570774d207f1ecc4da2a3e58ab254aed14f6f83190
MD5 2933114ceffd841d8383684becccb93e
BLAKE2b-256 9d2e974c7be6d67632df68d3f43cc32d719128fd9117786f7c8933ca99fdc138

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 eb88e4b9b0825369d8ba90c1712027ef20d2203f58019625fbc59b5a0977e867
MD5 aa6760b26da322ec615ff23c3f04f2cf
BLAKE2b-256 e749efe61e41463f9f93ba2246139bc6f4ad6d6135d3ecaf551f91d1b7b16100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 18d7816eeb0dea4fe3d0133de3e05ad1a0a48d47906fe1edc8fbcc675cac4416
MD5 d64d39a50922b606a793d9b56eec2853
BLAKE2b-256 3b48e5243aa6d42aec1be3f9607c1d29df5dd25563d6007aa886c7d321de1a89

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3574cdc851d10a7210f447d50f6417986c1d306e943456b148bd3dd29d31c389
MD5 64f082cddcad634c6dc3693c62438aac
BLAKE2b-256 e3a979498b2916bc34310b515eabbd165ffaef64a8652f38a140f927ed3a297a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 78daea4fe3f787856ef9ed06d9c6a311231b1bd94f1bc57cd66390c6b5c9c14d
MD5 4464d1f3c83d72b059581d8f7585044d
BLAKE2b-256 7d2fb2e464708ab2031569c377a7a1afbcd0a964a92176d5187ea94f2ab4b47e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 849070980ca8a31d80df729937939d0e1bcf11ae44f72ef6eec3e0a5d509e162
MD5 e66dc99d266836cfb3374555095d180f
BLAKE2b-256 1bf44968dcf6ede50ae79b841945725406db6b82365b31c6d056dd0f608cb837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 27585e5dace4bb2cfaeaa0644a2b5ed18a9ab3d42779de1c4645901b9fccaf3f
MD5 021d091227126eb95e1c6c69148b2aed
BLAKE2b-256 b78c2a8b2e744b12dcd04ec2a2c918c9755407d7cf7b70d675f7f66fa3a0ec13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 91711bc31361313adb231e09cb00abf8664de3dd392b41be9d84dfa5abf5c8ee
MD5 984c4ac29deb158ada7c58276247b289
BLAKE2b-256 18a8dbbb7b665b18c81d36ca02edeb972b9857458b9ca7581e6b18ab2c6627a3

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52ce6768d9af3942f83a36d022c44a4ecaacbf63bf037a86f3c7ae2698e0195f
MD5 b1017afc94c6a5e99ef03ebba956f527
BLAKE2b-256 f0bf2d94c4733060348f0670ecc8f800bb99cdd23abfa48b698085c54e4597c4

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec8ffdf5c7cdb53fcce003a2013ad9244e2b7267843eb7cc653fe0bfa7f44778
MD5 0fad6ab5c0a8e9f90f825bd06d41e5f8
BLAKE2b-256 34b85fab05cc2153754a8dbbf99a2b9f319e0a95eb19c7e87d1a61b60928278d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 935c5cdc1ec3be0c3ef5e98f06d539398cd640e81f5795d48076ed11266ca5d2
MD5 30f659811947ad62eafa8896283431c4
BLAKE2b-256 c7e59594edc4dc7c8687c7eec93703967d6cf72d4120637a4f8869dd04a2c4ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2f8bacf142dec96943d46f9814f30d80fc8b20509bef56293db3188e0a0af393
MD5 0647aef77b88d8dc70268a20b151d52d
BLAKE2b-256 7e4a2db6fb0cb1d0a71ec28274ec41788d675ab0db4f68489a2679d8ec0f29d9

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 26c4bbab93f96c401486e724a17c65d14db6801d58e985f3a3e51806fbda36a0
MD5 545cac02b8985f1a076e1d9c80b106e7
BLAKE2b-256 ba838edadb2f1354656fb5a8cefe47507f399edf54041085e1d9264613b8cd4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2f5f539e84e0694f41a4f90819fdc9396ad5ffd7407d5c12afe92080e19a1525
MD5 61299c38a43eaa1c89eecb33240b6bb9
BLAKE2b-256 55681a3c448abbad0db857abcb890d74e2ce65fbd2861354f295ca73e8594ca1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5509191eca5190e510e0ee743ece1bf7ce6c87417376504fa7da77a62fac7e8a
MD5 b534110bdc665f4b1428af099206c036
BLAKE2b-256 65d52f5369f08200c2f4a79cab75712048e7b6354866a2fe6980f08ba8bc10d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9eb9ce29705c01217fffa900477a5c2b509aa7441818779f52b16614264d3c7
MD5 fb25bc843d6767c6e32ba91b59abf0bf
BLAKE2b-256 ee00016eea3c4642bf4e7749db86d7c0fa8b7c2e862ed6919e252c0fc9912364

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d266c4534df15a4ff74d26e0dfbd522d415a70f9d4d3018c0845e6ff4291b4d
MD5 011001886d2189dc88565d6c76d5815c
BLAKE2b-256 1e8af958b1ef9ad8eda1794c2fb922de2769308cdc834ff08bc7b9834e3d420c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd1383d36e19f10de04b1477e739142f280953c97c921c53bf419f44ce4eaa57
MD5 6f523c65176ec39f61b1f9301d6de058
BLAKE2b-256 b0473a4bfe2274065e9f41b3b1ce03583d172c2dbfe4a9ed1f19af0957de4098

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6c71143f0ba85fb653e9fc2b367745f92042f240bbe0ac6605d68520a2934de6
MD5 71dadbfc8017415278721a74b72c31df
BLAKE2b-256 693539c0ddfc1e7ea404c253bbe9713804bf2bf3a155828d4cd677dcde459e28

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 0cef09e9be410e691300b503fb98c0671c28199718ca0daa614076638634f2ba
MD5 201486f7e88578202a812cd8b8ba7588
BLAKE2b-256 ba284f7db6da0ed47fc75300aeada925941c6de4f44c2213791c62441baedf05

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b29b9faa1e863f31c202a66affc829332fa6f0abc1edb16ace3a81c8c0151f8b
MD5 969f06a47f7028d5f93a4a54930d65d2
BLAKE2b-256 4f94c43d5da1abe91e3754e7880ed7a0f453e68b7b47078a104480f9e2c2302e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c229e981f5e50aa9aee33f3619aaa44b1c94558425a7c795adad6e9fe41fa01
MD5 bb6c9336d9807de3a765b8efbaf4ae26
BLAKE2b-256 97e44b56e52e565a670693e00288d01c1cea58b092e879c992f731a7581cf77b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 45649a96bbcf1822377426ade6dea47a72e44c55012ace976916306be3172a88
MD5 aa95510cc7b75aa24b40e5af8ef96a47
BLAKE2b-256 edefa8a0cc3cd4f779f172e1a1a5e8271116095c17664bc6db34bf9631c850b9

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c21ee89fe85cf1003e9000ca77846bd1a68bf2e604eff8ca0a6cf875096d1a9c
MD5 9376e3fea82c76d484690529ffdba5a0
BLAKE2b-256 1f65c8edf73dabff9cd6a041c71ad3fbe58b567af2dc8232b6cd6d826b08b3b8

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3abdbf2047a8d0b14aad2576718d71528d16cd3470124adbec582841b5e52067
MD5 2c6761b71ed364dab2f0555d964aadd5
BLAKE2b-256 5d884535650bcf444b8d18a37e68f73735949aaecaff22465ab6a8f6fce19dbd

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 62fd2d37c0913ec0a76918dc66629edb30938158e68f151aaf5f863ed34b01b8
MD5 6d0f8a975c17796d33ad69c74dbda38c
BLAKE2b-256 e61c29c33f8764b4df77d4161a93729a46feba659a5e018d6a43ffa59c15a4e2

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 375858cc1a2a4eeb529565b3c8a37261796355ba5cfbe0c8fc5dc102efbd262f
MD5 72e561c272dd8b5d5ddbac6a565f3cc3
BLAKE2b-256 edc25b034ebcbd56e3e6dc5412ae7e4789ef8cc7f98b36b27d78c25b434e918a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b79857e6e43f2220795e48a26306c2edce53818c84a22dd722ea88cdaaef9505
MD5 966dde8baf8e408a90adcbf2570d29a0
BLAKE2b-256 8f19eafb9c84d42142103981e186d58f43ab4451b9b0d125c1fd485d9099beec

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6d4d3f5137b3efdca4f6c4eeb7b2f9b074298d281f4770bdf14ef9d18da5e31
MD5 b674501a3680663c690e199caa161b33
BLAKE2b-256 2e7acc620e52010a9f6930b66c29c90067f4eb554e2cbc30094c313cfcfa364b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 595503d33318c52ad980b5eb8020ad7654d903b6603f4549c610db06221772ac
MD5 ea2f7c354dd1642c02015fcf1d2685c6
BLAKE2b-256 c50bc0d53426550fc43885233a1d8ece8c80f3b9f68ee2053a3867bc05827fa8

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bfe46d0ca409724fcc47cc722a771de5a6fd678f9c8dfb73fd1cd9dd9b7b0e34
MD5 913001b691a491daa6034fdbe439362e
BLAKE2b-256 939c55eb54f32d074a8f6a49e8c7e9fe442bbb2b0b020b721e38f5e0925970d7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 11aa11de97578f11664135de5a059e4b217a326861cacb81cc9cca63fbba7955
MD5 bc420e3cca6d2376405ea481ac1b7ec0
BLAKE2b-256 f140d01972754128feb5e39ad91cd8e2d179fa0b13d0616efe5ceb4b0524636c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4ae85d017aa3f60a38edd7c01fcca066b78fa0299282d1d88bad4558777a976
MD5 455b5a9395a82276a2125da0df3651b3
BLAKE2b-256 e82d428f2e948d126a859e83577f38c503c6c79d8703d84428f9401efc5742cc

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 81b82a3328ec9c6b8d15c9929232ad90ddbc0bcc027a931105331990c514310b
MD5 91393c808bc11f65d71a895e534d0ee0
BLAKE2b-256 49186fe835217977b0d1241b5ad28536924633f8447a4764cb07a7a53ae3c262

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 52a6e389ea5d6d96f8c51c0d1a203a23bc096624add275b633f8b3ad93fa71e9
MD5 bcb5ad7b8626524e4ef165d7922806fe
BLAKE2b-256 f23a4777314e9b2cea35380e308ae30a208bb07ce18a0e898a9c90bb1a057658

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c41c088ca97d69bcd90a5f634e3f1d58dab99f1c6400fce5d4237b9542c768e
MD5 9f87980559702a98c80dc99b42145afc
BLAKE2b-256 899b3f77009cedb3133dd2463f63fd12a7f2f85c9526c8a621d7f45fc30524db

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 57eacc606621a308fec4b2ecdd9e091fd3d530e1c545434ddb826767027f70e1
MD5 252536bd22f624ef413e5daaacda0b05
BLAKE2b-256 92e84df3bc6111c6d5df4b40736250e0f77b44edcdd5f56729d4ad0197f55888

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e6e2fbf3cf3599100ab0a8c72f143d76fe38d19f46a1e1023897f03fdd7aafcc
MD5 7e15cc544d4c43a7e0ad2aa2088f06a2
BLAKE2b-256 26e052af3b3e48f98b952a3d139aa2d565f655016cadb2715c70516a7becc183

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 860eca48526085f6caca3d79e8d85aba1c521765cf08354a15dfa3d2cd14275a
MD5 884a5bb4a9aaf3691df899fcfc56ddd0
BLAKE2b-256 47ac8cc3548caa7d69351f226bdf2140b943d243e5fda1dbb2fd4d2874448660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d96b8defaaddf2f0fb3aae835ddc0a8718cb1f5d42785fdba6ab14e1df5ac2af
MD5 d7023e176f86eecf9fe3f23c5b448548
BLAKE2b-256 af8a866eeb6e5555748839a9cec980ba5685f6ec9dfb562dbab9d3074c8874cf

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 de0d43149679b20e959e41c75297b57b409cff265bdfb95283ee4621fb1ae324
MD5 0325b30d0605025a7530d056593ba0d9
BLAKE2b-256 528594525db3199a0d571be3b3b9de29413366ce406a026879b7a26c495e127a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 092e9d1fd17910058dce67b8dd6afcc653b6727d975590d361ec9f5a53416022
MD5 d02072ba4a4b423d242f8bbdd5f294fc
BLAKE2b-256 66e35b423f2ced6a3a86572f9ad65b7b92f1205ad70d1216c8031bacb76e4c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 847db5c2e17cd048d908b888855d57363d9734b238495c1c566fcb3a84ba554d
MD5 6c81b2779026625064e27505fde98a5b
BLAKE2b-256 adee5659906c47ba765a89129ff4f13460726614754aa1a245a4be57b8ffc734

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a2471afdacb0e6e8770394fe4533c7c04591eec831d9caa73a67046d8ad73cfe
MD5 13b97599a41f0078e14b9b547c7ec0c6
BLAKE2b-256 c4410ac507f740b740117fc46cf94387f7c414b61cdca3a34581ee68ace163fc

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb75ce7b3f797772c883f20816016fa6e9dc42cb173d0bdcb6b18bb2a10ef0da
MD5 fa0cf3fa3e24b0ed4e23317fb569088b
BLAKE2b-256 0aeec87df818b62931c7521f63cebbde306c1b3156b87fd2413db4a4753464c4

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04ac2c3f4a82406413d071af13a8286579f3398bfa209130e397a0cbe4e22eb8
MD5 563da99f513610ec8064c3a95c034b27
BLAKE2b-256 dce46bb34cb41e0f9cbfb17d536b1f384c90866eab5d66c0daeb790435188f01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3bfe25cba51c4d198d699cab8bb8e25ab2ef6fa9c7ee5d7d78e30a795bcdb44b
MD5 d93c036e216a587a7af4809af9d651cd
BLAKE2b-256 47257c77fd6d07190bee06789ae9eaaa8f6179d92e07fb1b8cdc70eb029861f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fcd5299eba4add7d4b038e5834e30d6cb3f4f00cae05e7cc23269e5f151ab563
MD5 9c2c1d46fe88451136eaef1949d79b7b
BLAKE2b-256 d5f0a4730389a899128e0e8d45f235cf70253d5f7964fb198206ed3075633ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 37a575d1cbc41a989a16ed7fca6fb1c9a0cc9f08e49dafa82cb22dcd76bd5875
MD5 57353b956139f5a2e91d07d76230bf1e
BLAKE2b-256 c1f24c48f548a8b04b3bc02287bffb2457a02a684aca0d14d60534efc546188a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6b7b8c26cdf12b98211c35bb26b573f69a2069d41e22b2a6f447b9f7af00f28e
MD5 fa3489a0714e767bf7f042fafc6e278a
BLAKE2b-256 26f02d84a45b045c8e161a731925f5bd589bf6175bd8701894659071a5844cf3

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 996985423c72f4f0ce85745a4c4af2d8f6b2bc445abd1a74d959dda93184c70f
MD5 af5e36aec9b85de220b077d9ca1d2b75
BLAKE2b-256 db09a998a8e2d9bd12b3987a64b8f005417b56da5b161bba4646a45d1a9377a0

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9647e66b5c4adfff5b33436f1174724fb904be1a7d0fd88ef7c9e20d11a2a3e2
MD5 aee24fd789d11a650fb041f823d6c685
BLAKE2b-256 284983cd89e69b16d473ed4c64dd282815a8c3d3288451d5193ef110b82c172c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e31663091bdf45f4c0e9ace1093367f9b01c01742396e38700fb76ae82c245da
MD5 efbbdcb95fd12352f05a5f0dff85ebf9
BLAKE2b-256 cf6f159ff55ade18599892a2153a9f1425d85ccbef1a9134004a0c2a4019d651

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 87f3eca6502aaa059be37f20ac421216446441f24a2ff2a02bfd540c95405554
MD5 06f0351555cd8174d06ab45b397ee0e6
BLAKE2b-256 8f73d69c11425b5be8ce34ddec0f7e925700b8a71bd1c13749f8272ec02d8411

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a1a83380c39e881a38842338e0c27b9cf5b067b22d546c574b3c2ae89e57ed86
MD5 d9786b968b09f7bcee297deab24b82fd
BLAKE2b-256 ffc72c907c70713c51a1f2fca6226c157d27509f9302d9ba3d851cabee5c922a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 88ff43ea37705c5c0b533e3b211b3caf6688144fea5f866ac5374f0f3d2bdb2e
MD5 299b81e99b43a18a51de430a125591cf
BLAKE2b-256 f50ae46e9505c5466459c612e89c486178c80e9b2f8525b93191673c5eb7ba9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0f3c319f6aaf585d1855c77c24287992ec0c56da83bc83d9b54864460e56d93
MD5 e1781cc2d0ec5ccc584bf1b915c8f97f
BLAKE2b-256 4748f49bcf1328cdb3a2d4a3c00205996252521bb18e54a45e51bdbb08e704f7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e77ecf130274e6d443f062d22f107b3cd58e24b52cba5f85619e9af533f683c
MD5 152157260add2f66d7c5796adca2a14b
BLAKE2b-256 4c9c8991b469178860426843a5492169fc5268f02470ae1fd2b912d1db2e0232

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 858e31b68fd57c05bac28cd863478553fc042a25ce71da38662d9381583e5530
MD5 1fba0e3484b40056a44899a1ba869735
BLAKE2b-256 6978c873b0c98742ff1836204ec2acd1f6da656096d38668856c6126c032d89c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17998650652c93e0ec05d517dafddf39dcff892109e1b675e6fbffc31c68d37b
MD5 16c5565eda6b1d4967b331d94ac62414
BLAKE2b-256 86048d902f127fe7ca8d7ef0a5067b10ed9a0167384d62602095fa2531af7bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65d89aa64cee4665fc1ec54ce85f972f0ba251fc20757c946ebd198a02c44245
MD5 d6f65ddde62a557903bbb16f2f7f724b
BLAKE2b-256 e127b14fe88435bc6e3aed6b8e9fe703fa2897f8cfed847e7263825c11e7a531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 89e301ecd05c981da1451d4a5f8e202a29098667f3921162346f53b49b0d2252
MD5 26413f3a52652346d210be91609d4737
BLAKE2b-256 0afc4e47f0a912afc3426f89a075c74c09ab238d723a3de0e36123cb64700e6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfa8899ab201c25dd96cc0cb6120a41793056b1edb74e5603627ac15e7bc22e4
MD5 7ee71c2591e2ea61813c22c8ef69dc5c
BLAKE2b-256 841786f905d6b077d2e4f075847e7a7f8d79c9ca98ad62aeb91c2f5d18be5504

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c24f9cfe260b0992299ac3bac7b6e1c9dc6eb491eaff14f739070696aee1fb0b
MD5 aedcc97330f4cf0af980a5802347b7ee
BLAKE2b-256 1d4967f156e568c76fcaeba3b37acadcbecafb10e93edf9fd0bd4196ace27cda

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7b4209af4411416e8c5fecc71761d61856802324ad4ff8148efc8c5d7c41862a
MD5 c20c5322324755ca7d685b7c0b976946
BLAKE2b-256 478991dafa46435594d2ef08a19686c37246d7876488ad98a2c76f6102b2502e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e61dabff4b38dcf5dfce80bad18d85fb186edbaba21a8c26463be32c63d1a6a0
MD5 4987e8427d3135cd581edf4478fc165a
BLAKE2b-256 28d0905b275ca746f967c30c6f6caf25f7f481a6c5d9fa1d797740aa8d0c7dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2599f07258e73fe3374a9a1249cb58fb4e0f12a126dc22a68405710ecb595ccc
MD5 3701468b2f1359effe3609db0b7fcf61
BLAKE2b-256 620368ea5709dada77c14eea2d5cce4e109e7be7060f629815442ddaca2a0e89

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 845f17bb5dcd1d06fd55b01da6c25d6f9a801f9ba9239ec776b8bb6888252768
MD5 f903515bdf71acea4121e1136c372d11
BLAKE2b-256 58fae140bf822cfcbb5fa85fa5eff23c298d60532863c3473e81877e39753283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7dba0119bb12100cf9b97bce871fe56d2dacb8aea9cf3cce215f2dbb8abd4736
MD5 43535b166642402f217c16c9fc1efdce
BLAKE2b-256 e62ebd1355760de1ee8683ce1b25d77e9e45985fe91755ca8f9db8d36e306e91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 588eef0e09ce3c49345a86e541eb0bcd22fcbcec71fa224d1c770703a6d186d0
MD5 9544489e44bf53c8b0ef0ab6629adef1
BLAKE2b-256 b20d607d1d33001be9c4aabe52e55cb6e7af1fb0cf1f2bd987705cdd12c3aa02

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28798d4f1505cc292ff7abcb673cbd560ff320a398ccac3aa4171777b09d64b2
MD5 797a98f240b4505c93a21258ddbac784
BLAKE2b-256 ce3739ccfe746add6576bee36a44320dd4bea195b4b5ef60b2293122b7a14c61

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 729395f680ad8e5269e8cfdcf64f536a60d453553473538cb5a4f019526b6ed4
MD5 a3b0deae20b96689597ba772bcabdbe8
BLAKE2b-256 e9d0b6b1953f1f48f9107bb92e049d687a8e7b876f13cb8071049da09b38e3d5

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dbad925070d586d0a753dd970aeb32658898fdb6d7708543d6c987233327e69a
MD5 0ddf9112dbafeb286d10fb31e54dcf9b
BLAKE2b-256 7d2354c58b3407c2baeb43a493a891a97b405d61124401add163de68b2f0d0a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad80964b94b9332cd45a04a06bb3ddb3e65a2d06853d09cfcea051c8247222f6
MD5 1d2e1ec8d67231f18c9cda90c0df9de2
BLAKE2b-256 a04c87d008ad1d999c1ffa87f131e47fad3c34f9396455457b4baf38023d6dc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d1494b3f9127651b89e0631302d13ce362b0591f885c50db339014d102854129
MD5 0723567bc6513a3f04937d9a48ec0029
BLAKE2b-256 cdc305b93700002c0bb98ac6c433eb3582b5ad54c79db5951a764c678ae45da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e22197eb1501a219fa7e78c8606feff5808dd2d52612f950c755cb886eb8494b
MD5 8b383cd0f98c5ffb1f3131dc8d912e9f
BLAKE2b-256 4923eb10ee79448d1d5d8199a4939adcee228c3a599b7f5467918001c6b53003

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2904da078abdad77089cbc5b90dadfc14ef5b83806da27c6756d118cc2d93958
MD5 aefd822fa3b69974f20dfbb405c3f9b0
BLAKE2b-256 83ec261433eae3412079a9240eef5622a20dd7b6e43010c205bb75c65251dded

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3d352813c068d096a6698ad61349481fde7d678011e0008c9882e70ca11992d7
MD5 f4e68212666a2cd34ec3cd6b18f12103
BLAKE2b-256 f01c843908d6537ff35158e3946d473b7942751635cb2b0a840c35bd569e2f89

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: pydantic_core-2.31.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.2

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ca508199cded069cf5fd0aa80dee30f36d4490304b0ba4b5a2ae8aca4b210084
MD5 4d7656431ef639975fb5d235bcb82ecf
BLAKE2b-256 84a58b0613d22ad5fe55b2c1a1e7d82785aaefab8c497d38956e9fb7266ca3ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a923e3ef256565be382142baafd786417e1ead7087132964746119cddba3e14e
MD5 e6206e70e7b9ed129b9d9a58735b40ee
BLAKE2b-256 f4d5c29c3e5cef127eae38c3160aeb9062b741412ce878bc4bfd00c8f217bdd1

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp39-cp39-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 63ed26b473a29370f3db5a1157fb78f36d6183c02782c87f68e24b190214ef33
MD5 19b71eaa716937499dbc60696b88b3a1
BLAKE2b-256 f6ade6c8448ecabfdf9dad7e08b0df5c1b3ccdee2357cecfbfe960f1ee29c71d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b365a33bec6b16be983c40601b7a32eb831621be175ebd328c75fea63d315acf
MD5 6cfd4ad3488c0f14c479421660c6581a
BLAKE2b-256 c530dfe070386673d5b37aaeabbb4a65d73ff71b9ec16992b015af51925e1a73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca414264e40d719f050278218b82efdc4fe067755a2982e70632107edd02df79
MD5 626b34b85b640b36b1fb053f5fa8dad6
BLAKE2b-256 3c35ed07083a917aa54d638caaf08341e8ac19b713bd393aeb495cdabd16f640

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 abe577302ace195a52c4f31dd7b4d572cb77804d042d1b2fb58bc835f16378f4
MD5 da92ad5b62aaf72e205c64a6c12622bc
BLAKE2b-256 c1070856427b30b21fc532f4ec25091b17b4f59af49f892d7fa55fc0cf266026

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0362ebd9064ca353533ff93b76d043db4a8ac2e76553451867d8732c83de7de3
MD5 d0455fcd14eb6f88c611def68ce16a65
BLAKE2b-256 9bc424d4b1bf8583a7030043c32574a5b78d032ebd7ed4b6d7d7dd44ff7677ae

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f34b2b911bf496dcf9bf1b7cf7ba2714e5124924b2a679d0e1c4227c9a6e60d4
MD5 911afbb61811a3dc8f8393c75ab55b53
BLAKE2b-256 25e3d689a087224e4eb546d432f65a5c99cb120440245682200fcbd4226769fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 769bbf3e5aa6459006b4923a5e0f886afb67020fb1bae03529f85d61d31b6574
MD5 47173f46ee0760d3218c0769dbcb0009
BLAKE2b-256 df2740a1b617dfc157136de88fcf2c869280fb8e0df860a0a8d1da0efada3300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f13751995d852d154b73703edebddfa2c8fb205d1760388f035614593e245ff0
MD5 b6f4952a058b7c1bac25cc85fe51d76c
BLAKE2b-256 720b9843cebd4f306b8fedd220c1d25245319c826a38057b638cdcf1291e2314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 acb043110d959117a9cfa684f583574162d253647cd3dcfb7b3ec8d20c97de8d
MD5 b9b77ca79ca70c536e917d5153ea87c4
BLAKE2b-256 957e455a55c3ef0d0cd18ca3bd4dd84f0f1922653e302b47825c40ecc24d4164

See more details on using hashes here.

File details

Details for the file pydantic_core-2.31.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.31.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6a95dc911c90b45377db4996ee898b7cccc5b879c8a34beaddd20ed9f758a772
MD5 ea50dcdb27cc025e21bdc2f5a282616f
BLAKE2b-256 24aa30e9c68190996444cccbbede46b26193a8395453bc7d069079d1a8af1289

See more details on using hashes here.

Supported by

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