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.1.tar.gz (406.3 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pydantic_core-2.24.1-pp310-pypy310_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.24.1-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.1-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.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.24.1-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.1-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.1-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.1-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.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.24.1-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.1.tar.gz.

File metadata

  • Download URL: pydantic_core-2.24.1.tar.gz
  • Upload date:
  • Size: 406.3 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.1.tar.gz
Algorithm Hash digest
SHA256 1997f8099d2822eb45498fbe49804acea120bb0aca827b427eab8e5db706b602
MD5 6ac5057a69d6f91db0b93c2d7c5115cc
BLAKE2b-256 127585049f16024330b2cb7318530e26ab0da24f3aa17f07191b6851aafdd5d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9d7b3f77914f7cf0f4d6f0730531f8d63f925e37ad2c9d04f9efd60204c51f98
MD5 f5e55d4eb83b3080de1642a3a42b0dcc
BLAKE2b-256 fa5598a0debd1d1fdba59a9caa6c4103f651c546ebeaa42420530441fa05f699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d1ee01a9e61dfbccdb7c11da346ad966a3e9b568c0c093c3ab9411229d9d5b0c
MD5 cfa95cbc0a7b7c907a002ec03e039d68
BLAKE2b-256 03440ac393ab99265cb10d45d637492982939cf1254587fc81840ef95f054261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1466fa089084008ce385400168c3a7905a6480e50e9363067568b245f2278b76
MD5 5c84c666941893d9bd23eeee8c7eebbd
BLAKE2b-256 a54571324ac5499ee08d262abd0b6549f87fa3dfb5fa83ed66b883cb1100d63c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 19647db784a9ea1686f8e2caf32e138306c5ddf17d3cbdc5c5f2c8655fabc8cb
MD5 c5c8fd8069923c1ab0c09c353dffd2af
BLAKE2b-256 0fe89ea4bc1af5ce0741d4750954d0b776d32afd953286eceb89e04a41acebfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 118b5f0f17f499d8856f2ee7851b573525963e627fe37b395567b946ad800652
MD5 5dd5570bb9a6de76cba47324de8869d3
BLAKE2b-256 6880254860323fcc1380fb25db583cb31203b5a8f43e99a17ec0b93d8597329e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a88455e89d82cb52db7c862cbee1507779d521e36c415fc3e97586e7b25c905e
MD5 437355dee230be5dc503eed4634284ee
BLAKE2b-256 922e9727d08271ff5d6b0dc8fc3f3293e5167f7c63fb97b1a3cfc1e209f5b05a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3215edd2cbc277bd18b8f8964e2242148a7d1d28055c01457115b439554eef1
MD5 cce3c8f569f6a0c5a01e9c0604e1446f
BLAKE2b-256 483433e8f833ea1aaf8fd53d1638f6f125d1c1fbb49f423d310ec79561e2292e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0bdd67712b5e184ced1b95ea813cf49820b4db881b846beaaad0402853ece10
MD5 7af892a9d223349a99152889fe0e7365
BLAKE2b-256 8ee54ceafc2ffbd86f5726d3151fa7c836675bf72b0632f6e1250783439d8c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec45bc9777eda46aa6918733eff6bf8c7a51f3565d5b277dc746e2e3bd33082e
MD5 d77c8770c144f19d1b4b2ed0304e69c5
BLAKE2b-256 146264657490ce18592991eaee7673f4509548418a544d1310bd4f109f6d9b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1de87ccb0449f91391d849ecb93ce4437ff0147924e938e2cefa571e19ce498e
MD5 f0ca4bcb77b2bb119ac90bec7f6483cf
BLAKE2b-256 910a3c70a11b6dbe5db60277c5b0584d93890a142a716530d741cbecddffa111

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f14203044181eb09d5b42d3836b437ffdeb3f763a3ab44af0e43aa1e30cc9294
MD5 c83fa524975a3eb9bc63ae42a5a53fb2
BLAKE2b-256 a1a918a2aed2c5b3eeb898e4ca2f5f6f5922697dc0891099562dd51633eea05d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2feda076e2aa787028ff8177a7df89c3bf1c20399a5946cf793284c529167325
MD5 1e9b75fa4f7e64ce0a5f0f0fc5889fbb
BLAKE2b-256 77e9352056a8e0cde446a18b134e789fd631f650cee80a91b8cc24d31b6800e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c2c9da1771ade473bf3c2ba941cb3ced8a14faba97c9ca5d8dbd88b3ababaa17
MD5 a737df0c52a5f43ea317b80fbe15e703
BLAKE2b-256 06f572ab906eb1df2ea9e6885af4e783d50e19c2bd643a7d7a09519acb2e3752

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d897dc10dded49ad148eb4b0c4371633ee019f29b50a6e063c5c673a70b06f82
MD5 78b04141c0c48c1fe963a0a8abe260d8
BLAKE2b-256 d45477e59a17d0f98d37ad65d51f3cb34e2b60a7a6c0bee3bdee4c7de3e7660d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b64022e4e4d77fcea012d40531393af0bc1fadaa360ccc298f86c4989dad741
MD5 8bb46135b2360f7f5306f6343f0dc154
BLAKE2b-256 cad3313984b980a9425de111de8f6d20b42c325551c8e5dc106ec65343812a98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fe664d169681196d268d2abae21bb4d28fe87ca70eff4652897553f3b3f24601
MD5 2149e7e49b41e9cad7b39d016083b727
BLAKE2b-256 068b21c416b39886f505ab9d8ae6eef59e6fbd23b80236be770aafa1307d6969

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb9088b94b24c8a1e000903840129e85b7a2e83b0519d65e3a4a0e74519512c8
MD5 ba464e3427f4c0e6fe37687a4119a491
BLAKE2b-256 8c447a9be09ef911347027ba6e776879d5e19c302061d7b31fb24f5b68864f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8760a8be7bc9f8dbc4291e93de034662e753df2e58cb1e5fba8043540a05b02f
MD5 9a0751516550a9d9f6226cca99379064
BLAKE2b-256 51717aa8967ed453ae40f03d147629ad427401e9e36040594cfac5b904635d73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-none-win_arm64.whl
Algorithm Hash digest
SHA256 0abe044c5825d71f1000ba8db7b3a787287f61f6b28e38ac362fb2fc65f323c0
MD5 ffddb15dd1da4952371b0b604f3fc7d8
BLAKE2b-256 000a7bddc87d2dec81a4a2214af815fc3cbc1ddaefdede178d802a2431ffb900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 a4b68979453e04f7536f51984f00d9db119ea6d59b946bcc291bb15dfaab2fe1
MD5 604bbccab0192feaf15fc94ecdcd7fb1
BLAKE2b-256 fe4a3d7eae02db1513d9efef340c42d25109d4289aeeb49fff4718fac1821eec

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.24.1-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.10.15

File hashes

Hashes for pydantic_core-2.24.1-cp313-none-win32.whl
Algorithm Hash digest
SHA256 b90acc143aea0d7862b91c4e3c9f79acc9d9961e8a185c184c0de5f9d1cd80e8
MD5 db2bc1449406d3c2e858c55645da31f5
BLAKE2b-256 4825f63b2cbc07ad33ad8cc668918df5033ffef4d57ee189092f1e104f64d012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5a670ede792abaa18293eb55260b96cb38e097a2cdc374be99ece67090534853
MD5 f7f8aedb6e1c59742db26c5ea1a7d268
BLAKE2b-256 68628cf0e0f330626cd4a81b7715f8795ec27c0607234c34d4b464017d6917ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e6a4826588599f8deabe97545777113d4f3a1eb3343f61086dc686ae128bada9
MD5 9ef6384ef952129e4572cfca4b8b907e
BLAKE2b-256 049676bc82a65a4a861085c4f6fd8a3ed37c70a9cfeca04428cbdc20fd558b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3bf8cc92844320e85523d8b0c26452ad86a3d2a45ff1c81f86299200113950b7
MD5 b04d6d2558246c789428579b9c752e6c
BLAKE2b-256 0d672721d33eb724e79090c59661f6ec89de2033d0853340b9288b5ec11a0f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d39ad0f744ecaeb1e947209483fa429797c6294c1f4008ae88ce6a5be1b5c1ce
MD5 b5af52ceed0b82b8d069a2727bfa123a
BLAKE2b-256 a756acec60b07aa8e394804f6aca7d505ef6359401a3df0c2ce9175ada23f70d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a51c12da576c103d08bd4d4556f16d0697da2a76e0bf5370f61eea9d46519c8a
MD5 7f0d33803eaca100b58fe4495633650a
BLAKE2b-256 1604d546cbaba484bc561863f62b1e6be1f2fdb161c03050b3552ce2f9de5fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 235add85530d7b3969499db5a20582a1fb17defcc0c713c58e5ed6862804b74b
MD5 5c320bceac97a0152d97351f7373d53b
BLAKE2b-256 07420206391d9e899c3f2cd55df790cae456ed49512a6d562c657c6b40569bd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b39afb78d74fa9d72bd53a5ff5920f4d55b3e779e486bf2cfb71951763d19dac
MD5 c9b14627b30c3fce022ebcea09fd6754
BLAKE2b-256 7b1b5f69c827177c5df6694c4e1bafd07fa559625f07c44e717e96e10907cd64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8e300dc3cd37ddd7d22d785b41c3ce3bf8f0f43816c58e619902ef334470970
MD5 1af3ea9018b870008f37b09d4ffa27a0
BLAKE2b-256 934c78dedcc73fbc800919872a3a03298b5a82375cf144dfcf73796e5a495449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e67b2fe64c12b4f44fd27009ca49308a066f533b4f8c5890c2e483f35cbd83ec
MD5 4f8989e9869fa511175c0ecf71952ec9
BLAKE2b-256 493856e8c0bbe726b1dd3ea5422cce8282c4ee0e727c0e329b67a8b384a17b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62760443859ed7aba8195c63c72e7570dabb8532115f22e3e96dfc3bcc8a7692
MD5 3d364d6621ca8d778955835b261f66d9
BLAKE2b-256 47c843b763a25e77af751235b03e82e7f7df4f1c492b78241931a93ba820225f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 09987b74d4e497d02634fc35a4269e5b7a51f9a6c2efde37e8af0a35fec51236
MD5 a23f94496adcdc5ac1f30e6d5fcd39bc
BLAKE2b-256 76118e99fe34b40785d0e39719a5f267090e476a716f8285e799e830a51dbd4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 972a94aab6bafa87c43f8810356a0838f953f953de4015212a90e06e93f92f46
MD5 cf2ec12612680766dc8b9831d5e40230
BLAKE2b-256 b271779019f5e9cd84c5cc6335d4b4b7018473a89df547e81b8290c63abc368c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 e1031f61a46f6eb5e7fc415fdb86d064827e04ae870750688c22eac663b1d872
MD5 a116abf4b92548c74c9c53ac87bc42d3
BLAKE2b-256 72a7efbed8d1f1f758854029abd5837a87d3d6cc668abf2bcaae1300a384d3ce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.24.1-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.10.15

File hashes

Hashes for pydantic_core-2.24.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 28f0691f60ba105d566fe7ad441fbda0f5e9ecd1ea9b119420988f32cc742969
MD5 4b07f82bb0ac85eeae3ef20f6a6f579d
BLAKE2b-256 cd6bf0eaf1b59330545523b44578bd435e7fa88838e8d85df16bd695c84dc9df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ce030f5b641ccc71df98c0a22bc24065ce665b2d6b36974377ee6c4164cb6dc3
MD5 233c4604b3b2932e12bf356686f384dd
BLAKE2b-256 5b9bc780281ac78246afd59d8b0a54e8e69d15f7f41cdb756de21d75f5f376a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ff337ffeebc43cd7eba99188594e07132c76b6fe8f52321d631bee84a967fd58
MD5 3bf44da02213700f6892cfe5208ca690
BLAKE2b-256 efad92a55c0902b713edb73cfc69005132dc26eeb06d76f28935e04b7c0921cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3a8ed3141aeb4f20755c10410b403805cd5f7370f1d0e1ba49052d1dd71775be
MD5 af73b9deb699b2b5359af99db711e4a8
BLAKE2b-256 091218061a449bea14c3c4bbdfa64c402a3a31ed65cde3041c007748087d8f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 56c71b25d46bdb72163da2f8bd9d32edd4a9c4d1f1a94e9bf1d5d320982e519d
MD5 dc173ad7e2d2614b51e9ccdab5d22641
BLAKE2b-256 4783faf737ae57570bb399e6287a2ef634a3eb9e873b0719873983a53293aa37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e7bf298157193abc6777ad0da8483a0e595d8ef28c355d32cc9e044ddab4023
MD5 eb6cb27ff22a5cf9e4d54cea36e689d8
BLAKE2b-256 8a3b4679b1f30f67fb4c65ced081050ef0d8c2fa0cf425155e0ff3c3b282c744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 390ed484541b861417fd8a0abca36779fc2ccbd1bc64baa742a89b396b8401b1
MD5 64b3ef9e1deec1c37bf7eabd055ff34f
BLAKE2b-256 c106e6a2f7d425f5816a7053a3e015292fafb75cad3317cdf40660f4203c2d83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2e4dae772576873eb44b61b69c1e46f25b0bdba177c9688ea2f05f58ffc6b103
MD5 974e1c67486512d92980b8e6c43faa7b
BLAKE2b-256 869a0a334162d95c28e5a9e839e8e04395882cdbc7b832996ff22b1e14f43d39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9a0de701f07b5b8dcbc508d0d5c39917403481f26ec054a70ba5c00e9cf9ada
MD5 f920d8d70b3961deac5b68ed6dc2dc33
BLAKE2b-256 15138c520aec3687cd2cec0765503f25a9f57a86e62cecafff3a195c83e21f21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 db9c7f491ad526dfce759fd3c5187221ed8bb1a95c843dca62d9eb74483b64b0
MD5 59632caee08dba656ff981c0d2bb5908
BLAKE2b-256 46acb9065cbd18d72e4929150a7cdad40b3b46fa5939fc554a43b0b633514873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 134d1cac88a09c8a707d2225c0774a5504f94076e792446c0f6737e6a31eb6a7
MD5 cd8328f4597e386ec5af576570131d6e
BLAKE2b-256 93a203359181a17917e129baba7c52fdb583a3df7c207495462977b082fa32e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e4a757f79eddc7de00715b130e465458408107a9d0effafe7385bc966bf1d81
MD5 d5f3b26882b4e1025c5a9b647b402953
BLAKE2b-256 b191dd2957765c338404b0e21c1ede8522541694ee488d293bc4117f97bb9b7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 0236e7839d75e689382bc6f3c4da7d958ebbdefbe9709301d6bece23113be6b3
MD5 f6d14e46a71af5fe9b5f6514b5ac8c52
BLAKE2b-256 a7811b3554010f22f4c55c95c04b65256582e8cfd35f58f5f3afafd4d975a585

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 305adf2d8fe161587807e17bb2d958dd414eb2b24f00662cc2c3151e3b549e6d
MD5 d6c497c1f5b4b74416a1e5566a97a589
BLAKE2b-256 018bcee43bf0a24227d28adf90faefc09759c0c1f4144ac8fa8eda64cd9eda84

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.24.1-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.10.15

File hashes

Hashes for pydantic_core-2.24.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f686865a1ad9572c27bacc0597d7d00b27d4d417ef6591619fedbc17f92ea3ca
MD5 4be4ba58162525f804fee90ca42e5d29
BLAKE2b-256 5fe48e925b44b8d9812dbdec305a4a75550fea86a6beebd2801d12efa394668f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5701f2daf4931a25246e0fa86043c0c5469df22289d9a79545f6ec0d5ed390e0
MD5 2fa4f228f2146b59c200367309dfff37
BLAKE2b-256 691070d7b59f2ec88e4ba21104b53d902ea876110dcbaaec0308f8035c1f6ed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f9194f9159e5ac56a40e244d200b7f3229736094353ae4d5aa207a6bcfb0c4f2
MD5 52d4849ac451bbc00eb4ca9e02f2e7d5
BLAKE2b-256 fa5f1d7c306e5611f7b9def09b5b417fe50dfa9aa6925131a18f2adb80897129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1e94ba032a3b0f2ab1fcb5761ee4e82881804a8eff9e97d4b99cfda993e1528a
MD5 23814d28b6fa4a8d16806b569c42a816
BLAKE2b-256 fc857be511de65f12787b0861058be260ae3f923f0a2904696ed236204b0c826

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e73ad21e482579ae21c43067d04f1153dd70b22dced57d41edd30259285d8ae4
MD5 3e77043c3c2f8eac51d26eb046cca328
BLAKE2b-256 9324b7cdbb319247cf86a60776805256e2d7f662eeae3527bf9a1e4cea228324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a0cc2e74767a2dd39240d325da73ae788659c040ceb90d29dac885bc6899345
MD5 fb884f3d1bee4582be4834f58190ae58
BLAKE2b-256 62e9b0621a9fa146378d2f19effa3d0c925c71a3e358d6164b19a1686cf55344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e7027ee2650f02fce4489c241cf17603bad9e16bc85573ad710f4e75e07d1c0
MD5 a2ccd07d1121efa7199ade96fc682ab8
BLAKE2b-256 6aedf383a018877944f0d3af429db3756a348937340a8a9e896312a7d001f8d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a02ee209d3a71aca37080e09d965c77c3bcb150507d8e58f59b0590d3075e4b5
MD5 ada089afae3101c777fd5c2e58fb63b0
BLAKE2b-256 72a3ad9c8b3169d615b0e1b4aa5a6702b9ce840774971f53a939abb4a4de9558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fd7de5b132fdcb24e51296752e54e68d22067622c23ecb72ebe55361fa4870e
MD5 fd8a6335919079137d63dbd40247a005
BLAKE2b-256 0c05c9d0bd277ca7a60026e784dbd3cbfed748c98a3584acc1491ab5956f4227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d271278ec806caff17ff1de62999c4f082748eb89700d413b1ee159e721f3f9
MD5 3762e702b975e2652273c4323ba71426
BLAKE2b-256 084227fe319150f18c406a56741d5a4056c243e46c6539643e19087c90db013c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8a1ac75c95f35b481306219c08f748772b82c08d60b9e00d17fd86b5b64fbbf8
MD5 03c2a52f7444f03f6a608e74bb6c4f49
BLAKE2b-256 ae76db2de586d4b8f43991b2fba8821d848fa2c39ed56c2cd87ae7ba0bef3272

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f52e7e506e488f9785c75b95da2f01303cd99356cab623129905538abe34399f
MD5 b8c27367b3f6c1e4718bfd7648af5c9f
BLAKE2b-256 a99cb76f1de35e411cf06f8ecbece1a996e968f83c5e732483eaf33b00fc934a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 a6ed51acdedae8614aada8147e42f9112cd7d72b0cbd5e8f4fbed014de6e28af
MD5 dc1eec3117e3e70a0879f3231f077057
BLAKE2b-256 0ae68a3fa5796cf835ca89dc5af38060ad845ae10a6656b832b2403f3f94ad9f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.24.1-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.10.15

File hashes

Hashes for pydantic_core-2.24.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 f9fccff40dc222c680c54b75295390901aed977fd33aa45eac9d3eddd11f8bf9
MD5 2a3ebc28888e1a1d4645ddc78d3d5729
BLAKE2b-256 cd7efb9af594d40343ddb86c1b3a40b247b6f19d6392a9abb159dfbd54be46ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6e47870777de0aa8f64a228bf630c3c49f4ee2ad863ba83643b4a0b8fa1084ed
MD5 eaa6c1b1927bc3e66a68d950a1eedcfc
BLAKE2b-256 8ea24ba03fcd5af4dc0c564d87a748a0d5caedbfd877a0d60a77e93fc422c3b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 764e353323c824b8e13d1320c409c41dbbacc31852bee70058f400029a49b3e6
MD5 ad63ba89cd0a2d6082107d4d0238d8eb
BLAKE2b-256 24082a3c1591ad81f1d1b7865c52cebe2550af6a3ba55376bd0415b70f778f83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ed13a3fa777f5c34946687fc4ce6a7b74a448034c2507cbfcd2c7cbfcfa90c1a
MD5 779e3addb28db4211db41af8c9288bf6
BLAKE2b-256 50ffabc670030091d60e6a4a35fe4c41139d581f79e62b025fa684cb11577d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ce3bbfacb321e029967d64d35950cac31efefcbd3dd64e55c432384cdf13f1f
MD5 49d3f6173b9b78faf3041c337885feb1
BLAKE2b-256 3aaa66776b56e3c90d467902f5530df3d9a1f9c38132c9e312363ce35b339ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc1426dac064f9baef2c80af427c1b44ad15f553158ac68f86203b9e3db1d075
MD5 66fd9cf23b283f63a72825dee5f55f21
BLAKE2b-256 9ac681befda1d252f31cc038017f50ba77ccec1b37df3598d10fc08c6d5ba3a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58f5b69aaf9b6a1cfb6426fa02480aee8f9a105d36b1ae2d913d90965ef0064d
MD5 fd66601e18e753887aeda3a822ca45fe
BLAKE2b-256 0728fe2ac61e776b789fcf907667705e70e4d05e3f694a2bafc0c35e160174c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3355c98d4d764388ca22ae2e09f84d5b7e5a3954c76324414409320e50c62dab
MD5 38ab036cf46926c8f70bbeb3533a314d
BLAKE2b-256 064ab95e8e89de3a35c2dc13fb361a652b6ed1dfa8af6cffe1a64c83db3b582a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd6853b3ea3c859fef469f80538c456afff09fa0432cef46d27adeec00f8178a
MD5 5bc65730ceb5dc1f3e9d7064484a1b6f
BLAKE2b-256 1fad54fe4682eeecf020dedf2c56ac8acb5712ef0cb543a8813fe72f52f8ea7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 09746fbd9d3d29321db981a8e5b75a9fa99e7beaf3f95a11fedd8eea1af8ca4a
MD5 428c0d90b83ab7a859590be103fc9254
BLAKE2b-256 1b482c6843badbfef471a32a394e9c2a21941318e64cd305c87d25663ab70ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1895e26d487669f1a56ea9c39583714ade50be771e0b56a6d57b018e6c270038
MD5 0ecfa33a54f53e2a40a975854087ab83
BLAKE2b-256 a6a50ca49c62f84f32f0dcbd4a676d2517e46f1092c99baab1332dad4743c6ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02a897b9818d77ae3eceeffa8c0479f5fbeca74e8dfa740238b16a5074cf6cb6
MD5 0e4b26028de94a78b496fd3ac7d6de53
BLAKE2b-256 2a5115090ba5cacba01881b96db39f2fb72fe2375da27f84e1d8ef8259177f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 8259f438ae4a244cb1f76f06dd151baa60302c392e10eefdd843ffde727df7a0
MD5 7071659966ee02c4024066a33d944bc5
BLAKE2b-256 730c4d165c53a1e3259814aa0253b3bc58ec7c8aab8ae985687ce469470ec3a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.24.1-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.10.15

File hashes

Hashes for pydantic_core-2.24.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e8ecaa852c95d1048ad067e494a922f9d7903cf8ff0e8ee6e25bdb5735ede50e
MD5 86779061f25c8f63dbe051020296fd70
BLAKE2b-256 6f60de56ffc95c9e1a366cc91bce664982d9484fd86647fec70c3e91a6f53782

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8475662dd6d1004aa7a4ec1ba2dc19ed2e7b62a4ea2fe0dd54dcbf85697084d7
MD5 dc2d64089a7e84c4c4aaf2d3d6c1be6c
BLAKE2b-256 8a16bf1cea4346d16f3553e32f8337d23a320b3eee312fb822c298066a08d8db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e5eea7beba17116e15d0b8efb67a266db658e0e255d0e08dcffcb10eb587f218
MD5 eec56e33b1c3257b4c5ca50998356a3c
BLAKE2b-256 7d6269d63b3b9277ebfd2823eac2fc834ad14acd30bb1674a7b28317b78dce5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b53a15b61ec0aceb379278356836146bae5e07491a312713003d7abaa5a3195e
MD5 af1cff8c437ff3051bc5230c33f62542
BLAKE2b-256 5339e955f9efabcf32f1d524432b75f0b9f1956d620d1fb2faf196037197f0c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d048bd491787f8453089796907a71f6f6ebc1239846f2c523e72efd9721f2b09
MD5 fba7c21120cf40494e903c42c4eb242b
BLAKE2b-256 573335ac58b71ca67eaacb75ccbe6184e19e2251493505c55a04d1ba04d36140

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8a35a08e225f5129aa57b191d4ddfe20c0949ac6689f2ec98e773d1f3bde265a
MD5 598aa21c0dacd37bb10d54bc22efa105
BLAKE2b-256 0378432bce1cbc0f508c7bf16814dd8e3f296295deef04300f5b45d370634f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eef1dc7c9c3bc190c86e88528e0aed13a70f5d06e86cd274af22a7cf160ed15e
MD5 f27c89029b920e62e2b536326ee5f5b7
BLAKE2b-256 b245116db260bb063da75c0322d0dc7bd2158ecd9f667d7bba9b5ed14931868d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 85b97f504233d0843b8a029d6017edeb2b66a2ec3edd24188ecf620a1707f6ae
MD5 c9885602d6b5f2d7eb000858237f08db
BLAKE2b-256 ca643080a5a1a8a2e8b8a945d2226881faf7d46d7fa0aad00d5ba36c61dfe533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa1e26cb186b0524c98ebfeb4257317e34d067bea18305cdf85c9053634bd51a
MD5 233f160b79e67adec7cc2dc7472daba8
BLAKE2b-256 64a15240f9248f2003e6153b7e177f7c7dad474b0731894e89e1c09125191576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d77aab305f94d0f3c8aabd8df73ca02eda662b9f97e6a7ddea2adf5c2d9c813f
MD5 6da618bf0a9e1ef542b08ddd416f0b6a
BLAKE2b-256 69f93bfe0be0614aff45d8f2c10a2fd7b7aae4580861a77e774bc05de6d3ea2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f71c775dfdfa959dd0c02b95eb5a1392c4cec8b20c89489927a1da6c49ce5b39
MD5 d63d6830e07833024725ad0181c708da
BLAKE2b-256 5469b18771a4c9456956455c36b8f7a22f04e7bc5b4fe16be26e7421cabd0480

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 59c4e6975731c2ab4e6661283b89de539499baac3b6476c34665c1fb1f47a605
MD5 1d7ab3a56c6d74011eec15282f060bda
BLAKE2b-256 53e4e881179f6d5b1d142065cc0af55bb0d37a3121a2e2d3f9f5e507030e452d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 236d0a2bf9b065ff24e780a88009bc96939bb3f6daee0617f0e53612c77153b5
MD5 57b91b98b50612037de9b5ff298bfc87
BLAKE2b-256 e0cf2882fe097a146a1ef90c423536c41b386342179997f310b021286a2d8ab2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.24.1-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.10.15

File hashes

Hashes for pydantic_core-2.24.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 dd9fb37dafe8df8467430addf23e59bc178f962741249ece708c62a0398d3f6e
MD5 0c0ef48b0aefe3befc38933e0fa6c66b
BLAKE2b-256 64868b2a042ee1cc7e10b388343f923307db16b2b4b648dd997f9be577854696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 44ba92bae7bd93659a8c4c656e9df6ffde7f9f755efc64337296c5c5caf0ad06
MD5 08ac28c712dae94e1af046bf9e2e9e35
BLAKE2b-256 2be3bd8f9d87b481e1b2210e8a976ebae6dfdecf6b07769793a36e09e5a25194

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp38-cp38-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 358f691b741b0fc76308a635e8e6679964e6961696d83c7dc5bf34e3f53e9b24
MD5 53edd534e6afe79fb0229b5a58fff37b
BLAKE2b-256 dac2bdf9f9c31ed3327e0f6ce4c63fee669dd3bcdc29d635489ebf826fa50d33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 182b070c4c1c21d675463d65083de7fbff872eb2a009f19c2870824328f995f5
MD5 282b74ab168862b24f45d2a354e11ade
BLAKE2b-256 1f1a11f17578fe90bde01eeb32fcbe5ec3c737fa0e80e019d2480340cb71321a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 518bf92ddb6fe36a9b4249f9e279b8b6abc2fe9ca6b4c442865d2deeb6049577
MD5 ede816123a3d426c3e5d702fd9426bc4
BLAKE2b-256 e13266aabe6247d0a1886f69e6d3b3f01f4a627994c3cc9cc17f00b234f9bbde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 462f6c419c62a94839efc9f973e4a5f32fd180ad9ef4400a5a8c6b898ca65aaa
MD5 41d26f1798bca2a6fcff76c2bfaa7914
BLAKE2b-256 54331084ee623f88662d492a43ebbf6edd70d6953b680bd235a51742810e6a32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 25428740de67363eeb4b704e7cbcb549268087d2488240bcac4734fa00490233
MD5 8b5083821d1d1b3ca6c09e23194cd090
BLAKE2b-256 f37015ae8d492fe7455a691039e9991e0138ba26a7bc4b47c4be340dff2d633d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3ae570f673ba8ea922fc991d8e2e4edbe25a5be8a49dfa61e7b824f38454849a
MD5 bfa66105627aedd0814849f11801989f
BLAKE2b-256 c74917905311913b7e31e11cdb307a1c7bd44a8f97429e4a7e5072b10289e0b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc7860ae1001dae09db3a62d926abcdd0cf3147655a49b7cbfe32465f9494b67
MD5 12a67f395843533076afdd13f3caaf94
BLAKE2b-256 63f117c31d182b3df91fdad9b1a2d2850ea8d95f44fd93cdeb4551c8a7dceb79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dde018af662d22527ee73698b573eeb087e59eaf2a6d2281d566956b288d124c
MD5 0b1a57e6c981b6f49ca87678823bc923
BLAKE2b-256 39991e55560e4a03cab79208c64dac42e8464dc6965ad65e0a9b3b68eb3d7ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 119081f96439c5f23ce740e2423c1cce5770ab14cad02f8f9a454d884e8e4cad
MD5 6691ad859fdddc4af659b7402e42920e
BLAKE2b-256 5ef17ff220431d4686017180b0b0e5a79d8dd0de271900c83199860cb9f7af15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.24.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 14128f85a8851544f805808701030b46be0e0b249770d89b40f3d499291ae6ad
MD5 1142d02e60d8dd6435102d7d6f52be68
BLAKE2b-256 764842d3297bbb4fb5bab975c5ef496a37c42580175c9f7025de9a0f4839a331

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