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.29.0.tar.gz (417.3 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.29.0-pp310-pypy310_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.29.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.29.0-pp39-pypy39_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.29.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.29.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.29.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_core-2.29.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.29.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.29.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_core-2.29.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.29.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.29.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.29.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.29.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.29.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.29.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.29.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.29.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.29.0.tar.gz
Algorithm Hash digest
SHA256 05cb49f30ee6fd4a554f14dc2a06538931c039f02329621d57ba00465613d28e
MD5 a993e1135514f06f0b9755c159e6e6ad
BLAKE2b-256 79f6904edea98c98c09b8d618d619749af19a50ea5a71b9199ee2131a5a03dfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 12f914125c9860deb7f4a47c1581d07544e4e093bf0d2ecb0dc3f69df7ff86fb
MD5 1543ce947c15c502f697265429be31ab
BLAKE2b-256 8eae870d7143fa769c3046facc4a04dc9411f144b61b33016fbc669d72b9ac4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 28717a77ed32987754da41c65005513820282fb2d94e6a0840a91ffbf7e8b50a
MD5 c985c5d12c278d91c88bee21c310d766
BLAKE2b-256 e234ae91ff9ec4829a70bbb4b12c581fb3645e6d66913ff3b5738009d7941a81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c0e2cb7d4fdb915b6c8fcedd2993e0129cd2e0d298a8df56ec6e89c67f122017
MD5 15e5447b6fa160d0b810c70719d22e5f
BLAKE2b-256 d80b02c69b4251c6d568bd91b3cb15167ec2f47754b3c7c91def641f7c26e20d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b2031357c4b661442cfbb54ad90f46af4db24c8dfa5adc43d3164616cc165137
MD5 534c8089660593489b0c40c22aa3e7b7
BLAKE2b-256 dfa45303294c7eabcb51995e351c0ee2bf733da733b6e6f4148fe6d234f6d6cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd38661628e88ff5c7554b60575b58f6169eca736427a71271f18547104610e3
MD5 7b12c59cc946fc67b5476a7230c3fa46
BLAKE2b-256 c767c7b1bfd11478454c5741da48c3358f0cf126abb421a77bda25c1fc1d7af5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d1ca8e0b3270f3e52041bea996e055dd656e8ba527ed19933d39265d5354bd7
MD5 7fadc4fdd133b229262c781528587ac6
BLAKE2b-256 de2ab7ba84410bf6a6aebd54be01ca230e2bb85645bfe1aa9ae2908616002e4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5efd58e083222c3e9404414bae9ce69fbed811a8dfdf62733e5c3106fc32501b
MD5 1496c70a7cc52c1547600bd1906cc68f
BLAKE2b-256 d9b450a58e2cde99b5ca2ad56f8f4fa344cb7ac1daf8f816778b7dbf6bb14cfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20321fbdeec98de3dbf923e2e6dfbf2d926d072e3f1c4a24225acf87294e83db
MD5 13e597a85bfa114a45035ad37af39517
BLAKE2b-256 58c7c8e010e3df73ec9a4ebfd85b5871aac82875d3e03c5882c951efd3d53bf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 09c160565ad434b785b64985bef1d4dc5776525ca57f64107e91ea9982db70b6
MD5 ba9ddccc005c0cd46db64ffbe56cefa5
BLAKE2b-256 9c38183a6b5c005c01c1d7a5b86258fbe0fb82da865ae82b34a40c7227c7886a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 98112e1ca368f6c6e157a556f51207b81f41380aed3f328923994647da71a722
MD5 df8989ff7f7e72cf6ca439addc8c0610
BLAKE2b-256 ce5861bc37454f0021d1586370e1f4e2a39c9dbb0e5a14055b11abcbe583c2df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0088a001a25cdf65d9ce7697a5c01bc20e7d39b9ae1bd3a6c1e53156cd1e5c0c
MD5 06842d0c355260f4d9267e9317cf2741
BLAKE2b-256 56addb9b9f14f1cd15d1235aca063d319abbfcc10c2e4e2f581ee2bc76eee881

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 10c8caa107a4ed7c1ec8beaff5fa6ed6307b2cc19eebd74ef11ac77abca78891
MD5 97d2245ebb61a32df501085f7f55190b
BLAKE2b-256 1b76d09767f55f7eb55fb17cb773567b732bf66a0e10fb14bee3b867a12cc00b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fbccce95304a7072aefad9ea390cf7938dbaba9135515eda5eb394e9055ac6c9
MD5 76ea2405f8b923b4139135a0a5743f78
BLAKE2b-256 6b8712e76a130e0815284deef63cb2e704cbd219dea552d35d8f18e7d5aded14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48f76eb2fa415dc2d765546d9df6dc22c7eae0d9d42fe82979d468b6cce75f0b
MD5 dd93240aa3bd1e41fbbe56591fd2a0ae
BLAKE2b-256 75fa05fd41bc68b628d37138406cf67b5dc4b3e2e80c95737aeaaa5200feea0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 906acc539182116fa24f7a1986daa90c5cc06c5a78edad1085b2b12a2f9fb2ef
MD5 ae862884cd7bfd394be637241fba84e7
BLAKE2b-256 cac21bb0ec340f862b0c1eca41a151c7a15303935bf9f66c2dd933964082c0a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a6a40541ca3255ec9642e01c1dda3b0fcd92b5beaf150c5548ccd86975bfd5c1
MD5 4098636d1e4dba40790eb2bf7ef3f4f9
BLAKE2b-256 27fcbe991183ff5215d6c95b459ab44f64078fcc79f48f373550d5d1c1fb47f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72887a50331c78bebcd9a158339653f642e8030e716b527f56eb0cc217e74ce5
MD5 77edf17342f9dd44bc940871917811a4
BLAKE2b-256 a1e7377645799f3c87cc8737331641e2510552b96d1e2bd364287beb0522c903

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2e5e977ff3db03907f61205dbff568541468c70cbeefd246b464bb3ed88c2b83
MD5 d38f14750b7cb3a403c64d474ff241e0
BLAKE2b-256 b12733458af04b8a7f26c84a92f19948cc1cbff931d49a17fa51060f059d5432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 00d6b6af6e1de398fc225b333288817555bfe9f05dd26af9ff1707543459d03c
MD5 786e7eef1435bd460173e46987010f4e
BLAKE2b-256 82a3aeff32afd2fcc2be65257a5b0a012658b178820466bd4874704f35892340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c217212ea90ce79f5cccad8c953cea341d63a92bd240f0512e67a735c21a19a6
MD5 9d30daab154747d447474e5c59502a60
BLAKE2b-256 2cbbe2e96832582cfb47fdf596377ad70d54c490eba3b656829d53688fc8d49e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a743617f622482c1ccbba82466e175687915fea994fdc83f4188233a7405207
MD5 69e80cdecaf1b3b6cdd010a430aedc5b
BLAKE2b-256 f40b6ef557823655ddfa9e86c4c75652ed47542c69327a57f5448e847addd205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d0bf68e9ab0176869ef7d62d88f408bbb1d2a110b6abdc6317af5994722f987d
MD5 dd5723acfebf3c4c0f573052dc9fbdb7
BLAKE2b-256 e4d86e270f4aba96895f172e79afcceff81a4bd3e9db999476141c72132a5ba6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b585cc038992f6dc6431a354e0d8293548c548f6a2c2fbc223c80c32aab24aa9
MD5 b160653bd8f6e9493166216f0a1aed07
BLAKE2b-256 4378ba1bfc367e6197e9f986479c2759ed3047367f2fbe0b09b3bd9265232be3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d57243e26a1f995d0eca80b0f0db9e74b2f4ad65f279f26ec8df639b0e600675
MD5 700d823de09c64ba55c453131b8d536a
BLAKE2b-256 c5ba9062e319b965fcb51f1d213d94ac174ba0c4e30a5b0734c482617f1dc069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 daa3de513ef07c89c284dfb5e18100e082629ebde7d427fa87e02ffba8f3872e
MD5 c63a8007a8b4fec71a790c54ad56d7a6
BLAKE2b-256 b3c5dfb65e2f8734ce4bd36e38a95945725e897dff4c428a58a5e80390991c8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 6a978c70e42dbb90c9dbea4429ff807cceeb7c4ef7e2a9e6942f22c28e1b27b1
MD5 6854f1c9240fa4c5327672da42c9745d
BLAKE2b-256 edf560b4ac2e2430cb8787e61d04c5ffbb901bc56769c33ddc71571eff2d594b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d612c46e0f1e03a3802b8cbb6da679a8ac6c97744c65df953e8ef36cc2919f5d
MD5 fad179162b24d53093fd28ca6f1974eb
BLAKE2b-256 dd031cd776a47e2602cdaa95cf0fbe9f3fa442edabf7b8c9c14fc0e8e8e36892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83008a96504be140e38a30a2f51584a942419b6d0a7214c84ba760685f4bf0b5
MD5 300ccf82ddafa0760aa174e03f69aa4c
BLAKE2b-256 dbcf0f993819d46324134f8af0e466a932e6b3925553b101170bbe4f04ba5475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e4643b48b19a0bedc4c0421d8488111feedf7bc7e044389988dd9bda3ef4b78a
MD5 3496f22934f7412e3ccd1736f22e2555
BLAKE2b-256 7fcb847727eb23b6f2d91f3f50e413181f1d5b3ff930bc1a90837a355b1f5e13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a58c6a92097c62bf3cad0baf44858a1a382b5ef1a2800f3d503a75f61300794
MD5 952ab1430d1faabf527d113cd15f89ec
BLAKE2b-256 5ce51bc652fde35f7caf1e0e8d9beb89de6e3daee45d8fbce1637a5ae5ef08ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54922d8b3b85623f2256f6a3daa3990c47c2ff3805c3660ce9fce97f455a424a
MD5 eeacf9db1fd8a833e167bcdbc63908a5
BLAKE2b-256 8d509959a025ea0a7663b7e0c9055c2add43b67de81fcaddafb62e91bcba37ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a72188f290bc97ea4c95e59194b024b58ef39e7e6ee53ee882231194ea35a02
MD5 6cc815912b192f1130ae0665241dc893
BLAKE2b-256 e1ef9463d0b3b549de45638fcdbad8dd43b85ef1d2001ac09525b80fdd9cc7d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f8085e8530eb6a231b2261cd03a4a67b129cb5a78ff3b16efc7b090688647014
MD5 61aaa9e91579eb2c7f0eb81a8436dd90
BLAKE2b-256 6bb49470f68933206af897dcecec479cb6d653b2225fac576f0d2144d5b9f100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09cbd22633b539e0dc3f5ee4f78e3d3a09b22d620e891f4d8bcbc86a61554e00
MD5 fc302d480287ae106b1412b69c6946b5
BLAKE2b-256 a980ceae62aae8fc9cf4925eeb5e299993235986bba6a38c55af55067b6eda71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c35461bdb979b5073e03db9e17ad552c1e79b87ffb6fc41c8826976ea7ab8a8
MD5 975ab0c6df28691c5ee56a4d8efa03c0
BLAKE2b-256 3a7b9e21b3220e4ac8435d548d67ecb136f99ed3cf5dd3773f9d18994563c570

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e37ff0c906f4931dbc6866f8b0c42613b80306772b9847f409086b7f9d762f65
MD5 8e9f0041c2d08532ed92ed2c4fa48754
BLAKE2b-256 64775441b9c31ffe49efb4a3e2458fa886befca4201cb2237d1320646cf78047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c64195be924b9a0658aef39e049afe10bf491c7897de84e2282152862a4afbf6
MD5 649b914f6fd134a26ecddd40a3ad7777
BLAKE2b-256 5fae998e4873bcb9f95c930349de4efc02de71e3fd7554f86dda69410365f054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8f981b20e7d05eba911536adc43b09c2d16e599b149146fd082c692f054daeaf
MD5 41b3856f311ec9c2471b3dadd72ebbf6
BLAKE2b-256 fbf88d2f114b722fa18ab4e29b4cc8a24cf427a4129518dc883e537ada1dc6b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f957efe72976e2c2eacab23c81104eedd13f9c0ab2e73f3ade9c1d6fc02005c9
MD5 175a39f124b8641b67572241ad05e876
BLAKE2b-256 c0c1093eb7d36e5ad4b69005ab680e18527799cb622e3469deb9a2ac4caf89bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 7411ad901151b4805abf79835b09915eb66eae6e5c8273f2cb82da2fcb9e2da5
MD5 f85338663adcede8d7aeda91c97637f6
BLAKE2b-256 336155fb2c3c007f4a9e18197e41d6746150bb9a7ca3855a9f311ba5ad19a58b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ebbdaf3d9830b2ebe7d7302cb4db37d206b0f82a9e0701da9e2375097d8708bb
MD5 1879f6dd96d98a0105c7575f869e7cca
BLAKE2b-256 1ae3dcce2327c34709f1c8c4e12a9b7650540fce0630a407da255b04e114a448

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab5a50a8276de8d803f52cba3d61d5714b07ae1b8e95ea9b073ea3c9bed0a81e
MD5 67979b4a2cce9e5da64b2e406f6ac9de
BLAKE2b-256 a7441b17f5dc13164ac2282ab26748ec1ec90419163d888574d0e7440a6bec5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55359359017d6f7eb04e054b1390b89d94e2f6d2946ed7b92ebe6dd481c582cf
MD5 c370cc27b1ad336275ab83492097ded2
BLAKE2b-256 f120a05040154e3aa91c260c21997718693b948179c58f3ba7e951dd9fb8ffd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20c3fda734d977acf65a90df411dc2fa06ad31f30d7bbcd50e37858e23b7c6a5
MD5 f0109511973d25c879a1bec648ad8885
BLAKE2b-256 cd9f541d2907af017113ecfe42f59d0335554a2ef850520f3344892c14902034

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a568a0e090441b2149aa5985b68a19e89d95b8adcdf963e17e9e64954149b68
MD5 a7922706caa9f6548d81e3f44729ed0b
BLAKE2b-256 46370591eaa91f77e5497a9be19ec7ecd447de4b0f37cf0d7ad37001db26abab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 978fb22eeaf140515d34e4f34f40bf14b8e21c07788709e10f6ba25b29e537e6
MD5 6f1751c2ffa2a4ecba56c928e22e35cd
BLAKE2b-256 a29f5ae8a350fb287364d433b727a7ff030d1f14b83f17189f367fe2dc5639af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1ce0a52365771ec5337c36761a1b3ae44872d46bf67b7367acbf9120c36125f
MD5 91eef91ece4003331d3583b66b7d0c5e
BLAKE2b-256 4bac0faee9213e5bc4c4af6a2815ae05263333760f2311385de5e0652f5a43b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b773a15a6992263a7e3f49c4b9784c7939e820cdde043fba8ddb4436ea96467
MD5 ddbaef3069577fbf53602aa0001e593e
BLAKE2b-256 357dd585f75ad9f8e7ed042dbe08c99d2ef69ee82f550fc93080a25f0892d768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d588c0a4225bfdc4909bbce37631e6838e210d2899978de9d95c4972bed4f8da
MD5 35f35d0312f095f1876597af25c9bbe8
BLAKE2b-256 77492a7e4f9f770bcab564dc03d43052a43c4e52a150a9275f658a3c75a00fb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 dec2e35dab27a560bab25bcbff18b479de13b6f8432527449fd03f6b1b843ffd
MD5 7c0cdf57f877e5c5f96d3640ac12d95b
BLAKE2b-256 77a5243de2c677958176be9890a502bd1297eb52cc9f07dd7c1fcfd0fff00380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5b74ef07ba7f9a0c84e594d8aeac289469d801687139a916a7b2b3ad5196ac01
MD5 4e347d425f0deea861f708a71556c106
BLAKE2b-256 08685c68a99cab786d14bfd85aa711c8147965a109a7250e97aecc51708322cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 04cdcafd875638aa325706e1736c7e8667d19b5de281148d7bac4de51dd7016e
MD5 751866b0751c310ab6dde1cc6aad2a6e
BLAKE2b-256 92860fd8d41fe53ff1c079dc7c331829ba9b465f28d05733bee6fb32e8c6fd28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6fa3dfbd761395e32ad7b2a099ba07f2caeccc26d979a67787844c437541f9c8
MD5 c43b28545b7b5520b7cf4d8ddd40aeba
BLAKE2b-256 7c46f17a1a02bee33f4df858fe8de71b25c24f8c26f7c3410885237b93a47ced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ba675f218ba689f2bfc980bf455772947cb331905800b054a94446d9e120c4f8
MD5 053efeedbcb866904e110bb1fdfff830
BLAKE2b-256 02f66f37cb0f9dd621c0056ce0ff45ab1cde9d8ba0b32e15695ea5dec1807f23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 05bed77fbce07eef62f9584b0552c2b35e0321f896b28067620dd18058c89e66
MD5 f65adeb167771976c558c7fc830ce6e1
BLAKE2b-256 446adcdc780fb0b97824208993a454433135d8577e97e156aeb5a1b354e0ae30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc3461a85b48faa8c0f3ab4d7ac5f909a80c7c9e2a3c795d42e96c3435819993
MD5 9daadff2246420381dd0202e5b32ff5a
BLAKE2b-256 cd9301c953fe7f99236d9f8abf80503d5f0d574a9dbfa292d12a4ae66568498c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 366ac244b2552f502814a16fc5d94ad2bb23eb062a3821b8b9ba5084ff2afe41
MD5 58d9cc9b29a9eb1dcc481dfb490764cb
BLAKE2b-256 6948aca154a2098d7ca3d2918dffa14469ef1807bb83d1a239ef0cc7017680f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a3e29395683a28294df58822e118944c6a02cba26910bc933d5e86a87bc9d819
MD5 76cddd6a1937b1e46bca6188467e6285
BLAKE2b-256 8e90acb9b7d59e4bf41021cf659951cef5ce8135d5517053ed2ad8ec2702f67c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8aa92661beb1336fe432bcbae173abe742f6d0f9c4373b5e974ef2188168707b
MD5 1a6590a74c614e61fd96986e284f1130
BLAKE2b-256 814e3dc1f66d4f24b63ffff28eedb9d81ba366fc06af61e64ee784d26296004d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 58c0393cf1ebdd6a300eef431bfc1192e8866b77d5f3c1b8f2979032ca2a5ad4
MD5 701c48577e59e6d82a90fd291ef03611
BLAKE2b-256 c27a8b63417e996d38e87248b0f1180b503ac3680074df012b1e35679d9f984b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e57de4d923a3568276ce7c8b6b24b1c0157d6a51ac65290203b77e2e20c0453d
MD5 fb205d584445b538fe085b3bd86cef6d
BLAKE2b-256 2830927fe1493bdd605d6f2fe7d3f7422be3396e3e9ec7b6bfb82a6a3381911e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a246d3980e6c08af0d618e19b91259e79d46a857b0cca82f10aea55f550b265
MD5 e4c844b42eac739582b2a28368cd3d4a
BLAKE2b-256 188935543a77b34883107453657e9f43620cbe4f66a0995f723b101d05bbf1c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69f8936f367e59aeeb4d0ae3f1cae564a7b9be8d04c88cc22101c57c9f25ab6c
MD5 793a5f8f3793ce18ee644214cca91475
BLAKE2b-256 25dda51066d138f742e2e28a0f306463eff2e2c7258e15f8f201005d75cc61d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3493dab9cf3ed2b4bf3b3664fd4f4c3099ea270adcc45a1921513207eb557976
MD5 153b7e20dbe620e79a74c1a51304379a
BLAKE2b-256 8e95ba277da9729920d3e169966935d6ee67a276c796af96feae01c74146a10c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 07301b455b78316c85e332d1ac5219ca315239f920c261ebfe106809eba3b01b
MD5 c7b6a2ac6cc29ca74eb7a782e5cff660
BLAKE2b-256 af33208ced529108cbd585dc65553cd00359a6740ff871bff9973331ae75c210

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3e3767663d0a51507b711acc56b6a99254c48d19b889e4a12845f6df70666778
MD5 b3ade7ee22a63599f2a78994ee430dfd
BLAKE2b-256 7db3e9815f22c22d190fa74167b0eeb5af5c254dfbdcd5542906c4b280c6d547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d2d05f785bf0906ec135d405b8a26c96a38098c0d942ac1698613da110548f8e
MD5 85a8f6f00ec370a516e0e85c16b554d0
BLAKE2b-256 2fc89e06625b3ef36b148bcad3d5e7e3445efdf16285fe9d43934063e2c2dd22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dc876229b523beb46883a7b58bdd6da19390a56417d84083254f90f56497ba74
MD5 9a3448fbf793f0320e98baa071faf98c
BLAKE2b-256 b6ea1c394c6d2732899cf7c5cc5bcbfb0f4c5641a0efbb571f99c3e16cd0ae81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 061ee2c0c8a0a34f51fb5359dd57c27ecf9edaa8aca13a63d154d46bede4c91c
MD5 96c0bec7489aceed821ae8100aeb271c
BLAKE2b-256 7dbd0a27e050af68b9e3673449a626bbd24989d2edbb1a1b6db4774ce9a6fa77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 489efc8c83198b5dd9ede0dec585da4ec8d548a82dae451e2e6076645fb71fee
MD5 a8bd3c737b4814a93ee88392bdfe448b
BLAKE2b-256 863344386a10c29463c96a077967efb4d94250f6e76d8cc29d5d1e69c256e705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 56f940cd3803999dc303d89f2a9502d0b3cf5322b9625e4c8ef1c221a816c885
MD5 b23f26cb58a53bf49779922fc03568ca
BLAKE2b-256 e7a982946362dc53b3c2ba2f84e92bdb79a6c44201fafccfb42d05620837d44d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d4e5f402328c3903b1e64a7a6bb17ac211b4ef1831cb691ebc983ba71ff3c4be
MD5 464d35914ed5dbf4ef0b0aaccb731473
BLAKE2b-256 4695ac712ed8a83f25822899f0a0df6cc7622106b8d8fda3086718bf0b9ebf80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4ab8d727db1e346fc3ea24d25f715b36634f3f817600bd99ad740ecdea75c49
MD5 0638429371b1ad33bd43c9a82e26e208
BLAKE2b-256 8799c3af71a0cddd2a550d5d56c1f9df34b74d25ef62c0240f889cdc37782489

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf95c495629f76385e5c1c5bbf75e354c015be3c80069f3f6c1a38ac3e112128
MD5 38374c493bc39257f6f08dee4d94eab9
BLAKE2b-256 1e35bf6bde45af0bc03f1db8fe4682cfb7ea72d849c7fe8ece1439c86be71900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c06ce6eb6dfbe653425c6aee2c02d67a4eb18c31a3b1022748cfb33904bf6a1
MD5 e50dddd6cd979b893c0a8ba38868283b
BLAKE2b-256 2382d81ac9a227bcf5cd9a536d0613542f402d74b97014131ca50c64711e1acd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 747410cab5a3a8421f45879fe3ac38f650627b874debc1789b8df609a4c99d64
MD5 c23e1818803cf7afaff605fff8fd9cf8
BLAKE2b-256 7e271e6beb77f3fb0c00a87a1c59a41ab1c986be582236248592c96b96c57701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 956d069723f964b86f5cceafded2239cf89f84b91ee1270c1f50ec81ed24c574
MD5 aa6bd2bf98b9aa5ef43ac00e22192ed1
BLAKE2b-256 22492e42d597ec3fba65b6992d10a7ba5595a5c4ff180ffe1355e8c9429ac2bd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ed03402d406465addff739495a52cf1e016f4156ece7bb2ea36a95d04414e641
MD5 5848a70530b86887cdf89f820d55037e
BLAKE2b-256 0d12654a2bc2a6b95a970b2fadb8f264fe8aaf6d2feecf254bded1eb0b8aa754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4f99d37c7b92b8faea9bd3137253cda60c32caa9774a4ed459161ffcc66aee01
MD5 62911a156bc5d7d389e5b46d6f6abeb9
BLAKE2b-256 e5937d007a67369a7ea405edeea927beb7f6ab453e353be390a90c619041a506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 168bd0aea14b409af521c4b053cf62e5b13c4a6e464e7d9ca3ceac18e6e505b3
MD5 4db235bb48ac45d1fc667c3ae2fae90b
BLAKE2b-256 7805ee25803ed458f737129c56f9df47b36e6ed5975ab040a29451764d689e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4b9053a6b1614904ebe5ff14be9ad6733aee7b523a148640f38645e1ce6b1a03
MD5 4b57c95683712b87f3a528b6fe46a032
BLAKE2b-256 7bc9279ebe5884788ecc9178cf2dac659556e2f9b043af2b790515cb662cc1cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e90607296da639eab986080d930e88f24201181ebd04d8e74dee6f7b01628c2
MD5 76c457ea96239a0f5ec87e3414b7d7b6
BLAKE2b-256 44e5667144c75aa859fba903dff85dce37be22e7e14d78048992a25e517f2672

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24037f37c404bd840974ffff858913c692dd4b8531c1ba636edccb47baf3c68a
MD5 a4a69c48c091fe00230deae61b671a8a
BLAKE2b-256 16365105cd6e04e8879702dc7ad5febeaf0c60c139af97d37f3efd1229574c17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 385cd60e218d27d044d863e38a19e410bce844cd95e9454bd2b8ee422e1ee442
MD5 6cc9b66710b027c62812fff073bdd854
BLAKE2b-256 9926a910d3a0a8723e21207bce0c859bcf308ec9b39707771f38876e4727e618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d8fab757f17c73815848575a66f75aa4041c99de6e0f0b4eb845830906685cd
MD5 67009b983672efa3c7c837d0407d679f
BLAKE2b-256 424aaccd4e900964ed97f31c7bf41468924a05cdc7002f99a7d4777420ba0f69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e555aff90168d18d4149bc9d90b925fa1c8f896cd77a55802035341fbc835563
MD5 5d21e6a2576280ff85dd28441dca955b
BLAKE2b-256 c7a9cd6cae1bf3ed06d80b9b8193d2c3363d8caec4a7d075831a85b76169ea56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 65a8d94b9218ba9385319f88505bbb54cdcc1edc1871b653d1f4e3c8878e175f
MD5 8ff205a63e3f1176cad89d98e5474c02
BLAKE2b-256 89da223326b26c2152189e3b69960f135e502149a042313251be7a40d27300eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6de613ff519d7a70fdba5c9357cc61399dba86f0f2f3ee0ad84b6df64efb1386
MD5 bcd4851ffd3d5b4fc662ef20b0e6c183
BLAKE2b-256 9c8bcf5b7fee3c313fc9a640b168e043291e4dae823330a969342a80bc5d55ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.29.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61445358f338828792abcfae0702fbef312ad2a9f0e7aba9418bbf679ca74ccb
MD5 121cabc12472e5b2044c43038e31444c
BLAKE2b-256 e0c777b77d97183a58441d2a910e61de11d0aef6ccb67d470fa2204071e65153

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