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

Uploaded Source

Built Distributions

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

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

Uploaded PyPyWindows x86-64

pydantic_core-2.35.1-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.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.35.1-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.1-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.1-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.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.35.1-cp314-cp314t-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.14tWindows x86-64

pydantic_core-2.35.1-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.1-cp314-cp314t-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pydantic_core-2.35.1-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.1-cp314-cp314-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_core-2.35.1-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.1-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.1-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.1-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.1-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.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_core-2.35.1-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.1-cp313-cp313t-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.35.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.35.1-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.1-cp311-cp311-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for pydantic_core-2.35.1.tar.gz
Algorithm Hash digest
SHA256 54d93282d8307dcd504a645326b92414364ff75c0f3909bdf00016c82f66c96c
MD5 a0edc4c2eb8b660f2b7ad67486d4914b
BLAKE2b-256 deb144463b3e108acca6678ce1eb516998df704dd4005e289091d57bde89ede7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c8596ed58dd7ec027603fe90d6c7cf6af1cf3d0807cfd6e679db7964c5934cf5
MD5 64024e9925a21321c6d0c35b2d11224b
BLAKE2b-256 2e766167f3f7f71db5002c6012456f051c3484b9e194c5f3bd0924205f1c3e46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9cb6bbbd7e23258aafb4e10f6fddcc08ecb2f9d1cd0094be51c3a53804c24d95
MD5 7e366ae78cc9dff05383f424e9936a3b
BLAKE2b-256 6ecf0365333fab096477bb5736b4d87d4a86fccb6be96d0bfce2975f1c711dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c0605a8b7edcbbe0a001b39e3b56db3beb71a924967db269983abd23feef313e
MD5 776a734e506a28c574af2295948ed1ac
BLAKE2b-256 d88122e58f8bceadbcae03c54a0c2fc6defa89216ab4adbe0a9356962e473700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b4da655303e05e475441036dc4336b9508b8830ea55ff269438589756ce6430d
MD5 562d572073ab95ecce91e0149fcca779
BLAKE2b-256 07d8fef1e4e8ebb53ece9987a5287f6abc93d4fdb6a0adc304ce8bc885eb3a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd6de8f5480f65d1d07b14df7279a58b4815f9c793ddab82d17acf3fedf54f3b
MD5 35bd77efd43d2e48585844f2b2d7637e
BLAKE2b-256 8c7de44cd7d31d8356515a3e8ecba6b50cfb1421015ae8c684b0dfac409e58eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8cba3b38293e6c83877cf080f7a6018c0829cf49ae7a774256709b86733676eb
MD5 2e279c7e26872844df08e99576f9a8a4
BLAKE2b-256 3e5fe87aab572df29fb4c0691d8961358f8f3e0c74de0cdc01badfff9cc3353f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e2d18bf5ac8128739627b57e39584d339cd1af81e10479299e650026f9c30f2d
MD5 74f527fb41796308c644b1444e70eba8
BLAKE2b-256 7e390eb8e09434812f2efacb081c313c553f59bbaced9bd335e129ba5fc21234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 056ea807cc16c5d95ef99ba4d0f2142704fd0e0431143f4866ce188c6071a497
MD5 fb5693454e28a8bae9b2fee32aae640b
BLAKE2b-256 a27fd1d7fdbf6018111f905ab3caffa565b7932e83b4ab9032ace0a386aa8a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ea03e36e9354613c59d0722c18fa14f49360a1a6127cebb1ea7d5d3f1ff11f7
MD5 65d9bca3f294365f4f1580a0bb5309b0
BLAKE2b-256 c427e5a5f3bc8c3a8bf73ddf65335716b173100c0ba81795b45d4e54b6a71cb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 934b9955053a3d788913767b298e0fd5053406fe4424553c1eeeab33ccd36aa8
MD5 fcb7360b16a4a594f07bf0de189b879d
BLAKE2b-256 c18393b912d0a1afc8fbfbab1512a058ab9652d2a6880116e6ec6fdb22741527

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d26792671413a35404f1c32f542a85d5b7c5b0d5f1b6581051e7404d7c73c8fb
MD5 68533861e24bda422e0211c85b02f26e
BLAKE2b-256 f145f9ab68d14500384613b28b29e0bd8ebc0da750c23231ad19c28b5a0e1caa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c57064f3a5139c52861cd2df67b91a09a6cb84da0fd0b41acf2f219caa8ebd02
MD5 587c01352d1c24ec0abed75b3d3bfece
BLAKE2b-256 517334a6e71cd1637620fd75a5d09b1154939ebb72b3154eacea395d8a9adf5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9ea864e96f5ca519573fb7527c210fc2250e24ce03c13b903ec4ec25a5ed13b8
MD5 1ab14c890684feefad8166d623ce1744
BLAKE2b-256 2e899fb1108e999352b8a92530cfcbe49b8eaf4be5e6503ef10585ed9616a088

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8cb7d92170a2ee5734addebc68c8800146ecdb92bd17f416b22b998b42ceb075
MD5 7c89df8cc3c7ce1d5941e91ef3df576d
BLAKE2b-256 4858b8caed97556c422011ed6b5937a59fcf929be9fd76206e59c98d8c9f1fba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 29596424cf5890e45249c7b210dce07e49db6d8ba732ce5b93774f20058e8d90
MD5 3b20d672fde7ae77e6761de220eee9e3
BLAKE2b-256 17a73253305cc2e8aef6c069fbbb34df85916f23d736e7fe10edbe840ab59303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a0ddee49f7ea6ae7ca96f4bd9500e2d43ea847cbd86a2383036f6641b2858ec
MD5 616d4c1f20390449a62708947af35441
BLAKE2b-256 2df2a9127f7c37a5d68cda715ae3879cfaa6c2ecbdbc430101df5e2f46c78a29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e8f3127c28f3ebe1fa807477a88607e1710720b6fc75454c5b35532b6161875
MD5 4a6a507ad2451062d91fb0162359b4b4
BLAKE2b-256 812b6ed393422d33c37f7792c76acd20a05ddda66a0212494031a9a772925a34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d0d0eb401dcf8518d23ab8417bab789b54464dd748b9a8bd36444989d04b10cf
MD5 5b74c2097522845d3ec5c09e28f380ec
BLAKE2b-256 d9b66cefe81e58d119dd409bd6e39e44e8894da6de8e5fbd0303f8b890ac1199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 ae8fc5835a2e7134145a2f5f30a93a79a15ca2df140d9cff39b6a02d41834f8c
MD5 879d5d6a56c6a577d897aa9fb1194f4e
BLAKE2b-256 aa9035fd107cdffdadef00ea1f1e5288923e1f1df120abcbedc6d2854aa47378

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71c312eb422177818f31fed80e23606a02ab87f540327992b5cd10879a238ec8
MD5 057ec35a7a3c2b7dfeab2f3a82da73e2
BLAKE2b-256 9b5d49147336ab78db14c7d26685fb678d029fb6a47f2dbc5c4dccd1950e8f06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a04af9b37d3be241a2f2b10c3db0abeaadaff818f8c96ff7ae9ad9ac78ab287
MD5 d7ad1e93ebadd7567f4e895d11d225b0
BLAKE2b-256 60e20320e3116098f39db38c64cc11cc948f757aa1524a5cbe815b3075f2e784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c106e5c8377b7066232e7cb6e432bf5d94c55a135a082e160c29d8d350fcfdde
MD5 db06a1ff742c5eb7b16090eb458164fb
BLAKE2b-256 698b557593ce15a5ab81eb0752428d697ee7ade497d3fce981f0611e1c919a70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f57e0ab3db0ed2397b33ed88965f7aa71509bbeed7dee993555bb9194b57c5a0
MD5 aa109c43eb029abe6f95f895be3b1e93
BLAKE2b-256 86b597870eaad658cf5a501b008c07252ace6031b88b741c4e2afcf229740cc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4d25858b79222eb8e0b3078858a2780f5e7a2b9742f8ba42308e6874b654b42e
MD5 aff39cd75e3d90587b5b963d88cbc1c5
BLAKE2b-256 00999a0b6d814545944a9b7cccaf764a3745eb2da015ea46f1bb1606fbf36d21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c8a1383d0a62622f9b1888e11b6c7e9ecd584d80e9e6fc2da0a8a1eec6365503
MD5 5d2474b98874b7bdc0ffb5e698126963
BLAKE2b-256 33a641a3d82790c11880f2ca5a3a4e0c0c418b3b5101eac2ed0dfe0df5293ac5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 8522ada751d21693d6758c7c5757de744fd62a91a374deb08dc173fb738655f7
MD5 da04423e5da2100e5b4d7e8ad0500b6c
BLAKE2b-256 35f8553f0260b60eea962bdb49e4774522fdac3352504500ed0ad7c3e971299c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e48d89eb0fab2944362b387c6c942e48a735f1a6a90a8a77815c5410253cc4f7
MD5 12da45ed0f520935c912ea58ee3ccab4
BLAKE2b-256 f0dfdfcb2ed7454f177d6e068d586defaad1f4fff73823a1e185fd117daee7b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8926dad1ac18f4668250ef62354b3535bd09869783511ddac0a0403dc90b10e7
MD5 b8c7dbef4cea5376a011dbdb0dbf80c5
BLAKE2b-256 0eb70575551861923caafc3a22c0eaeced8950e6df7b21f4aa93bc4d9810c3ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 98f30321014ea6ee252ebc43f848bae6bde6e379f689b1cdb38087ce57cd31be
MD5 07db481838677df27a1218aa48d01f9f
BLAKE2b-256 72d76487a0e5581767c1494913b34795c015834f69ddf810519058190b75cb2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d1f242aaaa2b8931108d9890eabd194c412e0b5a10651ed631f685d46987f2e
MD5 fb6126aed8e19a59d736077e034021bc
BLAKE2b-256 5e755b8b740be488225520e42dc090dcf9c52c7b5a98e5c37d3905104d56020c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a4ae43172e78dcd84d99e484038f6f84f7c677b4e2b8df01deb7f022903bb07c
MD5 bd572c2c757e5e138fd926ba7750b628
BLAKE2b-256 4fd89eea60bc8d556d5137026e2944ffe37b5f3846a69d432a9208e9f07bb78a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16c2f3624b222a5f3f0db601c7982d991550682f248f2b299c8def6b29eca1c5
MD5 21a1268bc60654bf87bb97fdd470df69
BLAKE2b-256 a41e675ef7b162321957633440cf753c294402dcfc2a31f2b1c5e055dcfadb21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c3c77ca9027604cb90471a45b642763478f337e477e9c3c9698c409d64303b70
MD5 a468e6e9ac10fbfd544f35a10ff44e8e
BLAKE2b-256 d9bbad2c1d5ac08f7ef2009427ccfe4f50daa4332f114f997c63f659bf9a68c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5544fa4465f6c362d23120bed096436188217da43678617cc0958359049b816b
MD5 e04f3fff460d0b811906540509ec96af
BLAKE2b-256 ed50647acc440e5ec2eb72dfec111eec41e8c4e4e743ac549453d3b00d1aafdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 549bf60752000998d2f894d142e632c3acdbcb1fa86cf365c7f7b7fb72d33cab
MD5 d17dcd7b0cd153f3081d513f77630d45
BLAKE2b-256 c56c11aa67b2b3c19a473c851f4375ca6b8120a63a3783e2e89df2e1e52217ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ccf06a595368498a6be792b1b6f2ed3034423872657a1c84ff578825ec91cd89
MD5 72d1e7b70165f3cbf2f61a4ea16ffe3a
BLAKE2b-256 a3f9ef42798818c247d9947ad24e3855ef4052bd2fcd6a3303aaf824618b127c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26bf77255a1dc1d3f44927d35b64cd1034fba661b8740f00187378bd66bb0960
MD5 df768eac5d0831ea844ad0b840a612ed
BLAKE2b-256 db9fb97630373dc794c5463fab5df0942e6723f5096000be0fc4788aecd09bdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8e69498fc8c1f6a9776779960da12d399a2a826d9f857723a022300dfdd9b4c
MD5 414cd5308a52b8386926f67aed1951ae
BLAKE2b-256 2a0ffb8a3bd86a09c6cc31c70f107a80cdd3536bdf5c7f6e23aa7d4bfd0ccc32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 24005cd95198ca35b4d9a6b6d713502c3e2e9ec111abc99e4c69502618b2c6d8
MD5 2742108556f2953637cb270b8e3ae94d
BLAKE2b-256 43a8a905194e9188b2580beebcd067b853e50e25a1888b21ef3c6c0a9adbd8d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 867fc87ec1c07e57eabbabce6fd63633f23977a2fac7606c66222d35d197b13e
MD5 31d14bdb7716f33233b1a4f74d123707
BLAKE2b-256 e7d9d34fb5d2ee0a19c27f7572076fbc3b716b27a9787f66beff57289c0f4e61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 dbd775058ce2949bbdddc5e025fa7f5b52589f5c3254a6b6334ca60239e4ff56
MD5 ed50e97d4b9c7b296f5511f3bacb3a86
BLAKE2b-256 26efe4aaeb93bee1e8353e7bd2cf510cc453bda271b0c2db0502210ca3129145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6431cb2c129bfb419ffef43cc915f13b2b855b80351b17fa6d0174908fb5dbd2
MD5 2155c85dae3f69368f6f4a27f0af2f2a
BLAKE2b-256 23013e4b49ee9186e56cbf183f23956a1fc9de538ab1f84624da5e11f2ffbc8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 cbf218e9589a5d4f1469f7af8a4bd8721d3db3bb1ef06bb001b54f3cc138532a
MD5 1bf08896b89f031d05fe35fb90ea893f
BLAKE2b-256 098e8d6b13835884bfdb5c739ffe9c209746ca47a1fbf029b3dec89b855764ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1afc5a25f2e11c790f2a244538c42fd67b870cf070dac509996801f2455c17a2
MD5 6996c8d08e7efe8712757b70a832b5c0
BLAKE2b-256 2f16d8ddab7a0b33c61de7ed2c6e08a83e45f257206362b4dbe0b26b42060ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 634643a71266f1f49587aa6a675d05a0ad0f7ab92e58c5db801330f88bbe7d21
MD5 e9a4d73220535eaa5dd97053bb1be5b5
BLAKE2b-256 a9b7f9a5dcb090ea6b7c5db0bfbbabb5ea1e327f1b3c485719b8095333b83e36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1b409369664f49beb41a3c2c92d0e1af4729f8884550d0b01dd81463d3c22c7
MD5 e3cacd8fd12d954917c5327d62ff1679
BLAKE2b-256 c31eeca89d4dd50f6bb066d03cd23a055b05842a9fe03ab9f8283f0b3d7d60ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 437726d7acbcf504e92ef817c7845c4230e06eb5793f49db0729d148543db9a9
MD5 9adcb3c6bc7032f805334e7ce125d0d1
BLAKE2b-256 8a1ec3a08a435bbf860f2bf59b8fa8f0857fed5fb0b42233142a8d549e49cff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f53822e5e2633fcff4fa07515d3f1b77ead733e9b9e98178cc1d625896623f2
MD5 a4a0fdc48743068fc68f7f619b9d731d
BLAKE2b-256 d42ac1fa172ecb6fc8005c2f9b4aa83d2b36b3789f72507ec9dbe4f4cf7c4100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c48328867d681916394731c62f479677dde07fc264488d492eefb221eece96e
MD5 aed4f058637b95158aba5b538afc2c92
BLAKE2b-256 b470e4454c6b971982c3a0be7dcfb342c9ae096ce16e13e581318b98a1783ec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c7e932521333b8529c9b41c7b49016c1a58ddd9f7b1370e6edf06d4f64ae989e
MD5 4d6305ae889cb379a507748fb8937b59
BLAKE2b-256 6e1ce06fc0769e753b486bf4521c1d6d8275e75a9569e50d49b4996eea8c5269

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 767a6dadf1fcc6b7e41dd6d4920621256e0a477fb16f7e7fcea7dd1b64452c23
MD5 752aa1a69931d870d8b0d2396692b8b3
BLAKE2b-256 b7df1277a938e7a58e0865ebd374e8c6277b176d36b63f2935ef45d6f929ce4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 461f2f770bab73a54cd4fa55da27c90f3840a6cd50ff77995642ebf3b9bad56c
MD5 4e06c5e5c4279f32c771ab62a3d548ac
BLAKE2b-256 66a19bbf3fc49322117084bc5e1aa510a1074b4d7eb5ced47b65dcbb8f6ae467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 bba5c93dd92d8dd1cb5b95a19f4f27a353e5141694537781fd0359085ebf1e2d
MD5 d5049290aea255fce998209236ae6180
BLAKE2b-256 ae7afb20fa55822c2808b7d3ee7350925271b7be41e29d2f9b39d6d3bd1cc14a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 44f8acc6108726cc90bcd08605d610e0b49736636854cf74eb2e3ce1df7242a8
MD5 a2f02a6bde758789631151fc8a1829e4
BLAKE2b-256 ac15b17c22ade13555a66c1017f1d610581473c648bffaaa3b3bfc386463ad60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b8098c00443d3dcdb33f3c6a0079c52eb721461d4429cae6e3165118fe5ecc46
MD5 fdddd1735999d7109c25709d790f0988
BLAKE2b-256 a5bccdf079707ddf9d7a1828771a4c69d4381190f28e4bc94800e01ad3155db9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3812567e431d00e6cbdf3d066abeb488ec4b6135395d2280d99f630c9acba8fa
MD5 bfde28dbcc42a3e81144698bfce98ad9
BLAKE2b-256 4947bb245d6c22246885737b5ad929bec3e29a7d8078a4f734d3da741aab694d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 bdc4bee29f211ed8ee5e417b0d6ce002aafe4bc4d7a849670a19cd232428978a
MD5 e4aa9a9fd169acf3c1e7ad8f7afb66b0
BLAKE2b-256 cedc930c5baa8dc60f0f8307eb3f1f58059065d461a3ab1f1d607402485c7fe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 45b123e9dd870687f001a3b73db7285ba8077e15b6f1523ea604ec8cfd235784
MD5 92c364304cb74a4ed796ffca8550e236
BLAKE2b-256 5e02810723db2f81ebb9c62db6680d64aa7778180b11c476751cdbb82736d573

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68db1ac1fd2a35a2967e696cb82f5b8d8c780b80bf2f2d9e9aeb2d7d3cd6d2ae
MD5 d0e3bdb4501fbf8e18d8758e28d9f02e
BLAKE2b-256 d7d9559fa50241070ef9945f80f8b6feca55956acf9d0411ebce776791d410a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b030ce1cb2b6cd111b1f46f05eff6c5eec82df738f3cdaef304118806afd9292
MD5 67d5dd09c5b9936268600faffa57d02d
BLAKE2b-256 845d6ee15214dfcc807de4c8790da6e47a3d1b0bbb4fbbc76fe953c0c8cdc600

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21dce7e75e47859239c5e64e6db67af78045112e5fc0923c2610ecc2a44c5eb4
MD5 356457cc5475a9701d38c8c248e0d661
BLAKE2b-256 90a976eaa613b36e0fbf7f60550045181930c8b1d19afe52163f088ff987cbd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4927a4795bf00a770cb5d1acc086002f5a5b3d6ec80839bb44e3d99896136e5b
MD5 6d832fc06e8f864f6610993fb987b089
BLAKE2b-256 b7a2af13d877eac6ef7b95a9405427fd0ef3ead279646a5d9149376c8356902d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3ffb0045571ca255949c9e47068cda7b511fda24b8c89d1334afa521ff9ff77
MD5 057c6351e13f3a3ceda64b1ded541a1b
BLAKE2b-256 f6128f7a3a211c8c4bb6c3fab628ee0214cbb17414bac34bad5d9d2829d2d0d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2daea8e75b3d86d385ef351e06e575fd0e253620d06154b557c274bd53d09ab9
MD5 377b0d7882f6fef63d5592fe24f77521
BLAKE2b-256 e771db3eda424d9b702615c77ae50df14f17f5189a9198274aec994f8da30e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2893800628d5cf15f669f084cc44d8bfad9fe97992453d0d678b29f635aa6019
MD5 bedc21577ca1f081f3429000aff54bee
BLAKE2b-256 6902425e9fe79276a137d13aca5279bd241cb71a9e33cd48b82cf4e9b8fd88df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9fd22bdb2dc3d18660ee36af43ea198c1296011d16cbbd4ee6e5c3d07fcabf0
MD5 a0151df4c8ccd93c4c3c1e98b9efdaf1
BLAKE2b-256 79e0db8b2501d44d630a07e650322eea6af6e29bce107852f45a722f1abc0f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 9b81bf0b4903ca0b2e884b2252c941f37145973fa193fa6099f0acf18584af2f
MD5 3c078128527ce66260cab8c6ae6e76ed
BLAKE2b-256 9b300502f8eee3db6463c9bf753b0d6ba90e04d2190a76ca49901a8a28cc8f94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 803902755bcef766c25afee0a7b3f5e709f5445f387888087cb0bffd99ded9e6
MD5 3b94eea7e25493bdf07e5c4376a0b62b
BLAKE2b-256 ee79ac9a7c603e50d8972c431a2293ecb437860ee34b4fed110988f9da1851fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 805c43fb6d06da34eb080f380f62e3f511fed6be8eca8b277e7947bf47a0f9ca
MD5 22633d0de9e87a0d0c89a67a149cbd4d
BLAKE2b-256 5b731a9bb502477689ae05a4a237b1ebc60a1e4e3ee7718a48d98cb397adf9d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 58d52a64d185575326772a0db02d42a535f8ea3146ac1e07b0d88ed53f2389fa
MD5 60a3b290d650d857d745923fbaacc459
BLAKE2b-256 10eb225f0f8193bf11bf060524a8bfaec12857d2d1273647c90b7962d1adbe6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 26ab8c37358fdffb524f7c35ec1722057a0c05f3f8ed00e853c4ebd56fc19e28
MD5 9e3990b53601c13c726010c2d091ce68
BLAKE2b-256 bde70be66d3b0f9617900fe39986337a0bf3b5e6c20be78d0ca7a577e2eb2e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0076916204e37c7d780349f84843d8aeaf7988851adfa4210631d2b91f8a35b3
MD5 f672e27ce3de32f85f3a0b1729c91398
BLAKE2b-256 b6c6bd864b03c412cf87efa4a1f8ffb3118cc170939e59ad6d98dc2268ea3e43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7513301947ec044bc30b94f98370b74757a63f557eea88141f6407aab5b738e9
MD5 f9e10420eb21693db4698b2c6e7b433a
BLAKE2b-256 7c6cc877b45f1463e37c11d045404e684fe93c4c44003e072df8ca8d3792e0c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 72e80d1b60b88697d7802456e6225e61b82667fbb00fa7f3b90505fec0a5f0d8
MD5 3cdee4074b8248d7bb079577b8fbfa24
BLAKE2b-256 be86620e144ffe576a728655b04b18a8ffc816fc61774f29fd125cc260feabaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a0687de276b0de329faa2d7697148343c72b61d41d11b58e55af3ded338554c0
MD5 b7d36eef5dcf70b46c790541b7c27b99
BLAKE2b-256 6d1435f1d6070afb9e720d1102943fb8a9ca826d8efc2ddc1aa2654369b6b6c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 577d407a8506d0ecd324c2067fc08f3ae4e6df4777f3378eadbbb30f92c6481d
MD5 171c9e510470448371d885007a9796c4
BLAKE2b-256 3f7d3a5d0443e341f5aa61459cd15c883d7d9600f9728ad408c30e329900121d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be957688fbd6cd88d0b281564d8c887f65fa04ec3c96c7dcbd25ff209587e7c8
MD5 95e27573782cdbc46123a007c3ab582d
BLAKE2b-256 efc9c6b633bdc68f2035f18f66a57957e3a1b46cb5ca26aa0f8a6db3f1d7552c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bac4a92df466497b671538400c5b4acdf4eb6800cc07df2e410c07ac5c3adc70
MD5 476f3a8a5fbbc3b66f21fef8ae950bcc
BLAKE2b-256 4b9579c414fe8da493cdeed68f1867424d5bb96d366f7742e161bc8d37e54893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45656f289c2a4e8b58e6838d844c270c8d7cf770bf7bc51f41baf22cd65b4d2d
MD5 8d1acb6db38cf3e1c72d8df8c6ad849a
BLAKE2b-256 b55a520f474ac9c21ba96320045c02b61b4b5ee0233605b4bbedad8c9d53f422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1890e19f243e83a663f75f17cde380cc06c4d210a995ef84ed54135624b95cae
MD5 dfda28248ad09abd884f1ed78b1d436c
BLAKE2b-256 16fa72d083424212bf0562892ea3fb5f9ba902ea0759ec5b5542bc44d739573e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 257776e5d7a80abee5ae1124d7d82f363bc2bddc1e1eab13d3d957ab7d3d099a
MD5 08bbb8d1420577df736e28ee5dc5f836
BLAKE2b-256 7fff8e2f256612b8e3eb5c4923b6751da223f0209dab2b5e26ab104dbdda0939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8d2a5a9612931a8adf4d399ec97cc5e47769611bef5d1af81cedb45b6bebee9e
MD5 3978518a6ef8d5c9e4c7133c5e4daa06
BLAKE2b-256 305104c44bc7062c35da12a1e888bdddca463b3d684ecd0ffd4c774a24e1f94f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f1395b268c825e48571c609edc7540e294f20a85b44e2a195d9cb3d53a0bdccf
MD5 1dd98f944d3e4b314c2fcd11e2abcdc1
BLAKE2b-256 1facf44654b4dc499526b9f5ef16f46531c4bf2f251bda2cdab41b092e46cbc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 379bf304d6bfc83cfb6bfff093888992ac2a484bfa839629e4862058263ff54c
MD5 ae453df63e2c1fefea22ae097aba0e3d
BLAKE2b-256 625b03a97599356b305ba1b6db3bd97a03d2d136a8b55edf7c1d9b722d417d18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1d36c6885bbe50151b0f6dc6dffa405bbe548e9b02b517b7e84f2cf30a4ee128
MD5 ff046c64d398582e84dd846f0b9f1f7a
BLAKE2b-256 25ec749552cca2cd0f848b0af83a8af5390009f194f588fde78831aa037c5303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e828e04224b0f4bb16afe8426af591ab58bb8a2e978e9c3bfc7bab28c461a49
MD5 85fc345035ab0e2809dbe7d36b459b45
BLAKE2b-256 e934976d89f213b95d36e2279da599f5aad97453bf6b69e44e50a7d51a0260d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4a1749091b8d08585ea958f26e339a5dd41451c4fa4bad861a366f3b513d679
MD5 bcb01af37b6bdbcdc2ad5355e33b5ff5
BLAKE2b-256 6a44e4087819cc29e742ad03fd12fdef416122c34f82d415a46316dd7006d608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed71b6190a6d93bc86790d267848853610ceae74aa41b88782b15d0ef98e2ab2
MD5 931a88c5aa4c12f01ca768dc8c55a6b6
BLAKE2b-256 1f5e973991a288599a1809e21f2cbf1c0f5d09855739c6bcfff423dcb357c34b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4fc43c35dad95517acf0c9891c7b97aba87e4c4ab665f243ccb91a7b1a76eb1a
MD5 402d003127a482b91d8c9446f256a7fb
BLAKE2b-256 c7365c23e89022707e12e5604a181f5b360faaf6344005ee3053565aae62d512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b997d3e48d87d26dbd7fb39e11241dde4c504d976dfcca6d66c095f598903fc
MD5 db6e301bd8e23d86cb5693821550653b
BLAKE2b-256 15d9c977a397348b094d46a65439fde5617637addfd006d035d1b570fb197390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e45d2835a7c5c1eb63b6cbd26096a43dc7a302b6b8592fc1c0446b877a9c50ef
MD5 a1e51b0f54c6d16949ef93b581a0a79f
BLAKE2b-256 b16db39d177295c7c14bd002b2c40bf1436f087b7d238b3c6016eb385cbea2ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5acd0bba05903caea01613fad88dac5bcf1e76f845bbfcdcf6be493d5053a480
MD5 ab1c4954cb810e1281926e7582dd4168
BLAKE2b-256 c214bd4edc676ba388bee7cc2f55ac46bded27a6b7d6361ab8e6ee2cd06f1d61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8b647419a794028748bc065108f7868b675346fbcd817e1112d874028feb1f67
MD5 70f82e0e3b2c805e49a449ea74ec4b18
BLAKE2b-256 92dfae4924970a0a51443ab1f9ce93247fc3c7bb350c4b6889f25fe998baab5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c09cc83b0bb2a1858993134e4d292cd3df7e054240cc3ddb86db5cdb8a6ee254
MD5 16ecad314ce37c40a7df6fda4030a10e
BLAKE2b-256 a1b735a313b741fd32f29d936d281bd4712230567941d3aec991e7628ed22f87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 c6aea20e870f9dc38a5b657d3f691768f1703d557d6dbe03888336b1e8896ab7
MD5 ded3dd572330c0afe307f806a9d0448f
BLAKE2b-256 d2d45f1b0340f5aa0618678b44238935d16b255ed0f2778ef630bebe8c189463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a40a8395f56a511a353f0b867bf728a39e19dc9eb16c99c7e5786b110451c4c6
MD5 b279644d8939caaab7d33cd309436d9c
BLAKE2b-256 d8a25187ddf19999fb0efbdc417dadc1ce76e50043a1408ebc90d3fab0c70b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 716e5c98a5ada34dbd05c6a39e14f993e86edfc9c199a945ce67c544333751d6
MD5 da98bfc8dbbe162abf77103056bee51f
BLAKE2b-256 c34b9157b57570a93c059955a6d024b9ef706dd451041f208300ec3c744944be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dac412e47641df63180e2b402ae9ed83e5c5c224f88c38f7df792fa0353ffe9b
MD5 fad4253e52e605c8efc33f71abb0cdc8
BLAKE2b-256 28f3cfdff118bff7f0703d430b0d73f8581121872aa0afc6c1b886eecd0ef6c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3790afd8b75634ba8f998019883d63d0cd2750ad9825b2bf08295b7a84d3aba7
MD5 a8b37fe6446e4c64a7573f83c6da31e0
BLAKE2b-256 3bc3c275c315c33b01dd29ba4a4799b12b85148bcf993c53f39372ba15581b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a8cfcb78a0186eab12bee07af5c93fd043760fd88ee19bb55ba67f8234a6b73d
MD5 2127448e824654bfd9ca895d6f54365c
BLAKE2b-256 96866412d3504dcfcb5b09ef6547e84b7d39cca9e0592dee0bc947db50916b96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c85c72358aae138fcfa8ab1f6dfed37d4b6d948769856530bd1a2a8121d06a56
MD5 b4041e930f796d7499d54f8138f4f8dc
BLAKE2b-256 45b630a06882e504a6f3ad02d9bfa7fd439b8eef4ea00a2b3543faa2a37603a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ad47ce0ca62ac335c28a8f5ac5095dc9946776091a9381810933aa1aea7b5235
MD5 5549c81a5d5a6ae6a4af0595481bda80
BLAKE2b-256 c6dfc1dab83bd64ac5ca0d69b539a5f575a1a51e9cecac9aba53818f7f97f9c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 945b99d199eea4e7bf13a3e0db4dfdfa90258b6890e4582c898dc6a8fa6ddc98
MD5 889501c01805274c14857000c19d0c96
BLAKE2b-256 b3c6c8d9150642da8ba6d96cc6aaf628e146d6586d5753d4d7df006ffedcfb53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 69009e2f298c21d7e4387c3f4fb70e8e6056be56a413083c3865b53339beae6d
MD5 7725ad1e45cd58aaca7cc9fc9a97fdb8
BLAKE2b-256 ad465f8a45477aa8661b6e9c9f92763b510a136d7d42030ebc66d46ca37d7f10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ff01c4690743e48a45d34f6dd038a2b05f5be2c7112aa68a8d6241483f5f153
MD5 b67cf15b32cff9ce75d196a2864df9bb
BLAKE2b-256 a08dae5b382204a91d2e445714dd52caf318b7733c727d386b96b53f9347e809

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2db99237bbf87364e5d42d50b17234126b6f903f5183eb8a81efb9945c16878e
MD5 fd62f68a95db5969d5784bc0c445da8c
BLAKE2b-256 ba0ebb8b9896313e20d0d346d2995d30421db7d0c1a3b3ee9229aa9913bc5bbd

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