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.8+ 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.24.0.tar.gz (405.7 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.24.0-pp310-pypy310_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.24.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.24.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.24.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.24.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.24.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.24.0-pp39-pypy39_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.24.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.24.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.24.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.24.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.24.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

pydantic_core-2.24.0-cp313-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_core-2.24.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.24.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.24.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.24.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_core-2.24.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.24.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_core-2.24.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.24.0-cp313-cp313-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.24.0-cp312-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_core-2.24.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.24.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.24.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.24.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_core-2.24.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.24.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.24.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.24.0-cp312-cp312-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pydantic_core-2.24.0-cp311-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-2.24.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_core-2.24.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.24.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.24.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.24.0-cp311-cp311-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pydantic_core-2.24.0-cp310-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-2.24.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.24.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.24.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.24.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.24.0-cp310-cp310-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

pydantic_core-2.24.0-cp39-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-2.24.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.24.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.24.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.24.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.24.0-cp39-cp39-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

pydantic_core-2.24.0-cp38-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-2.24.0-cp38-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-2.24.0-cp38-cp38-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-2.24.0-cp38-cp38-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-2.24.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-2.24.0-cp38-cp38-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.24.0-cp38-cp38-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.24.0.tar.gz
  • Upload date:
  • Size: 405.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for pydantic_core-2.24.0.tar.gz
Algorithm Hash digest
SHA256 2bdfe0cd0b977163c3205e89b8585203563a86822e8b20c8e107765b655dcfc4
MD5 c0f9381acae0602f6101d8743af00649
BLAKE2b-256 a0de104764c6eac40b580a1c4d52c7befbd24c16d409c670257ce354df6ddc1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 23b40a08e30fb55d673d93d120026b5386ca96fc2550eb1800fa445d11d03e1a
MD5 1d320486dc9cb4e4b69b271712a71e53
BLAKE2b-256 ad981eeac686fe2b4a28460dd0fcc33d2f18bdbb2eded752a9e6d891e0aee69a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e80c4ecbd86292597cadd05db22a1f94005348646c1c141ee2fb1970967a4cc0
MD5 d218b26e00bbc78ad05fa8c20459756b
BLAKE2b-256 3482a86bb138d83ae83e87f5da63956b688fe88b9f16f54f1ca8c734a7b6b199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0f3e16f5b7a2180616bb73d9f50572dcff1246a1edbfbadaa39ca8f5687e359a
MD5 30fcc833f9ce100f4075f8dfff789fac
BLAKE2b-256 c81d42314638b587550211b5538a61ee9a2188704d196047726aab2fdf5613b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c70bc858c30b1988a873d5dee508d386aa180d97b5de7212382723702acdd840
MD5 5ee1c77662cfeaa3683c6c54b809d19a
BLAKE2b-256 3e840915b69280d094123be4fd787e482673cd84badf7b0af7544958421e90cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 44229a4e94a9bbb475bf7604f5a57f976f68d7e8aba51cc436f1ac3e31bc59f2
MD5 a71c5edae4413962d13d6e1051caeb4c
BLAKE2b-256 acbdfd5d3cd65fc26228d20f0f6a1af6789e33f25d464c9f094a93e8aa1799f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 da0c4ebb7089cf634d3fdf2fd747e969a53f258dcc263b48421fb2c9962e1e5d
MD5 65d9583446a3bf3f86b2fbf43b0a6791
BLAKE2b-256 fe189dabdee942b2294cf17b1c7204968b8f36b14a6ced1c61f8fd7f5c05e1a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f5617bd807f84ca48b5a112ff6dbf5f3f25ecffae4ffa1a01333462301922d9
MD5 b6ff7f86a3abd17399215c4b882f4699
BLAKE2b-256 3fd8352b8480449606d678dc57a80a7f798c20117667954be86f32082add84f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fb13546dccdffa103b1fc39b0575b4d14ac4f4120e9085848853d9a14f6c2063
MD5 9cd05c86edf2eae5158ccfa6bbf58ef1
BLAKE2b-256 453100b8a2795a6fca2a0f687beb275b2cab5e1a4ae6962fa8cc0f060dc0d981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 581349fea1a9e2f8c7460f234dccd3f4b4dc00a00ade46eab23abc47f23ebd83
MD5 cb3887963b0a9a2aadcc510378d39381
BLAKE2b-256 16000e02316bdce5b040781cd80610470e7e51022e31b11ddd31c557b1a5bb80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b0bd9ed888f1607918e8fc405142116170c4fbfba30e7a94fd60853067bd626f
MD5 86cef3313dcf008d29948a6b1f19becf
BLAKE2b-256 3623809155408863a5c066ef8085ad409c4db196682aae6809f8a24b5619f8a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5fba3255b3733845ce501bdca9e5a30a74997c9b6e23991a84987895e5e54cb6
MD5 de62eec2d3ef0d88253bac0b0a221e5c
BLAKE2b-256 241956e193fdb651ef114c51960d45653e48e566b85285ce21df3a9da53075f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3fbed015dc8f1ab4bad7444bc0204c68781082e64ab7092bf451ee6e793eebb
MD5 59691afdf126c4a01d3067845ba72e03
BLAKE2b-256 abb26398caf0b6e1b4dfef749db5cec396409cb1431a309b8672422c39037680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24c28c93cbae4131af837dcdeedf5bac25d13cf92a18d611f464564dd766fc36
MD5 3d8a470f47e183e8ab86454826e96021
BLAKE2b-256 b5a265272dffd308d6e6b648b4861dafe8cccc8177eadbf94da649bd333f7756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 73450c90cfb4ec4d206c6d375ece549da4e7c58432e98a42ecd5501cef0f530b
MD5 187134989ebf79a5fa3c320512eac49e
BLAKE2b-256 5f3f08b0449c0633cf4ec9db839cdb9b53531bf7a301ce83884317d91d95c3c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 128754d5385f90e178fbf1293b457b468e290903dbb0fb0826f97da8472fe84c
MD5 3eb8a6ef122cdfc92cc8858969f7f8e0
BLAKE2b-256 04f0cf8512bbb01bcaf0c4938e16531e1c56788b9a61b6481497b62691359009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d393fe3173bf87d20a8df7ce65a315a4b795965a3d64abeca8c4ddbcdd8173a4
MD5 937a3a46bfd8aaa7caf570506f99e571
BLAKE2b-256 ec41379d857175b0fb5e37a48b67453d0a48f63c41221acbd293c09cce5581ac

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 b31024b34d9e83d51e741cd67094c401097e254c3a322a6572118847960cfdbd
MD5 54e776704a679fb32b36d7ca894f4d19
BLAKE2b-256 6826fb40dfb62f5591a92841a0378aff562a5116357993a3a2f0f922d5ce02a2

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp313-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.24.0-cp313-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for pydantic_core-2.24.0-cp313-none-win32.whl
Algorithm Hash digest
SHA256 31ec26f765c792e454aa29af01f8014cec0a9417be09d572107c7f66857d3a69
MD5 74d0b6aaa51f2243b2b9d6af0e60a586
BLAKE2b-256 7f1d4500fc7d0034d1dcc47ac63a07da67f6f3db6748ce710743fa44b2153ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 55eedff3a489e7834c9a8c91363aa8e96e6ce3a75597919417fabafca23dc89e
MD5 a358581a527d24436a3cc1f4eac3b9ab
BLAKE2b-256 9c6493212c26bdd4f39d20ee64081e0888dc3d6237b1b9560d03e9d5be04a2f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 35906dc79898e7b217714756bae91dc235e936166af146abb5e95f4957296378
MD5 35f403f165b9a7f28c55952ff614eb52
BLAKE2b-256 b121558a80af68c1368b929d24a44fa522399444f7d249285a89c76cbb801be3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4cad385a4aa38174ee134a607bb1bcc88698353ede71b725e0ff61cb417a0697
MD5 942b76e5bebe900462b6b88fe6f3a62f
BLAKE2b-256 a49792b98e5cebab97e9c730f642227f378f6545df0dc8e9a1a36d4a10ff0aad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6315bae7717ac7f6e0d190b29a7df794db5978b871dcd60de3e9286f9711415f
MD5 d339bcd68115e8a396deb25d000ba0a0
BLAKE2b-256 043dc8e17cd0583015972cca6c16496f388a3140112e2b48a9254b2c96af9cf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74beb5b41a66a9e8e68d9ad6212434428a007e4980dcabecb19308bd94f0b8a7
MD5 f164997451468ccb6ecb83d3e82ff9e8
BLAKE2b-256 9981063b5a561743d46092a8baca013d3116b806d5fb4103414b7312fa68c76f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 594a7776c9fd89037e93e155a7fb5e4db3d27cb59fdccf21f3121cbea9cc7e0b
MD5 f94c26f6df16df1a0cbb316dbbfa39c2
BLAKE2b-256 5212f65b48fc3446335fea831445f1866ee402e26e915e0d591962feaaac1bd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a25a9994c690142c8492419a14bf2e89cd5e7788203f32957b427fac9b1e534f
MD5 b0a13ff6881d97a9338810d653ad5812
BLAKE2b-256 10eb3c2d1d6ff4b988feba42663c315b031c2ef99228906f3b60b8bd0b32a2d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ffc98c29e607aaf5abb64e757a2447309362ff23a6a0b6d7f6dbc1b6a62c9046
MD5 7f2d25a21d0b11c116e0bbdb82c0208d
BLAKE2b-256 22cba2e2b25cac7a3e53b379581e8a1b5ef078045024c28970b22f508051635c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c2c4d2634963c236c6f00eb0d370d9fb6b38b187f2c0a36c1b5b9a53f0e53b5
MD5 9526d7295e3644b58068f43b68425893
BLAKE2b-256 c40e9789faa58c8b967b8c924af3f272360819a91b80b94601516dc1642ad975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 11c132961c2f385e364827e1795279f90eddd00729ed3f3c5cbbe89c71ea6c0e
MD5 9eacd63e851fb1cdfe148387264ac110
BLAKE2b-256 e50df4b95a3b51f00583d63c334824af63aab47377c4e2f4398d1ec182b96f8e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 1061dfd544be92fbdd2b96e86ad4291d33a98655bac8ccbcd22c660cdb043565
MD5 55708a7e5581303dfa1be3479d61cdd1
BLAKE2b-256 05bc9811d3affd61a51f944c4c75c56410551131889fce4f2bf2bacc7e253a20

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp312-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.24.0-cp312-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for pydantic_core-2.24.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 6e7f150629a8baa4ea9c4a84e9222753470e79f3095ce7b84a7d5d1cf9e3ca7e
MD5 18264f748a7fb1bab0469a63b52bbd20
BLAKE2b-256 cc01381b0036549d39d562fb19498ed043c2d14e28bf3f6923a790fec382cc29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 71594f9a946c4dab8afa80c48fbe2318452a501426969449bce4a99d6795bebc
MD5 3427650bcd2191b90657e41d639792e2
BLAKE2b-256 e28a87961e0e4302bdb2d3fae2f608f298d2ceace9778f92ad87f39ff14e809b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aff822465415f150a7bc578bdf9bafcf4c15552e989d64f7085752a41ee0c85a
MD5 32b73db56360007a8a62e94b29038aab
BLAKE2b-256 2938b093251f8113b8bf42fc11fba9b33402c5257c529bf1f77df6d6f943e2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b72b5683ae8609297bd31022ca87e097cd1719494542495f2b51522616498bea
MD5 d5543d7f4689a32e07474adb4773c731
BLAKE2b-256 b18da33de59e1754e58261564a114d7e07722fa8e4559bc180ce02ff70fc0154

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f57db5b7c1348f84ed9bd1e9e7a6d3a1d99965ba8c159ecc9fe2b024e36e038
MD5 79fee1af98742c6c1b4f27cd908ed309
BLAKE2b-256 e010f115248d8cd75bb3a15b47978c36f25a0d5b7b5b0921a88f45254e290b1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2facc30616a867f639e9600d207c3e2bef637f009239770a3be8cf10dbb2af4b
MD5 c1def07bc320e41141c8a4b27ea55502
BLAKE2b-256 c81231fa74c2d4c69193c03f709020877ea3b364e85eb76db6ba056ed14aca1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 270aec28844a0cfa08cfd2abdac805b99013c5260ecbccedf8c7e40bb7dde9b5
MD5 642c0d7b70ad901a43e8d9486f5f704e
BLAKE2b-256 b92abedf56c2fbb2c58337a68116add97f5eea703ff39cac0984f5e1d89fb9ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 830a286b7078fb544797d440a64f5692c6baf4a759750d51afe41cdc0760f785
MD5 31f5a74bec608a1e470ee4018494902d
BLAKE2b-256 5f81c0e8ecfa63f62e24fe76e29404facb8c595917d6e72ee137f0e30640746f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 20dd8a5c841bebab9dddb2e92e06b6d21237b7640d540a0d0639835c168b99f7
MD5 8c71784b0d62336ace28ebf9214e422d
BLAKE2b-256 386435f7eda92c3a4d0a484fb811913fad1dae527e7b0e6da5bda29f4bb079ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6a18e6b6379431578fb5fbf30d6c2d8e2a0ce2576ea992070049444fb7b1902
MD5 724a910ee5edbe26600e24917dd96471
BLAKE2b-256 19ea91f744cd208ceafbc2a669e84a8d8c9e8610554be50ec2136a8764f92ba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cfbee1fc1875c16fe9f7fbf71898bfcfb97945f3bb5a6d9a4ef04c91d8ada958
MD5 70273c3965eada1d7b4cffcbea6733e6
BLAKE2b-256 034e42c94de07d40c35886c391950ef88851a7b566742decbc589c1003cfbf9e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 e161760fe70ecf4a9505e069409bfc001a1a739f350043615a6bde42bdd50f7b
MD5 a52fb6fd96ef2f585d72541a3c912a77
BLAKE2b-256 8a73b858a67c133c17ffbeb4dc627fb327f4e224d5793d922a92118df122380a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp311-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.24.0-cp311-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for pydantic_core-2.24.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 512972b3aae076afb10bb80d3bd49c19ee8ff43e2ab040fb166fae18ebdbb7fe
MD5 11ea7c1be94ad636620cb198b275f244
BLAKE2b-256 ef54fdb34cfcb3763bc2342f6312efe51168aa4bdd727314dd26e5528c065078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d7444ee5415a7a21932ea614997a0f422bd82ae4a04991d8c9fc3aa1d10a5a33
MD5 d5b223e96d977041965bc2fb449a77b9
BLAKE2b-256 6a4042c26d29dad39f0ccbf88227bdd6c9856c55719dd625ac9dcaa116fbdab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9a91a2ee612a4a49596a1529cd60471657db3b7192d505472d9e803ec0babcfc
MD5 dd25e4fe95e6ab6199b309bb5c81bee8
BLAKE2b-256 7c574b577d8aed5ea89feef59f066843c327caf2e77c8e7b11bd179b8ba75f8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c92719d5662d91813a12cf5422c5374a7099434dd50e17f6d630243eb105ce2
MD5 0f4532ee82fcbca77863f28777c4d9ae
BLAKE2b-256 9ce9530af7ae4cdb255bb4610effa13d84051453ba1b13a21cb041d46ea9f478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 84c4a4f3f81d23c1cdd001e6a1db5c19c5bfb0af42a89482ddc269b7b7429f75
MD5 7b93592433caa995142e6f33c81beacf
BLAKE2b-256 61f22d4e3ecc0c98fb88e16bec68746a5ba89c450b2f4da9399df5125f696032

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2eed81a5a673258f1aae6e08c1b3f0ff74e232bce5e56ffb942ace43376019d7
MD5 e0926ec653e427330b70a2c891f89cc3
BLAKE2b-256 93de2faaad1de739a8667a10d6afc001f6c865644e7c86cc12967e353a1a353e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93934fcf839fe6150a63f877f0dc99967a191d304ac1e30f5364e175212f67df
MD5 2dcf1a6f6b32a44b53815d7e7fe3ebe5
BLAKE2b-256 ee154da3a63de9d3a3ed80d2c57ae18f95f518f212270f454af64c268360cde9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6d8ecc8f8418ba2779a2dd357cb7dc3d30b98b9841cf6b22a54b44747e4bd2c
MD5 a2a09ecd5ee4514b48c82e90443a90ba
BLAKE2b-256 78743b4cba7d04628109b34e13279d17e1b7cf0c190b2e3e9bdfbd593720d9c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9f07d3c9a49dfec0d5b22fdff7a5f7d8fe8cfd6ffb75c9a8b57cd21d6c516205
MD5 2dc80dabe2f8848ecceb77d74fa69400
BLAKE2b-256 6d21cb203935d0f929dddd4768958efb7fd59df292965bca35f9248323fec3cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f92c5356f7aee92c693a2dee9d69e4c90149d1b604f6bd2255bfb39977f8e8f
MD5 620a7fddf088d63e9628b5ec8c7ff6b3
BLAKE2b-256 7ccd594a0734a7ce8ef4aa8ea60e0a5a2dd511a7daae7af4ddddfaaccf3c53ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 51fac2c6c5009851dac7150a2a052fcb54d2e89e481d747cc0c2100c2927e8bb
MD5 efebe6e0d0c576fd2bef37f76e0c6168
BLAKE2b-256 88b2808cccd2a182c1300b732fed8879d2cd61400c7fd65b51f4e24c4b2200ff

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 793e670f32e52ceb5fb2396919b19312291f09a4c10752eab1f69871dd265a73
MD5 784499bf9fa083724f3c5e322bdedcf3
BLAKE2b-256 775a24886ea32140b358987402304a31c1da07e4c6147cb57f3efc6934d1e55a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp310-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.24.0-cp310-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for pydantic_core-2.24.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e845533e6279dac0a74c1cec95aba24e908cd64eb045b687b151f3dbb45e00f8
MD5 e6aca208cbc691d982ad3d17c71563ea
BLAKE2b-256 1a9715bfa4ed59dae1b9022df0d94f7e487e5a210acf5e506c481cb2697dc162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f802b83155fc5bcbb6e753802230e1db5a942a42110b05c997f114c8266dc79f
MD5 0e8e7755049b46d6b8e7bd523139d3bb
BLAKE2b-256 a0e147a4dc352fdab4e8243f8fccc36088a2766c81cd8c4f0784bd7e456eac2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f414e3b5edd16d6b13677240ebdec9e31737c26f24c68f73e50b2e4a9d13def5
MD5 cea370ac6ba4917e937b539148bd3846
BLAKE2b-256 3ba3333999af736fe3688639a853c8c2de99e410c38fef618520faff826c96d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8fe50b2e6a8af01f3adcd5f45fbc8eecca4f5d50fb84dc1c723655a3906c510
MD5 1d01d0a237481f06769bbbfda9e75d2f
BLAKE2b-256 522a3ab7ce9bf10a7c86324cd91c4a0928342bceac624886c39e0a7c980d4090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9cde58d1746195ebf6f2b046958eb2088748009e48447f216bcfffc37382d429
MD5 96a459359f9a7eefe7bd5a7dfac29fbb
BLAKE2b-256 4c825d316edb6889c6d1c111c7e71915fb8e53a6965fa536d622d37ca73d8eab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1abd4ec106aff5959d34765ec67a8bb7efd12b9d6655a96849a4fafc093744f0
MD5 446564b500bd9175e307d85f90c42d22
BLAKE2b-256 c01c14af7a257aa295db085de01ea82cb2a81e82b719352370690d411b13722c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f3f9607e4639f54177ffec2a67d519afb67df852367aaac7e171ba8c66bc1d4
MD5 3f218ec1c05453f788391f143b950e60
BLAKE2b-256 a7ee98c25ecb1f45fd4bedb5d280c10312e6ef839f278ed6dca49d63d087c067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 797d4737142796e9de0666deea3ac5ca54f7abb3dd8a2a173095ee375ed70c39
MD5 3200df031fe98f48e67e363e36969f8d
BLAKE2b-256 f3306744b2e3f919208d664e9dbdcb6d7eab2743975c1ddb94bd48a54dec8c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1876c3234e8719193b2e6efb5f774db8f957585c4d6fe72c85f906c1f87a0d31
MD5 bb6bffe27d6e205a1a58999aecb18b85
BLAKE2b-256 a09091b7a44e63fbc1f202d91aefda3252ec64ed334e20f97c175397ce6b4079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59a2a1b20dcde876c7719d095d3ab8fe040253c0ed1cd76df06a78b3e8680ca5
MD5 d52802181f923b213ec8752a330eb9ca
BLAKE2b-256 55d5e2030c37643af363b7ef6fa0220eaaf119115e7217e49d6f4b23ea29d174

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 607dcbedeace540deec3f7da7a1d82fe23accd2eee5c410a4753d1d0d03e3b46
MD5 b4007dc56bc35d838cd4e0cfdb5c6345
BLAKE2b-256 1dd8e10ebb9ff5875ca1423585a0b8e75bed85ebdc362a7fbf0643a0b98bd09a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c492c35d36a75d235a121959958e8a9812108c4fdeddf45fb8945929a58500f6
MD5 e55727c2dab8500a917f65ba336af24b
BLAKE2b-256 d0206e35c780c373657df5bd30b15e97b21bedb0bd2886e30533c42bfe65c1e4

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp39-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.24.0-cp39-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for pydantic_core-2.24.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e43908e61795f6d8853d38be973ac6d4207012cb413f192e9d1239ef1cabf3e3
MD5 132a0a51cfc89cb7b423908f81afc16c
BLAKE2b-256 b3e921ff63bd0926435a9450074ddae8f413871d06282f6136b04c636d30af0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a453150a95a83273a8720df7728d6cb7a2fbb6c04b80d6ad79d9daf4d1aa80a
MD5 23fb32f1fd90d85159bb11df6aa18c63
BLAKE2b-256 8fbc2721ca851541ac06e07a7ff1cda9601aca03f4fd1185b4d9ed6e5b058de0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 867ec3c429934d0a45798a4f104469a9063ea3256de2f0a54134a977f71da3c2
MD5 2d0af6f7144d6268fd98f8469b16de08
BLAKE2b-256 33b0c40076099dd6fe426a65341d93e47fffeb835c4a76d8227a4e50ee172e4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a597b3f3b20f0b56e3bde46c5ade623f4b411941c4d0111c696eed1d49712b22
MD5 da7ca715e2f0f4d6641770e5f4b2032e
BLAKE2b-256 0bc51587c8f86ec5dd656d828da398d308bf684149754dda3f5954e946fb321f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8c7ce94fcd44e1ea6381e94295dff4f5af08dd2706321b87126fcf78e6d17533
MD5 fe827d4823ae18d2e1c7a6a532b5d0ac
BLAKE2b-256 12f17879cf904b57f549e60fe3e8bdb005e3bf3572fcc2c43450501986936c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6802b87b186fac1d6c5adc2a79002cbc9e28d75576b4006ed49500101b1f1c9
MD5 0c72a3d9b44275f78a947f8634d1d4fd
BLAKE2b-256 e0554c5a0bb0b7511333706434698cfc4d9b7b1423cbaee18aed7ae7d7b5230e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57bbb50d6ed6f89e9231da28ecb00091fa33abf5c642d4eafd0dc04b950ddac5
MD5 055eaf0c0def1aaaa6dae11c90c04a04
BLAKE2b-256 d7d0c2ecbb3cde2203bdcb3a6d0778605eeac0a39288c3d44dddc7989daf5db6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86b1d55b6832e39231ab8675530767cefd2b01178b474bf5af2d47f4a6910236
MD5 7c251ae24935953fcec4ab3f87d1ea18
BLAKE2b-256 7f0ea466c794259f74b3293c7c97c86eab3642faed38faed590f7408cea0b652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ea78d40c4942ea4790ae4ea8febae6eaeb500ae1d55af951126834d203538683
MD5 2923aeef933cca188165cd582c76b8ae
BLAKE2b-256 acd4e3856a97754242635ef1f8e3ddb77a132827378ce4d695be5b9a42a2e467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c992be170ae059fb8464c1024c76dfa3a4cd5c7aca3cf3bf37b83193acd78761
MD5 4989236ae8a02c9cefd11be2474d1881
BLAKE2b-256 48e3a521fda615862d6b9537c05231f2de7c9c730c9f66260a6c64731dc41cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c500365641f0a10ba505bc90b31179ef7a0f5a57071bc7880fc2b3e94967718c
MD5 6c177788ded646716773405ce26c355c
BLAKE2b-256 78fee87a84cda5169ce8ee791a1fbe396b8ae039caf0fe064a3157ec32ee3f3c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 1409c25a9e7aed446be84fa075d8f756b48ab3362eb9d0bbf8cf01155e224e71
MD5 29b971f8b6a5318a4ab614a4de2b9cfd
BLAKE2b-256 502fe64a8bf5ae52e5cdf654df676fe7ca40651927d412ac2f535f55936baf12

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp38-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.24.0-cp38-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.15

File hashes

Hashes for pydantic_core-2.24.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 886ca9af28c76e58373683bc585986586bdb57dedeb6aa51e85a5c6bbce25100
MD5 b14fe6d5c318872ad22e5e46fa96973f
BLAKE2b-256 58c1a1032b7794a56dc63f8532fe2f07fd66c72a33cf5f287845e5fc31dd4a48

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 740d76fe44f276ffa44209f821df79537bcb2aef6f35ca3561e4284ce1d13a1a
MD5 5cee74b094755fa1298539e8088fe097
BLAKE2b-256 eace1c3f388af995f90c16b935e1fb8510acab3e4effcde5d558351778960e9b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7f18892b572930e2a6f0174ffe0adb21a75aa5c985c86777b986f903345ed96a
MD5 a25cf04aba220d07c43fbe7077b5b5a3
BLAKE2b-256 d7e74df9dc7376c09502f43cf80379b00bd9719a9e70e0101ebac6a0e72505cf

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a7f9c4da7eeaaa76417ddb33c4dca0d527015b369e033e57e15e07aaf53dcee
MD5 bd44498b6f3a853c5b22dc26fcb4d5f9
BLAKE2b-256 4ce8200687699e598a0bd6d723be2164acc4d37618722102de27eb864e4959b5

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c94f74148886ce3e9bb67a6c2f9d4aebf2523eeb5d6d15abc38e53462a56f452
MD5 21151cdd958dbaf46fda2bb35274b087
BLAKE2b-256 83134ed489483be252a343ad284dc96e864aa64610267a0b6b3e119dc62e118a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70f5ab351c091c80194ac9580db0d0ca0d1709c8f002cbaff66e49e749336a31
MD5 0b8359ae878300d19a823d2f64852653
BLAKE2b-256 d60f356d72e1704cc1b48698c6cfbc1fb1407b34be728ba0edb415c651de4e8f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e10e0de04b812a71efaeff81c549954674980fe638ddff86aa645334c493ccb6
MD5 d56efb59848bd895fa84181bfb4d2210
BLAKE2b-256 034d3fb9b7d6bb5182ae599bde176801f6950b4f4bd3288361a9c4f9ef91451c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85772cb2110bcfb37e43a9d4f95815aca3f2fb80076376a65b8eb432ad9502dc
MD5 a5054f1cfc1931402a11e501f5bc9699
BLAKE2b-256 66a118daf3171c5f30767f5c4e07be1bead58e01f81f1ea737f4714f56176258

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 06053dfa8e0cbf392c51c2bb5b8a8556f65e6505114e088b4a833e38e03e2921
MD5 84a27e54b696ad0a28d1f59c987fd8fc
BLAKE2b-256 26fddf83f1295d93a8a337a9122b3bbab888132ee47a1cc79e6cbe735f35c6d0

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 758c22dbd1f85c9176256c82ed7d459af4c838dd98b02e23b8305a76230b4b56
MD5 beffdf5f73bdf78f2f9b2623c509a945
BLAKE2b-256 c647d4c3b7fe6c3d74a8229b6fbef9282f35df4333d7a00b042ad163b7fb73f7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.0-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 adda23d459ae85f6e5191fd7936e65197bbf93106825db49340ee4e5a29c2ed7
MD5 eb3b8bdcfed435bca5031e1fbbc19da5
BLAKE2b-256 b2813baa6de00486c11be91f948d02c8c548735a56a7b49fb1b50b1ae001af7c

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