Skip to main content

Core functionality for Pydantic validation and serialization

Project description

pydantic-core

CI Coverage pypi versions license

This package provides the core functionality for pydantic validation and serialization.

Pydantic-core is currently around 17x faster than pydantic V1. See tests/benchmarks/ for details.

Example of direct usage

NOTE: You should not need to use pydantic-core directly; instead, use pydantic, which in turn uses pydantic-core.

from pydantic_core import SchemaValidator, ValidationError


v = SchemaValidator(
    {
        'type': 'typed-dict',
        'fields': {
            'name': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'str',
                },
            },
            'age': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'int',
                    'ge': 18,
                },
            },
            'is_developer': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'default',
                    'schema': {'type': 'bool'},
                    'default': True,
                },
            },
        },
    }
)

r1 = v.validate_python({'name': 'Samuel', 'age': 35})
assert r1 == {'name': 'Samuel', 'age': 35, 'is_developer': True}

# pydantic-core can also validate JSON directly
r2 = v.validate_json('{"name": "Samuel", "age": 35}')
assert r1 == r2

try:
    v.validate_python({'name': 'Samuel', 'age': 11})
except ValidationError as e:
    print(e)
    """
    1 validation error for model
    age
      Input should be greater than or equal to 18
      [type=greater_than_equal, context={ge: 18}, input_value=11, input_type=int]
    """

Getting Started

You'll need rust stable installed, or rust nightly if you want to generate accurate coverage.

With rust and python 3.9+ installed, compiling pydantic-core should be possible with roughly the following:

# clone this repo or your fork
git clone git@github.com:pydantic/pydantic-core.git
cd pydantic-core
# create a new virtual env
python3 -m venv env
source env/bin/activate
# install dependencies and install pydantic-core
make install

That should be it, the example shown above should now run.

You might find it useful to look at python/pydantic_core/_pydantic_core.pyi and python/pydantic_core/core_schema.py for more information on the python API, beyond that, tests/ provide a large number of examples of usage.

If you want to contribute to pydantic-core, you'll want to use some other make commands:

  • make build-dev to build the package during development
  • make build-prod to perform an optimised build for benchmarking
  • make test to run the tests
  • make testcov to run the tests and generate a coverage report
  • make lint to run the linter
  • make format to format python and rust code
  • make to run format build-dev lint test

Profiling

It's possible to profile the code using the flamegraph utility from flamegraph-rs. (Tested on Linux.) You can install this with cargo install flamegraph.

Run make build-profiling to install a release build with debugging symbols included (needed for profiling).

Once that is built, you can profile pytest benchmarks with (e.g.):

flamegraph -- pytest tests/benchmarks/test_micro_benchmarks.py -k test_list_of_ints_core_py --benchmark-enable

The flamegraph command will produce an interactive SVG at flamegraph.svg.

Releasing

  1. Bump package version locally. Do not just edit Cargo.toml on Github, you need both Cargo.toml and Cargo.lock to be updated.
  2. Make a PR for the version bump and merge it.
  3. Go to https://github.com/pydantic/pydantic-core/releases and click "Draft a new release"
  4. In the "Choose a tag" dropdown enter the new tag v<the.new.version> and select "Create new tag on publish" when the option appears.
  5. Enter the release title in the form "v<the.new.version> "
  6. Click Generate release notes button
  7. Click Publish release
  8. Go to https://github.com/pydantic/pydantic-core/actions and ensure that all build for release are done successfully.
  9. Go to https://pypi.org/project/pydantic-core/ and ensure that the latest release is published.
  10. Done 🎉

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydantic_core-2.35.2.tar.gz (437.9 kB view details)

Uploaded Source

Built Distributions

pydantic_core-2.35.2-pp311-pypy311_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.35.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.35.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.35.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.35.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.35.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.35.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-2.35.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.35.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.35.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.35.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

pydantic_core-2.35.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pydantic_core-2.35.2-cp314-cp314-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

pydantic_core-2.35.2-cp314-cp314-win32.whl (1.9 MB view details)

Uploaded CPython 3.14Windows x86

pydantic_core-2.35.2-cp314-cp314-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pydantic_core-2.35.2-cp314-cp314-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_core-2.35.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_core-2.35.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pydantic_core-2.35.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pydantic_core-2.35.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.35.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pydantic_core-2.35.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pydantic_core-2.35.2-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_core-2.35.2-cp314-cp314-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pydantic_core-2.35.2-cp313-cp313t-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pydantic_core-2.35.2-cp313-cp313-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_core-2.35.2-cp313-cp313-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.35.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_core-2.35.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_core-2.35.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.35.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_core-2.35.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.35.2-cp313-cp313-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_core-2.35.2-cp312-cp312-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_core-2.35.2-cp312-cp312-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.35.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.35.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_core-2.35.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.35.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.35.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.35.2-cp312-cp312-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_core-2.35.2-cp311-cp311-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-2.35.2-cp311-cp311-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.35.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_core-2.35.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.35.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.35.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.35.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.35.2-cp311-cp311-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-2.35.2-cp310-cp310-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.35.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.35.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.35.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.35.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.35.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.35.2-cp310-cp310-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-2.35.2-cp39-cp39-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.35.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.35.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.35.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.35.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.35.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.35.2-cp39-cp39-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.35.2.tar.gz
  • Upload date:
  • Size: 437.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.7.15

