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.0.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.0-pp311-pypy311_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.37.0-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.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.37.0-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.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-2.37.0-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.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.37.0-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.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

pydantic_core-2.37.0-cp314-cp314-win32.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86

pydantic_core-2.37.0-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.0-cp314-cp314-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_core-2.37.0-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.0-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.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_core-2.37.0-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.0-cp313-cp313t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pydantic_core-2.37.0-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_core-2.37.0-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.0-cp313-cp313-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.37.0-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.0-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.0-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.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.37.0-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_core-2.37.0-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.0-cp312-cp312-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.37.0-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.0-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.0-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.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.37.0-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.0-cp311-cp311-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-2.37.0-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.0-cp311-cp311-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.37.0-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.0-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.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.37.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.37.0-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.0-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-2.37.0-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.0-cp310-cp310-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.37.0-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.0-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.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.37.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.37.0-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.0-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-2.37.0-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.0-cp39-cp39-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.37.0-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.0-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.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.37.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.37.0-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.0.tar.gz.

File metadata

  • Download URL: pydantic_core-2.37.0.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.0.tar.gz
Algorithm Hash digest
SHA256 8ba1e991164c0c7fb15b7ebce275f3d513b73f8a77dc77be696d36e14afa95f8
MD5 68fb7d00294730ff1609b7ed2a0b42d2
BLAKE2b-256 0a5890556a82984d539537910ac772e292f3cc7eea81368c31d68c7df202859a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6c1cdca05aee1c993bdef1e4015241208cddadf3cd4a7d85b91508c16cd27c86
MD5 d743c7e4b42ef37b2e4e36f85f3ce9a7
BLAKE2b-256 2e71e1d2179c87ba8029bddfa8d8bb8afdf44d81e1fcb56d96df33d0d778d843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 25b3b33ec6546d1c09c8b674c8a93461555d58f45caa643e419ca5478ee9e661
MD5 8621fecd2c3545aaefc32ecaeddf053a
BLAKE2b-256 dde62eab945e5c0c8a245a56c0941ba5248ad16f6279554818a2c47b68974a77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b0751dd570df9162f888fa17e8e12f7d92be82880f593a5cb4a4184683100cdb
MD5 1d0b1b5f23269a2fb129e7b0c3f78cbf
BLAKE2b-256 679458a82f42abd18deec062ba1009f98de5de0f4ee30ff25f4d2d2a230ead08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c8ea9b44b179263fb3db05634f7cf96d0b66f199810584f79c0d161fab9f0c7e
MD5 50307af65ac58a185604419f1f12cf61
BLAKE2b-256 93dbbbda0666579cda677183f2754d1b08a46ee53ed7d0b9e5363534b1fc7960

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fde49297c78a552d0e8062c9abbc7a0c110ca55c74fd136c62a529e752007ae
MD5 33d958478339086ddda1bbf605244d46
BLAKE2b-256 7e338f79fc968b7ad4bdba45018c32e760b2f39bfaa4b9719704eb1d59059215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 288dd40f3e4f84ae6c8fca6d867e9e4368c591fd2bace5563bfe5ef3c393f058
MD5 f98522783d2b7235af4059b007b9217f
BLAKE2b-256 ff3f4d9ce3bf6a5873d3392cfec78b8cede0fb91421b7157da09436b19411166

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5b6564fb9de0e47e5b97a1c24bcd5d7f4ce1dbfbf82ca68a746a45ed56074a05
MD5 3307a893d992b82c9da9e55a11e0d419
BLAKE2b-256 a51c356c7e54ed55c20dc703a6a61055862eaf5ac8cc16a9a37b8235fe8817b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1d349d8b2653c5abf83dea50d1732f5c5ceace2bd4cd60b5ce409aa5092bf413
MD5 10d3cd60e764470b315c39777a51095b
BLAKE2b-256 5da7865127b40c970470c30632cf360b1fe2839c3f20b516f10d7969fa3a496d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 61e63cad49cdee2b701239abdbba06073352951f21466307b0ac4c3ea75548f0
MD5 255956f2fd7fbf45d0dc8fa816a0ecee
BLAKE2b-256 51a1aee5793cde14544f5a50e7eef66ebbfee45f8d5a4c35b853b69d29ef2a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 90f9622cb0e532ac3cf24556a5f9da289f527a4beba0bb49cb3abc9c6ce4fdc7
MD5 d92254e43a1de97f41caf01ff299416f
BLAKE2b-256 686d9491e54f269841d3783b06645f5346b3444e32410c1946c6acbce8710156

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bc14bbe09e9d43ce11cf366d516a223e7440cbe08e0a9e41b9f78aea37f92124
MD5 fc51aaf7a84cc9580df4cdbbfacf02f4
BLAKE2b-256 e9070fb1bb25a29be117220dbca0569c01ac87c74f0152c952debfc2c15a6409

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99d5e39a5d37b382254b2bc8b2d562394c597d562b723c8f4692aac3bd14acb2
MD5 83b33cee6f1242dcf8c95269f4f1cdb7
BLAKE2b-256 9eddf42d4ed8cd372b1ec969adf27528c31a36a5ba0295b99c8c069b26e3fc81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a12e906df895d13b4fa68bc125bf07bed8832cc01a5efb701061d4caf049176b
MD5 adbcb8dbd348d742fd228b0f98d93598
BLAKE2b-256 2aa6ff42e25650f6200fd6ca55e1effad86ba946f5458221f6cf86aa16b83f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 17a697be7c020eb65ba657c4e70f5d1ec8ea5f3ae0b26259e80e0b3af074906d
MD5 6e05943bbe76b1ee3be2a09d6c9b15ca
BLAKE2b-256 e4eeba8ddbd3fe67f84157b923f05c1f71082795ff82c07513609253e71d8686

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2cddc5311666296c27892a6d22d8e6157bbace2e9b609a4da11748bf6cc116c0
MD5 204eedaead481c1b4e74691706db11ec
BLAKE2b-256 f6d2f81419b152fdcba151f38405a1dd1b9b3765093194bfd1fe7e58dae86afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6464f0ee4254b65fcc2d2ddb59fcaff918102a51baa1a2e1c6f2e1cd7c39a65
MD5 58be32409d977bfa16ff61949efb1141
BLAKE2b-256 d20da4f6156926961373b068b3d383b22a5b35c07922d782c7ad7598533eaeb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b5f2949cf14d2ad7b8eb06a8df131e06911a310488ba933ae3c0f3e48f493734
MD5 ced64686529383b35aaede9c3118a2f7
BLAKE2b-256 6e68d3538ca28ffb288e97f93b259d228047ed9185463303bf127c1459ead604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 ba2b13ea3d760f03c7e0ece4d9f9a41743d3015868b13717430dca4a041c0bba
MD5 78bba46de583d171e1f18586f404baa2
BLAKE2b-256 46bc72ba595924320ef1301c8a71bd018d1abe663989cf99e8593d9a90af3346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c8db1c6497d851502d58b0a16b520d59affeefdcd4cfdf39597c40ad6df5f5a8
MD5 b366152a6c69ae010a5228da5b81d7db
BLAKE2b-256 e0a05b8a1d85253bbcc006273d79524247abdb6d6cf60ebe12554744205c9bfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7e87bf64d0cd9db8df617e0b105ecb5db842f511ab8595e342fcbc73ad0fe6b5
MD5 c254a28041cb9f2f40193c3f7d50a71d
BLAKE2b-256 f3138c7aef00232db75ad0268c0eeac3c3fa541aa26165985abd6632f412e709

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a8bcb530f44cd9648cccef889398e1f29b460598cfc5e4be4b1f0284a3ed7c07
MD5 f15f0f8f5f23a151da2de7e81241f67b
BLAKE2b-256 8a90b2d93f9820e480194e8b574bcbd645d325ac6d877ffdb899da934a6de267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 62c7f2007c94898c707ef0019e6c5125b23a464106c93e48ae247373a8bab18d
MD5 4a31aaf36529072b56c77a52e9e22554
BLAKE2b-256 2cd2b62ee2488502e3acd4c55796fed44c98799c2a8886e58704d5f6d8cf7c2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0d61c53b0024e5f32c1c136a445ebbb12c78d6aa59561477f7b5bb2befed2ada
MD5 baf963ea8b700b74bcf2dafdcc57c701
BLAKE2b-256 80f0de6042538b0bf7d4ab3f8f512778ba0de6651c76efd5d9dbdc0da0f80ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b8477e47aea1696ef66ee01f9cb6a2599fa21f1f27d9a597c0a06768c7153cb6
MD5 fb60c0610f1587a0578709a23f198f4a
BLAKE2b-256 4cf1796484807881d2a74d7bc6aca277c6cd2f15a82843feeedf0c1815c182b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4353d0b66ef66f958204fbf0b65cbef5e706650f0f097d79b523019caa60ce09
MD5 bf102b3492b535d848c6487cb25827da
BLAKE2b-256 adb046081266aee4c12086c0c9b271cf57bfd1fcc5fde9f0fdd89531646f598a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd50a6d41c55dfdf12dfa63be1899965925cc4c606f18935d75eff8e38196c2f
MD5 3325c6df815502bff8ca0499feedba80
BLAKE2b-256 ef720decc42620f7f8e3c19d383d61a15dd4461bcd1111c377574b013e5dc0e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc2681617cf47119ea6df00513e0f3e51ef1d7acccfe57905abe9ac9c0b3df49
MD5 bac9bb47c2d1225715d549e08477ffc8
BLAKE2b-256 af2114231d32adfd568449750e751997f9a0e8622c630e6ba9c03e2cf51a4f1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc866be31aa4238d5f3bf0c80f01b1edf343d98c97438e6ca053f701037c341b
MD5 ffbe95380a327440a19af2a121271b6f
BLAKE2b-256 8ab93fde5803ed105f63a2fd43c2919b1dbb178019c324f1f3015f4c6e3666a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 822a865041b33cf60571d5494ad23ec24f1bee30959d72d8005ee8ffe3d8585c
MD5 73bb0e6593887619e10e19e25f3e8563
BLAKE2b-256 9e9e5c56ff7ce669bd799a9e4144d5189b1d57f453cbf634991524e7ca76f2cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a835ebc56b162dcc74acb8b409fcc5ff613a0ce0fd853e34c841a2b07907e2a
MD5 58222d2ae31bd88dda7db27b4b978147
BLAKE2b-256 1807c7d595c80a3dfd8f16d674521304b5cd64da944c5c978ced60d6f2a40a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d9498d9c72a9d84644f1a718045e60fd650678e8ceb8b2c97188e1d8cbd382ae
MD5 24c8a8e0b46aae55438bc7d9526247db
BLAKE2b-256 818ad792162fcfa2b858f7c8292d21480b9083e585c8904dfd53cfa12ab4b802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 aa05f48a11b82d002e3071b44f5e6d0ae7a8278f6206c5c62483e747719ebcdb
MD5 ae7d28be36951e0b07cb48e95c555a8f
BLAKE2b-256 88891a8eb0e9bf26071be692cd4019b5f8be600e42ecd2fbb24d459e2792fac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ac78b2fd8c71ed24111e67ff1f890f824dd9d7b2a4efb1e7b7921d9ab2718de1
MD5 48fa161d1680ace0a92fe34f00f86d8c
BLAKE2b-256 130efbcc057ef6c4954847b9e33f274f58269af28667248a02a79ae0e8bcbd92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8421bcedf37cc3eeee2a94568fc0b3b47ca7ff06b8ab6df21640c12da66ae6ba
MD5 f6ad0d52bcb210595a9af37763688c74
BLAKE2b-256 a0555f219497af41e0396e43fc08f23413ba24590d876eb62b3176e839d86615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 17ab6cbafbe98733f8f23e34cf54490ed5b08d220b604baa4780fb9c311f508f
MD5 59c13c97edfc2876d1ebdecc852b1d8a
BLAKE2b-256 48279255d564a74194bacd901cd609982150ce8a05dc41568f4918648066e624

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c4f124f39330917e9fb1cf90dfe7dcee72bfef000720f9dec5bcb77228b3b646
MD5 a40a3f8ac965573a7f2d9fa6d0e8e3a8
BLAKE2b-256 1466bb2bfddea48cafd7eb3d57eef5ca86c962e11dbf6862fd5d45d2d87924ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b2bd78e2372cc5095b84d653216fbc3dd0415fd919e03a852988d2f75b1db274
MD5 3435a834568a8de7ab8c34ec04e120f9
BLAKE2b-256 b4e880f3d2451296ba4fcca6503bdb79b1a88a833f964f0db078eda745c87bb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2fa708aa0394a4f90169a36229f0c89caa4e6533c981072d988ec73c39667829
MD5 900e19541d6c3dde23ab831554386a84
BLAKE2b-256 41e6eea6ba7c7599860b6baafffa0de68d33610c2610bdbb70df78229a3369f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab8eafedf9b84dcc5ebf7bca30417f52da76a4d0054ce8c1485fec528f86bbb2
MD5 16c018492fd5a1ea1f5735d649eb486c
BLAKE2b-256 3f006c20329649f0bdbc2a9813a8c36c5a56f6cc8f1eb8b5ac02c98d41552526

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e02686d01c1c8fd44003f3c1870c31b81aabba7edec735101fb85f91cdfbda7d
MD5 153015cf2ff74c5ba74371c74d9f1e2b
BLAKE2b-256 1f3ec6a8ba3c2b0fb3157e8117e3fab12a10c5b5766f20e73e8c9d67fb0521fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d0f9884f6f38926e6f1c21a915555eb144baf560ccdf16c5c53bb1c82e541161
MD5 12e9fcc0a5b93fbffad97d04fe32818f
BLAKE2b-256 5b4b3fd380d4e8f6d57cb1794667ad32a77ef32d5d535985e31b932787732664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 62f109f65c0cd57af45ca588d8e01bb5a95398b0701356a9e9991ac8d63bca68
MD5 92fa6e569f7863fb04090cf8c38dd26f
BLAKE2b-256 f859bda8a75cc3c62099f87e36ec04c1ad10c1514b89eed451927b35047f4667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 f06ff432fccc2295f44a520a0ed3c82fe04b2a733749cb1b056facaf9a79c827
MD5 a81a6acbd4f92ef85ff8848dc8e4a87b
BLAKE2b-256 5e553093e5c94c858dbe0bf4d4c0b890d601d164fb251b11447b832a9395f592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8c48a61fa701d90831648d66a8684cf47cfeb14bbcd00abf56353f108186b213
MD5 4a88a60eae5c88bd1cb64980c149533b
BLAKE2b-256 55305cd146846d440a80f509e44c60c0165deffb6adc6c4f15e8c4934087c3fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 6033a1c5866d8bb97eafd2d31c22f233338e7422a4fd909a4c04a7020499db13
MD5 dd438fe46d81e635634a4936a9356c20
BLAKE2b-256 9bccfe5fd60339c1750652112c3d1a6ba922d58ced4e96a6cf5de63438222fb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b6a31d7fb489a41beb72470ad23f367e96e873ffaf7bdebb627b3aac7777f2f0
MD5 55abcbaef3511300eb20ea9744f3c0ed
BLAKE2b-256 f5ddb18c42344541feeb1338cc8af6f462e2be6ee70aa565b2db8c550b9a02e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d6aa3ff21107efd34e2966603dbafdfffbc780c1a1ad9665d52f2d2154a832aa
MD5 d7069c49ab2935c81852c5daaadc3684
BLAKE2b-256 c04267503bc4adbba66d354ba840bf43ff0c93b601660719975c8e841f57fbbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0a41fd9ff80aeccea2912a221babe8d496aa9e26b793825d62c573bcea685650
MD5 bcf5b0b02e3178e1870f02f649f9b84a
BLAKE2b-256 1c9a9044bf35579dd0aeaeea05c6a58007826156ee3460663143a78776f4e8bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bbecdf6d1e88a0906ec0a3c0150b1f01001bb3433d4031b1791305e10a956724
MD5 21765e9004abf8dd5dd3b5c2b8a3c57d
BLAKE2b-256 62a5d79cf2e5b0490c283a8cf4e878e0ce802209314ae6e97e9e075e70db8627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ceeba98a35b4e80d4dee19156631fe9087c93ea620815ddf6382c5905831c7d
MD5 57bd69d55e12455cddb892e078ae790b
BLAKE2b-256 7024c10f496855d83c2fc5afa99bb4c2d4581a6f8085659e6c9278269a5b5ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1cd549ad3b63c7f41e72eeb5e054d7bd9610b500c5d08ba7c78d05c98d740d75
MD5 030499d1097cff30e2c8c530b53f6975
BLAKE2b-256 3cf5a674518af05897c588bcd385c6baa2f300b0c528517b760738af53997eaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4acdd0bd3ca7ac4de4b460fa1abf63932130b4a25b33b8897ff44940d037acca
MD5 caf072bd40e6345478065ed4c3a8c64d
BLAKE2b-256 b780d1b8572099d3e89eae86a18c6f2ebd0178c7fa9335e5fc2eff37d87c08fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 55c232f850b1a27362d81350f421d0d5c54a9a68d4c0d5b4c937fe29580a9c62
MD5 f7b41393ddcf746553af12d3dee519b8
BLAKE2b-256 781cd568b1403fec9178b980061b5f68cbf511bda71c3d9857fef47a1708263b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 58ee0501526083cdc2ce2d27f506f85cd8549605f1d5693c1ffd597c3da1e529
MD5 c3cc8ec4855a0aefc355415806fff611
BLAKE2b-256 ba573534d02ea546dd9bb405a5fe66e27fbb7211051fbcae83995eb77bb0ef61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e28ee846018f878a1f8af96ee4c021bbe27d320fb883e350b71e0e40c8f9b086
MD5 e575fa3e77d67715630597e294176943
BLAKE2b-256 1ab40bfc3b8b36ac42f3faee6cd0c53d79810456a849f888722ca9318f6c28a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 73260952e8775ed4dc7342424a47822ee2fc65d46994c5f2e0d3b44c76fd061f
MD5 3177151e007dac0ccf2a1f7951310933
BLAKE2b-256 644bb6aeeffcec3a228d150e0892a4e695d335e3bde9953e972e569b81ed6c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ce6731d28158df0e6a6e945ff80344ccedd71c3bfc0cb88ab8c964f8476c708f
MD5 655225fc44b2b98d3cd9985a0583733b
BLAKE2b-256 9766308259a8ef5f46e1ca264f50ae99686c53f80ced256a16022d1b555cde25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7395c9dc4d842f5028f1e9c2d4e0056683475dd51d9f6c2e7c855849540fd75a
MD5 faef12b82eafdda3cd0f848300b9ffd9
BLAKE2b-256 fc78e30d3642e21189bb3600d658c2b28fcb023c96573f375193f9905258d02f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 675a5af24b0daa798207db0a68f42796478e88ff20a37ffb6cd72e7395cf0b11
MD5 c6a1704a407683ae4cebd370a8e31022
BLAKE2b-256 c7401d52b20193433b0cf08bed5a03d7e073d231a6b58b2c107d1ddadb6cb1c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 83d3c19a2fea4ee0c0769b9ca47729af44fdcb0e2803a6373618c440d8196a3d
MD5 7ef66b19944afe158d798b7cf596e9fa
BLAKE2b-256 0da684a30121c8ef6d5c7407bc93d76057b07ef437104adc7314dd82c99cbdb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4de6a5505f56f2b2c27f307a3c82c66911305028d9c0efabe014b500c3500c7e
MD5 e9261e3dde1ae3ea64b7b555ae15e826
BLAKE2b-256 ac332e7da07be16b292b8d6fe27b9b850ebafb5ff4a063c0c3214d761c707075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b8a0e139194b93d0640ec865015ea2d45961935bd4e348f5daae97b66932c8a
MD5 661073a5c2727eb4326618c18a5905b6
BLAKE2b-256 924d97b50e51a7e6b75011447a31b2cb62b9a2f064cf50db3a86b11751ad3429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94aa334a0e28a3fb7c58785c079f8bd25ab080ca6b55b82a34e87de2ddf01488
MD5 0c396094b2415415a0a7a44f22babe5c
BLAKE2b-256 804b75545a3a01a57d8df03dd797a6241abb5edfcb158407c8d2cdeb12c4d876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d982e7555a2290f19481c03c24dfe10d23c6ba1cc4bd26ae63973bbc8dbb6523
MD5 8fcac8ad066d18131e65ca1ddfaa0a63
BLAKE2b-256 f04955514c115f6c16797e0af72f1431d6d112b6d3f4038cf6b76683782174b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ab493ab4b3ee1ea88aed36d3fb28943833821b0d967bad43e606b0d3f01e757
MD5 5412a2b2cbdb296fad5b64d8dd968241
BLAKE2b-256 4ae4d17f796a4475e26517aabcf0175b0f3be96fad205a878ace1aa4367edf09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 019d6e1377d869f7d68efe33578d73e66017d88d6b5fe5ceb4672d80d3c92545
MD5 9e0efb5ea993383564b934e4dad75cc0
BLAKE2b-256 b332845a7d3c49613ad7e4dd8f917e4dc97d1aac2646a860413e8671444db3fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 fb3f6ebc86dd09d88753f39105bd04fd6423b7f583593097673ab065269616b3
MD5 c2107b784d7aeb6050a248b2ec99668a
BLAKE2b-256 05a0690bfc33d5305959978c409e20a21d9fa14550b073a4d0852b287b74885d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 a923f8878b7bede96815cea4c7c1fd8bc37527989530bdb4e0558af26063ff49
MD5 18c360d13fc1ebdac5cb1f8339f88c5e
BLAKE2b-256 c12f5e7562f7aaa11d4d4bcd37484ddfe63caf61f23a58d682cf91c8549d1681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4897f95e72b3634981aee94bc8f1adb519b9c2007b141e6b4ad50e3dd60614bd
MD5 78bf311c9f54e08381b097ed2d9e340d
BLAKE2b-256 4a88130f5f035b86b0aa4bbeb7eb4c867f260ba122c9f8b40cdcbc026024bc0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b18d815fa0280d02ebe0939d12593ebaf58b1f3f50806e958b74b58609baf90a
MD5 6bcc615f30e3af380c45619ad5f91441
BLAKE2b-256 07072b7aa7d1f2817a198d6079ea862faa789650078299662f016c60446e7132

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ab6afcfb011badac43327d8fae1d1bc1ca9ee47ccc2844f9627b45c15ee0d268
MD5 3b77e4eb40d92628e9e0cdd30a37d3ef
BLAKE2b-256 c65726ad02e9290a55742ea5f624b07af49f7c8510588094699c54eea9ccaba7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ef13330b60329a063dfcefe71af44af12e4b7e51d1af548466371a98634c5582
MD5 0b9bb7e7d898538e4d19fdfd2c903702
BLAKE2b-256 19ab27f41d7942acc40a615137459855d6a4f5b1f0f83738cd2c36c9dac7f563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36bc7916fa6a728a3873df08694b04dd27e7b9bc17bee96fce477c88b549c7a6
MD5 a99eff403dd043b6309680b7365b4cb3
BLAKE2b-256 285e6d924bc17bb5b54d0120945cc1b44dc47f6d0f7cb780a226998b2fb86ddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ac8e30eb45055b44aa0f3ccebc34670819ab9cb983edc7392d494c4cdca81c6
MD5 11792914d97ffec2fe98c46a0f5d8535
BLAKE2b-256 343c5733a5d2479254187de978a0bf7d09eb381009bb99f0804d160aee795333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e88ca4b49841fef83a9068d3cc243f2d32804a691489ba56d472f4c338549a2
MD5 bb389287a09d23e8b5592f1b800c4041
BLAKE2b-256 c693eb1dc50cd2e36b0e13f422a98be8c77b4559131bc99207fdaf19a3306086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b7333d620cddcb060335e2bc3eddbea7ae4e5a1420d94a3bd7f84c426e7893ea
MD5 c606362da17cdcbd687a62185bbc250f
BLAKE2b-256 6c6b20d2bb795ff97b7a26d4b40579e4b50930c170c48c5f679da976d209d42d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff810e38ca043da347940e4113c40183bdc077e7347407018b1df51acaa02a8b
MD5 a40117f011717ff037803a0689250660
BLAKE2b-256 be1d73af8c793c43fe3dce25ae84c4e9647890415e03a9ea7391262ca600ab14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c8f263f190e8b6ae766ba273f3d308f8d019c28b000b06c3a35db9d1db911206
MD5 127da0b0b961f6d82eebec1ccf07412e
BLAKE2b-256 d83814676fb116abf15fc5aae7f21cc73de0a468f38288eec2d1ab9343386c80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8ab9f63487f418696bf3e953a04c5381e34290c1cb9d1f0812310f43de830dc9
MD5 1a33abe251fc1771765e3b0d8af49c0d
BLAKE2b-256 b19cce36ec2457cf2e72663febbe32c4515d38057dcff923e5b8748e85814cb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 de948a2e9ecd01d72f9fd12fa7cf1c79f3c63cbd607f11b982801bd8f01b46d1
MD5 ec8b67f11af695066863418ea3b8a10c
BLAKE2b-256 59d67754c517e864e438fe6e8c554f6f7ab8444b1b387fe77f6a2e81f30ed742

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b492a1a2ea9d496acbb850fd4c7216385bc226c97e5f61ef44868c9633f63c72
MD5 a3f185d536cd8c22825f9c07aa75f9b3
BLAKE2b-256 5fef34b6798e97644a1e245be07e7e4e58bb3a87906dbfb7249f6eba8fa34928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0d7f885884192bbf32baccd8e3e31475f5ec4c538b05d7ac6271db2177b55bac
MD5 4428cb29e438c9b7f31b98d2bcc59a20
BLAKE2b-256 00521cf070d3d2d22a3a8a5d45806fb0ab5e6868d907a85ddb22b48a26be301c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55909701b3e2fda1adf8e53739bfa611eff9b8f7d3eedaf8b9cca84c82b6d486
MD5 4075505721df3da930c9338d88451859
BLAKE2b-256 97b80dd0040749076e3c5a14f36699bffdf262dccf48a402e52315a45a7453ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58e39ee611a5aa551cf79f0c08091d0e4291c79a22bb8841e1a1f36a2799debd
MD5 7714dcec754c587fb5f35387caabc6bb
BLAKE2b-256 4da5a7aa56c7bdb889d00e51d12d26d50be7e42e0496edbb23dfd75255d95643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8727072299f47f2ea559534fecc958b838229ddc0e829d92c6ba39af9b140b98
MD5 45e0ae32c0d22d8f9780820eace0dcb5
BLAKE2b-256 d4f891a0ae97b6b7df96a2476e6a91281b1dba0f6cdf5fc3f32800f4d60e8ec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48935d8a5e448777bfbbff500ca99a4cbdb94f5eb7cd9c851d9007ef76da1c5a
MD5 1d47b39952e52449e4e26c244c926256
BLAKE2b-256 9eb421dd74f6bc23ba9d2ae09507cb2afb17c6cf77533ffeda7f157951a8be86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c908cc418aa80215f5602f7587ff293e64b7de4b9c380cc054a22a790816e5b
MD5 0e0014f208475447b79ace6a776feb3c
BLAKE2b-256 487451c16de1fb027ab244b67e111e97ee460fbbacf30fe93ddde0431fbf420b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.37.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 32d54601a79f9ef4c776ac77225be2eb3939cb350b39f8d4344f8ac127a46642
MD5 d161cab93c1e54e05e45ba6fe6a66911
BLAKE2b-256 7c7971f7e6080323d99e62096be9950e29f73d6bb925b1078a0c8b20c47fc5f6

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