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.37.1.tar.gz (443.9 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.37.1-pp311-pypy311_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.37.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.37.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.37.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.37.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.37.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.37.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.37.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.37.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.37.1-pp310-pypy310_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.37.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.37.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.37.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.37.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.37.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.37.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.37.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.37.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.37.1-cp314-cp314t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

pydantic_core-2.37.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pydantic_core-2.37.1-cp314-cp314t-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pydantic_core-2.37.1-cp314-cp314-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows ARM64

pydantic_core-2.37.1-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pydantic_core-2.37.1-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pydantic_core-2.37.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pydantic_core-2.37.1-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_core-2.37.1-cp314-cp314-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pydantic_core-2.37.1-cp313-cp313t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

pydantic_core-2.37.1-cp313-cp313-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows ARM64

pydantic_core-2.37.1-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pydantic_core-2.37.1-cp313-cp313-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_core-2.37.1-cp313-cp313-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

pydantic_core-2.37.1-cp313-cp313-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.37.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.37.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.37.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.37.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pydantic_core-2.37.1-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.37.1-cp313-cp313-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

pydantic_core-2.37.1-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_core-2.37.1-cp312-cp312-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_core-2.37.1-cp312-cp312-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

pydantic_core-2.37.1-cp312-cp312-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.37.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.37.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.37.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.37.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_core-2.37.1-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.37.1-cp312-cp312-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_core-2.37.1-cp311-cp311-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows ARM64

pydantic_core-2.37.1-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-2.37.1-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-2.37.1-cp311-cp311-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-2.37.1-cp311-cp311-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

pydantic_core-2.37.1-cp311-cp311-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.37.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.37.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.37.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.37.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.37.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-2.37.1-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.37.1-cp311-cp311-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_core-2.37.1-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-2.37.1-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-2.37.1-cp310-cp310-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-2.37.1-cp310-cp310-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

pydantic_core-2.37.1-cp310-cp310-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.37.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.37.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.37.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.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.37.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-2.37.1-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.37.1-cp310-cp310-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pydantic_core-2.37.1-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-2.37.1-cp39-cp39-win32.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-2.37.1-cp39-cp39-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-2.37.1-cp39-cp39-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

pydantic_core-2.37.1-cp39-cp39-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.37.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.37.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.37.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.37.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.37.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-2.37.1-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.37.1-cp39-cp39-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.37.1.tar.gz
  • Upload date:
  • Size: 443.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.8.3

File hashes

Hashes for pydantic_core-2.37.1.tar.gz
Algorithm Hash digest
SHA256 8520cbfabf8e7a303e3ffdd5ef70964a1520d46228f021934b3281ae98dbc46d
MD5 55f78d499e416f3c009d3566820b9e3d
BLAKE2b-256 e28389a5f16880bf4300a7749f3149c2bf16f59ac75e87705062820e6910ca0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 aa9105f2a8bcf0d60e20d02a94305dfb1a506b08bbd6bc63374caf381450af0e
MD5 ceb00c9dc5d2d006b9db5b2c9632d685
BLAKE2b-256 74e2a406a9c82540708110d6a2ca26b77427a8e4f290173b1852cf3a278bbb97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e027d879e141f262b8f74406549ef5a77fabe05112f289f84c53e7b0bdf70c0e
MD5 ecfc92e76efc289f82dfc8c827f782b2
BLAKE2b-256 42eec72ad1a15665d7a499d1912194a26e679c7c8a15299728d0e17e0fe37eb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 83b64e1c0f81d405e90efde6f3903d88e30e5d43eec6a15ae9c0801cd3fc8f30
MD5 700b9abfff40c1e81f37e734bf6b374e
BLAKE2b-256 b804b5dbc9d2c78edfb4b8171b07bf4b3996b915542f1e712b5c2b5d36a83ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f24fd165de034d20d86d6845fd57a801e150564b1fba6a22a52f42a893201937
MD5 17fcb102d504d2871651a6e42fd91a49
BLAKE2b-256 5d29be152e8da406ddc546054c1eb14e3e79c1244404fe47ee4c6cec4cf0af34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e82a3e9d5009e3201d8fa1eab1a5832e541461305eb9830fa9fbcb86c7e5f4b6
MD5 4d2df789cd3f7c514db2d80965ce397a
BLAKE2b-256 499ada23c2fdab3492d1357c976d25bb8d36572945e160bf93c84143f6015391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91257213596e5d8181a9793e1d8dce864c81e4f7f521ccd72c180ca3b2ee50a7
MD5 18716a55c9f23adf2b57f01e8b27d665
BLAKE2b-256 937ab7b9304b9d468620e09dfcb753b3a2456b8127a3f662e519bbd69ef89863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b49c9b499e555ff30c631f8d6329ca41782a97ddd5d0afe882a3fb4269ccfbb
MD5 a8b6ce7cd7db2e9bf75e75a5474bf966
BLAKE2b-256 a051f25b91e0f9bd5eab64752a3b7ec532e1b021d6fc91f62d8e644801717583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0b04a94bc77691954e66769af7a34e055d2f3cab9bc21bfbaa87cd9501fceb5
MD5 446fe490d953e75386e7a803c05ccfaf
BLAKE2b-256 6a412d8711e5e4ce53e52447b94714b752846f608a0c8a70ca8675bc0d53460b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a63a997220ac2494dcfaf7c78f54abb8ea44e2e6d6488b8da0696549e869c402
MD5 9cca740978de34bf5e891ec424c250c3
BLAKE2b-256 196c54563ec6806829640b5a4eb75be8463a42053429ac6c01b20cd965cfb84b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d04b2da15d305086eb4e1d585a3a2d707a03bbbbc1b2a70384dd804b92148ef1
MD5 31f4f4b29baea68fcddd7cc7af8f4651
BLAKE2b-256 6c0fd3711faffaecba87180bc17fd9163efa25ce9967082672c7f6111203836d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d69c7a1f5f8f3f79a99c227a2447a7438b7186a73d013839501366cacde96a4c
MD5 8c362bf585f4fe76f9b05a54011b40dd
BLAKE2b-256 69fa94a837597a11504a605bf2980e584b3552df12f3a3c8fbd77d92620a3404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 cb4dcae64a2083e0ad5569e9c42f37be87a505981e278af1d8446f2b4fca8cf1
MD5 4223b51c923b7e2e97f8b05eec79b862
BLAKE2b-256 e5d615e864827a578b6947cc2a8ea046eb38c91d5246890a76673305cdd98387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7a0b787ef20766a7f36086b16356ae8203db17b4ec969496aff5ec52366db3e8
MD5 a10827d849f60afda84f658b3f196196
BLAKE2b-256 b380377ef550d566d1f8cbbab31d8221b3595224e8e3a1d0c984ff84e677a529

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 914db9fe59c79f2bbade30ae0ce8a57501e9f7a5750e434cf98aad7ae65db6de
MD5 b9445ec394af38b465e89b554bbb2664
BLAKE2b-256 8f6c03324286f5a54f96076c63987712d7204c3afa979c59471695041deca5af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ef947f0bdafdbadf0a3623d6f9c2069562b0e2e34a0771fd6cb21ce171b0cdf
MD5 39661ad8b960b7edcc57116f3fac6e08
BLAKE2b-256 ed207c71aa2bce21ab6e7fbac3ea7d8f5e63bf80c656b862a7ec6a6e460916d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d39103ae1ff5325b03d4d0da74c8837c32b3949eee586ebec1d72e3dabc4ff02
MD5 c0ff72929a7027fce9917049b2c49da0
BLAKE2b-256 c3e2769b1655e89be3398dd30b4436f837be5a5c77ae850d4226fe6f61ec7f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b384240ea7b4b555343a603c12ddefa3a200a066fedb199ce4582426b47f027
MD5 85890598eae4456dc032e778c2c46d6a
BLAKE2b-256 1869dac1a23de7cd21b710c025522fea5c38fb6112551f17a962a88686cd45d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba64a24fbf30fe0df40ff73bb8458c3d7d78e1f36e96f6d497f79293f788fc2b
MD5 8ec2d9660694a6f28da7ab3654579322
BLAKE2b-256 5dbb9c4736af59d3c27bc82d6f2f53c3f0fdaaa36b0826bfa74a640223f89b74

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 6340b3ac81e4b7df83211951ebcd6995582bcf59f8050b3028de2f94d0f02892
MD5 f52c6e1880750b9ab105f564fa52ac3e
BLAKE2b-256 c201a07eddff02a6b1a132ffea4039c50ad157d465836e7387dd38f811849193

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 785e320e0dafc2154bedc1a4b2457038a78df29641b953bcc69078b57dd81e3c
MD5 571d6bed2c44a18222b62345ad9ab6a7
BLAKE2b-256 705d91f5f90e101cbecade2cdb773baf41d2d8f4926ef1fdce2e0fd040107aba

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d2387d5e24bf7a74fa4088c7cb6020f8ff206e101f68ba273d9495476d2510dc
MD5 e512c2a1c2469befa12a18799873936d
BLAKE2b-256 a0059a0cbaf9f63656c2cfc4dc30833207d2f2327df23f9335a2d7e7987b80f8

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 bf29560cbe7d7bd3d890c3aa4819162f9ad2728e6f21dddcabb86d700a50441f
MD5 84f3bda129117c49f046eb7dbec36d6c
BLAKE2b-256 9746b59ca6ec9646f5659fbc77e036de4bcc01d90ccf02f3f20ba09913cc7f0f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ad1a303a11a91b5170f3c512cb9a4d56687b00900f139c6ccd6fe54963f402ee
MD5 c2bc33f343a773700b614bf2669b9b36
BLAKE2b-256 aa4c4c56f6cf73e87ca29773e929720edd3155254888b4959767892808a0b74c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a161a9e83fb3a05f920544351c0d83ce87dfe430b7a4a6682a03f85cbc3715d2
MD5 05bdafe69e80d201395db6906794517e
BLAKE2b-256 5b892e5fac01e3b8ebff374a775688f1c5d35faddc858f08cb35418b07b1f81a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4950aef7300e5340b9a89381ec10f38a10d6f505a4edda34d49cadda75936c0d
MD5 ad412c564cbd7b767f8c2643f315a865
BLAKE2b-256 27d37e0c80ca0a7556a2e2a7ecb12971518599e36707f551932996a9b18a5c0c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d0b4cd3bf336b21a4bc75cb65a6b00dfb357a68400b5df66ce4ad23b370724bb
MD5 bb2c78c27b15d623d5ac468684bc8053
BLAKE2b-256 5d7f4ce99dba8bd374e2c0c3f12d51e116d61d3fcf7a5cf0afd5110a6a384d1a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 632edd55779fd8347459c0a0d0b0a4e61ce016c107cbd3d393dddfc4c4b5166e
MD5 db232023c784e63a1dc26afe08c8ad2c
BLAKE2b-256 1c2cb2b8d0d15a4e8d621b09cb6c03f33bde82927e3c30b584718a6dbbab77b3

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f6edca36f31e449f9922202a124672d9a3a399417968a43ae1318d6dc082c9e
MD5 aed325b4586867ec8e3e5deb4a25ddf6
BLAKE2b-256 7f776449be1c178f57ba0145c6f10701a2eaee212d0616c253e9694b4e62426b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 28232d22a3c6a7535569211851ae8adad7b4b40fc46988b6e8e1c54c2371e3dd
MD5 8fe7db0c9e5378c9d22cecbf698df337
BLAKE2b-256 8cbbe568f873482693943946c50d07078a359bd70e7b60b95bdd69ac73ac3a52

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35d66c92d5889a30f185e576dd5f5e1484570db2b181e8cc4c726aef37f2e973
MD5 4c7eb6a584e12e703d2a521523fb7142
BLAKE2b-256 53565f9f61005277a1a9dadc7418ea3c91516841560a0dea059802dc39c6acc7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6ec9dc22a601a6557463def36b99e64f246cf1d5e4dc8bd60f5c04165e6e9ad
MD5 f81c685752081869685d712c24a26591
BLAKE2b-256 7604c59a4bdea887a70fd281e9ef001cb22306828382711df198f7fc75436983

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8f1ad309ea75db5a171feb402b0aa41d4b77838cbfbeacaf89a5fe3e19453d8
MD5 7c1931511ed3bda718831df1c1bb46c0
BLAKE2b-256 c83bcce14f04e0c076955ffb388ade65dd197da94e157855dabbbef6b337d953

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 af56e4683b50f42b74345a1b2234a7fd583216eed0daa6764b11d177a01af339
MD5 d111a5a09e5f828a3e4dc1c4a6cfec55
BLAKE2b-256 f4d3af8fda007db869027441d9f83f9b6d147cc5f32a1b76b47b98fbc6eeff14

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d116d2d79ab5602fc11f86001e65ab130be492e798962d4679eb6c9f3a03367c
MD5 1d9956416586506d91110e8091816c2a
BLAKE2b-256 6b0d5d5f2a14f0af67d6183ebf42f3c6ad830c37e37ed0d715ef943e39caca40

See more details on using hashes here.

File details

Details for the file pydantic_core-2.37.1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a5234d54b4d3058fd646dfe4f2d562e04980f9b09ee495dadc42f427aef6c13a
MD5 93e08c3d0808fc8ae909168098a32031
BLAKE2b-256 ca2726fadb84d3420a4372352126453060c1d6f42a6276c92bd66bb7fa867f38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 0ae1154dafb5f9c34be12ddffa7a6ed3b6a47d65687f78553531cf8b2067c7c0
MD5 768d11d80325d2acfbb452083c808100
BLAKE2b-256 0348bfed40a54d99067c78d869b6db2c9259e3a45a02ae84d3c47c74d3f1ab1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2435e49a7f966681a4b365e4fe25f1a6b5736c3f611dde3d7f8d97c607121554
MD5 18295cf1d46bc7c79a9979ebdbeea358
BLAKE2b-256 fa6263e5466cf42c46dcf37184b38f7d60c2a665f0dffe59461c0b86b98fec6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ffaa208c8561650fc7e20e97407136a751aee2f90cc21f0fc63a459f27d25c89
MD5 da968335779b1e46df3b8e74417a99fa
BLAKE2b-256 bf3824cb8929a0c4355d25e7841b22690547e2e9659ce949253741d0315c6e09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 bc0adc9a1df7b07c7e6dfecf8ddb60033ceb41c747e7233d8c24c1aca7269edc
MD5 956ae93554136f9e2c6aba5e720a14a0
BLAKE2b-256 94ba5769a95a516326a999357942541e0617c2d0ba6864759b3583802d5577d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d36ef815f30d8ed03fb1d2a59b7ef71c09afb823cd654f9fb828f07820eff466
MD5 4e1b439bd64724fa170a7b1374528402
BLAKE2b-256 47f7494c44ac5c9caf78ffc99848d6da975fc3e85d9600a405679428e4d4890f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 66cb76593684854bd1ffcf11e8854d60ca6c8056670c1147f5ce124e056d2adc
MD5 a8c2a9d5330310d48180f5bbb67bf8e8
BLAKE2b-256 95589ae4a92b54fa7b5bd9e5b88ffc095e15603feddddf128d9811926875655f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 360207acc03bc299362aeda5151549ca5229d88f8ee7845d48ff385153ec6f1e
MD5 8b3ab66535f5a6206839eba6b8ded1ba
BLAKE2b-256 4e57bcbcec818e4956d911e8b876c9588eee753347342838087c6e8381f0dd2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 6a283547f83527f7292e58ea2f4aea7e77865e862252a5092b69382be56808c5
MD5 0b4cb59032c5641f6242baad05ad8dca
BLAKE2b-256 17ed8ba85d236a5532b1a7c647a11b3a41b7d9bc5ab60b49858b2b44f54684fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c38db5ad6e890c5ff4e20292182bdfe25619d38cb1dbae38618300015e113dfd
MD5 7ed6d0b40c850c252ef833402759cd00
BLAKE2b-256 05ff2897fd431a0dd62c31ea8cd41f7443354b4d274274c908cff14d693c6807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0550dc89003fa839d51c1082fe47d29f4deafde5fbb173560cd2544703e28655
MD5 36ef570d0f2f682430b4a0fab32bdb63
BLAKE2b-256 561ca8d2a641568f8b748e59f9bb4ed6fb1f244a32b50bca39a7349bbfaf056d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5257b3e86861a5b8ead6a4db56927cd393bfb1f9e4c9b5b6e2548dca63e444bb
MD5 ea9994e824922a04eeb8f2892c138826
BLAKE2b-256 2d009072c73c6b665adc5ef4e389c54377da643e81c8c58645e7b6a105cff5c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bcb43178340fb4d537edd02912cd50c2a9755afe82e3a86387a0ffe30cc665c0
MD5 a77442e8f37c5fb3fd5a79441ab29f4b
BLAKE2b-256 e6fb238ca9473d0ff51c4a1ad85484c7b0da2a9693c1a58698d189a62472a0fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62f2377e194ab6b0f0dd4424f8de1aca7f3734fe80980239476ec7041c105eaf
MD5 db9beace7c945ddddc5766cc55484c5a
BLAKE2b-256 89f04f57b7349943f82d2b2fec569bafefe537ac40304eba1df1d27a46f20cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae8b31cd0405011fbb7a1e426b914b11a348580d95a853a2c1b3c7c98757451a
MD5 2cba0198e623ddbc3901d3cefede1f12
BLAKE2b-256 1bd2b5e4e28d2bd76350155f4d719b2f8725cb81989dd6b997ebc41f77b45e96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fac55482f9734e078db71d572d1d28aebefa20f21ce779ff09b2c1bc6e0f259b
MD5 3ea8100bb745a9ce8a31ded78617d75d
BLAKE2b-256 aa346ba23da11bf01f48a4fe82f7ea2f32d8da16943c7dbb190201f1f8e325a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2af343d3ebc2d01c9cf980d95b671cc33c3d5616aca0f7b383bdac5c75512cd
MD5 a39d037144b3afc6f0192b7883cae182
BLAKE2b-256 e9813143bfd7b12ecef13820cb25f3ae93a4dfdeaf9609f5098d57db720a7a58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 49ef99d1306fb78160ffd2ec001950f792f448e1c364740b0681da4528637cc7
MD5 befd5ab2e7aac2596af8dfb6caf485aa
BLAKE2b-256 81ae2b071cc6d7c94a0b34458ff203b6bedc31585653463f761969505f944ab9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0694c6d6af18f59cfef44b4c767d9bf9ef998c498a1a9de6eba311b7c9c52d6a
MD5 4b74f45012ce54c931cc2f7233c67efa
BLAKE2b-256 ddde7b8725443b165d75331bbe0c49da0496e0f47b36d7cc8ff535d3a56ca25b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fbcad73009d1e193f883e7e2894af0af9d8c0fdf89a7240abb24cbc5f6df4b87
MD5 319ceffc42c3b7c24772350d09bb5ac5
BLAKE2b-256 ab16a0a902e1a2b25805282d95dc1b20319a4b38278e08aa9c00a0858cc5ca7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 690b2c3584d7f7c1185519e5fab4ff81f2d5555df9db382b0c5b13dcaf208799
MD5 44b139e1b298b60be8fe1371e1ccd170
BLAKE2b-256 9f583b6a75e84a144c8a9ba0fed71c60a875b3ac5e735c39930d39211708fd6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 70f5031319a3e0c41263c32837d6cdcaf687128933b3f7775f50371b58d40ce3
MD5 5fb105012d0f1862f50976c01ff8dbed
BLAKE2b-256 2d8e27fc6df4dee97089cb4b1a6288f0eae4b07e7dacdc7ba5c96f59ba9c7a4f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 7bb512b4a1653ab463118e412d08ebfc37fc4f68f9bc0c333fbecd5220458606
MD5 a30bdae4868b3af2481d4159d7330935
BLAKE2b-256 aede5b0138c52ea3afa4585559331cedd4c935311cda7360bcee0b33e5586659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5b5576534d0a37b9b3b073990d3534c82397d334be2dfd8cf93c40bcc0eab4f1
MD5 edcae3481cc2b1c3b0d081e441f0b690
BLAKE2b-256 723d07f4ce3f32d2956dcad53797a7b6ad67c81b5432bccdf4d8383b87e40d60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e770c9bb0cf8e93f58b82c3bc26dfc29ac01c113fa681a2991e396de112f72f
MD5 cdb2fd1509308b463ba2f03579119ced
BLAKE2b-256 9645ae60a3d4c45e1d044c2c89df2d79202938f95175b8547464cfb2cb799646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b911e8a5e4e172e33ff383370dab03e4468834ff03752f0831d25d7739a61c82
MD5 6ed62f349c15270a87eb63c7899f1069
BLAKE2b-256 c92193dffdb843ce8d58f17cf5dc52f03027344e23f30a6ef4acaf3d2b5507e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d28a602f01ca1d13f67b008da2193120331dd0e2b13ddf7b359e655bf6bedf74
MD5 a4b7a016dc6bd42fdba807a87372d508
BLAKE2b-256 6b73ffcd60b9d8879de3b808f74222adbec4ceeffbe5545cedf4f4390a56b07e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 922fba5089265c9a2942b0f70dbcc0b58411ea89b5d6cfcd2cac9260df37496d
MD5 2a5af1222dcabd15ebebd07c2ac1d020
BLAKE2b-256 88ef11baf6791c87e95cb5429a9bdc0ec1f3f0fd92dd9a0b17eeadc21f62181a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 944870ab0ee62d9473dcdcc600e2544a9f64a95b94f2ff1c0116318cc8fb4849
MD5 c1e0f6608d42cee473f17c1265221b5e
BLAKE2b-256 752592d8feb6c03eba2a32e8d471517a7f8c677c0818d69f17de80c411d1d719

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 490aa51b4e6a2ae6e2721c9837be072dd832f9884f04d97b5e3714610985be86
MD5 ee1b6db1d4f9d5d4dc475b6fa45ad4d1
BLAKE2b-256 0f3db7b7489d9d83f9a77bcb33dcff49f81a89cd379c393786279f7d6bf9ca46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3697e8eb3bcfe6b5a42edee74348fdb5d7347b9e1628e7f9f722a460f69a1397
MD5 519adc8a2adb6767f728fca08bb76fc1
BLAKE2b-256 6c7675f8b395de7eb12abc688784347c4a30248717d9b9f7fec00dad0e2c7b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b70d92843f0ad975b6975c6231511822b5109af70fdb99b40f6994d136f92d65
MD5 68774f0661f0388f39dd556538202f28
BLAKE2b-256 2dff817e138e54ecadd57c5013ad48e90bfe316a3de112ab159540d007867dc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d50213ffde69c1f0f59ac1592f90cbc160daf4d2c49555a47f081f95520daac1
MD5 a5951de793c558db0c73a6ccd11158ca
BLAKE2b-256 ea5e51703eac33d01418769774d77b7197ee1ce8a345ade28cf5451a0d94d142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c2bc6ee61af7023eea9125c026c396482fe76f19962e12c7705b7493d233564b
MD5 c2dac83bb16d5f790eec60191088d120
BLAKE2b-256 90b76be2863e9646a3b417d292f0608d6384c59e32b4676b558b8a6581e49f3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 3a2d6e41da71991db083d8f272b01dcf0d69434154666da6c6ad1a8d04861647
MD5 5412b4a824555365c3647eb9bf7f9fc2
BLAKE2b-256 6e46de24abc9f784683bddeca888d214f951bd9f32e2666007fab0bf77b127b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a7c6891f3379564820484dcf05eed5c13551862e939293f77cec408f80d82645
MD5 e9bfb5e70d3c0104a18ff5711f492516
BLAKE2b-256 b7304735dc3728d2a562686e1221868b32d222e6fb961d1c958fb890f260efdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 6508b249425e940be1db5453c60607bb72943c96e9378d3027c7998e6f9dfb38
MD5 a93fe708d4d3c1eacee73987e2fa6e4e
BLAKE2b-256 c3eac3e02d82012cc33a33febd9a32746ddd538aff608170d0651227caa25efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b10471cf782add3f165060c38686185e7f11fe0a677252e3368c369acff1594f
MD5 bb0993f72a5e9221ed9f26eae4af1571
BLAKE2b-256 5b93f97e1ea49c1412788aba13f59c5db0554b19e07db89da2499b61629b7c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2585236efd84a1495b6b0cd83fc6a2b2188ddbdf6a59eac7b9d0b87436d3489a
MD5 9e49bf915762f0187d4e635defcbfb4f
BLAKE2b-256 d8c9f69b73820dc7749533fca407f30064b771843612cfa259b1f497cbaddf65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 80458dba9e06335822601e68427d45e0e963d0972d813136af2a3e831a9bd913
MD5 82840f76d935d08e7a396ba5df264bc0
BLAKE2b-256 41b1cca3dc88f69862c0478e38bab02d85978fa3d6e28f9372f9b86026820807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97977d11c377b8aa1f5389661fdf684277199d2ede3b37bbf6da29f3afcdb1f0
MD5 646e21372f924c699e43cc9c66d8aa52
BLAKE2b-256 6127efa25391f4c32f71125b2464116ddefaf9fefbdde15239970372bed8861a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ff20c1877e63bcb4e39bcd0455d32bb73cd451aa7c7cb17bfd9cb537ea630228
MD5 a37fee6d954d011c65a7199456827529
BLAKE2b-256 631fda432a837f971d6882b5027d0f70f85aaea9b3ee02b7a64ea0e06652dcaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9056a20f0debf502dc95be71da53fb3ab53ca50f9d7f450ea21470d0d0ab7114
MD5 5b6ea55df69d532bbf80780823210687
BLAKE2b-256 407574599bfa581eb2829809d04cfda5584e3ba112b7aaeff074afe527b93a76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c11eb9b48af3e786b8db68ff71c9245b9177907947280d13cf4e5af88398a953
MD5 490c2472080bec8552dc7e90487380a9
BLAKE2b-256 3f2d0108f42b1df021cce9853bb2dede3f97f5a535f27ef4c6ded98cb5be6e86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91d1bd38c2aadb10b2bbd4d929edfa9b3ed6a2875e2ce1ebee32d4725d0f040a
MD5 01a39bbf13ab7b1c5771db38d37d74d5
BLAKE2b-256 23f8adc6ce1bb9de4f0dc7195df6024230bcdf6d3bfb3c04f50e8ad1fead28a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6d14b21eeb3237e983ed0dfdc3c88cc1e2d0c3519d59ccd1992ea38dd3426d16
MD5 b0b4bf888591a12485967503ec663e92
BLAKE2b-256 a28af8398a524b28a5190ade47c9ec58d6c09fc2c44075df82fb9ed319d42cea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b2347d10fdd659193943a9fc5be819bb390795c7bf4b7b78e1be0f0c0dec893e
MD5 843ea6d1b84d4757e9424299b16a7935
BLAKE2b-256 e1aa4d1701328fee3d81aba9f07634375db7ecd574eabcfa8a529a77e734a9b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0998b9590443c3311398edf585d6b62c904880f8682c297058254f63d60b4f47
MD5 13e4b21c568847a6f4bc15edfb2f5c14
BLAKE2b-256 99f3b9faa6ba401a622e23a104ff8ffa537f4edc1929694e054741e2642e6da9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b7f000f80bf9ab90418de15c956494f118ee8a104c62300697d8307c98cd5f76
MD5 e351c8378752235520baf5ef0b25c967
BLAKE2b-256 08e901bffa4429251b6320ff3c904a016637d9220f7e674367eaaa3af60488aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a4eac4654739443884ed4ef5c84ccae7afcd1815d396ca53d9e9c7e046f4f122
MD5 cef3ebb66fc3013f8646aff94e59b236
BLAKE2b-256 a1dbbaa516013744a643aa977dff3d8f7aebb91c7656499d50c8b2aa0a6def11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8d87facb8f0a1dd71ae07ea5ff568bea9d65ef587ca9d447e55b7b5f444b4021
MD5 d56a4fc586048e46a9c213653eebf803
BLAKE2b-256 89a9fefc54b49b4cbda15549bd21afb974029da71430214079dbf1436d133606

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9956f6f149ab72a18e7af0d451b12d8ecf8e4554095953cc66b47b2d28dd9ae5
MD5 294ea39f07479ae8966dc340fc37d769
BLAKE2b-256 d65cc9aa5a52f9bf3da2290820a2110586ac858ee2a85a21da801f08593c368e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c73591afc7579ca3a96294b33b43b16761d16cff3d41f557e421a0f3cd58126
MD5 47452e9432fd01485c4088b8c0323529
BLAKE2b-256 a84dd485603d701a8c91926fb9c302fc4ce746af186781cc150e5123b3c51cba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7a9d773dd25770fb34967a598a5272531d8f2442923241dc556644e75e11336a
MD5 11e6e2c6e442620666f8b2a368ad6996
BLAKE2b-256 9ea0a368bbb753840783dffca7c99ae0033388dd6bac505d8bdcca235760621f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4809cda7e1e89595bd9c5bd827a0d2de12eef5d6739fdde98e702ab98d091e96
MD5 31df3fbe90e853d0695413016faffc46
BLAKE2b-256 8ca8b988da985b1423c628a3b9a78045b2ceec5e55151e43f717688924f7ea4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69c098c48586639a9eede6b411376d35791fa9fa9c80e2a16e18103bbfdea0dd
MD5 4ae6d5a34467d227c8619146b868b019
BLAKE2b-256 de1bcd92db7d9c24d725e034c6d6765560fabd88f2ef0aa0c33218057327430c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 523201ea3e591ab140282dca831835b8af8b1dd84be6c9db4ed9336230bfaa12
MD5 bc1f0bb3dc5117c320e19cbeb5a65cc2
BLAKE2b-256 1a2ccb6a6775c4f9ef0881e500e83b1697c0084c746f5a8810fbf773b45f998b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4c50e6aa7b632fc4485f35abf25c73a979f0398ca373c112312c165e614ab09
MD5 4217ce848e073ef04c14bdc92335ef7b
BLAKE2b-256 5ae552373150aee8473aba9dce7a05058826f9ebc86daede5c10f140037a29b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 60c82405f28ad640f280fb623f5c33ecc81b9b155bbe26043c37e489e02edc1b
MD5 3b62359ea05016cdd14b09326434d757
BLAKE2b-256 a8475b4e4d9aeed7c6caa56286a10d6b80be95614e2052bd9ef9fbe3e7c23da2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a73f33fbf0c5fba03f3a2fe217d30698f0a8f418920d80544f3314f8fd87d540
MD5 71d0d9650c343a5cf695e2f8f73efed9
BLAKE2b-256 1d08b1cc742faff1c796144223be09babf6d20effbc5121b819ef5c3b2df00b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f091f5bd2dc8ca573fb8332cf1b9217ea45b0a06030d15f497027e3386c1ce5a
MD5 b5187df7a869b1e4bdf35e0c1b0cce2b
BLAKE2b-256 0207430a2c6971055bde92bcc87b255c95308035d17db56799c8c4d53556fe23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 778b4ed067ad9ec39c3f656d085f3d09791dc3d94474f3183037ed6e833e0f4e
MD5 01bc433f2a493cfa08268b24eab77372
BLAKE2b-256 c2ee9aaff3043e57be834b4da02b792bd0619b1613654327b5a3f7de1c7b8e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f81f44447d73a836a97448e05141012388e35d17e73778c924b82df98c5d0638
MD5 eb4a858d73417651c46d72c1c8db4fe5
BLAKE2b-256 a3208feeebae0cd8d04060a0e68b5297269439bdc27714f61cc9da45548bc39d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 269d91967aab94f0086f8b5bb9505b41ab752a1fd8d1cd644bfc09faa78c0822
MD5 15db09e030f3f6b5a498f9cc3a1bc873
BLAKE2b-256 5cd78a89466c2f05a0b3467dedc62f5974d28114e00b20b7443ce1c33dba75f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd3499cb3b4952a4685e74ec8e3ae349f4ee6152d45088565fcd15569305857b
MD5 fcafbc34086d2a02f1aaf6dc7c97ad8b
BLAKE2b-256 a76a0a87b26883afac7ba543b2296d960694dcd44aa9a58dcf0c4e6fb245cb80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f771c1a3d1cbca28ef4ac96675ba71401843e35a5065d21d517e24ced5998c9f
MD5 40b1126e8b0d8fa1a5640f7020125b3c
BLAKE2b-256 3267e2bb0180a9b6b6c7be976669400943ba9512b37e4c51cb29ddb3827cae23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0a21408bdc87b2180fe3179914385153c7601241adada36c9ee88722b842e3bf
MD5 ac3c9c51dacf700b361e4080babf80fc
BLAKE2b-256 0474cded02237bf341ddb352ecafbd45841f5f13e3635ce13208dc551d7104f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 18b00b47d901fcd9e0e24429d23e7e9906db389b1603faf45cbf620e929b0ad2
MD5 60ffbc34d62ecf1a345afc897f634714
BLAKE2b-256 7ffc855eff01e707ee68ab190df8d95066dd09e0971e4c5946da9aa41d8e9066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f066b9ff48c0759e69bcf910b3cc8f8a0b7a9cbea5b4a128f17c762b2dee22ea
MD5 f2ff9e212166852ca949fca77f3d504d
BLAKE2b-256 1fa47be68c31f3fab8b7b8140c0003e3d58aa436dcb4af4b39a1cc19870e6d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 90101f89fe365e06042cb2db7ac47b529bc983678505d9bbeae010f213cc00cf
MD5 79f8111fcc3b1f8b333f23e7e32e08fe
BLAKE2b-256 ae3cccad4ee315bc90547eca210981d322d0a7378e9c7d932b3b706dfe2ab8c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6f30f61e1ce1ad79575124a1e0c172e3c69a673e0a3271deb1d803dcc9ac2d3
MD5 66b5d843e2d2d017b7dfa8560409d0be
BLAKE2b-256 19933c6f59b18d799eb9b473a8555767528494f323d2dd26f3ff11090edca676

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4528cfeb4b9a063a7032e52859db8ce2ce17f40848f9ed05bce616374ff5910a
MD5 5489a623d76ef685587efe95a17e3007
BLAKE2b-256 c2e97a3cb5bd08f67bcad682f1d93bb8821e29dfeb855918e0436b1dc254695b

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