File hashes

Hashes for pydantic_core-2.35.2.tar.gz
Algorithm Hash digest
SHA256 e010b13ff0d6375ee83f7478fbda42e1fbf55f1b2feef76b673c40861ffd31e6
MD5 d4342593aad9b593c112da7ab0805ec1
BLAKE2b-256 391a2601a2cebeb77d88fac128881492553cf8bb3c5b6cfc1d8de7a94df48b95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d50783e34b634fe11e3f7d329e4a6689965d595e40f9ed22405d3802647cf77f
MD5 1ba3f409f49f2dbf4c0090e5ea8a5537
BLAKE2b-256 8fc3efd6dc2a27bbe9dd3abcab945ea2fd60a1a94b0e30eb49363e1f88de528e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 83f8b62a2d6be052a5e0b990f2b317f83c814db51825ccef6f5f5dfee1c06257
MD5 4c3d81a3061e9ad7915f91cfb4e9e3fe
BLAKE2b-256 6836fa2413b797db1ddae26e13c3a6e637a2b332a5ecb6caaef6383a597514c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 28dde3a7e0236fb59d939f4e85887845fe9429aae79344c7fd8de4f8ad45bce4
MD5 a3f83a77f73530ea6b28d96113621a4d
BLAKE2b-256 a2eefc63689f732616f183a51ddd53585204ff4c12d87cf3e6ed9abca4aa8845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 79a7a06006f8c7df6645533cc44573287b02e78b0343444aba4e2c36ad98fbd5
MD5 a82fa69f2b76dbd08eb26a24b5d2c597
BLAKE2b-256 968b58533c6e2e78d5e3ba50f695bf82892d3c9c60c2a2de9462dc12e23cd85d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.35.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 831efa6c2e5de5ec7da51cac90ae10e9e7233033f58bf20f8713c9b433ec3c0f
MD5 3c7279824b96b4a1209e950f3c67ee7d
BLAKE2b-256 793be4a8b1463ebccc9a176bf4ed9bbf38b8e44bcdde4a175446d5fcd37edad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd6df0bfb8517aa87efac1c6a06e6ef0d54e744aa000bfc9bfc35dec2a3cdd49
MD5 a0db86036632752076c4252cb908d269
BLAKE2b-256 a1a2c1d7163c7ec7e2eb7c6218e7073baf3875eb663727da2f30d21333b15873

See more details on using hashes here.

File details

