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.1.tar.gz (424.8 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.1-pp311-pypy311_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.31.1-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.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.31.1-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.1-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.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-2.31.1-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.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.31.1-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.1-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.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-2.31.1-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.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.31.1-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.1-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.1-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.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

pydantic_core-2.31.1-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.1-cp313-cp313t-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pydantic_core-2.31.1-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.1-cp313-cp313-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.31.1-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.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.31.1-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.1-cp312-cp312-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_core-2.31.1-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.1-cp312-cp312-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.31.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.31.1-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.1-cp311-cp311-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-2.31.1-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.1-cp311-cp311-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.31.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.31.1-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.1-cp310-cp310-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-2.31.1-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.1-cp310-cp310-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.31.1-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.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.31.1-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.1-cp39-cp39-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-2.31.1-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.1-cp39-cp39-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.31.1-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.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.31.1-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.1.tar.gz.

File metadata

  • Download URL: pydantic_core-2.31.1.tar.gz
  • Upload date:
  • Size: 424.8 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.1.tar.gz
Algorithm Hash digest
SHA256 a9cc2f56cba2b78b487325ff3de016a70670b615eaf00cad88cb17f271e01971
MD5 f19ffcc5c55b0d36c66f65e8ccc5e075
BLAKE2b-256 dfcef4c0e43c788ebb10a8b107c9774169091a0b8b3a62b3f76ca528d1e79bf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3b3ddf99b10cdbad4b7bfc1471ed9d6d84707aa34b853ae34dc472902d4633a6
MD5 15707524e1594ebbfa009cea9605dff5
BLAKE2b-256 4bee0615b19be34844c9fdbb9f76d713826de245710066f36a71c9f2a20ab11b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 461b5f1a250d52a9756ebcc40067aa2c9c4fc6ddd9de3056f19fbb26e48801fd
MD5 cce734a60ef3bcf7d61ee95e728ed872
BLAKE2b-256 7e9a88b0fe8dc8bfc4c68045c7ef022923e41331f000997f14cae3e727cd0216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4b4122ed9098132dacf11e0738250dc3acc9adbe5c55daf3cd9628ef27706bcb
MD5 2a832e249c5fee2b3b36f72341215788
BLAKE2b-256 7c20f5aaee7e33e0c21f5b30cea57b4eb7499db72f66088579fe4dc22b1df014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d87b5507ed164c2ee66da6848a842c221879095a1dce759218aaa9ccf94c66dc
MD5 9344e263f248f6f792bbbb5091dd465c
BLAKE2b-256 7f09b68b385dc5f585217a0ecb9d2c014d738f4b4837b945acee3590a98823ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9f388d03a19dd61270058a2bf0560fa26d1debcfd35d4d2c84733e9c2ba5df3
MD5 fc42f0e6bd237073fcc08c8d50611660
BLAKE2b-256 fed7ebf655be45507d10b9379e9cd5ba68aab8dc9808e770cbacd13305897100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 caa24dcf69732eb626b8d9d8c65a6f87c592629f39dac570304bde731c7bb8b0
MD5 2891b6fa07ecb91e60feae68d015b10b
BLAKE2b-256 d397df2aed50c23d1ed6c4703f73aaf59459fa6a6bb74d9c64bacd4004815bf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 28a1095c7c681a48d691cf78d1d82b8e6dc926d43e37c4dc5be15ab46e6602ec
MD5 16ff051ee22a5c16e2815d9e4bbe57ff
BLAKE2b-256 7945705a975c4278669219058e694bbec5c3568a97543a670955b0afc3b1b264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63eebb73d354265312caf38f24226dbc5488be8a7ba629d1b4ee2d71f50a8d7a
MD5 65255d3da0d41bd67e694dc3b58f1059
BLAKE2b-256 bb6eadea9936817c6d4f1c2c4a1ec1d199483575ee3ac9d241ade4883956e8ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b708d7061772954c74db04f5b2b547690bac0d3b2c5df2e6d693c42d297c62f
MD5 5908c117c99906decd2e7bef5e2f1ae7
BLAKE2b-256 da867e79b96073ec0c7841143aa7aa19b5118dc7bcbe88458ae422bbde96dfb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 620030579fe91bff34cb5b9e0e2804172787ecc333d00fce7246ebc7b70d84a1
MD5 26d4c1976708a557d164fb1ceebdc9d0
BLAKE2b-256 43de4a025798c86824df296a4df06f74a87e786d43b015c837df966e61ea4620

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 252a2f101e4e12ac29f69431b42e92e0ff2916e0995c14e9a37eb9f9ea2590e1
MD5 1c54ee9533742e0bf79ee5888770f6ca
BLAKE2b-256 f3caaba59ddf661a0930f3a606b3ea1460c5f6015f98dd717b117efda52710e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a5bce6f7a20eb52708b4363298f527a9c136ab429bf8f178e58a31645367e667
MD5 b9a2fdfa4ff219912b69132efab469c0
BLAKE2b-256 9a74ea8cb89ea482ce55ad29e5247259bd705ee6386bf2125b0cd9fca5a54ddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 657a1c2157b9c5725fab46547674884a123b588f1c9dc5a1190984536b38b7cb
MD5 4386df236ca7343194099dd359b14309
BLAKE2b-256 d4456ed6befa511a95495bb41d6dd29127d7740e0f1f733566b5f26c04ecc8c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7e964a044934c92e03cefcec47970d8b3e60f480e72612721cb295153cfb3011
MD5 41f470b65ed56a1bb1009e011d5e1f0a
BLAKE2b-256 c8f7c10a657fd0bb5eab25672ca0a8373d027425be2308b57468d96a00c0488a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6efc351e86ae9c5a3d9db1fae62c26a6e5a5b61f4c4c97ba876f85bacd66f7a1
MD5 dac0366f07d89e78bb295c0609f004da
BLAKE2b-256 7c80df840b9b14207f832f0b5983aec3d59bd8cc3f8b36478bb924265dbea78e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 100670221291a804d15826793f9f06e01e995ef57f9331ffa28821c8b1a0dc32
MD5 313d7e7020f21ae1ac0d844cc28ad681
BLAKE2b-256 2920e490f29a5ac631282797b6b39d69899c4c8ce098af52961ed3f35b14f741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42486edacd070c9ad469f72cf115d5621917af5ed10cbfa672f3448ffcddb940
MD5 c966bad589703114f492bd76c54da200
BLAKE2b-256 2c2ed34d34628256870a5ee9bda083a9b2c490607c565aa2a9debb49799989ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9deafe434682b48277c177f0dff06f5bf7216120db2e72a1f87c5a43299547a4
MD5 8fab9e7a6fa529dd693be541a24aaccd
BLAKE2b-256 ab0d947177c49a30f5cf11c47004276f1bbb944646ed192cb38991cd496a3a8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c85682c0347723c1279ef3c541e17f00f07dd0dee56fe9787b427d66567dae43
MD5 5bd343c8d58067a78ba4df43cb0e32a4
BLAKE2b-256 5a4e948f996bfbbe2eba00e6402421a31fe26bbd3431892fec9075f3f2367c5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d54f9908799261266954179bb3e45c2c1752657a6d6eb5f03e3f973f1bafcc42
MD5 726d2bd9ad89ac5a7d1424f603ecfa53
BLAKE2b-256 5f7bfc32c89ba57a106751cc304adea13490e7d3f8f3b444a1bd477ac751a7bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 457d959e81ab2f2742cea7622e613a184652bdf2222fa8aad17c8497bbb61320
MD5 6812823e2c5e60fe52d9eb8c3ca27665
BLAKE2b-256 9690f89fa309568151da52da8af71686f5ff8fb2bf8113b76137a42a26b3612c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a9284d7adac022ffd953a828ad562dcc923e4e5e3eee10f94ba8b7cedfde4c38
MD5 d00b219684a9379d9c03a469f2677c09
BLAKE2b-256 acee336fe569dfbcd57776bdc4fe703b1949b0abc1e0882b3de10dfb329f7e0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b117f729047ade65353241cfb82cc4e62aa887dca89f5ba9778c3445098821d
MD5 bc301eced22e6d2e937e98a705b09dc1
BLAKE2b-256 34d44ac8cf4517343e06991b64578287fcea4d5a07595c6d06c30da77751495e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 162834c21ddcc974c7952ef684f5e27ea183c77e37d2e63d5e3963cd9b76af5f
MD5 aafcf6cee1e7a06cfae1bd5239ab9422
BLAKE2b-256 73d4a50455a071c37bb6d6a81ee0ce518d6ad0b91f48bfefa8a1dd6e21e8b8b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 209a14f06306992aac0da42c71c4ae106bf63bc722b845e6904148df6b8c54ed
MD5 19bfeea47e6bd856ece8debfa60e4eae
BLAKE2b-256 c2958e0739b5751f4ca4f194838dee89b1fdb79fe30df9aa23d1eb6fab71415c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 604a39b2e9efed07d577054594f9b0e1e0056d532b8350818635077c23854603
MD5 07fae746106d0d31d096bb7acea80de9
BLAKE2b-256 66b175adffeece95de2bccf6b235ba0bea14872831c4db105f325708d95b49f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 671f6dee7e447484ff455c626f38d9d20889a6db41adb29208ea06b3811b552e
MD5 1c6a1aa6de2b340f82483de2764e996c
BLAKE2b-256 3345eb80cb63b5aec7488315705eb2c02fb7082c2d547884c425ed7d67c85783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 dd286557c4e3b1633c11f282616114896817610b1f9a41c3a9f2047d508a5350
MD5 52603ba0bb609c64e5a53d3d7112bc3c
BLAKE2b-256 9a323507fd0d8f7644be27df187f20c41f9b8152e827607e342077dd08acb559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b647890355b721aa0cc03de2529c8d6d5da55d855c0f08b8b100792db71c121
MD5 8d9e7571557bcdf8030a71f104327a9d
BLAKE2b-256 bce0a646580816eff2a8d857a1b447ed97cd8c55a8e9d16dd2d8431d897f568c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48a16c9d09871d8a6a66d4846a733c4afa8fcd2449cc16f6a61addfa3db7f835
MD5 f8f4d869071ea492ef012c77ef7004e6
BLAKE2b-256 2d83326aae2c33ff333fb690152bae4319f8efa5c0a9be420061ef81cd51e5ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7ab83864346cab0376d3069ae7450515a206114a14f2af8cc104f1717c557e16
MD5 79775c143462c4db86e4d334827b55c9
BLAKE2b-256 1ea1b9b1464ce9b7a965f86da4245df61a46ce2c753af1940156953fd347a3c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4e7f2846b1c0440d93de69ab96fb65f9d9c485e7679d73affec3b8c43ce91b18
MD5 21b630c277a2dbd2b4e91ed4fda1893f
BLAKE2b-256 03620fe45393045850d49c7d90a1ed9e191ab04bc6533880fdb4c4ef23462bf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0e915a3b80909c9b138c7c61885f726f7d6edc91dc6238699fa3d4fcd934847c
MD5 d130840da62c8cf521b753bc221465b6
BLAKE2b-256 565525d0c72084d90fa2aba0fc7797ef8941521cb509e9f0e50d0ab7d3a7ea1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8597c6d74ac1015e831cc705b6a73df229ffe5049db008c38536bbe160ac91d5
MD5 76213347890539cd0a2f205fdc86b7c3
BLAKE2b-256 9f08ce190422a40399c7de2629d408075851dca616b937a2369dd5adbe4d9142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5d3e7dbff0a4a8c849af7567c402ed5803be98256d9d49848aa3cc52dab803d8
MD5 1c7765e8547efc3c6a7ce646fcddb9f3
BLAKE2b-256 23310872243b98ce289f28df955960670f40782cdccf4c3efbe9bbff1fe75be3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1c5f89c0eb10508bb6b973ff9b8da509f5981ec323600c7855f4f77666b59400
MD5 5580dfc9997db85982d8f6e72a7d5675
BLAKE2b-256 789f33bd41b2cbca2a937f26cc9f062ba235e822305c0cd0db4de20553e76365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88e7d9d4c309b6da26ecb032d44709f7171e92cefa71d3f295f8e84a55df8f4d
MD5 0306e33e02475aa69210632ce2fe6abc
BLAKE2b-256 50707a7717391171faff9dbc30ca2c60c2b088af1f3c2a622847b3d6faeb4f53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eaa17e5ad58baae609294d1996c0465435b2966cef68fc782cc2453a55df02db
MD5 5fa577ccbf4572e896f83c3152baef99
BLAKE2b-256 cc08d080085444fe6d9a5b5571192e1d8929fa817ee57c9799d3e7b31664e5fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fd3f3725c01219466df8ed57c58e1fce63a5404db6b57cb4bd89ab6104d5ee6c
MD5 7e4f4c314914a356afe4fab03d3cc98e
BLAKE2b-256 3c6df87601832330c2f2b7bfca46108a372196e49850d0fe5d65f43924ad5319

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6227083598fc78463840a8af27345cdfd5f553eef7b1f960282ee8ffa482a38f
MD5 fb2b862c87db3e6bf2227c881ca8d777
BLAKE2b-256 077465ca46cbc26aff2501f86643145153bec10230fce6d6e018da5cccdf05b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 177f32ce90f007b8882ab1b2afceb91d95c0890100afe953f34bf7cf6c25b1ba
MD5 39aeb29d311213e7cc36b86095a02688
BLAKE2b-256 f68a9804b11ef3f3cdd3d9d7064789920177bd5c878c157f3ed94c487bd66900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9c39d7c431ff980a1c2d2cd1e2b33a7f825cd248f9598d12a0417758e938106e
MD5 1a80b69c29fbfc417f514be7c9930fdd
BLAKE2b-256 8d09a795fd1314a49ec47233a26ce9f7bfbb12326610636cabd4a84f31bc819c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23dbcc742114fa5df9422820990e3218305a1cf4914fda9c0f20295dab85ec78
MD5 1dd4b8c053c2a6ef82eccec99a5721d7
BLAKE2b-256 0701db3569a99ec20ff06c030fe7013ff091fb351e8ae3617cd8fe666a4aef75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5bbd84f5260921eff94d539bc77fa7a691af872fa0b1a8927a7099b4c0ea3ea9
MD5 059f75469b460970e9b3304504812e4e
BLAKE2b-256 794929ba0136dc18deab859ada234434e0e9a42c526a6170732c2748ffe3842b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0d90da581080dba775be3a1e9f5f612ec148a43dd52b32963ea2ec3819aa3457
MD5 a9ece9b3480253ac87f9663a513af569
BLAKE2b-256 5680b9630962414d79de59c924c0b79d8d16798b7c9f3f8fbed4be3a1dd7a498

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e831e0d3de62ed2602382e61b144a02b5fc0d32d64654aaf438c771aa5e9ed59
MD5 d05c9fc2740440ef6ea1934954e8fd07
BLAKE2b-256 5a01410eb114036360e89bed2891a4324e7dd5364d6e6f5748dbb28b0f8cc3b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c8e2b8c1768efbdc8c0df9717d84eaf6cd2d9315753c630a06bf3ada98785d30
MD5 ca4c5c02a20fce3e43112da9f95672ba
BLAKE2b-256 fd0ecf96443fc81a2b28280a0a152a60a1e42d4c5a98425824a404ada50ed7e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 efb6559e8854c5b389867cc81eb438837bffd5bb6874890f22cb6c0dbc0a1f7e
MD5 0fea5f02fef874985d810016a60c744c
BLAKE2b-256 74962fd4935dff03f984e460f2fb9b0935ac56a21e656fcd11b6f258d386c433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 75af762d41c773f9000c457530a65484656b6eb142875de82ae05f89c74957d4
MD5 313d0eadf2e471e564a437bbf6884921
BLAKE2b-256 b153368e9d810c7a48097bcf07151f65c413efe4f4341b10f47228b0b629a2d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5f5617bb84b5a248c875c2494f5ea8afab56d83753e4ee079d14b72563b812c7
MD5 bf6524ff9038f2c3444cfc9a1b1dcd76
BLAKE2b-256 a0cbd4d4bce86412daa668c43a6631819ba1138a49c07579cc91cfa6d490ecc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6928036f79b1c990a90144aafaeecc7a6000b5fd31455e1f2c0faae61d9f065b
MD5 8e8250c502bc71f8195d51a9181f12ff
BLAKE2b-256 a1e9d523ab78e5a51ef5414a2137f807f96d3dc3a91b5270bddc2877160a5c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a0085ef0355b9546c1c46447874026527f88ebd1a56a8c6086cee9c635b3e2a1
MD5 b11dd5849bef4cd966adaf89614e40d5
BLAKE2b-256 7f5bc764dfff18f0b00c1159bb32ac3f614ee818b5ed224d94ace98242197aca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e61b1197fb1c480abf8d38d96ae24b0becab33cb070bcf32e2dfae7a65c38a4
MD5 7f8e95429478e3ace1c45a776a2ce522
BLAKE2b-256 1833b23472fc6079831aceada95627fa2fcc99b1ca9d801000c0094c292133ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 02b25655c0ebc6a1c20832249708e8202257a12faa9c1f8ad9999937fc22238f
MD5 9e9a7f9d172c19254c5fd790ee9c0dab
BLAKE2b-256 7097b8f88eef72383d7005a3d0824b8fd60f35ac2527d5051600f3f82921c211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a42c1cad6ac325160dfc0f42282b668eb7460c1345d9b3d172ea39e2ba1b56c
MD5 d086fa0cf86f2dfa43d7b6e11630cc0a
BLAKE2b-256 0544b4deb16657f2ee8957571c1db69dd992b5ebde7f04a79dae1a600444b60b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 406da5048108b523d8cdb65fc7886d88929b47fad95cc1ed9bb17a9babd49d70
MD5 568ea8c484c4da751bec76f70e3fd800
BLAKE2b-256 a09ca92b40b28e7a29bcf4ba77cf049a9de2a2e9f6107353c5fe3367a850dc5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30d971cf4b096de1ca23d94ee2749399a8066eba59ea8942d2601d6dd5206d0c
MD5 1f6b500ea00f3a77d27652f4bac66037
BLAKE2b-256 1a5289ab4c8be237a5952862664a371ce2c92267288bca34f6844e097f0e392a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78fd06ddc636954da7f91051069705e46bd2c4a1f1e7564818879f9c0ed6f4b8
MD5 bb73bc15e8b506324a3ff3eeac73f564
BLAKE2b-256 1d9e4b45514b00a303492a916e4199962fcb7babaeb6d92696e2fe16d4429f48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 611822c92289928e85c0712a00736671ec0b897bea6196db51f631919be65070
MD5 f7e716b6167a982f32da7a1b492f1e2b
BLAKE2b-256 4f79dd8091dd1f3e62af709b3436595087edc7481be87d3cc8ede28ff5f98d94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a63e6e154c8753769b46105389df9782a4415ff8308afe55424e531c5a412aa7
MD5 e4c2da506d5308ccd3a0d3efb96ba7a3
BLAKE2b-256 4d10e74927a0ade753153632b13fd233879f9dce6422cd812878087be325a76b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 54df1e02d028bb0416d2eb410651fc92ff0b1f7b4e1fb884d34ce3cd8ed0bdbb
MD5 8437b05edd91e1ec80c564ed065739bf
BLAKE2b-256 a63c98ae4642e9ff34a642529b48fd92ae21c7eda21c734481403aabf32f58c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1c13d1047e331c2b560d9047b4dfab113f46422b5eb93fa54028749e33f6cd07
MD5 f8677f27419dfa0ed4f8ae0d5abfe36f
BLAKE2b-256 987dd2daedcc913206ff2599bfedd0e5593fd8617d57fac88202ab9d7f0845ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e725afbbb6bd9d7678210b51efd841910328e3b6810a3d1d858d7ae1d10a214c
MD5 b7ff53fedb23180c33a880d802973248
BLAKE2b-256 1c6a13511d9876c7181ba5c79960f5b25880b4876c683365954d06ab827afea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 249f142fa1f3b9a90df07b62d7adcb2f4aa9e407f11713fa5aa3fa0fc388cc67
MD5 41096cb3663708f405e60c7bf921cb95
BLAKE2b-256 183781fb18ee61cb8c994c685b79ef350829d190092ba3c50682e1a6e201e81b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35b3a2153215300deddff2250bd5b75f9f8e5861904addfd008d64ed83af0458
MD5 fdd487c0bf63192747d2ccb6cd019b35
BLAKE2b-256 838eba121c54a9ef7087c22d4262b1405b7715cebded5c521e6437b1c8121de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 89114007ba33063284de20e2f5d6c99dc836d3766e4ec690a25a0ad00efec0cb
MD5 535396befa4616e74a96fa45d2454f6b
BLAKE2b-256 e98af97303e62dbe57da207790ae2213a257b057836eb26a018c033fb16560aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b47b423b70e06be38800c81372d8985d8487db2e9e60e5d7469e134f15073439
MD5 b4f121af75e8d5e500dfd0dcd78df7c7
BLAKE2b-256 5dc79dd6f28d7d3dd0fa0e1d863e7167de07aa9003372f3f3395e5a1b3e213f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 75c0114af60cfcaeef975044383398c1b875cebb4e70ad4977a2b4c3d298f832
MD5 a1bafc72b85d18fd0d2de645da5da3d5
BLAKE2b-256 6c7fe97ba26f89cdc9b1551064e576dba12fa4c18bde2cc5e3fec35ae5d1ecb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42f8c80b601d6cb73410994dfdd7171aea37c9266d716ea760123b1e68e45f79
MD5 acedc78305c71bc59a6e7273befa5fd6
BLAKE2b-256 218762686c5ce0726bbf87c4fc9c3cb2b5920f64d408ca1e96f5eb4eb4702004

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4e5db80cd0b307193306bcaaeca1bd4127a6de2f77bfcc02d70f1c5c88d9382
MD5 fdba8b3cbca8c0f279574dca96d165a9
BLAKE2b-256 b0417d8826546f5031a8a9b030c1415204a00792a038f21337e2f4777cbd9353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e91bc0822673e4bd97b8dd68430c75f0d2e8833a079c72a7f0cdbcb23754b48
MD5 5747e11c854dea31cd38f43c0c62cc05
BLAKE2b-256 fd8c575522e246f72a15971d7346ef140ba69063345131cbe5f2843f28d841ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e48dd8878cf08b08c15e6273342c9f6835b8d0107a6793a0ac3f6107824a709
MD5 55b692aa6e240bd775c2ceffbd3ae08a
BLAKE2b-256 af373092ad6b78f82c7a5ea4cb15873a4fa68e1b2759c6e5c360015f1653492a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0e18585e348f1a139a89614169cc44c320918a03b464f5cd83c405ebe0668064
MD5 d5fd35ac6bf64d3577d3755382ed4e3e
BLAKE2b-256 a2dd0c3efbd1227af5375fc0214368be5eedb2230174bdb627958d800ebf1955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d2eaec2e173836cf3eccf765a55d08de50b4e6d7bd2ac48eeadd207ba6507c03
MD5 f7a4ae04b7f50edcb0073e08e84b6cfe
BLAKE2b-256 f9150e8d0bd43aa6f6a25b92d06426ee91a37c6ccf47534fa995943500253de8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 deb440c27d9c349e6989885f55ae43f3176e1da0753895a050b0a51766580bcc
MD5 1fa93e6a3d8c677f32b98861d5633980
BLAKE2b-256 057008a15881cd02fc7b6123d8e3c0b31efdd621438f77c125e52562907fb3fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 507a2c647a6fdedd996de695775cebf736012f060657931dd6301316f56a7cdd
MD5 aec27954768cc89b85d62527aa4ad0b4
BLAKE2b-256 6d15ea2404ea781ee5dd3f05c3afb80a362e97702ed5b893a50b7745fa1334a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8efcca3de222d6fe1b0e24c975fab2723d211ad6ddd14eab91ddd6ca183e7fca
MD5 61867313f017b295fe4f9983e84ece76
BLAKE2b-256 d90bd6942a76a5acaab197a439e19098321817a2659a16388b57f75b82473793

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a31f875dce771d4cd2d3480e377bdb84ec76bdc102896161bb669c1944671e80
MD5 3be73a18e34122b420039b768e99d4ab
BLAKE2b-256 ce4620ec7f31bf9657f2e4ab56b60a9917db062470d62d122f18adafae41c3f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 af71f54429a4a8a3e34f9eed2f6184ca237a5d44598096aa097fcd04a7cf5b2e
MD5 8b008f2330d943a0fd406f79ce273dcb
BLAKE2b-256 bfe23f127bb934c50d4aa511182c0cd32faca80c9274ac196de3ba940152a373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 599fa25b2cb32622e77f2a7fcd77e85a6bd32019f43071e81794eb414c3ed07f
MD5 23826aafce858f3589039af450c29fcc
BLAKE2b-256 01fed570be4eddbb4447709febe00b014787ad948e84b5314eb2182e6405fb6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a425e35837d81661a1b03a53aee192d88e64b69d339927ce9f945f0339c06ff0
MD5 c8260821e3397768a79be4b9d5f53678
BLAKE2b-256 a7f36120ec83a959af356043afef51469190f54c9c4bda57e7c2e29576255f29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71faa936976e4acac68a02b00644543f8627dfe7d020f522c5ac0ac6afcbd8d0
MD5 3ef47e105906f718a0fcfcba17adccc1
BLAKE2b-256 82102f7d102147d22d8681c8900e8727598b8ecca341b7429fd14b829111f8c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 22a19c51e81c6c2c2cf95126d5307bdf9ad15dbe222bbb17fee775034786df31
MD5 251b39aed371996b863c50d04d811a18
BLAKE2b-256 eb8beaf0f4a2cd825ac405f86def5563196d5114d47c90bfccbcfac4add9a329

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d681ac8dc147d174447d01b9ef7332d77d4f51f6b9925c81341032515ab2f7e7
MD5 c1903081e30949ca6ec9aaa9257c1598
BLAKE2b-256 11a591bf619ee6a30bb9d5aa570c15b7e4c3fd1c3b2793ed038363633b705be9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee75ec43c8ef0624b3a2ce5c978154f9dc6c4fca2e651113aad6d3debb85be84
MD5 c871aa8d09f8dfbca2e1852aa8d1729b
BLAKE2b-256 2f26eb1b7411a914bb3c9d653b34cad4e836ace4cd774dc86350b92377b4ae8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 7f2cb44f54a213397560b17528cf6080ff3a981a2dce9596dfc127d6658075db
MD5 024e53f61f573100b06f45732c9952ba
BLAKE2b-256 75fa73274476e0dc660f1c0cff47a4d6a63588eaeaa2609bf308611b9e6885d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.31.1-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.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 17356f4f0c704adbf1e414e407ee44a478ebc3a77d84b499b3dfebc26f9abd2f
MD5 491fff95614bdcd671d613312c486757
BLAKE2b-256 d45b4974c4f7802bb84feed7f6ca44057666dc9ec8486bbb5d89a135edfdcc3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c3b5b770ea6c1ad8316ea67e71e7fbedd4830cfd9bbb4a82d0a78a091c168aa
MD5 025db7da9138ebf9bde6ebf60d3f8a99
BLAKE2b-256 1df14fa0ec9427c6b1e423081c31ff296177d3980e62cdf8c4a46a2038057034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5961f1e8442bbcbea44c67bc4412c6b381e21d0b447066e4bf3219da6a059f26
MD5 ad350b9eefc10f36541597301a66e285
BLAKE2b-256 8ad889859e7448feb44f000c29cea6af88a755f39462e374c7799450fa58ec8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 841ae45652d3cc511c41f621be32ee73b83a04a58fc5df87204c9161edd70119
MD5 465b60cbdb41a730313edda5bedaaabc
BLAKE2b-256 ebea4692017ee39223280edb13c8b9063d983e297854a4a339b71eac476d1892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bae17c456cc0d2a31b56acd5eb6b99ef3a116c7861bf4845d58cd0f32d138678
MD5 ec71625017cefd00dee3595cc836d2bb
BLAKE2b-256 ad64cadbc83a71f0a5dad822d52417f98810887b4e3b1c814b69c379f09a5d3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 730839a83ea97655871174df65ac82840f44d40ca8ee354d3a29bbfc644c6b73
MD5 2e8e9d7bd3bf7ca73f0b11d552859cd2
BLAKE2b-256 ce438d87c6cac6cb27ed84629fae8bfe1808f3e1afc96fe9c6dced1a7a80314a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 01e6a7173a70985d9d27b572f488e3fafacbd81315e997607ef98c83e6ef91a8
MD5 d38e55bc5475240f8a09ab81c8c7c35e
BLAKE2b-256 6227d3f06016d297dc36db67f4f8a721806bb3660fc4e0cdc80fa30ef5d09497

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9ba2db55da01cb0a93e251d5bd12456864084466fd4371d093a490cca0d673d
MD5 d368bbd0e6d427a7ea4428f79735af26
BLAKE2b-256 f2fcda1f93e9aa8a02658f7b0e72fe83e25832a63339e65b26f2f2b56d5fc3cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3fd43db41bb9199ed655b6f2ee889d3167f037393a97391e680a7c79bdfefad
MD5 99b955eac5731206f983801488a39c0d
BLAKE2b-256 a9d1c5b4b79ba9e9b6ad5af4e5b7966582fa930861b958aca424f89cf2b821d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 55b675f60573b04e48b1f21e21618cbd122c29ec7a48dde74ec4e6c4386a3f5c
MD5 9a1b2f4b807978b51259743f59b9fe0b
BLAKE2b-256 77b725651ee939a3c9dfff3c5d253c4df26bfa7a208b28d4fdbccacc0fc87d61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e447a75f0d85a056f9f3708e06f2fc5632bec4722a420d1280814da396943b7e
MD5 4cb8b73c1332803eecb7711a92546ded
BLAKE2b-256 72bf497f7531b554e862994e50436f3fff2f5422f8c0280802878e33f20e464c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.31.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e3b94eadb93b4763f8530cf6ec35d5a1fe1b2bcb267e98e39a1c3131e3a16ca
MD5 7a65ec6c43d22fdaddf044d97ad4d451
BLAKE2b-256 670c955f9b355514a84c29671f749cab58541e31ad494936d7b7b402a3e92a28

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