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.2.tar.gz (406.4 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.2-pp310-pypy310_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.24.2-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.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.24.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.24.2-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.2-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.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-2.24.2-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.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.24.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pydantic_core-2.24.2-cp313-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_core-2.24.2-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.2-cp313-cp313-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.24.2-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.2-cp312-none-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.24.2-cp312-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_core-2.24.2-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.2-cp312-cp312-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.24.2-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.2-cp311-none-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

pydantic_core-2.24.2-cp311-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-2.24.2-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.2-cp311-cp311-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.24.2-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.2-cp310-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-2.24.2-cp310-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-2.24.2-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.2-cp310-cp310-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.24.2-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.2-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.24.2-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.2-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.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.24.2-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.2-cp39-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-2.24.2-cp39-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-2.24.2-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.2-cp39-cp39-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.24.2-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.2-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.24.2-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.2-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.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.24.2-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.2-cp38-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-2.24.2-cp38-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-2.24.2-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.2-cp38-cp38-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-2.24.2-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.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pydantic_core-2.24.2-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.2-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.2-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.2-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.2-cp38-cp38-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.24.2-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.2.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-2.24.2.tar.gz
Algorithm Hash digest
SHA256 4497298fc6381e3e1a61c74fec3088d8139b99698177fbc2dca7b7feb5ae1c20
MD5 133edc2d4149b2a340f1667cf7f9dfd6
BLAKE2b-256 a14307432a1de2a7c152af8c8681a3fe436647d0a05ba8bb11a53d7f74e96a6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 15a9d4db7bf68cfdc94e7452759a707201c42d86ca418c419d9dac7c6b21660c
MD5 6a83bc8e357e9defd2838b343c288c7f
BLAKE2b-256 5ea7c812bf9ae574fc885fde7ec6569476fae9dbc1951306eb1865e134e5384e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 640f285a7057861fd155d872b0b659f2f558822f400ebbf49366323a28624695
MD5 2e654e1dccf580daee8f763dc5e17967
BLAKE2b-256 8f6337afda2121133e0a085429c532789bea674a3acb06c170048d473ec299ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b52320df84fbfb9e2173489afea4c8df6c317df1d1310d66d8a6d3b3fd3dc9d5
MD5 ce3365d176622f6bf93ba2b6d507d58d
BLAKE2b-256 3f5148d27258b48dd7cb766cfdfae323fb9a865510af4d3924ae04fd06aac191

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ca39f57d42b1b0e7ea84169eb490bf3acaecfa696fbf9d3f69266f35d38a2d01
MD5 d1502c27a684217fdd2c4b0c9b370aef
BLAKE2b-256 19b122f21dcf5bb83edd936fab11ad9ec82fd1e4a5e354e236635e65855d1079

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fe90ab7a1263250cc018bfcb75347e2706e86c992a4b402bbcd1474b9e78fa5
MD5 6a52bb5c6ef712cdb7cc96460b058e32
BLAKE2b-256 c1c8f738f654739f463c0304c3402509c7cec1faa10a5ce5066a49c9a465c50b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e41f0ed4f36ff41299e7fff681569f311e2c54380ee3ba15670396a1c273a2f1
MD5 c7bf9d0acb28303197719826df966f3a
BLAKE2b-256 dbde8f3a050875d3e9be567dad952fd5af60fff7335b5358b6daebc056be02dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7912d438a797646fe07b98510c922c81bed1bd39a2ff337af7a642c8ce55ef8
MD5 8032639faebfd97486742972ab72beed
BLAKE2b-256 d882304e2818624f6c679df4c5ebd44761639f8bff2aa3588831c2550b6c6f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4be01a6defb851b41e4d5d20f56ef1bd6380e9a08e3b3705d0fe7b9948a86111
MD5 370b41f8014ec91769434dd0ab02dfbe
BLAKE2b-256 877c8cfefa027c4ee75349b0c1ce467790864b790efa67c4b1f0e8c7737e83c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35a573c56c26c503433ad81e117f5c4005cfb92aaf7f49187e15e0fdf0372ce0
MD5 e355378ccff34a12f60025d3a0e653d2
BLAKE2b-256 bc260cf31b620c94eba98e75f31aa140ec495365df799c7fe0668753cdee7a6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 45ff2a3cf0376ab3afc28dce4cb3718a8f4e34b801091b9af5143cada4273974
MD5 73967aafa80233c64b568d0c83d54f7f
BLAKE2b-256 69d875c6dc9373c7f4d03bea7d4e5b3cd93a99dd9a43ca575247333188f92aa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ca3129104ee0318daea6dc8043db9e8862c2b338f1dee173887e0413c2dd3fb
MD5 906a00cefbc3a2520c573f3095cd6599
BLAKE2b-256 5384d06fc73b0ff285ee5eb8eaf634f1089b23ffb9ee4c9fe18b30a8b5a08c78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 9d905d3d13ad43f16ced805f67cf1428c7e9e3b7d09b00d61538df0a3e7b340b
MD5 c1b4e944a7abe71b26ee9bbbb93e987e
BLAKE2b-256 1178f8591ea9d8da5126055fe32f0c2137beb2d70e0d72024d4a292c88341b4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b636ce942a0adbeca661a78ed9d8d46f75f0b328f7e9c1b2ec463a01246e42a4
MD5 5001fdec94a241708bae86a6dd0b3612
BLAKE2b-256 e614e5320189386adce039297475659bc059d3c96451660d5258acd40ddf9902

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3bfee10af8eae77115433889b43e7f440665cbd9c5e7e607bc1028ee53a4b53
MD5 66d971cddfb279e8685d72910de8f6dc
BLAKE2b-256 f85f37ab3cc61688d558d7029a19bf0c7a6f0520bc3f622b86e4302533864bc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a0647a741e8c2fd0f41aa385a225830d59adb13d915f6d42e2e298d90835cb8c
MD5 bceeb0e25ae3d4a202145c7c6311f2f2
BLAKE2b-256 0a067cb39e007d55e04effe2d9ef10101d8fde8bd8cabc75396a12ce9ee341a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 87382e4926509192e2e75d1fd85c7dd2150d36f1ebe93b738620ff3ac8b1c696
MD5 b56a85237269c7bffd16397d148f46cd
BLAKE2b-256 cf9d9eba8f5920dd12ac737673f90aeb808957c42b0e91f6116560d4f0496036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c87a4fb4011f4de31a00790ae8923d7175aa158ae26a29f5acd81a1893b9f77
MD5 0dbc35f2c9b822799e4d8fc563996a89
BLAKE2b-256 1291befe0964bb9e7ca269cade180ad851013d13655b967a7568f31c79b3d5ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fbaf84ac022eb068c4e7c401f5f6b8e2a4ad82d255ac1345e07e48d42e427acc
MD5 5bd4b27a09d4c428ac81d1e52f2d094a
BLAKE2b-256 dc630e63f5336ecce5bdbd4d2cb9d4dbd4a970f20810f43e322f12db9d73bd49

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.2-cp313-none-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-none-win_arm64.whl
Algorithm Hash digest
SHA256 0d92df37c66ba0d012dc3da6cd3538961d176f3ccb81e7bc73a1d0eed6dc0eda
MD5 6a88e56580b265be8ef48efa9d2c0e8f
BLAKE2b-256 f2dd89aa97935bd8c881bbf399a9a546b3ebe76fb976eea7945160883b0c0391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 e00e8a4bdc449b097d51089fe433880e83d8ba946696fcefd571af519648b74b
MD5 fd36f01735e1f66785e04c361d6e0f58
BLAKE2b-256 d4eb303a65ec30f66c4664e9889d2e13e0e82a17d5fea27b7c4682e28195d77e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.24.2-cp313-none-win32.whl
Algorithm Hash digest
SHA256 431f310b7eba98b49c0e67eca89f1354148f820dbdc45cf7811da21336407c8d
MD5 1b13aaa3e9a1bc62722a56e26451f9fa
BLAKE2b-256 8f110293665c745d879f7acc08f2c57f2778cd64b28a8130a57c98bdc7e2681a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 216f2eb0babd02378ea1dd6fd1139133a7432db91f29a2a181f15ac68bc8b101
MD5 abdb8c130dc947037d225000a6e02c5f
BLAKE2b-256 1b7672b781cb8726d1dfd70da426f7a8132a4674bfe1c54ed759fe38e6a42a46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b400e2af2b9181f1457ebde22829585271ea1cbbec492b6f2ce254ce854c4195
MD5 c9f743ad41f1be33747b0a2ae71d6d43
BLAKE2b-256 a996635e629d5d934f1e16ff5df269351a160a3c2d8ae68242dd38cd0c71c6e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 051c8ddd24f81427d6a9460123770c0a885c97ee5402e099b8063e14a0cab00b
MD5 457902943d8456fb4ee2c4ff286fa1df
BLAKE2b-256 8cf5f7636a2aab17402ef11f480da475813f1d12633cf59f3f0d703a9685b8ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 69e70cde041af4244ae3150f90a2aa6ccfb70809b04719a42d6786a52d0f360c
MD5 4fa414c03e225adf3d86f53bab23e406
BLAKE2b-256 580bf0d1027c5e77dfad80e4053147e241f5ce9981bc023c4032aae5ce8b6275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 642cb40c4502d444d4954ed8842d341de40d247c6455d488c3166ace461aa438
MD5 be0e76f705139f49b8da947e4bc8388b
BLAKE2b-256 95b0f3829bc1228555cb6ae706d6a89488b01cdad2a933bd5227527932193084

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9c85946463fed67441ef19d9916898481561c94a8bde57bb660e0eaead157c81
MD5 ffe9713a952b82ade445589a3c22302d
BLAKE2b-256 5017f41c95d9b52e3517b135f6a7fcd90b18defc0f82af5348955146086515ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 56e338b8fc9dcdef2b8dfdce633af0e1841c283aeb8b13eb33365f25597b226d
MD5 1970a344878367b5ca64054cd409e2c7
BLAKE2b-256 bb15e4cfba573ae9ae104441a427e31a84caedc712e94a61521c969a18e559c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b9ea5bc5bacb0f6208fc5f49449f318468fa5647ccfa5b8e590051c094899bf
MD5 f53942440b525037e98c7b05bb5a78b7
BLAKE2b-256 0975c4560193ec7d911c1566a33788d41ce60d85ef60b84f52ec6a16b708a4b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 000c4d49966fa17056c7d422003aad6509875040b85845b7b1c62f138a9e1f37
MD5 c12a67fb05b3de7360c6b79807f1bcce
BLAKE2b-256 b85255e965f7d390bbfdbf73649950ea6e7c1de60a0b389faf501aac63453396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36c892bf4c2589bdc9e9518af7ce85840beab0fd016857db74ffb5b3ab87bee2
MD5 b53400c04df4a7154dfc6605a3c2edf2
BLAKE2b-256 3d2fe4708ad81e544ff0d1f000647c15cb12100507e879ff2e60f28daa27bd72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9775002a3a009d47f361ff941ff16b9a3b1325605e688740046ea837b935aef
MD5 0bd2161d6623bd5dedb11fa53c443e92
BLAKE2b-256 01d95db94614294c45379671c08b32908b00206f476b3717467197347734872e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.2-cp312-none-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 10893bdb54e0f00f92e2bdf0022823265f5b787146a841c08cedcb9d6ec5d6b0
MD5 dd853e1ef7c5ca39b72de51f5e92911d
BLAKE2b-256 90cff27feee2c616c1712e87540214070fa1db494c3396437e3264840db820bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 901adccdcf60eca5f637733721e2725274da54fccc6cf1d13ab9e751a30f0453
MD5 49f609bb28f476821ebd7efd36c5da47
BLAKE2b-256 a624a2b755bf9c274afdbc5c1bb3e1ab0d2ca057279343c756322fcf7a45d9a1

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.24.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c9bace664cd99fe3f511aa3406682cfdedcfd6bf82ee5f7cb9a32a931907e11e
MD5 1f97d85f4f53cc2168c645e3e96c1a18
BLAKE2b-256 05572256557a6aec08c34f834471f81c4076ff82606bf849763e2f6714fd3814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f69e07723693ba9a5fceab721545e09720d0a40353d564b6aa82d8a0b37d27a5
MD5 c13391cd016a646f12a6314d5f2ac47d
BLAKE2b-256 eb510a3f5b830a1d7e738f19735ed7e70dee472cd4aa92eb9eb26abaea49182a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 94a43e313f1f6e16807e8cbc4103bbfcba98b63f0626901367faf0e92b59fae7
MD5 1fa353574629cf9bae5383ff5c32ad14
BLAKE2b-256 61d014b59cd2bb8613aa4a22ac6d807752f4e5e3c670a3d0f5b8a97edebaefa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5a33f855d5ec2484dd30afbdeb073c9f8449c4182b6b7bb1cfbb6a22ea2f9a39
MD5 42b10a5419bc9b1d80c3994815880acb
BLAKE2b-256 c68593a92f98ac98f4adc99a92b9fb82ca918d9e4b202077c0aa336a73d788b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e844f16f54c13f39a4bf35c323d2eef9c5b3ea97f758f04f962b7d50a2f80cc3
MD5 10eaf362765234691ab9642515dcbe0e
BLAKE2b-256 78d7a50e5dc4c537ad43ac68dcfa960ed93f14a010eecddfa70d53e14b4c7b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49abef0eb089fe364c62f4e723ab542e134b7b859ebdd8126b5647660fc932b6
MD5 8590683bacf4ebd27ec79d594a24b6d6
BLAKE2b-256 7c373f81822ef1c233128ecdf9379bd6d0a02a97f17ba2f13989292679b7e7ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa2f0c2d667c30718b2781062669870242c311f667738fc71c5ae0e5f6559cb5
MD5 0dd2b49c8650ba13b05cba59f46745ab
BLAKE2b-256 7496529fbbc7a4bdfe7d1b84114fd4cea4e192faf2b94cf6c7f183d0c057db5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5a9e8adfdc3e1ecddc52b4c31abfe308677edae4c522e697ccb51ad5b23fa16
MD5 49ad6c372325c4b4e4ac38c6157c6df7
BLAKE2b-256 548eddd95d78d317d316d39b86b9df6434d9793f8b009b47a2c2624d0766b206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b4ed249cfbfd1db568a0a0be7666787c632fbf336f27f22c4ece2092f268dfec
MD5 cba3b4e537dcede84b0a3bb6fc532a42
BLAKE2b-256 038d25d9aaa50d0889080b310467eb5dc63d4f685efd8d029aea97eeac70c218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb3ecd6255580fb232c653bb82c21ad046d09ff03470fabcfb3b1ea0840cfd89
MD5 35268c4d5ef466ad975bfa061110b754
BLAKE2b-256 5603ea200abb0ce4e11fb883a00dc640318486b405e8a53238443c493cac0042

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8807511c3e23f97acea51d09aaa984a2e02d57aa95f26a6ba8884379d6ce11c
MD5 2372564cf677b2ac7a91bebc2685ddfd
BLAKE2b-256 fb6fc9cc9c13bde5f93a5f642a00ab4d56e6721af86f90cca9926f736ec998ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 89a8c2a5823f564b785003239412e1c62731048a1f78b02ae29dbb1737761536
MD5 3b7e483510587747dc2c865d2f9a9ebc
BLAKE2b-256 61da1eae52484e83956e3a2ccab9b8d2f07ceb033b88c3718277bb8cc439a288

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.2-cp311-none-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 694bfd3b9303ecfc2fd5c33503db56135fffa054a62fad02cae294a9c8e7cfc9
MD5 f543584fb56ad07e8e6ca18e8b85728f
BLAKE2b-256 b013238d3d12f7629f230ee30e4b6dfa067d1a940429c0d78d53416b4c98e863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 f98dd81f3d5fefec0057a1fa322a792dd18ac8dc2b64ed04bac09758d801fcc5
MD5 5ff43102fcc35fdc5084d2a269eca9ce
BLAKE2b-256 8735fd87b94ff36cc4a7e0720fd5a206f51c2146fd72607ae1d9cd5e68ad85f8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.24.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 9c74137ec5da5aa8641f689b5f7e60d12437216b240779303c68fb5cf4a3768f
MD5 ec56af2f0b480a01ecf7119bb4aaae23
BLAKE2b-256 7ee4ffc14d7d7f6ade2f9d927cf9822c9488f9156552668475fcd10e3e944dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b1bacfc5b417adec3ba854ce8f88f0303d1ea00c4616c0d1f6865bb6058bac9c
MD5 67944a68df947b4894c6f16452e759ec
BLAKE2b-256 545bdfb1958dd21cfd963eff32f2a028f5b580f51837ecc7a4622867661a9b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 01b4b37fe467ca8cdf7aed57eae694bf3385779901e9ee69f24dcacf4a81aec0
MD5 d89f643dd9cd3813391c19d905eaa132
BLAKE2b-256 a7f3b30689510d0ff7d1cb406b2462b40c227e950fed5055239bd1e9d5264c43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 980d9bfe27b42a3aff127df2e133b91611324c189392a27fcb4d37784a8b3436
MD5 ce179961fa2a2c39e721ea1c7beb121f
BLAKE2b-256 3cd0e269a9ae32fec053eba49eb37a4f48cd651f7d2f6a8afbbe5ee5fc95a7e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43a681eebe8371d34f55d2e9c09d9f676da594254a9870ac98f01fc6d89daaba
MD5 36835bf74d3d7b9be0067d41632b505b
BLAKE2b-256 1b4d35f9942a5fe736d78dd569d4b7905503259aa71880060774e87db73e2905

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e347a8c4c6025d48c7d05909368fc59c422231f0ab454e60cdbe1fa2a762a787
MD5 e8fd7847587ecf2ec2f957ffe8d72568
BLAKE2b-256 a83ef136b09d3bd40b33e52443ef2831b62c270650dea729d0cadf507a010e79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d73630cf56915ce706dd04cb270da1b1b0bfc75d4f900d72efe945dedea02ef
MD5 297c94cdd314ac7629112537d5054fe9
BLAKE2b-256 a586d79de4b3ad02147cd8bc8450ce2ad3153e66288e9b70c312c3ab070f22b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b3136bbca8650c0c50f73d2ac22db362d5e4f704bd102993ea0c46ddbe2618c
MD5 a9918b9697854f755f7cfbffc7bd792c
BLAKE2b-256 16ab58d4fc3e3e9cfdad4ae1052a5b837f935f2728795bee83ab5f7ddd57f0b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91003eb2f635f66e79e26013bff86360c9471086ec012e17bd25491f9dd1ffd5
MD5 1b7f97b8df123f04c622a1eaba6c81c6
BLAKE2b-256 dcdf74249024e69290ed6c289fc8e3b137da815d7e50fb828dc51fe6926d8487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b65484b1eb6f3e7f2ff83a5eaaf3472f0f1fff3a49edb5632935f1bbb99ab71
MD5 1c49799c43942c28b90eb2c307dbe89f
BLAKE2b-256 1247de8a415702e00cac1d3293408b9a82654627be1eb89de62c797bb83e10be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0701464126f9f1360cccd8f5f6238c9c133e6903eaacc0046145d04971b3dc9
MD5 ab70046ae3d630df98d91c79eb80029d
BLAKE2b-256 bfaf2749ecdceafb599be073248009c0ccddfadfdff8aada0fecd34fb9e2efbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6d0c09820a2e0c6411cbbc5a89bc7353d69ed6e759a23bd976f917c2bd73486c
MD5 abe064a0c41feb1ed2580bd7f1f63bc0
BLAKE2b-256 55b54f3d1ec885f029715e5fde60c3a1cc96645178a711755595ca99bb0f3bfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 301afba2336db702a365c52fe126920f04b2ec9fbe48e93f8ee26093486c0a0d
MD5 c6cd716fb3c59cba61f8f303dfbbb5bb
BLAKE2b-256 68afb581113a8ed7500b4370b987e20c17cd0f6c639d13a244d72b4f2223085e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.24.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5bc57523b9bdad8cf9cc3fb67a9f7163fcb15274e241f079b5d74e33e9a5db97
MD5 925729d9623f0d33b683e840009ea4bf
BLAKE2b-256 92f27929f70df28d5dfc32158ce81e9d7688474dc619853e4034c0609a948b16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5a4c05486479baeba27733647fde54376c9cb5eab5288b2aeb5449410b8e2973
MD5 de8af3a558028ebbe05bef818b3b6489
BLAKE2b-256 8c0a22a460ac9aed6144ceeb2fb9eafea469b47da50723fb7735cc4033e2058d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a3d8cba6dff64a58de2bf891af9b25ab86bbe234aa50480cd25747e74ece5d5b
MD5 d5f01046e4a7d403ee8d444b7d01d29c
BLAKE2b-256 4c6d75adb8e83a82052294f003343982913b7528f18fcc770b44b64b6e14d42d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d5b49fa20beb64cd83afa5132d6fee6a4f6d77e685d7b8bc5d2869c95ce2c9b6
MD5 fb4ae297271a3ee243546eda1292dabe
BLAKE2b-256 66e8527012e70265de1c33a889aed33d40ae6c1bf35936ba87a4c1282573b09d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74c5c5c385acdbfec00f4febb52dc44111e740cee34a296b58ce6b2113a362e0
MD5 474aca6f877e29bca8d7774e86bb072c
BLAKE2b-256 596154901fd6bf53c3d3d5bc101725bceae8e1e7b01e585f0440ad5350814f91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0c07072ca07e2084ab104ea0cef4d8982e3644d171c94cf80f2a0b63e4dc130
MD5 c0488eea2b6dad3892dd425753a3be4c
BLAKE2b-256 040a33b857b190286f921d276ffc887cc080a5ea7af90fecd91d748dffcd083b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d2394145a91f5971d94873056340cf7e5758e6179f7f8fffefd84f2b7069e3a
MD5 efdeade851d5f83168c19821542289bd
BLAKE2b-256 43bb0126d7eaa3d73e9c5b69fb0837373dbba4339fca66d781e514b04535bfe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c420e345a8af52cfbddd40525f5e109d130439cc657a7dbaf476127be6f76c11
MD5 f6568975a59670d68810e20d9dc8436f
BLAKE2b-256 277f76721edb48cd5ce2922220f46a3e2f963ccc83a6bdb8f9639e8d149899b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89b2381e4e62ce6da2bbd9ace23933710e6b9063a64ad62f4afaab36ebfe7289
MD5 81cdcc41cc02c9a5bddc608c6fd5c39c
BLAKE2b-256 399b362283651b166b100e6cb8b086b9d35391fff33e677803f7c1e2df90361d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ba08c6f82cae1d29454fa3659c5b6f846f2dbca050b961e6a59c67b4950d8f9
MD5 7e230aca2b25fd3d91c8b8b9f8eac6f0
BLAKE2b-256 5a71ad6addcd031c4f6ebfe2383cce23d46a6acd451d62167eff6e729c81031b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4232e340bdce528ab7231569c70bd93f534af6b67604c377c5defb66131467af
MD5 bd87a4af5d277d0e50886d6be940e535
BLAKE2b-256 25d5f4cc720bda54a700d3537d0684bf139016bafca0449edecc4456e16afb56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1aa3b71e0430223502fc25295df286b1ba98ac3d784ac9a4df8c2b6139e2defb
MD5 b11aa69e83c9788505f638c9e5e1fc49
BLAKE2b-256 62d9e5fc2dc25ee381479fcc42b29ac36f3457f94d7930dd9bc57fdae5bc1e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3d17228a496d4b1ac78385a3a79c4b6c0995aa39c1dad38464846325d72753f8
MD5 785a5ebca1a0dff8d29673e7fc24ece5
BLAKE2b-256 e925381d822ae64e930f626bcf72870c4aa95f2473cef3d24aa5a8edc2a6eb60

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.24.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 fcc02a3e15df7620fb00d5a98b9142f4509bbe8418c2f60650488c33d4aeaffa
MD5 c6c5e5bb1667e756cb4c965e7b15e071
BLAKE2b-256 72b6aa5a0433442fea4174b2d74cac1593e84fa0c93547b26407d759f6251071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 032b77fb9baa09580db7f55846dbb27606d5412cde385763f86abc3f55210ebd
MD5 bf7a31af32cd9235e264ef2a395c3c35
BLAKE2b-256 00d1ea837d8c909ae64b0836ef3ee21f1450df7beaa310a16147f1fcbc1d16b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c7950a7b1bda2b06ad262a6c41e6d11625b8db0119b50d90f82fa3a41b58faac
MD5 c5b69960f6ab7ef13de828319b1bb127
BLAKE2b-256 99c28cbeecdb33b8e45316438281376acf99b88609cdbd3357065cf298e9391d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a7f3a755501fc2b664fb39c8b35f3c05c46fdb8460debf3d56aac551c3b725c9
MD5 4ceeeabdae67a63f3e947008ebc82ef4
BLAKE2b-256 c29b26f2cc502ca1de1cc2e02ea16e45ded2a37b8d7d377ae8a563552af9fa55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 42632dd55d87d063579d12a4c64177228e55d9d0ed608b443ee0a84d33520601
MD5 1082b6421caafd9a22262cb17c4b6bc3
BLAKE2b-256 64ae0d0e6445fcdc84180a4fc89c938a8cc30af6989f2518d35b4f39b7c21eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 129765a97f2327d0c2ab66c5428eaa8e7f28859203f6d9b9c252223c65b8007c
MD5 3066bb193f99f32097028064b0900af5
BLAKE2b-256 611e05f93cda4231c99ca1b35517df31e390ae864790fa5339478e695826a4f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec8ebf9cb9cfdc1228f35351596d54a147fa6650702b079e31e65dc43fe71a17
MD5 d562928fec7e0b0e7caa8eac09654ab9
BLAKE2b-256 5e78d0548c8c0f4c8cc34ce84f0975060fad9e9dbacef0da440e65e2cbd5cbeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c2bc7c1940d048d2514885887e5d1e2196022a41a4c850fe6ec9c290d1e29f40
MD5 e40d129dfaa984901f10cbd22ced602c
BLAKE2b-256 c147767b40dd3ded5e6b3e5a6c5777cac38537027cda584833322d4fafc6c90c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0ee4f9e468f0b721087c2ba994838c4ebbedd63405a7a30f354c7d4631e9cf14
MD5 b7b2f0cd3946c025cecaa9da71acb45b
BLAKE2b-256 2aa78b3919c009c00eeb46517f0b8a947ae8463602849f4c41851ae812aab7b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ea08b36bf26c2472c4baa49ef45633d23ecf112075b164b129834d7433428ea8
MD5 711dc150816eebfa0d9099c8aa1d09ca
BLAKE2b-256 f1584b4fa8290da0c84079e856c2d23c9e00fec2415e1b1072d37c4de35b2827

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63643e4872ebe03998d27965d1846c49e4a3d9f011b1a0a11989d4bfbea1e1fd
MD5 3f4f43553f786239a8c2ab84e2c9f292
BLAKE2b-256 b1410eb2c88c4a2a04d1a63f1bd06da75cf54f5d75783473015080ad06bedf68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f7d2b3c6fbf94c7824c80f002da8d764257f683458d83769752412a282ca616
MD5 1371af0099cd9967c3c64102a7e4568d
BLAKE2b-256 ddd54b020cf9ece8a256322ab04b828af73f86dfe729c509c1bec9d91d8fee8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d06551ab685537bd5c269be09dc4696e739a6c8db6ead91f7209df96dd3406d0
MD5 ee54d25d9a5134a171e927bf11254bb0
BLAKE2b-256 a4c78dc821f06bb8c0fd1748620d9b9dc775993d9fd5c989c21aac58115ccedf

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.24.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 188874cce94a17b25dbd91eb8c4610bbb138abb7510c900a0be683de46987f1c
MD5 19c3c6ded635523956a74aee41bd5e6f
BLAKE2b-256 8dc31ce25f01eb1bb1447e1708bcbebc394e40c6ee67cb7b71b63facd306d61d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5626bf56301b45da66b51258e0e03f2037a585ee91257415e8ae89cfc85480ec
MD5 356346a1ae58d2ee161e25641c762655
BLAKE2b-256 056ffa339498ec12c1cc9f7943465a4e49d7a4c1ac92ced300dfabc9e0438da2

See more details on using hashes here.

File details

Details for the file pydantic_core-2.24.2-cp38-cp38-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp38-cp38-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f157bc564a2eca6cd98b787bd3a24ad6ee50a6fde9f2b515a697d0055c9c47ac
MD5 a5ad22374d2bf177a7dc1a791469a862
BLAKE2b-256 1eaa9394ac19378dc792f03e133d5cf1d9f80bb97f11cf7a6804024982226a80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cb23784a8ebe1b74f9fa9b60b08d4130547dd7e30e26b441da4c4a2df3adf347
MD5 91f5c8b1d31377fa0747b5aac817e25c
BLAKE2b-256 94afae6a54a0af1631eb9fd96542244dac2737f6c6280527e8bca96b634a5b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 509774b120bd764d42425c9b9f7483573252340d74a84d47125bee65289b837d
MD5 7ef5b4e3d8b1e97c3eab5079c2e4bf65
BLAKE2b-256 8e710e0597784120f5c7fc5609d12f078517894d355688825fd6c342e30fcfc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62bec801f64ee57c791a12ce5ebec349910fe7b29513ba990f5c6cfc7039dc2d
MD5 c0fd8f87ebcb4070a01edfd9eafbfb68
BLAKE2b-256 a07cc3f5f6bc2baafdd21ddb3550496d507cbc3f547006bf3c5aa0aee017a27f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9109977220cec99d1890cbaea395a20fb82ecafa55e0e40c5c23610b43583f1
MD5 6e3c6279ee4b94a8abc3b8c0d802eb05
BLAKE2b-256 e267d309f2350a12465299dc33e7b2ed6f4464925680f51e35a65854d89a130a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 494343a0a97734d708c995af55d6bab011430f86a281968df120991fe6024ffb
MD5 2902b3a11882cbfdd70f7707390314a5
BLAKE2b-256 eb524ed81f7185685db0e5b20ae6d3a7aed9d8c55dc01c4645d7af7ed040af1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f03c2ba78c884818020e840af0dd91738869f4ee7b1a8fafabb9525d37dbd42f
MD5 475e95734235855af7d1733a24d5aee0
BLAKE2b-256 31896536e3e04afec392dd2081f26a661d68d340d22cacb221f7845319cbb376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 39c9ea38b9814d4666acadf77decb92161ccba95faf44672b52648b83ef5777a
MD5 ca687dd0b6904d10d28833efd0be2e2c
BLAKE2b-256 289f97eae62f34b89b7f96d3d041140ede94e4b519ce95f8faca62bb27cf850d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d442ce705631b8606ae4ebbfdce63fb2e63faee8d50f40fbbf330bc57d0693cd
MD5 daf37dbdfc972a4fb170a725c2fb9c37
BLAKE2b-256 eb492f8a622fdc32c2bc1a7d03ed854267aa4e5a341cb97adeba2ecff886e946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aa779561bc2446467911456cb6ef354efb369499b516321b3e2f507b85f99045
MD5 531267006470f867a1db8a427fb7762b
BLAKE2b-256 99fb56f5db2ebb144703a7673f9c946d245d7865301eda9661b27680c712830f

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