Details for the file pydantic_core-2.35.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 48d8f836abfbec75dd454abc49d45b12e5ab6522fba7530a90a1a60e6e4726f8
MD5 85fc1c79f5839e7f478557ada98d0f1d
BLAKE2b-256 393b29fbd41569d5adb8bc2e8b8fa9b24f0b74397f9c2863b0d8bf920569058b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a20dfdbae8a102bd3a66c69bbdf575ce27b83f7f971525a9040d0ea34a749826
MD5 8894154a92db8829b0778a1c72627ba1
BLAKE2b-256 c710d3d55d48010455c772154a5f0cec4dfd859a6ae94e55c69362e8001b58bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c0bf1e8531c3497b6920329efaa84a94a4e679cb838ba9122dce663c9ed3de6e
MD5 efb47f0ec7ea89a27d1069eeb60b50f4
BLAKE2b-256 317f7b75e02a65011d6971ac1e5cf3c6c10a6b2bfa80d3a4a4cd7ce9bade645a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 fff63fe28079e6f292460aaf32e46866782abe5e46736550037d8a0d2ecba602
MD5 1c1d90e4d17aa85a2c472ede60472d68
BLAKE2b-256 24b140b7eb6a2439fdad61552100302d7a9552b4700f8f0bdc210856b62bc5bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c7c181d5f23fd060a883f3676916ce3213420e2a7770df9715299a1d6e2342a8
MD5 1a142249312a889182aab1de478c5d32
BLAKE2b-256 1027f147c780c7bf85e33ca32c9ec4a1dbb62ee748631d5f0f48a0686b4a1a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 20f5f887714527feced10a0d990d62fd4ccb0638db24433b0abdfeb5612027e8
MD5 c78ca83d4221edbde2a1413a00802d9d
BLAKE2b-256 dc018b04f8dbb8bcf45abc4b66c12df7fe4af44d88d044ea1e74632361537ad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 daaabf25ee01056964ae55d1e54d9b5e70c8f5f332c7f8d3886e074e3586b1c1
MD5 5a4499f8f5ba04108a8aa5270135e368
BLAKE2b-256 37b04b80dbf945c62c6ce2cab2a38367ef3d5c2f0e4144fd982c4edd93e808c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2438970f0a921509802d983e1f34cc481785e94b7869316c3cbf0b4eb6ede4d9
MD5 63d5f1f3a8504cb84ae78309c6888475
BLAKE2b-256 2252df68d234e84589fdf41a0782f0ad316e097ad8c545844fc31debd41b14b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed4896efca4d8e1588c22b621e2501f116f15aa136231309c264baadaae15fb4
MD5 b45edcf6200f09a40acab66f467edd0d
BLAKE2b-256 1124e1d31aa070906e6404ce0750a3a78c1e52b91befa904880180a91b07fdf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9cf4c586cfbcab3cab149f66619491ac90ffa263acfdf121a20d3c076c790fa
MD5 7d5213f9093fabceab21022741933e91
BLAKE2b-256 d6d75a662e0b6ab229b964de62c2a3b3374db6315804a868ee03ced40277a0e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 255dbe8107c4fdb77366e4791aec20288e9cae1702340167665d14a9bb28826a
MD5 bd828a62b14ebcf7ab7fdea1144ab62c
BLAKE2b-256 512ba00dbcb786d2010a10586b93a208e0bb3e8de91b2b83213ce3f03ca08953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 efb7e06be8a196787173edd8f391e8d779b67b23a6c075493da6a79dc4eee7d8
MD5 293d4168b37d7b08baa186ee70430590
BLAKE2b-256 a6b96b1ea767a5b8c2095f0c42d159479bbcc890f63328a96b5cb3eb41a156cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 723c42a6d1ac459792d514d93c900179f25bcc0f4d9d0d93950f9fca9293c0b6
MD5 e785449e24b5aad786e1fbe8fc4cf72e
BLAKE2b-256 011ab114629a36122d8914005d245d755b3dbe4869f4a9eb8b1df6d4966b11d0

See more details on using hashes here.

File details

Details for the file pydantic_core-2.35.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 658ea74d256197d025cbbc6e02682e57af806e0f63e2db3a96822585b9cb399c
MD5 294ffc42c1b5944911689c3b928ee233
BLAKE2b-256 1461eb259896e54d6786a846093cc1c520535800ebbd760df1b22ad0e5361758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7fe26646e559862b3746a0d041a62e354c726d2748201fa42864350519392186
MD5 9813825fa2e10677391132ada7c4132c
BLAKE2b-256 20da3a44d1551f3fe1ebfc5532ab9d3c3c6899af08039d7c733056c831909f77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 55caefa09d87be7ed72660cd318ce2ecff8dbac4e0b7f9836d90b3a44435e76c
MD5 277fa24cf714e1a6bfafb81fb4973b41
BLAKE2b-256 aac5a283e96df368e83e7b265b7f5468e4a547ec1aab4968d43c319ae057cbb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 32db6926f8052156ba1069bb001c6bbde8b313d1bd1588d25a08a6c08f36ce13
MD5 8943586a5a120ba1c863b12b2a4fbce8
BLAKE2b-256 0e4d711b0d104c369872798268af12a4f4376d4b654a96ff7b214149ef2287da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aa3f99813b36c31e931158d8f4651b6a43d7f31393160b71b5e3b84b3b63d95d
MD5 b9728dc69d36f87e12393d0e7de1d5e0
BLAKE2b-256 ca0d0dd893a4ea3525f64ce5803a71ab5a2b9c60fefd47fef98da8573d1ab8b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fe1759f2b271b08a72067daee979ee901b419fafd2a859ec65188c78055257f2
MD5 2db6a7f27bd784bf3d67c21c9923e345
BLAKE2b-256 f083edf1dfa0d038645a049c7fc25b7cdac67df2175b7a876062a6a3d4f2dd66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e0d1595cdd5909fbbaddbea6d75e9c2906ce83987487a6394aef9a5bd183f298
MD5 816890e9d202b6fd9b1308bb35d14cdc
BLAKE2b-256 8f841774de8757af4911cdeb6df4d2d950f9943f8f1550115ff5f86ec53132fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ad78aab617fb7dfba6467e74ebb96b0186c674bf4fba62e5d41a17136309cff
MD5 b0257bab3271e802b6de41978eb409d1
BLAKE2b-256 817bffaa338c91c354713ee1289a8473353e712e9052b2210927d02f8274d599

See more details on using hashes here.

File details

