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.0.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.0-pp311-pypy311_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.35.0-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.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.35.0-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.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_core-2.35.0-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.0-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.0-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.0-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.0-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.0-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.0-cp314-cp314-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.35.0-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.0-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.0-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.0-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.0-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.0-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.0-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.35.0-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.0-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.0-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.0-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.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.35.0-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.0-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.0-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.0-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.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.35.0-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.0-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.0-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.0-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.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.35.0-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.0.tar.gz.

File metadata

  • Download URL: pydantic_core-2.35.0.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.0.tar.gz
Algorithm Hash digest
SHA256 efd19164764a1db4a4dcf54c12b5b42c5d486976d7cfe37b14715114a863e74a
MD5 1a661e3ad00aca74023d7dace3e19e77
BLAKE2b-256 6fcf657d9a5efc001d9175153218392c76cc5a0fc5de2777be14b0635ce494c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a296cd1c1e70dfd3385b71e911705cb1fca297efa3f8f0c3b94494b7237dbbfa
MD5 2d6017f94d56f4f250bdb9e8892d72b3
BLAKE2b-256 3aa5e205511db80f27cb67b4b07e3d7a428af6e477e19af088ffa0b0b90b7a0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e22c48410fb3112738c7e55f9d831a5717435a8f9ed3a63f65a85a2f0cd0019c
MD5 dbd56692220388424dbc180069b73fa5
BLAKE2b-256 5666fecd7882234b5d002f59ea42fd588ddd5c2c2f96508ec5f35de80bb255ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 601af84cc4fe39c3415ea4299aba8d86d4396cd6cf33338dfe64128529a05fd5
MD5 1138267b4d91ebcaeca2376ee3c23b61
BLAKE2b-256 39537419882f0145002a9372bf476babd5343a55aadc45546b508b15e2dd0015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d68ef393e3e8826e9bf7c1d70cf04f31682d691ba45000d6ced22449f31499d5
MD5 cc7b3800b9175482365c94c4a214d031
BLAKE2b-256 d49de91ea80f694899608b9bef198387f65dc6492064fcb6538f102f7cc79b33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0a2f11cb084f2ca4df66db99e3db3e166075c66083cf765813ade7daaa024f7
MD5 4aa684c647d50c481fb4f5a1560c6277
BLAKE2b-256 9855ef441307202cba65889110047f1b05c6088c676f854ba571858c927f0047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2a62090bf000dc5555245c42e7f9742df16a7fac8817ad340b37705b9a9bf3d9
MD5 4269c5b7e4e5a288e9828cccdedae6a5
BLAKE2b-256 c306ae67ebf98336a891ddc89f0bbc5ab05d82a7a3d69bc04275afc66a532d6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b733f930973c1c79c5f664e15e00aa2e04684fdf607afed4414d6c10e5c06a4f
MD5 d64705ba244adcdcbc57eb1d52eea068
BLAKE2b-256 cc0ab3dc92dff7c605af174bd648ffcd4e2f73440aa3693870cea0e96ae3f78b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38f0fccd0e35744ac66ca008a16780aefa8636030bee2cb317fb888b0da3fe1a
MD5 ed10d3152962fee07dcfbc3bd4727037
BLAKE2b-256 a442a1eec0ecc16b46045b92cdb63ae586da05c08329833f0b13d0d6cc332ab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10e6fb91f59bc4b4c4e0549e1f8a362b18855fb4285015958641ed9750bee42d
MD5 0640cef7d1c1371993872f139e7871a3
BLAKE2b-256 77d4a147225558220da6f70809dbe38d3c1f79373fde55ba8fc56dc3b7793ebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5f3064046fce05e9c49cd477b470bda4e48aa1c2e1939de88695e9ed8b1814a1
MD5 ed294c139829fc25e6bafc5f52471a93
BLAKE2b-256 ce476b0be51d059a3d4756e658f4acaabc128645ccc523acd6c895964f7999db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 59c30ed8fcdb87229ceac4853a09a1b3b1b5c37e691d0f6156c95aa265f2138a
MD5 12f37e2f5746c8b6946df79ad63c1e67
BLAKE2b-256 7e6ab08ee68422d1acf4643dbaf6c5562bd0d9ef637ccd9238db062410dc80da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b780ce7fa1b9dc7180bb4d3947933a57978697a847c7dd4ee0c657c7073a8a1c
MD5 0dd541b26952a8e24a980334bfd18687
BLAKE2b-256 d231bc6873e7a8ec12a6551a5f4bcce4b8dae698c653b2c13a0170b26572ccd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6e4a2824b522921c115b124d52cc774c62b380edd1b91c34abc0c7479f2957e9
MD5 092e2dea95db640dd4145fec6da4fa89
BLAKE2b-256 884cdbcdcc4f8b816c35a06e3a96ac5895c6aa6a389fcc9157247cf64e4e90c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c08efc88a7ebcaa0c694d5b3a9dd8c3b7501ebfce7293ccc00bee42dab548f8
MD5 1035ef3208f986d615953efb7124a81b
BLAKE2b-256 7c99bb88f6a8144513090a4b66522933df0b9242727cde2fdc0324e3969a5125

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f03a8f392157ea9cf73638e508e83b13bee6bb2fc548fb0650c0e19ef6d8dae4
MD5 92a8b495f5beba7b2730502f98153340
BLAKE2b-256 8f637e613f78ecca2cae0442f5204c6781a52267a913c5f8c089fda52feeda09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1b783a396bf164d49d856573774ec70b6ebc94f44bcfadccb42293dc16574e0c
MD5 fad614c5984a44e7d06fc9a5bf3b6d05
BLAKE2b-256 a99f48eb9e560b48375b6c763ed4781566ae21d8c36433d7cb784fab9a788df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa5b974f145c3757738f466c0232ac151c4357b92a56e4b6e57c96b4d1a054a2
MD5 da2edad16edf1e6e0db1b6ea0859d127
BLAKE2b-256 db883d1aeadd60f6f860807f290044acfa766ef26e9c13c51b701fb442263806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac03c031b0aada2350987cffab1d75b72f0ca0baa18c1f403783d48af96d8a4e
MD5 6716745d76630fc4087f5a03f90c8d0b
BLAKE2b-256 20c572ac18ec7dea160707ae9974d8ffe7d20584f82a941af08c9895a5ae22c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 c66f4406c3972c32928e7cd6ac9cf06095571f0b8c920dbc0cace7f0c6a083c5
MD5 3c04d2c987219cdc7f7a92b9d238cccc
BLAKE2b-256 659bd629cd21f64d59c087f7631a344ac7f04e91996623e4599940cac6dfbb05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd35de60f78a1a9efe774d9eb3565715c24c7aea9da29f8fd3419b2705ce7375
MD5 d45e663df6ded2abfa4900ce0a9a374e
BLAKE2b-256 80d7b9880237bd491da81d0188ffb2c3122dea0f46de554178ab6767ae778a09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75fc2053d20eef178edf128fe7c82941f3abeba8d14476d5e1451eca2012106d
MD5 3ebf5246988cb196db6085a8df6738de
BLAKE2b-256 0c213913a82afbf86ccfda0b04161dcb17b5be37da361979f255c79b0db3a22e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 52cecc04866dc35ff6e934a8f9b27c6a70c0ad26e7388f288c2a17f3192144c4
MD5 cfcbb7924aaf463ecc56906cae0f9de2
BLAKE2b-256 f6cbf1a31f28c3a07757b3ad3b26df9a038ed430838c1f60025f1e7514a6cab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9d3dc979328eb29be7b9ffc2ab02e37516771c2cb6b7844528dda1f678d91e87
MD5 3714e10e347e0bcf6b994a6935590b5e
BLAKE2b-256 af3b72f7a70eb680bad12b33a9806b52ba16ac5408ce34659bfa4e9d6bcb7388

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 1c6010dd2b9ef18d0a2bd7a2bebc7303953a9e794f3defa8e1c232dee587ed44
MD5 8662a8569a9e1f59d3b6595d1596166a
BLAKE2b-256 3ab839febc41ce7542de93721e1d6c0bcb53f4a26bacf54f68fb6167c659670d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a2c3ae832bc185d93d2ac310bdc957eff71ef43834515c2532183ddf7c94984
MD5 fa554f73b9d42ac44e1a043d5fc08cd5
BLAKE2b-256 682b6db6b0e521ba471f2aafea7ab73f9252e138558dadcaad07d4010277d39f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5dddcb2be9d1153cadafeb50e74eea75fd00fb001f5016e48aaa7ecb06d95d4e
MD5 cc6f61d8592aa1f5160b836e096ee56f
BLAKE2b-256 456d7aaca66abe22fdcf9e75d2a99041c064cc841f01ed9cb347e814b649585a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5f5bae3c9ffcbfc7de8076bebf460497f6c6f08745139d8343abbc17ba958630
MD5 60f6d626b0a1180c7b76dfe8160d06b8
BLAKE2b-256 c0a9ef804fbbd346f464253a59f4ee69aac8e1484604babc325b64692c5589f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25472335a4b77b83423250225e5340921706d82bf3b5f176c100234e2376dd34
MD5 4312270f8a8abfb16fc3e69e13980ed4
BLAKE2b-256 6b1386372b2033c8c039f23f3e1e0d285629f3a946e2461e46c3120f9f456463

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3cfab88045b390f8c23602d403740bc473a66950c49b5e2127d1dd84a4ccce8c
MD5 e774d64dc53b03ce27176d39fbb33d18
BLAKE2b-256 fa650ed9f75215e38f4a74562a7ad6401c1dcc608c227c16edefa6fa704e17f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed97dc4869f67971fb4e4d10795b347a63485721c53f5789d3037f0a1a205aaf
MD5 ef2c102372434e341bd0fd6d155ba46a
BLAKE2b-256 51954bbce393ce5063d090fb1965eea5e9d7a9dc4f106381c7b4dcf7ecf14646

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2c5abca9a04ae02abb600c70ccffcb76730ee3f14729cc10d42394b85f5f4d56
MD5 c818ee85c2090361b69b819a6b2de437
BLAKE2b-256 29419c423dff6e1fa608563d7054411470a52294b35acd9fead6f9bd82d82348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 145b81a7420d78d4f68f25f6706087eaf262c8865a761a01b65d4d00ed8d2bed
MD5 e88f784dabe620d85c3bf3cfc47c4286
BLAKE2b-256 e46236c1ef6c3c93cb111c49a2c0a6f611192e842d412ef613ae945393550c87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 11ca0bf5cd2717ffba2f47ff3d15c2a303ec06fb021ee2ed3eb894b3d11e1160
MD5 f58ed54590d9c583769e28c49bfa4f83
BLAKE2b-256 23435f1dc9449bc43cfbd59596d0c4f9792c478c55d43286b4aa4ce595277c91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d52dbdff369d5cfde4e762f5514188a52cbae4bc71ab9766b0b2f3c070ff2572
MD5 aa786f00559ea55ead05db916e1acfe9
BLAKE2b-256 818e9ad3e1cf3f139e3f5ace7b931912c8b74a8d2aaa1404d7d3409c8d46c415

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e1c4c9b360d07d549846fbb2e8f7026e3a83eb197d29aba3e36fd3f22686ba9c
MD5 be440302778e16b6bc0d6d09fdc43222
BLAKE2b-256 5f91feaf992280af570df8920ab2247905aa53476a053abb2e1e98ea5fa999f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 b11077ff8adba9b49246d5969aa4e864171ac942dcf9f882c52ec706a37b223b
MD5 b75c714c6257308eafd11316f137fff3
BLAKE2b-256 feb4ef8869c218546e711a10e5527b1aa4c529727ad63410f358e90ed9981c15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9f3f43da8ab398a09a0f659c3e9bf1daaa38e4a05e2f4426cb4f68e9d4cc714
MD5 3b87eb6d517a7bba71cb96505e96cd63
BLAKE2b-256 3c9ff64b0aebdede476dadc4a4d7e443c150918b396f2f943faf886fab0e0ed5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 952fb29f0641e473dccbb24a346a5cf953a57dd54c87991f516fd25035e21d61
MD5 c1c3c678890e7dd412564b3a18f43401
BLAKE2b-256 b663a16be80f77ab045b5e773947816c8bd030b7f8203f667504b4ee3eeeb453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e83ca57f0a70e8e29db6be3dfc6ecaf4e200ddcb73bca14a69ddfa014f9c57ab
MD5 d7ae23bc9d7e2d1749aabdb47e0f8433
BLAKE2b-256 700cf7571b273b7d5c366ce2443ae7d3adb2bc708a68f461c864042c15f75711

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c0913bace617888c837046bb4c3a861958df628e29bba3120b28833f56f6ae0d
MD5 03cb6cdd5d3e1a8d756634051b349517
BLAKE2b-256 c31a89628ebc4d0a927a780055b84a58a987b7ecb48c5598ddda9ddddc3bbe00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cf985cec7e1f573216f333b81ec6dd6f9c50021b9bf98bc3dc092daea2515d79
MD5 7891de4715255eb041b7eee1d5b018e6
BLAKE2b-256 74373579b554d28d6117aeb41becf7ba0511b15b5ac518decff745a1fc439d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 df3700ce0b8ada07ada71e848d70b94d5efb5947b33513024205a3d22341bcdf
MD5 26cb3035198f57e4da4d66a6fe37c397
BLAKE2b-256 8be3e6735fd7b5cbebd90669b0d22c0a0111cdc76a2a06192eb5b6afd215a373

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2432eebb7c7d127dad36e83b639125d3988ca400ca5fbe58620f3ed7b12c4484
MD5 8bfc773e105831aab743667ac626e98f
BLAKE2b-256 0184ca91080ddff5839cfe2c19aff8c4af1a87ef804b94469a7aa9a8cf9ca3c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4f16fc4a8f2149990558be5f99f0906e821dc0cc7ab5312f118d8c30a143c003
MD5 63e0bbfa2f9e5e16b69026a5f3f7988b
BLAKE2b-256 3b4e4389e2d54efa676af58f4c7631fcad2f3e6f17b65a5ba1c12441c99d7fdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2a7c21ddb1108c4d0bd29cb6df4819257897b0f7b0ade259d85959a6dbd5743
MD5 43e8a9dcec93a23efa6d085fb1480074
BLAKE2b-256 83facd6f06ec26633ba27df2835a0d2fb06e3e7913b35e3d61f68b289267fdb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a74228ec0e6b4d1fc635e351aca4c1869bb2f40119e0ed47d9c30d9e945fe934
MD5 464f9e3a1698d450b268c69a30cfc401
BLAKE2b-256 069509669b4f6b70d667ede3170dc7d947c5097423bbd00c36832449551d8182

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab890fac7275ced659ec40829921811cfcaa820486d8a59c6dd082c679102ce9
MD5 143b944e4a76e223b0e5d33401a49ef2
BLAKE2b-256 57fbeb498b87c3aa96079409d54a35e8970b0bc28444d0b675706b3201b9f3e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98e2d5dbbef366a912bc1d2a9b6801f2476707b7f31b767d7fd0c4a7e5fe72c7
MD5 895910c56098fa0d836dcaa1380b4da0
BLAKE2b-256 04451c766c4169d76b64d1b6647772b295a7c8de62f7c2308ebb64949b15a791

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c24d8aa6d18f56ec2141e0f75d894e9e8e1077c3c93035658c64ed8e212f9a84
MD5 d942d5f50e65f68e20a047e36623331f
BLAKE2b-256 0a652c3a79af0f392b3ac02938537d1b9f7e2985e01212a95b5e1920cb601db4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb14ddc282e28603d0499514dec96179d3ee97fad39b0b8a2f29efb67406f2f8
MD5 7e388da7307bce85fcec765a21339a02
BLAKE2b-256 5c0fb1e67382e8f2d3354e94a5bbbdc615a8140220c33d96c4330a9017db383d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f3220350e0c829d9e4a9b520997610280bfa10877457936eab2de0ae2ac0980
MD5 27106b0afc632c2522bbeeb3e5d6f188
BLAKE2b-256 0ddf3a56902fddacad05ad1e52a171f00aeeb0bae9d94ae3c83f2b5410593236

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc931b8eea0bd962f40f803c1dd2b79e7a5eb02fcd60ee2feea13a3f0fb582a2
MD5 b05826c6f8bff0ae7c8d08a68eb0ae7b
BLAKE2b-256 88ddbbc362edb022d86fc5b6d804c873cdff3f9a318eb80a69b2c8257b8d196e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2e92e9d4bf2e9bd89dd95c596a8244aa0b0e229d96cfa476f54bed0bd999cbb8
MD5 9368ef4cfe1fe35bd4ecc378a0612aae
BLAKE2b-256 f41e04d3577456cb0f10778c715b97b6cc57820c694dae5a6c4bcbdef3f9eeaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d8ec329e5667e94cd87e59f3c2aa3d8043d131faec01d7138dfb404ea9620e5c
MD5 2c14eddc26f3008b617680aff7a2a719
BLAKE2b-256 7e84981c4c715f860cf3b2328dc73cb23f237eb355e5ad1a16138afd7b451a58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 515219a8bf80a0a04a29c547c64d496c467bc7ec145d21a6ece3d1ee0d0afa2a
MD5 96a96604e3a54db8b2dbdb963d5fc5d6
BLAKE2b-256 7ffad8264657187e124ad39560b6d3486c423badcfd7f7da7872e78425781876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 30cdfeb3f64a0946121928a4618e96590364067e61cd9cbc7487ed527b14081d
MD5 80f3c4f12f9074f30355b5053664ddea
BLAKE2b-256 7e733988c56e8da0e353336806e72591086c28c4143f3e8b9a6b48726247644d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f46b184334fbbf1003e678b29fd2e7411f014681f652672a84b3dee33987efcf
MD5 dc24ef3fb142ee80c9990db6d7e5be68
BLAKE2b-256 b5a98db352cb31a4b5a49f495671862d33a6e91f5b3959dc52e72015a91fa981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6ca730869c411fac39b053313be66f2a492e2a8dd74f9cc23f1c1718ce2f8bb6
MD5 6c0bb8d8d8ab19bfea00acc984b6fc5e
BLAKE2b-256 67bb702eb4c5f67ead61ee24d49a5bbb445cae8c7fcd7e394211c793e8a39964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 801e7547e36156a2f61f27ebb61f7213420764425f5877f6520d9b4b4fdc06eb
MD5 f338c706ecfff74ba0640952fbc2efdb
BLAKE2b-256 6a348987c6daca0a1ea5f73cd9896cf69f15aa53efe8f4778c99165b49203564

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 292990a70e70053b167c55e00bb526f8256024d166c35cae66a46afa937f6da6
MD5 114a70b17686d0a1f412f2359655b995
BLAKE2b-256 e51349bb6f06fb25928ea4e89b31c09fa089f3d43277773d6aef5eb4c2551a01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6f3c8e4f8cce55f33a27ba740ffb6ca156813847e23db56e09d8ddd20b66368
MD5 b1f373ddf5af801b8ef21312db737680
BLAKE2b-256 081f2365653bd7d9bc73bbd2c243bbb96ed33e5fcc9d46098e5db4eaee958bbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5c8d34c7a3a4a1a1f88b760690b25576334c841a68a606ba807975dcb1b490d8
MD5 ea22b2aa0d221c87702c16a1fb843bf9
BLAKE2b-256 c1dc9a4cfd6537259c3bad846d701ab44f0e6e91d682ee4d07ed218a676f08d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 33c83521957d06c0939cb1837f5890e01a32057c283608411ea0bfa43b42b4f9
MD5 682c16a0ea03da60b5921ee34396e717
BLAKE2b-256 0f10cfeb0776a2d8dae0e5fe54735d30c7d9291a36650063c7553c1bfd0f3baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 46b19a5c95465603ba91b3f082ca7a6fbee02eba50c174438d5ce579a15a0bf4
MD5 d764e378a6600bd185904b411ef121c6
BLAKE2b-256 77a48cdb9914fcef7c44a915c8c398f07005e49ad434c41d7d9ca6396acb1941

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b089e6daf7a83784ade374387871b5e96544c90a6e1174f3762646611ead256e
MD5 2cdd559e249eed27d17dbc38f99d10cf
BLAKE2b-256 a603b4fafce454db67fd5cd79c1b52c84ac8c51c541cd7198b5a5d91fb8017c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4ce371350070f005ca588ff38e562afb43df8788c0b06def63aea4d07359dcdf
MD5 0f4c54f74f7d5dcea1aacc45fca16e63
BLAKE2b-256 cd4241ecdee33a2bbda7cc8a04b8ab66c88731969cc5f5eefced08b4c9a0a982

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 06e74fe54debc668b16af86ca3131de606363cffcfa9dd9a4d17ae3be1541daa
MD5 26d05da1ebed352822d2adceeb5dc348
BLAKE2b-256 83bfdfce3faea81677b10b91a13e44d94e584841c36ea5846674cb4454580c35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b590c7e9ec562e0306d46a89b7f0d057418fe367336552c18c8140993d715cef
MD5 7eca62269c0af660bdb5ea67aac36ab5
BLAKE2b-256 75b038e89cba82abe1985f93b8d7198a04efa47543150b0c68edc930f68b9883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1483a8fb91d1d9e8441e34632b3dd089707241586a262df8e5cf041f56751911
MD5 9de51b41bfd2722253fdfac632248adf
BLAKE2b-256 8836683dd036669427fa92a53dcf30f2e49ecf8cc4f8a5aa27d18ec525fbd3d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6e0e4c00938e2d8dd4ba88434f2b7aad1efe4f216b76838006dec5c7ae92748f
MD5 dd9b865b7af27dc6a2f24715e818d3b3
BLAKE2b-256 599ef9d25023d15b9b97e89e447fd1015ef8d9c40763077cf2396343d5146a4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a5b4a039b5a82627f807d2f912f54ebc8936b3ab9196d39eb157f5dd6d90ddf7
MD5 fe84bfab1476232f693449059ef8754b
BLAKE2b-256 f249409ffdd9df91159a6c0bf62ecd510eadee05265a848f95b65ecab766122e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1e0807c2915839dd6828b5a869c93f6d1140d6b0238ac53a4b09cd1168b2b0d6
MD5 e24d4eae6a6bb635342bd80d510cb6ec
BLAKE2b-256 b5184f5390d568c8826ca70d7d1c2012c0ebb4010f8c818ad4bf060a8ed3e773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30d9fe59cee9b5dc6bdc86079338e4ef19f655aaa0b38af1918f3e77ce183125
MD5 e49c83d69e6bf4da96e60805741d0e41
BLAKE2b-256 b3a9edd9ea91e1e48d1ec3aeacfb9caca80bded12af64ccf73d330c5e13e9ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b4eae6b92e3d970d0dee5c5cbf6d9f3ac0eebb3dc416161699c48e26bf69d404
MD5 6691c57739a89e11a7100c1fa86c786c
BLAKE2b-256 32faa0632a1e2836906d6bead0e38eba64ad69fa2249cac0120a91d0f801f460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8a8d1bb74c5da36fbacfb38f3128a147439eab70b1f58d6caca5b55611b4ffb1
MD5 f3774a87175611a93908a0204661cff1
BLAKE2b-256 5608600d1ffa14434f67505f53fc141be2602532bb4f0d011190a1050a72ec02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dde902582c87036fc74dff9f112cc1743e271001f201137c01fc6bd8b34a1974
MD5 cfa442a075992e5150c51ebfb215ab9c
BLAKE2b-256 3dadfeb80b5a51aee7b5f608b58d75f1e68b1e218c6296f7b984d8d8d6fbeb29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 610ecb8be9fee90465eb91cee9dee62c542f12d928527c6916960d0e1dfc9d3a
MD5 9ff6ae87ee0e96913c0f5a3b096df020
BLAKE2b-256 e65b38f90e43d2630cc1f8eddbfdf97c10db8ecc5aa82ed6bab2918909127849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 baae600b4e8a4d0612f8c227c5b0feb5a71325bbeaeafaaedeb439a4a25fb9e7
MD5 7eb885b4b026fc823423e5002dc319b2
BLAKE2b-256 aefe51106ccba252aafe4b04234ed3ad5a16d405d690cb50e2872c6f83ad393c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dcf5bb2ee6c415fa2392da2614e2b4646c3c80f4e6357554ff091d2dfb077200
MD5 c6bb90eefd2b4102c4c6b0da6da12756
BLAKE2b-256 bca527a1c281694fbf93f6412fffb5413fd48b17beeb63cd3de280d222ec31a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 92bbe812af28b71ccb52f0796583feca80c0b84e78ce1cbee1a5e07c628fc151
MD5 458162f0162f14b17bd6962fc45d70d1
BLAKE2b-256 5992780c8f4a9055add974f2159504cdcf7bd106fb46fa3982d5c71af303531d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2a761c96b7b5f1f0ed36b985c4c55a937fb994f48c6c223650223b58533d3b68
MD5 94148ffd8cd913bcd4e68a6090c31dc7
BLAKE2b-256 0e6bb952f0d883c9ed50dc23170f42921c77ee635c4ca66c3c7f3f516d8b681d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d6528b04a38030aa4d9ff8d8ac76ff709ce6a8d73991a8844c7c4e28a9af998b
MD5 48d23594ad5a48d3c9354bdd1417f8cf
BLAKE2b-256 de685bef295c6fc542e200b6fb5fc4e2fd06897b695a53619d9bc83f71abaa00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 14478e98f08eafe8159292bdf75bef69d013725436485501d3a1dafba0b5df07
MD5 bd87836a759f40c4858be54ef29f25d9
BLAKE2b-256 510a27eaf02849585c1f4e46c7cd3ac2ffc6151b1e3f4068aa35b365ef521e18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1cf21e30c7d7a14e8361039b25eb9c5d66d02f3ac531bafd267530b271171d53
MD5 05de1fc80d7ddda38f65f0911e921c55
BLAKE2b-256 0cae300a08efca61ec588cc1cbd76d3ed1f22f3e8c22cc08a8bbd1f2bebeb3b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 43762a13a687d8e69b4156c07599d27f7a98be71708ccfa12ffb79b9d0ffd89f
MD5 0917fe390c2bd9938c553b25e5bfd4be
BLAKE2b-256 84ec1c40ccda81772100b8f935739e168a1311fa9723561c3509f1befa9b85e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3d7f12ed285f8cb926ab10fd65300d5af41b26db904a79d7ffacf227d6686e6
MD5 f6f1b74d55efa6d23c11ba8194d90903
BLAKE2b-256 402ea62684bd8a5170140337d704ae58d4b21aaaa413b411527427989f500303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b29475a1d28fa70d3c43028340b0ef08c32d62ac64b259d3211bb8bf89c6da38
MD5 486a178d57323bbe439e2bdbd8cecd9f
BLAKE2b-256 0866fec93defe21ddc314cc0bcd51f27dab11f21b0cad0306aea1db0f498700b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19abbbdaa0bb1e3bb327aad4b792bc8ae04d999569476ae8b45a665779c25e03
MD5 60c4eb8bcdad89a54f1f1d225326e259
BLAKE2b-256 d6c2565eb43704cffd72fd9ac00faf3339859958b335001e4b0d67e1ea460dc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 061fe2ccdd501169147c445a953dc19dfe2aad1dd4c356c2ffd40e5afb1bfe7f
MD5 6695efb99bc5354dda0df44504ee29c5
BLAKE2b-256 3b0e3cba7933f156d2d6e48a6314689b585b3009de1de9340ba8a9e5df34ef1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae2edc3b5a5df8ff981279bae0cd000288a800b3d8efd910dfce42ebc2b7f995
MD5 9b86217b86cc0155fa8f29063c1f12ef
BLAKE2b-256 d58afc308b3a98b8498ab93ebada7e275856fa063a29707e4370ee19cb1f4066

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8ca88b8fca9704edab00643b50dd08246d5c53bb17f0f208c4fb16ba67bc2a70
MD5 3cdec75831e1e57e643f5c27edfc4efe
BLAKE2b-256 2fb629707f3dc0f077dd3ede495bf749a580e29ec53dc1011c1f8a1c25cd4ab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 215eb40c47c6e0f269d420dbaf22b7d71bd07f9e7f9dfed4de49d9305b01621e
MD5 daf5403c5f884fca82929c177f3e18df
BLAKE2b-256 6a32456ba193da9957e73171158c7a3589ce0f8d14d45dca37a99a4e1bcb68e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e49a3d4437a0581df88fd8645a07de57968df1dded9903216aba8e0e67b49559
MD5 d3ba19d99c89158f9e17ab2a9cbd913c
BLAKE2b-256 914754a9523286ce0cc6a25abeeda9f9eb9c9648dcece11499f5d8560db45b63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 795a488efa40575d4051f72d0502510f6ec78899c8571a4fbc64eeda9a29ce81
MD5 6c3830c1db28ce9c30ffad954ff77f90
BLAKE2b-256 c3c6882e41c09249523129dc9fabbd60456bb1e7ff43286e92990db18174086b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 4ea52c41b9dcd8be178fcff68694b6d396a66c603436673d54d032d8128e3794
MD5 cbaf46283bf3c17df8884388ef56a263
BLAKE2b-256 187176fd578be88e8a9f65981161b61b1b5d61d4b0fa8968f859605a61eff693

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0fa0d88189feed3f0029e3d1b9623cb5aa06377e4f67b2159fd939d4f9d97ad0
MD5 b17cb6338aea3900460c7727d15b8ed3
BLAKE2b-256 5e8c3b998ac3dc931de11df784c159c9ca468c1a1e90955fe3220e0d29140b59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e2fa8011961888f1886b691f6deaa128fd04e65114e77221fc6a37bf04ceea4c
MD5 2b1b4bf42d71fc19de36c9ea9840a64e
BLAKE2b-256 c0d79109ef51bc7647d9d497ac893cdfa03a2fdb7c609ceeec02f8792fcff351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7ae9f4dfa2a8d712e37e732d753d85e34cbfdb4ee531588adee842d22194a334
MD5 c849383f4812848874378adb525c354d
BLAKE2b-256 c826e999d0a28721f7fad1af352600248206feb2ae5860e4f81072c742699205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64236fe74b8df0e1a301d426c1058633506fee4d03291d115db24e707a26225f
MD5 8fba45d926c89e77c22c98111d6eb27a
BLAKE2b-256 32734eede4f6c42c528a0544469aa225a1de019b981f7c2f0abf364bca885557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 79ae11a3b6bef266cd9d2851c89ff030cdfdd2e54b022b2daab7408161a33fe0
MD5 60403d64b3cd218a69f7f3ac98e0598f
BLAKE2b-256 642bbaa6f2393057be804534f7284d6045887e8fae385409ce7929bc501a10bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 41d44d15f70426ba98b836e424214ce103a2e253c99dec20c7b86c52e23f01ae
MD5 c17dd76c630cb8efc5b9648c832a3617
BLAKE2b-256 b1d98fe0d97931bcc851c2077538f575825802d7aaa0dcb163e754c9b4cfd3b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6fa18b1565ec467c5d9d8aa0939b320b03b1398cb515d5eefc9a595fed92676d
MD5 7c09b2db0ebf2218a3b707f9fc146d9d
BLAKE2b-256 b6e90908ebc451aec21452fe9823c91734622ed6434956817ff0a47c2cf4e62f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 104608c31ccf7f843de284be1dc535e479c939912ef54d916813b367bc7ba354
MD5 ca1d45c32c41d284b5dcb53d56a5ebaf
BLAKE2b-256 317c5f3ec44bbe379197f6944a0497a8af4cf013ae0268b722dfa0c03a06fbd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac9cc8fae882822653d399c4fe9065a13f8781de24d4620787214cd7c5ea1000
MD5 18ba6891f0704c0212399445a9ad4ca2
BLAKE2b-256 7f9a343555e390d902a9096a94606030b6470ced0d8db9704f39129758cccde8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70cc02e2c1e25537651b8709801242270a6bcc44bee188dee1bf06e5cd640e5a
MD5 46537ab6a43777180cebdcbb1cb49619
BLAKE2b-256 d5f743be35fcdfe546522dbce68472988ecfdc8db74f779a13fa57c097f1455e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.35.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c1cd4a697a8ea985caa67557a6d79219ed1085a883417a5dabe3886566c4595
MD5 c3f56e7979500e8aae1f9a73b8f7f283
BLAKE2b-256 b81f2d863871487396591e7903bd2d23188f99efe7cd6eecb523d768d5f28b2f

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