Details for the file pydantic_core-2.35.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70bc9c0984b9b6da0f064cd5a1b6b5111637f30dd05999f565faa6d5e10e5e62
MD5 7e23b0ba19283780c92a60a159d96831
BLAKE2b-256 3113cb780bc228619f3b2e5e9395a9efad5030fb3fbe658e25856ba270fc0bbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 777e3ce61788df541616f78a40ac3fb1c2dd7048540f606f8155b0098cf53cda
MD5 de2fafa101fcebd932f1259a1c2aed34
BLAKE2b-256 0374fd988f56f1632a4fc029e9497c9408eb6119905204759793370044cf9ee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c027ebeda7facfb166c7c971c4ff32241b006587bb73aeb5a980a3e183e0b15
MD5 339163e587123e418c1ad14e1678c7ab
BLAKE2b-256 cded01f3ece1ead2996c7aa5b386f2dd520067ac5df8517a559f86e7ca729352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6512ce3ed05be2609527577d7111d7993086945244345192ec74f7184c0afd05
MD5 b036414b658672b1ceccda86d9768840
BLAKE2b-256 8d929cdc56f94f7be249332dcd1ce1a8bb9cf3fc9300627961d3aec7283b954d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cca7e87119a1c692e9b45eb4571ba016850c0d5567a8376f207681f6b1eada9f
MD5 4ec22bd05ea50fbd28c2cae12889a791
BLAKE2b-256 a05395e89a7667a6baf5d18b84f12858992a33d4e24840a0ecc4cd6c3129704d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.35.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d2c4b7b6bc2dcdafd43e5438d3ec07ec946cd0319215e8753044a51f014020b
MD5 1ba84557b8fcd6f6afa7eb5af4c29fc2
BLAKE2b-256 a79526663d10bbc399491eb59092798fc9208951d4daccd745216668b193606c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbbf234a2dda1a230ca0d322f12ce63d1671e471b81826227533a7a516aca587
MD5 e36f287db86437d84e64e4e9b94253c7
BLAKE2b-256 652f53d88d3c1ca38203d917c48d46eab3877e47d6c959d36d4ca33ad6369919

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c98d315f6bd97d972167da5c0d00c4c10fb1a6466faa7705c90a4e8dd62b283b
MD5 0602490886d62fbf0faf330bbab4bc8f
BLAKE2b-256 a6003c68826f05f52189a27a0632cde09018848b4ef86d8b6101cc500de4534d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 9a5fc71284a976e8567f819e59ae2cfff90b601587391d0ff30753a7cc921ba4
MD5 a23cc992e5beabfc73c0ba69f5fb5374
BLAKE2b-256 e71942a9e6bc18782fcfce9644c5dd0e8bfc070c5c76d21da6b5da42c1b8d957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 70c670c7d6d09c52556063c827ebea052f365c6c00d55d7f797af93d416776b9
MD5 ddd34860a8eea91a567a6098081d3501
BLAKE2b-256 61602ae343509a998ac75152a9c1e64f0a9001a00c7f287425a036805408ba6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f43c7dffa9927a89053c38c6802ee8ca3662a58f590f2af031c440dc6d8c9687
MD5 dee951ef93f4e8a222d406e9b3806a56
BLAKE2b-256 ec37ea7c5cc3f52b05399a4a26f1d81146fb6d2d42b65e240cf873a25adff7c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7e4a161d53d7b2b06836624cde0fe7cf250029771510c24e9f036ff8d4232b84
MD5 30652ab1a5e5d4ca1c739cc0a1fa58f6
BLAKE2b-256 7041179c19b52cb3753a05f574af46e222f0e1cbd389695b357bdc664a21d017

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 61e801276b7cc7d64866d19fdba58b47d85ce1d3bb74023514871c060f500680
MD5 abd3fc410933cf146e1fd5187258cb87
BLAKE2b-256 0bca1bb4a1e23abbfa1d2476b6a33494216f62ff41ffcfe10706a2ea15a7ca3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b7d62bd120a3c0d6f8ccfcbe8df4690076289dbbe7435038c076c2db7ee5f241
MD5 9568ede06d2c8eef14f69f2eeb0a4f29
BLAKE2b-256 31b4b88244c5419da51e58ecd3248ad429f038b456786433298c330b4a62abef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e489d068417e4e4ce2436d90e1d1593eb29dfe444cd2f3b565f4c4558c06350f
MD5 a23fd6c729dc2365ed82aa5345e1b425
BLAKE2b-256 5fae7f382d03b5c0afa9b218623719d754442396e9564f2748e8d4b6aac1bf0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 925e8fbd8226c6b89fc98dd5ad4c745674c0d9722a314cea174935cdc4e03aaf
MD5 228b8f6a74dc3a0fc7b5907f9ff96be8
BLAKE2b-256 8a511365cb7520754b1e4de373574b28758613b5adfb97c7ff853151ea124495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cfb1b28a1536977a0fc01de3d62701af87b92ed69a87893c766d87a825a136da
MD5 b2bfcff6ea8604b84eb4c1e86429fc13
BLAKE2b-256 ab5e214bdff076d40827d154b73b333f6c97c578238dbc8a191092d3831ad932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85014d139aeffc3eef49ca31dcfae7e33deb318d98bc91d3641c5237452e9fc2
MD5 edb786dec812ed22b85e6e51e704ef59
BLAKE2b-256 ccde560965eb01915181a0f966c2b567dcb43c70114a7115197f2ef6d9aab9ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46981f8cc09a05243adf9f0bcbe4107b8dec7988fd49b35b5d82797d1b162a70
MD5 ca2c3ec5187fd5652eda9631f2df727d
BLAKE2b-256 f1b36e3db6bc1075189a75f0b7c776a9d3ac99035bff0f15e16ec20e2ad65a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 74d1ea189ab9f0c41bd8d32728f399484aaad2f23b7cc02dc058f055a4bbdcb3
MD5 45cde88f92bb018c5e7b4e9a9d864018
BLAKE2b-256 86fc48971f4ceb375739ce9fb24fb435a97eceb886bbcf10b44f61a09aba6d39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3df7686480d6797b664e304b78e9ef8d2092f65254999791a8935c580010ba5
MD5 26fcb54477823683784b919be3f4701b
BLAKE2b-256 0d58c0325e8352432262c5e46f6616cc5cb3ac4948358decb337a6681dc4fb25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d4b28d4d85627b20bcb212c5e1e9b64dd5dd03521827be9215a38cc81d159e9
MD5 9615695141b655f267875a6e7a463ca6
BLAKE2b-256 a4745cbbc96d26a616276b505e9e131df9a127bc198448b2d7104c4a930cf944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 08cf09bfaffe3b263042d1fb6fb3d2c489f5caca35cf75daece350e08dcea0e0
MD5 86ebd20657e830405608e05aaf379ae5
BLAKE2b-256 59084263e687d558c6fd4f365f8bf1472af0f8f3c0858a200f3f3f37326cbd6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4af1513116437372e30bb46684f1370bfae642d15e122f358c266714653bfbea
MD5 f41ec993f31e794e9151983fbe9367ef
BLAKE2b-256 9704ad3c36647e19b5f4c2f4fe3e3fe8a8f4f0fcd8a91c1e87095bcd2fabca23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 516daf05b92a9211d0ea0ca26cc0bd5ae4e475dd4a781ae424fbfb68ac74eafa
MD5 fac6277486c0fea1b32b4ae3698eba0a
BLAKE2b-256 3747526a4c40a6d250f1d6374af5c46b2174c52e3c34ca8dfa3a0a5d0413608b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 803b795a036c4c89ad1e8d0131b2a86a17aeee29457ab53de7568e5cd5dea2c0
MD5 5a13fe644dcc69eb94ea1f0efed26bc9
BLAKE2b-256 20300464baddfb951f058c7d0e8b4357d0c50be7fda1a03042fb765057c0435d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6544065eb63995e6c8f30119c8297acab0426c07231f33b792fb6176c29ba771
MD5 14a828c41f289ee5f303321ead7433c5
BLAKE2b-256 20dd12f4c03bc6e065d4243f5dffb61e2d73a39663ce27a2da1ac68746459308

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 370f96a267fb7e143ecc72a94300fff3499d876aeeac8e1c40469c8602aec417
MD5 fca7469d913804e9751c88354d89bbd7
BLAKE2b-256 e0fc20ad4c9c2d0e0792676f827f80debc0acba1d572967b95e78ae686165fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 41c9c4fc187c44865b3a8350221ec5ba3b4ee2ddd0519b4adba902005ab0699b
MD5 86b727321eeec4e1b9cc076bac4c8e18
BLAKE2b-256 46a878e88e813d854a5943c26f21824740c6d420eddeb0f33384b7017170f5ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 92c2b12b7c009ae08c056b7f02be5bb3a8e6d15d9127f93c8021c1c357766eda
MD5 4350e6a767c0b11310d7765751b2b28c
BLAKE2b-256 fbc40567bfbed1aa6e2ba89e02b65756fa497f33e3166b32708a762f1abfec25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 69c0a2d6be2d4eebd95a34e364488cf5b81424d678902f3ea78fb10a17087fab
MD5 9d2b3e723bef22e97cbafb02484f411a
BLAKE2b-256 47ea6aba53dc827302828cd143e578b6b3fafdb2904a5f06ecb9473e1782288e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a36a887d0cf03401899ea645bbae332174261595c130427da09b610db0c28741
MD5 3e5fc6d1277f74d49a846024c2ec7fca
BLAKE2b-256 6edc39414460f2fd61c34c765b19977c1bcbe790bed59519f001bbc544ec672c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6dcdb03a6c9a54a8a8d31dd8a4360e83480088bc01f39dd418d7ad0038ae749
MD5 f121c1bc41c60259ae07e9fc160f617b
BLAKE2b-256 2d459f2fee46079b6a73436ea41788d941acae25ce21a98d1e9de472ff678981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d98c0555fc071955e02655ebfe93e3517f4f1078cac24a2a99ae44a22d178297
MD5 6349f0f8ba9b6cee125a14604946a3e3
BLAKE2b-256 055fe1c23fd7b498bdbc697d4e4dbe24ba0c9a2a2ac19c86a84a2e7d6d99ee53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c4e02ba313ad4a699540346296b045a2da540b0855557d505cee75a62725c105
MD5 31c5bd44404f703eb1f3a2921b084ec6
BLAKE2b-256 9b3fb72ca0dfcaaab7864fbb749acf7b25c74497593891ce4dbd732e0bd1ea31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1dfdcc070cead35ecf3f7626918152153882564c3ad89a32eda0ae99082881b
MD5 b7fc88c6084cd6ac8600a9b58d76561d
BLAKE2b-256 91295b5ffb0a428c8c01007d2ea57faed79dd0488d927bf51d9c523c44a82fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de60ead6376bcc20740381fd9329184ee89062a4fab3f7d52de8884aa8a44728
MD5 865a690167efb0344148ae88a0bd078b
BLAKE2b-256 d73684a0c89f34f47f7ccd2e1e8c45796e1206683c84b2c63ea70eb5fa6d52df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e20698eacfd33677b571ddd3fe9ea7b7391bde3fe8792ab8654f199efe8255b2
MD5 cdd993959dabbf97d39cedc7b7dfd0c0
BLAKE2b-256 0d7f710de2e14379b50d0ee34aeaf96fb492dacff0c8765e6fc6ed6ab8d6d006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 729c3cddd0e853aab1af68553a9ff84f0634ee3e375f5f810ceb18e984079713
MD5 07108b4b3eb67999c7f64a55f556b3c2
BLAKE2b-256 945fa9063d1f3796f97782558cb662e799fc8d277d62964c3a1f2013706d09e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9027579f64a3f11f812e7db7e0fb834b7994706536ed37101ec218b2755e80d8
MD5 57bf5b53590f13790a338e0d483431a7
BLAKE2b-256 92af20c9f56d0659abfbb89d82b97d60fcbceae4399d0f4a1207ce5f2d685239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d536dd9dca75f1dced3fb704c8a5b80a326ed2ca4af2531f6cf6b70f585f747b
MD5 919b417847ae4c6b3253370e6a6a7c2c
BLAKE2b-256 3a4a29f4f6548a0c53a0bf1ae3918e0c8451f5653792f94d2a7d7b7a0b2150f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 a42825c9d23fdebb1d1ae4a918c8cb8edc5d5f6c041437248b4dec0a322f43f3
MD5 7efb8d6289f19a2c490c213c8222d6fe
BLAKE2b-256 3d34f76f239e62458d4be48e201195fdf3d77b7f9d75f5628854b727366d5d8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2f10619f4bbfe36abc31dd12804fd4dd6da79db578b4fbcfdbdc0ee56cc9b150
MD5 13566ba6f1fd0d3fe742acad9615c8c0
BLAKE2b-256 df518fc6b935d36058dd6726588a568ffd2ae612dee511f02ff14937f791c631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 988d717f73612d82ba73b3a31014564d8de570d411c0a05576756b2105bc2800
MD5 e9c53baf1873b1e6cf28719956810c69
BLAKE2b-256 3ff66aa0fce0c0f1b434b6ea78026e8bf894531b262c939062aa44365b0a2d41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 218c90e2fca779a198e1273c3addd32ee1c6120a07a58c0cdea9d8688b50073f
MD5 b4575737db183bb916c3375a53a62078
BLAKE2b-256 ba5da12afeb9cef9ba359520f550f9210cd98ef78a9cb9a2eaed847771087c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5fdc842abb24b14f2e757d0f6dafd292417437dde1f391f7875fb4d03273a26b
MD5 139c6f27f002a95b413bba6133889de0
BLAKE2b-256 795b822df9feb2e54109d0d80fbfff5698975aedc930e88c02f3b1a62252c622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3cd7c55b6f98c0118d4e0acc4b13287e4fa1eecacf72ff0a5b6b188a5ac4e2b4
MD5 c9c4fa0f478f3874e8d1bdb62c7d002a
BLAKE2b-256 44f22c3082878354cc89714d232456dd1db2b8895c15dc222afaa119afd213e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44edd82679764e5de486df386ddf640bd9ca9cfca2cccf97f36635c8d68c6648
MD5 0cabd091a867a706c6968e89331229e3
BLAKE2b-256 62b2dee61b1023f4fa3907feb00a7eb26f4caac0fceb5bcda9022eac764b0f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e0e44b9eb71c5f5cfd3104efc26dfb983cd6156211a954fb9a7eb8c9bed15ac2
MD5 a8e477f68ba3ab6b6ece3ccc02152a75
BLAKE2b-256 93dd7793f37066eb7c040965f9fcd858fb51a1ba05c52ef3b384ddc4e9fc3283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32f313bdcb843a584756abf3ba8e5f9bde9e77e54dd0d54192ceb3de0121c6cd
MD5 360d9e416b1f278bf10e99d0c2c8df09
BLAKE2b-256 b4a1239ba1771df0bd87a9bbf6e99692053386d4c4a492848e09d10dc1699932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ecd87e1b865c3660f1ced84f12a879194d127eb95d84a0653baed2e5b871d215
MD5 246f4b3198a50afbc353a0923baf374e
BLAKE2b-256 25071923a0258f7405f8bdaeab7017ad4b3f90802d7afff803a0eb6a33ed06de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a0be0df724926b1e7bee0d798091bb64672bfd754f2ebd30b04b370b597090bb
MD5 956e16b1b9b3cf0dfebf10b26e7d5424
BLAKE2b-256 67d08b02ae2011ecc63fe1d7d70e8bc3bddac5dc10a75698f3bb46a3e3eab943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 418aa2d8f09dda756bb3d7fe6febbf0825d2eb9a974b4d2ed6bc9684534f7014
MD5 b047d3fa1642a38e8c254a16886fd5c2
BLAKE2b-256 439cf7523880937f7127804221a63e51e02d65b121aeeaa4f0345bf80efebc35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8ba33dbdc2f6bfb5d358056fba485bac4b7ca0880066fbe24aa6c034d975057e
MD5 54c95d8c9af071e347edff09eaedcd3f
BLAKE2b-256 c570ff7a04a67b061b644fcdf973d52b2aff4484a463be8b049db4d645862975

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 bbd3ece84327c47cffff0bcd443dcc407ee9352bb8e075254a0a4b6abc54d66a
MD5 07339ed134b249a77cfa734bbcb00765
BLAKE2b-256 17c936f4c881b6d5e8cd01d1d84a74a96768aca2e9cb567b87d6a83bc8e30ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4ec8f579d35206fe555834653813f9f0e45d317f54fa8cac7d895c4bc3f7d041
MD5 f110e31223da9294f43dafe118cb052d
BLAKE2b-256 98ebc82a74a1adb78952560990da0ba37e1f0bd5c9630470c3b4e5b51a5f6663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e448877efc56315c90fb21c2a067188e77e2965a522c7fd0c8e9e7b1241aed23
MD5 853e5a53384f49338fa5a061fb983f76
BLAKE2b-256 7f0dba94e8feb6e8c1e3d5c291ef66575f6dc8db940ccf92cad9e1deebc6f0f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9dfa791d24e52cf04f6a2e72126afe56de1e1ac63aa47d6154aa64287c7d2f3b
MD5 521efcf01b0d97d8ff2f0dcc00ba12b8
BLAKE2b-256 072f277f493a7214dfa426d9b3bb89c1729fe9677fd543e1f5f23bd3ccd6a5e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f25a78740b4713a8c82890d1f9ba2aa2981f1289d62b4a64d6133d254077dc4b
MD5 40ea86f214c1a6750ef21455f6910c44
BLAKE2b-256 45f58db4fad46b387c40b13cfd1e170f39044bedc28fa8b845810e5290b031a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 605536d022899a25923885fcba8d26440a1e886d1b4a30efe8aab2904df9a19a
MD5 1b6395bdb70a1c9bc98d94cd1187da89
BLAKE2b-256 e1199a7037407fd222b59689c9eefcb077fbc7e53c4911183b87943f384510a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f2043a266b5778eb5810506bccb65b9516cebd9ec47cb4324f5eb34fedf9ea3
MD5 ec1c333614edd6bb85600d82eb30d7bd
BLAKE2b-256 23a0bd0a989330006b2bf16095e6b85233ab0443ccfa0934e50a352df5c7f8f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 233fa378e9619923ff2e59db894b66ba7d2218c4bb2a585cad2f55579fa021a1
MD5 8ac4715b88021acb4281184154091907
BLAKE2b-256 d4a54fd6f987305675addcd600e33b6872dcb513d83f2f8cba868d656cd8ba64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d4b2690407802eb226ec2f2b6db41eb4addebaa708b498069b5f1065efe03c5
MD5 e4deb3bc81696a9a8005039468783f9f
BLAKE2b-256 9cc1f248b6843554feab0ec7771af6ae2ad3e5b8fffe93a7bcfb766e433a2f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ccd99ff21e453a42028019097a6519e5251b3ab4ea487c4746242eb1f4dfbdf5
MD5 9148550367af4aad0595e8ff52f66cd1
BLAKE2b-256 6ec054b2fee6bbda4242baffe3283450086dddc85b2e9dc12c24b9d7cb83f5fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5de3e08ba94dca56b5b4e081187a0d3d048402d70720f04dfe346fcf82c46766
MD5 32a34f805c008f9d97de831d03302825
BLAKE2b-256 1a2fce200e552d1200b9f6faa49710a90e4d96d5996551564db3a6517e34ba9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4fe195eb157f261f7b96fff22366021b24b5b749cf7c1bfd6f22b55ed564ef3f
MD5 257ede6a00504e068cad7ea3f797fba2
BLAKE2b-256 4f3c1930a7959c098d61e2507e041489f85c9e5abffb098d0084824d1387834a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 176e30864db3c41d911a5c9de9483eef67e66948a82a75b82a7d41d539264a01
MD5 4806d990b1a5058f320a38af7015dc9d
BLAKE2b-256 97e0280e9a647340ac57679b9fc761b9bc41b4211dd08ef1070162e69847b157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0bd6823cef15f84e9c4b2fb020c94811d58bd31b39c40418a6ea861beddb8161
MD5 149239a9cebc162df549bae8a024d213
BLAKE2b-256 6fe786d19d1478f92d718d91faae13e4b63cd3d579c45084a75698febcdc55b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 84f0e5227f6f0777f72f370f1eb9aa29c125834010f4bd46b1cd44ff62f23a73
MD5 418325ed394aae93fe3e894de90b5e3f
BLAKE2b-256 9819c026a9e8b52be6a681d27fb704ff013b7406bd7541665f290a77c805b4be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a9162c985d319750391294222f72596b40e5aee6f227d304874216b8230fdc4b
MD5 2e33b806d7644f153e0525d4a3358b52
BLAKE2b-256 73c8f2fcf7b51d26c02ebe11d11a15aea862d628dff0961e1e27288d069f71a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5839f03ee6bfabe9dd2c20713c8f8c8b2afcc6ea1fe2a59d072edd8977f29aab
MD5 2410c07531a14fde0020fd67bf64f767
BLAKE2b-256 12d841b2d192093df23aed94a1cdedd3c708ad5d44edf215f25162869b671766

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33c270945ec14c15e4f3018a3df694a772f8bf86f95f6d29eba2973aa8768ae0
MD5 22b4d21f2c5b6039521ae9402872ee3e
BLAKE2b-256 94a1c72630705f1ed0bf3ed0c89e140d3c6a36b24e5d7edcba98d2ce6056a534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18332e0d3d8cf56e19215c66e190e9e7ebe3caa1267b93ef3d4307d0b024e231
MD5 05e02b3d4ed839ec5d552c0159405b16
BLAKE2b-256 481f9afa1b41a6e43d983a8ff09efe8237c30ade57d82fb5de9fd9382ed3ea8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 91b82c70c241b6c5b8d1e779ee207439f4b02b3f1a3f25018996a8b8150c6d95
MD5 4294ceab56a1f3a454312d4539ac0bdf
BLAKE2b-256 91d60d81b7b50d3feb8bda41b8746af2c3994a99d14a49b355f72cdffbf8fbc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07b0a61dfc194fb3517b891f84e17218490df1e94bdb70e3e043e1c51c1bdce8
MD5 01296b3a76efe475f7d74d2dd6bd96d1
BLAKE2b-256 d92a619ce03aca0daa37494519d55645152df6eb57a0da625089914f74869ca2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b2eec1b73e13b237b66376d4c2c803b0d9721ad9d3369aada3eb4f731b99300d
MD5 1a47adeeb3da16a95b68ffe20d6d9bee
BLAKE2b-256 97b35386e721a412871c992a07fc400b2da0c696ade7eac0d8ee60104d54c693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 431c779c16a610af08800dcb9510047b8a79c056998450065cf16d18e1f3116c
MD5 5638d581f4eb2d5e9ecd4b9cd11b135a
BLAKE2b-256 e7bf0dfbf6bb5b9bfdd153c0d38d3351135d54b0119875e5fc1611468bd8ea39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00ce8847af708d99a099f0952e5eebf6ba16314b79ca87615bd086ef459d402a
MD5 650126147d5a063e31e87c0e94dfd772
BLAKE2b-256 84e64ae7b7fee07f0a4e11749e4ff0c949e91ee1b416fe4ca30e46fdf790d168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2b5b458eeac0d932d90146dbe8b565779c017ce12933354589688e54f61bc1a
MD5 58694d45dec65aefbce621e457957fd3
BLAKE2b-256 8a95af775b412a7cb6140b9a8c8f784e1a032f0cc19b507c80d5917b011e193e

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page