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

Prerequisites

You'll need:

  1. Rust - Rust stable (or nightly for coverage)
  2. uv - Fast Python package manager (will install Python 3.9+ automatically)
  3. git - For version control
  4. make - For running development commands (or use nmake on Windows)

Quick Start

# Clone the repository (or from your fork)
git clone git@github.com:pydantic/pydantic-core.git
cd pydantic-core

# Install all dependencies using uv, setup pre-commit hooks, and build the development version
make install

Verify your installation by running:

make

This runs a full development cycle: formatting, building, linting, and testing

Development Commands

Run make help to see all available commands, or use these common ones:

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 all          # to run to run build-dev + format + lint + test

Useful Resources

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 🎉

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.40.1.tar.gz (452.5 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.40.1-pp311-pypy311_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.40.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.40.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.40.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded graalpy312macOS 11.0+ ARM64

pydantic_core-2.40.1-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded graalpy312macOS 10.12+ x86-64

pydantic_core-2.40.1-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded graalpy311macOS 11.0+ ARM64

pydantic_core-2.40.1-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded graalpy311macOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

pydantic_core-2.40.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.40.1-cp314-cp314t-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pydantic_core-2.40.1-cp314-cp314-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

pydantic_core-2.40.1-cp314-cp314-win32.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_core-2.40.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_core-2.40.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.40.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.40.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.40.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pydantic_core-2.40.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.40.1-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_core-2.40.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.40.1-cp313-cp313t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13tWindows x86-64

pydantic_core-2.40.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.40.1-cp313-cp313t-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

pydantic_core-2.40.1-cp313-cp313-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pydantic_core-2.40.1-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.40.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.40.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.40.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.40.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.40.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.40.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.40.1-cp312-cp312-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.40.1-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.40.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.40.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.40.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.40.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.40.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.40.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

pydantic_core-2.40.1-cp311-cp311-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.40.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.40.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_core-2.40.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.40.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.40.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.40.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.40.1-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

pydantic_core-2.40.1-cp310-cp310-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.40.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.40.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.40.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.40.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.40.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.40.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.40.1-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

pydantic_core-2.40.1-cp39-cp39-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.40.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.40.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.40.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.40.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.40.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.40.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.40.1-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.40.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.40.1.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-2.40.1.tar.gz
Algorithm Hash digest
SHA256 c825555bbf09af8cbd3d2248a1b6e66786196a180c9fd64f7e758213f0030721
MD5 1de2ee883925fdf1ac8d90a641265763
BLAKE2b-256 d2c879f11f809480a69aef892df16e9ecb66f273987854ee3432c1556496c50c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 14224f645d4ee46afa71c2116dde637f47b27647e675d523a983f13daab38ce7
MD5 51543f7ee40f0167a8b75273c3179e83
BLAKE2b-256 ef09062be1434547f4d16d407062b42255942ce193b9ce2b364b597a52162599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e325b87df49d5b4ce1f4614318d17399cbf5e5b8e4b674d7c482c63a15a66adc
MD5 5785b82d4821792d30c27c12cebe2272
BLAKE2b-256 958e8c6319f810279eb0799d186ec19bf3dc0b451fa1cb35c352e13044b84e3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 7ead3f111672f23161fbb21d193fbe5052d557e960b7d586a21ab4265510c714
MD5 be3f1233bfa68a233e233a491158310b
BLAKE2b-256 0ae56204eab985f1376e656fdaed2212b06a81bba65147bb8fd6019a4d38f6b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 847b85d8c57238190b58ccfdb657b3fa0b324e32c5f36c7a43fa925c2561ff87
MD5 77b16de6de81812aef021448087ae859
BLAKE2b-256 644c2dc46568435897d92c5017acae524ecdd23b31268b9801100a4e81535e89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6a8eba8b03f8988e08301b0418e72678888a0253b37c578f55e2d8575202a44
MD5 7fc915e4809aabb028da2298028c105f
BLAKE2b-256 ea9a8952ff54e8aeecb7dc4368d48382fb43607f256680de352b93316bcb3574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a6ac3d9bb16a12a2ce0d88e87d6832e8b2f08d8f0d21633adfd5f62976638ba3
MD5 2bd3af308dd1b421f485e9ab4b1e53e9
BLAKE2b-256 8ca8590b5ce7cc4a0e23f9b6faab8d2451c31e045379acc202b842109649c8c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 afdac0cc32d3a1e10b36ffdd33d746346a419413d80ec083fd70e0127a0615ca
MD5 d3254cf525ae4676b124a456a0a3b60b
BLAKE2b-256 68e0e222baba37255a9d108551060414b4f861aee15255f8fb549d13fe80a88d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80c2d1c82779d27deb16769bee3021b6022277035ea336e2ebcb9623f0b88060
MD5 e6a3fae171557e39b165424885a7f90d
BLAKE2b-256 5d9f32dd91ad0e211aa32f33cb186d8b4bb30eddb01c4c940e2df07112d99240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 49001f47d07fa3683e7261646ac88fbf0b94681d5e078b07b2fa2def475a719c
MD5 77d79c8588c0c51be1ba5ba174c9b169
BLAKE2b-256 a44443165409f343a81587378b14460dd74ab7f6f82b30779265fd277ac513e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 75bbba36265d84dbc9014d87e2d75d8e89508c44b5ca2fb1691cbd890df74fb8
MD5 52d91058baed909a5eb8da18ca8092bd
BLAKE2b-256 4c8188e1f3de83b3f441d935955f838d7bb4b7ca7ee97bbcae1d9648aa1ee0ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 02d483531a0c5b5e772b15a5b5be7d188acb49ed8ea3a695b816b84a69e7d3bd
MD5 1c74074b9446a07a2ccc2ee456d8be56
BLAKE2b-256 cd6a69d21af2da4ba86d438fb76bf231b3301ba7862b09c6ce3f48d8857b97a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 34afb405fa5d2d5de19ab60a8d355f2bee5e625c2d22cfda002f73bd6eeb9357
MD5 7f9b5a09ca64dde53c76ab1340bd527a
BLAKE2b-256 ae64c69c92e2379e61e76374518036d30735570b40b1a87e84c9925bebf6e07f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e85a8e85b6eff565ec99e7f03d562f02a399876d5e4c99ce37a4c6838ec9fa39
MD5 d47d35fc851fb99d437e7edb0e16751c
BLAKE2b-256 6985659eb33e1cf06888c436c76853005910ac315d77d867426ec53303cb8c90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ce350344db888c293b611050bf18568c35f5dfc9692714caf8039ab13b379479
MD5 13cb18107ef922d3895bb8cc8488d9b8
BLAKE2b-256 8bf77c8db9bb44d4111b54c86c4cfd9619aab98e2b6a089a9407ddb576c6a207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ea9f60ef051a02542bf6427fcbdd42abb2da15b6385497370b17469e7e03c488
MD5 d687f9dd39a772ff4169ab7ecc761145
BLAKE2b-256 681326d47c1084707ae1cb3ce36655f01417c606df3bc48a15b04e6d2255fd8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d3abd824e7cdd2283b9b87b5a62a564bd0eaf061b110c25471ebdefe5eeb685
MD5 27dda4f3f333585e801c03e1118a02c3
BLAKE2b-256 7baa4469d9239507bb5bc6034e4dce9b73a4e53749cb7c6af22c58d52a3fca55

See more details on using hashes here.

File details

Details for the file pydantic_core-2.40.1-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.40.1-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8d64c672114d49cf23732fe4d1dff07ab0190b883928e8e230ff16ab80d22fa
MD5 974f7a86a371cae3fe7b65aabff193ac
BLAKE2b-256 e479e81fa19cd2fc555bf5d102de4589cb4fe7cf2794cb82e10121bb5b658a4e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.40.1-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.40.1-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 388c2586b9737b80bc94cc566fb544a3ca9df68941e9ad7afb2f11a250fbcab4
MD5 b8c69e5f944f030f4b7a9742602ce999
BLAKE2b-256 8f0d2f393c23cd47ed7c5f132ca1e0bb91c993c641718f988046536640362ead

See more details on using hashes here.

File details

Details for the file pydantic_core-2.40.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.40.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af1b5956459364f27767ae1e0cdebe57aaebb45b845354abb364d3a22ea0b84b
MD5 fd987eecab62c1e95ed60a8f27795dec
BLAKE2b-256 25f26e0a13079b24b78080e84f1f3afe14abd2356288e124faff7127865c9405

See more details on using hashes here.

File details

Details for the file pydantic_core-2.40.1-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.40.1-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f7b2a9f7e76900cb76bb2df24281db7302ccfb46f0c1576451b96d65e5b793c5
MD5 01e4d747d8d90b37dbd62db5636f8002
BLAKE2b-256 ab66f37cb2c7d183b375114d932f25f2c94726b955007c4c483bbed12173e06a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.40.1-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.40.1-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fe18aa2025cbd8a6e16bc76ad3d1618f4ceb44de3d2b88412411e2d5d940436
MD5 4d9f48163611c8d038e87205be18f916
BLAKE2b-256 d5968ef1a343c50aa48afed9f2d105f05e024443d89b124b5051cacae23617b8

See more details on using hashes here.

File details

Details for the file pydantic_core-2.40.1-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.40.1-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98dce30a2df97c66f8a0422029efdc57f994fe74fe09387240557cb46f43a168
MD5 f49a056ebe5531829a370166e08b2f88
BLAKE2b-256 8edec9657809e3f49f91d07a93491283a140c8b82be8123f70cf0b5978083715

See more details on using hashes here.

File details

Details for the file pydantic_core-2.40.1-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.40.1-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88ddabdd5772a0fa133d6cbc94a615deb192d4361a79c2a0752a6db22a4f05bc
MD5 cb1b15699f381ebc4ff97f2147d41e5c
BLAKE2b-256 b472875529a15948678b0b7c5e9b6ab9145d852506dd663c0d80fac1de622304

See more details on using hashes here.

File details

Details for the file pydantic_core-2.40.1-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.40.1-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ff05e06f7a89b88e361eeb29be5fbb6ace4774068f632563504fbe47ff5b814f
MD5 004cba153604e3539d5e15c89a06b368
BLAKE2b-256 e3eb201004fd642e7cbd16305bd9a05de4e4a8f15875cc765fd8e2db2c1fa2af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 32734280076fe3ec58f0f51b754ecd6c1207d599574dd9133cc32df2edefd7ed
MD5 144305c39f7ee5eb31359d76043f33d6
BLAKE2b-256 8415ec41a003b6ae865b5578c08cbf1d621dd180b9866bf4fd0a33ea20ca11b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a578a8cfca52fd4111b9be78df74d553d4e4622c33293c05d5fad01844425a53
MD5 dcfd5ef2241cac4274a39e458792225c
BLAKE2b-256 ec4a36f4f22b21c4ca6760c7203629bdc8cdd6c8775612c0942e037fa1f0f632

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec7737483c8a8c0136d724b716d8a16ebc3a5f0cfc6a018ac9d77a8908bda767
MD5 d3833fe3d63acc0a69856d99d47fa8ad
BLAKE2b-256 e0376ff820b14b8cd7408faad6778a6e4c90267b6f7553aa55a3ecd3c57b0509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 34d4894656904fad96b18ceeb8f304727840ce24882990abdc030be0c13dd6e2
MD5 8f86c3f2d9fca5f9b782382faf4a0415
BLAKE2b-256 d9750291b1536e47f98ea73e572fdf3d0268b9a8e18d2e7b2847152cb13f79dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 474ce0ab9555bbab472185d2dd17c6c41f8922af52db767d8287f7d8e3542ee9
MD5 ac51152b61d29c85be1ca8c79087d4bc
BLAKE2b-256 3d65c16e09acf5df7657eedc89fe97206873fb075137aa6744960e67ac5022c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a0cda435c519689ddd8177a6cb3a54adf39c04053ebbbf8919e86ad6234516cc
MD5 0894b1ec2d1ef1b90b1aebaf6179bea7
BLAKE2b-256 12c49a2324319c98293c40fc9f6b76c26e5f6305149b85993c0a7b803f26f28b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 edb5799764165e0ba6292a800d7f2538e19b40890237c2cc8765b3c3b61f7e12
MD5 06d35d4a71a265d05a3fb209f05cdbee
BLAKE2b-256 1102eb959d6e7d783116c4e4368977cf78245d0c9c90bf430c616b2595950ae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 525a08d9854dfb06877f2550f1d0a9656fc4157e5712a896195d20249c43d98e
MD5 c69480614871e0785752cf7c5efdfc28
BLAKE2b-256 3eb906a69948bad09317dd2a1a046a327b8d304337786a8c63d9c65e29f4eef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a1d2f4505a939db994f88b4afea3acfb7722096ebe109af8de0d0d1450290982
MD5 fd8709c97f325ddaac77978f9948aefb
BLAKE2b-256 0a8c7b74a32ae986343f40a2082bf12abf622bf416fe5d3835c76f22578414b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fcdd2e7d4d3714c9b7a82fd6d2cd7b0a685c4124bf2a080e7db0f155dc464ac4
MD5 a7a9733ed9b36b17c6264bf2fd8a2d2f
BLAKE2b-256 67ad8c2022d4abc103609b33e48fa9b166795b1e2f731af31ec1e69571d94bd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1937e6b586319c2cb5d4f0f749caed0922cee146d16491133ccfca055e290ba0
MD5 0c369ec2c82ac8f3bc9dc3992e63db94
BLAKE2b-256 cf06b579413497284529828898a12fa3a99665c8b877d25dd922ef445942e0b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f086a193f06f46953d6ee5b63a3624d9da2d84b28c096bba9f321a041ebc5fe
MD5 cd0b2ef852885ddef3fc59f51b61dea3
BLAKE2b-256 2e6bb545a32ece46990d97e8399c6f700eca4235a2ed364426e2fe738f778852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 227c566a88685b938ab3e97be033ffd762f05b51e9faa9f8ff689c9e864cbf34
MD5 b2244550b8b9d4a1aeb8c61ce3eb6d27
BLAKE2b-256 6268a7207dcaaba5a14e7888be805b17a5508f658878ae59c83c1c7074e42433

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d962cd063814867a9f9015ef286884e09c6cd7c85baf10de8a2d6ab117829512
MD5 4a2a6e5932e4c48a8b4d3f95cb9aa40d
BLAKE2b-256 1805eafab99b0051fafa5b4bc11ae6c56c1cb53b2c0c070b6a88ced88a970db4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2c2a349aff4403f3d9e34f25a286dfdb66cebf5686bb93a89c67b3eb27d3db77
MD5 8be2a61f1082f7ad79bfe8a9b90ea0f2
BLAKE2b-256 07a6934ed10f0d48c50dac8b914d03dce461b13c872a5de2913fd089a3ecc0ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36d27c68e7bad2e0513787673c71066540163a2841476dc4c86b6894ecd33d48
MD5 45886f8b9750063d84101f5a2410cda1
BLAKE2b-256 6ad2dd40c5152c27ef8692eb340ed7a37563bc34066fc8b05ca2b302d63fbf00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 35053e0ff1698b93a58e87759b7078fb385fc6c6a2b920094c2f12c19ec2a048
MD5 96911ed2f4b5c63bc2ceac098dc503cd
BLAKE2b-256 e8f97eeb2ac4ceb69754b3b8b8db554cd83a4ae30af439e878e0d580a3b36714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 edbd7ca09bd6c4b6d4e313e7073acd1d8a67b1b4db40b302130623cb7de3d13c
MD5 8acb4fc39d5bf3798511310567b402ad
BLAKE2b-256 a726fb87758a153a48f57866423e73968d20732d0f6aeffd124cb748c1ecddbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 39fb2bba8e72019abbd67e372791938da04f043050aac9562411af7e33d9fe56
MD5 fbf167ca1b43b761dfabc8f2b83a9ff2
BLAKE2b-256 d6cf7eeabc875444ef9b74a9c76dda639a8cd4fcf63f114f48901ecc99d3efbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f27f80b859fed0c785b102607b950663eff830685efcb87f4026f8b9911a233
MD5 a4e3413343c3a687dde3be46ac3cbf17
BLAKE2b-256 766a0cea9774f1328856bcf557cc5badc468119c3688a24b860784699479d082

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f776735e880a08ecb074dc57efff49cdaeb068e827e7e3a4cded6440222b0965
MD5 c9f40f7af7d53f33b776c440f7374627
BLAKE2b-256 636056e9ce1984ce26c7a49353894ea3ed427c24b647a562db1889eba2aeeca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8179f789e23f96180d9e63d5adf93a8dce996a6f138f663be58fa7b56adab732
MD5 5351a244e1a44292be8b7c35534acb67
BLAKE2b-256 91a4af9e193d67d949ea0c84552fcb744af6165afd7155c65d666acdee24b139

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 cc111e466a650550d78260074a225ef4fba0ea186232ed309448e2ff401e32fa
MD5 704cd75829764f17c742ae60facbf638
BLAKE2b-256 dab140e670aa5b1414bd246a6b143212aa02f6883453e5cdef90d30bcb21daf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7876570a20685aa36797e939b0d5cca633e5fb72841feff1e297e0e5406b39f1
MD5 51656a72978c84b08b816468ea54a488
BLAKE2b-256 83b3b292111b08eb663ba1c3270421fd571e5490f462360a107beaa2c9f3c0ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 fe7f5c827c6beb12a0b649874555f610d00354d7bf6905fa85061b93be0e0547
MD5 2ab0500ce9793aeb435ae5e353df378c
BLAKE2b-256 a6f7ae012cbe2377f5850b56ac2e5c91bcc06a7f8ac724945003df4c0d8e1ac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3196b597182ee378858474e98f00533ccaf6f7173ece77e0131c033ed31bfc3a
MD5 10c580202d556ad09aeeb901d477fb6e
BLAKE2b-256 097761626df87e3a28b4057e98e649d4fcf8459f81d5791622952bcba449038a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86b0aac4c8757ef79c6453d9d1176485c84e02999f2c77c520d5e1eed3001ec4
MD5 30bd2ae4c8987ced788008d101d66ac8
BLAKE2b-256 963d0b213837d4760653f3ca92b8ee03eb4c7a3f4be631513fbfc484977c036b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 550f912f4a7013ee7214ce782383c4e7276b1d49f0ba2cfefd2cb167dd42b1b8
MD5 12659b250808cd51fa8cf04150e9859b
BLAKE2b-256 33f739dee2bc19f1e47a5db662d2728e4e8523fa84b45e4900d24c6b0978d49a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a1a91e27e6437cef40933aeed21df194dcfb677bf48c1cd30e43289aba63a309
MD5 3e7f3b32d8c63eb50c748901986accf2
BLAKE2b-256 df607513506cb64c3c29d5bedb0da5134d23e5fd8cadd58eda163010a07616cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4bff62847ccff78c9a8ec0b597c28869783863b87de2be7136572850f7ed126f
MD5 19d457425f3b426ef573b84a0f026c20
BLAKE2b-256 269665822581622e1fb216dc318d24be680614b530a211128dcb1d70ee5e3d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 423692fcf06a6c0d16cd9369eaed70086650173baa17a4833e30251f35c4da6b
MD5 30321aa832a776f769d91fc137fce824
BLAKE2b-256 1ebb3dd62399f26341aab01caa8cc47e25e3e85e165ccbb0ca592bb0e25e8a2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 16af5233cd5cc4fab6e77e650a2dad7b0f2985b84f721b455fb00c81a6a7df07
MD5 844957baa030563d4d5b01d6541dce29
BLAKE2b-256 468714f89193e5141fec18065a4d0615e17187d1710c27328cede8c070e9c517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 966667ef4ac90103330bb3760569511408581b279fb69d2b30baf78a0c6fe374
MD5 e916729c2ac421111d5ba0082e91adb1
BLAKE2b-256 b72537f174b0fcfaae10f94432a1ccbbd06ba522545cea98edcb8775de8081e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f173a6daf9bec180b1b31104d009a247f7e7aa3ea6544036eebacb6c264fd204
MD5 63c64983632cb27cae14cf760a866158
BLAKE2b-256 cf35f4f82cb54521fa2e4da1be671d385e052ca1e8cb31213679b5b11efb02ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ee8dea48f68353339c90d8e4ee9f9764ba5e2714c02415930ba2dc4429908f10
MD5 addcbd0cf19e8e4c34a5c065a114873c
BLAKE2b-256 755f1b38a1ea26d0acccad5b9448528cbcace63e0824321758bd1c6056303eb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d656c1397d3ca6effb9a0608bb314833506fae0a04cd5f020319ac8cd463bf7a
MD5 5df226f8910bdbed218674ba3b96d936
BLAKE2b-256 8477c6698db785ff6e671cf10cc81538d20781c34ca51be474f1bfe478781d1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 83aeff36d11ebc67384091cd7f32824303cdf819fc79da5bc0c594c6f3b80847
MD5 fcfbe6f00ed46822d9239ed71fc168ed
BLAKE2b-256 e128e9fcc161a433dc97005aa6ff3f64f9e1d27a9cbd81b90283a953b2ebb947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 873ae59ec8038c8b07a26b96dfc1ff068a9fb3ec8aad32510cbd7465e55489f2
MD5 c6a19434086b5e439e6aedf6d3321338
BLAKE2b-256 35238d45162d4ba8bc574cdce3668dda2809cef50a05e1f0817b92407c585a76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 6ea005390bf6cee651929b37b335e0f24fa97e7b11cb87c2fe2f9495d07b4329
MD5 893c551fabe21c316c65d195a21af98d
BLAKE2b-256 14d87680596c4a2cd6e7529fcaaafb627be60b17a28cc4f5fe108d5a5af5ea97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eb2920bddbec7c33b80c6e02a4f88e0f21e1632252f0c8cc6a744acf3f6584b5
MD5 493eb5d62e61145459e11b595a4be460
BLAKE2b-256 3639269d1faaf67daf4c904ea2e76256fcbeb9f61700ef0e23636672ab5064a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64076ce972f13714878ffc447f2fa5d6fff4974f4a0a195030e27cf7081887ce
MD5 8f9b145cc0b2ec735942841fb577ad65
BLAKE2b-256 493ccc7e72dc3f2bbb19012b68f3c609e3ba707b64ffb8e87acf2aed08862346

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f262097a442224287d99ce2e369c3015fa1fb75f942d471033f16702b1a13108
MD5 32a7739b00bf63fe22eb03fa780ef2e4
BLAKE2b-256 072f4d10dc29b3ff191d8bded70939ecb1adb92860a8c88a670ff0c3a80c7f24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 44788b0d946f1c9abbb64a7aab342e1115d853d2d8f60e4d8a4c24acf0bf4468
MD5 e0b029e514619d66f1f6566e74b65ccb
BLAKE2b-256 5ced3171861f42d552cd6d85813ee424ad32a9ff4e58e0302f281cd6926a3530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c6d821658aac8e8bdaa45977164d97676b332843db4282578cf2210694883d0b
MD5 7bcbd7a71d4a5c17eaeb0eccef158c58
BLAKE2b-256 ea3a7a4149f18cd803af5c14bc68ae1e3943d12607e7c5430a85f8d11333c1f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 518a4d6bd01ba1ce935ce94b5f8ec93b2c523d10d5e105c8c3f0e3975b7124d4
MD5 4b2bb012be09feee0cf3f95d8bea3579
BLAKE2b-256 2930862b48ec9a477cf7cdf626e720b3ac1864e87257f84ff17d8c9bb8124c2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 db1f6ad7c6c959096d357231cf95e32a84ae0024901ffb8716c309704ddcc101
MD5 b73179de88910c6ceb7ea7910c71ac22
BLAKE2b-256 e028e866ab5747e8f1f87a73cd9a721541a4e36529f3a5f2b6f79cd5d01cd2a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c62c1a60e5c847321f0dd2e08291783c04be944844c2d3c00317e8d77929d04d
MD5 64d7e8de4c3a0e8842934bf8e3e78a16
BLAKE2b-256 17b704664985e9f1467f3a8c127507db99faf265ef29402d3e2fd2368b709df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 86c021764c6cc83d034c2c96bc2624e0fa0d3bd4bc131b132cb4b158ded3f70a
MD5 8470eaba0a9997e077a6f7388b739d94
BLAKE2b-256 256c82bfa490589840a771beca592e0680e30caef80bd4e6427f9fe12c53d88c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e2ceb32c25d0f769c38c3339d9426c77a2d7d253e61df1827067eddd64d990ce
MD5 e1877db455a4e28de2bcfc6e9af80d84
BLAKE2b-256 410f76fa454bfd6f28c2791a1f1c5068a898c501e449785206de2fd6de0af88b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8025ca436da99909a22f5c89fe7219a98396fcfa6d1fdef5fa4840bf7379cd89
MD5 ccebf8a2de110a3977fa3dc2413f560f
BLAKE2b-256 4665f78234b64cb66b3a4cc4b9f171e53baf49f0f08a239b55fbcb6719649ef5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 23ec0d5efd2324c33267332151cba4f646aca3a918afdce12dee06b086bd403d
MD5 b254dc9317cf4b59579862a3f112cf9a
BLAKE2b-256 5670ff2f891f427e845bd32f8a0e6257298b68382c0d34b69001895d6467af86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 80958c5beff76375ff998854009229ac72ccd5e690114efad0ad272c97260648
MD5 ec2ecb237c534071e2646333313cd17e
BLAKE2b-256 1aa6b88df22b87c81d8eef73a5d67bc77dea8aa8addc72a41c97ab3938682ee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2cfaab0dbe0590b6e3d3448d6ee59f031cfa2fdda481856c101755506b563a0a
MD5 d179afc62562c01c435a8d9ea1698c40
BLAKE2b-256 9f11abcb60bb240425051810e1470cc51e585b37b5be9d4f41aff223a0c5a8fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 834749b35f50bc92867440e94fdfd96ecb39677eb3c0154813078b2fa87dce12
MD5 49c4e25af13bebc379d0b0076fe37c42
BLAKE2b-256 499835c7d22bad30762ff60a5c36fb62528ea91e81d5dd7a6b3dd13d06a61565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f762e17f6c63d01da6e163414e218058dd2d418318e6700d3ea26d6938fc84d5
MD5 f92b3cc697dc676a05f1f8912b4ca465
BLAKE2b-256 974142ba6cb7c66bc3278f96ea68e6a1b753a60d9279e2cdfa093514878d2cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 056b8a49fa1a5c4fcc205e06d44487d79d73bcc4696146a9b04c84f034b7d48c
MD5 122971a7a5b36ee43913ed2961f96b61
BLAKE2b-256 5882ac8dfecaf36dbed549092145d15cafa12465b7a9b6163d537ed03fcf7c80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 368e507e8cbaf73ac03918f5d3cecd1d3c3ec90ef3bac7d06ccba4b39984b9fa
MD5 ed0a0bda4d27bea8a1a1c1eddc347330
BLAKE2b-256 9837e4ca0183ddeca3d492584e439931e97582e19a5b44268a65b55b6fa428c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 082fb1c825124c35419632fdf79fc865c960df63521e7e73768812f466c64ac7
MD5 33e3fab65afc87cf70fde2c00de99e2d
BLAKE2b-256 349f3dd79055d51d4bd2597e5513c38981e31af534339167287b6ca359eb0949

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 edc04b8268e315cd771aebd74737af6b1cdff818864cfc3bcecf4eadca2cf12b
MD5 e583a80d487710194a402ee28f932027
BLAKE2b-256 ad0400a658594aec93d9c9135c8810019d056a78fbf58eb3c733fab9f56dca23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b9cf0b7d11fb5c25656fc6ebaadc899b26c81dce651d8c316a3366fa503c607c
MD5 195971acedf3cd52f0a9e7346d3bd4ab
BLAKE2b-256 f01f3eb1cb68dbba5f842b0df7b82c7592e52bba4814e91da9d3477fbd8c6cc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f500dc1c771aac4201c84f82f5bb87b13a7888944c0759bc58d36271d6e33b71
MD5 6c6fd357ca01052a033dcd90b2c6a053
BLAKE2b-256 030f4a1456aa05520d92f74defb47dd4d9c5a45b64d0ba9458dd4c29ada8243f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67556b44838c338e0588e49c23aabb09972da0a39ff4da3387138c15b55f5e7b
MD5 8f64ac4fb3e0a13c3a5e311180d799a3
BLAKE2b-256 0301a05ed66041194fbceed3383244416f9289ec63287b59a4775ace33247699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6580b99707be18ae4c1f1833a99835644ad9b8dcc62ab8fc86ff49df846d9d10
MD5 d78c31e3bdf22b9314c166b7f3e4dc11
BLAKE2b-256 29b1a225cc77bd218489409327d5cdc689b5a9e3d897a0918fbc48f13b9e2110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ca6020c6cb6a7818f491745bdcb1ebf0fc261f84cdf63497d63231567f18230c
MD5 d0fd010c1a6821203268a84248352969
BLAKE2b-256 7dc427f1d31d8963b7801cafc109c30955fa071060ccb6a2ec76e8778ff1d50c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 99b5869c8feb491aabae7981b0e75e1538618f5b243cd9c4c6345054cfce026f
MD5 80adc234b3bc49da3621b353e94b1992
BLAKE2b-256 43c1f081ecb39918c2fed1790c2d4e766e9151f8b3d65c16ed0020477cec32e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 bd12c27b6ad770e118b0f0612b33b26651188ca2f5f8308f1b58d350ef410766
MD5 b71f05da15d95546cee6811b46afb745
BLAKE2b-256 9d0d6f29b05eda9d958ec36477f0c0b943fcb067295537b3779d10cd6e5663f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1c71378320f2a65cc97e75f85b4132c36e6ad33723493218b6a6a7c1ea153b67
MD5 3c10f4bfe25e5393e150837f4695eadd
BLAKE2b-256 adf471b9e2c635079d547fe164e475dced46018d2c076c6331a4b7a2df502704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 28ec120bc10a1d3333a07957656fcd6008dc0625a82e25007473e767886ee3d8
MD5 92913b1b78a890dc8d5d4d0896d08aba
BLAKE2b-256 f2a7140d2a4d9bb634b1c9eb51bf859d9277b0a3f5ec359c02890654c7a1bf0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7ba98f09584c2fa03dd3100782c4a8aa990613a510a723b90a7759fd00f1dbfc
MD5 32ac499213f1eeac7c24b44d475484e0
BLAKE2b-256 22bbd3208941dc26d45b55ecb9112176473a401b31cafa01de0da19b3a0691d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e3f90632da452cdb94cc221ea57e90279cdf02cf16cc430df2573ea4992004c9
MD5 fa137342fd19acb1f59f086eaeaeac5e
BLAKE2b-256 7ad33a8180b43a755b846bde5cfd4360d7551b9748ce733fa1c0e51268c19052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f7b80503079fac50006ca7541cc5b3f7e876465aa1c49e243512a6774739e1ad
MD5 e95d5ef9f7a849ee27c86aa22877bf22
BLAKE2b-256 9405e065bf06e4a84ed8063f9d97ef6a7dbd7f5a1d11e9e5079d168fb19313e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32acb1a60e512851b2fc8ef56cc732bccaec18a118716bc062ca33c61a28f705
MD5 de67142b4a275324d9b3f8240de1dd70
BLAKE2b-256 9e3472d63df7407f115ef2632d0dc5a35cbad17324b02e83d9e7a5a3a0e8fdd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bd4d26c2c0976046a1bb32a307c36ec3a0869156cc5f2998ff34feeaea0e63b7
MD5 87de31aea380fc35f584837c64fbc6c2
BLAKE2b-256 29da9faee79d815cd2f3f95c76568af79237b3303db824a17475138c8938976d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 214e41eb629855f5332809ed08df3fcc438571965fc14e0c96121d42b4228ae6
MD5 bbfb0e371fec1c4a8b8b7d756499500c
BLAKE2b-256 455a09fdb8fb5f05c5da32eb2f0a4cfe76d6b5f6f5d9bc1af268f270ca7a1c0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68a3d7ad41e05780e9e3d993f4f94614249b25eec73d828772e7fbfb7ccc1a32
MD5 22cb4f7bc9cab1c78744cb7acd68aa24
BLAKE2b-256 546cb574fe8a2de7dbb7c4bee49a3d264cf760d0229e0ba00758ae405ebaa7e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b2632dbfdafcf6d355aa1122f37f2bc300ca606770179786b95eb45c3d961f85
MD5 456644124fdfc1095fefe562d0e77b64
BLAKE2b-256 b6b236afab410520f9a6b77ae657dba2cdb8d9c9e365173d33cac4185b768898

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2022f85effdc64682f4ac07ac6f4cb57d555d67d8700dd76c63f93fd472871c7
MD5 539930e7e0dd73385b49c67ee875a8d6
BLAKE2b-256 a871af0543588079d7da10de38ccba0cdd1d26eef723140a9e7a9f5f76d1c5ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0bd04e2f943f4251ce7d9fa25718b80c5e8617ffcdfa72c8a914ff25fb6a0f2d
MD5 5a2c24ed377695e79001ed9e850f7f99
BLAKE2b-256 93603db1ae710c94eeddd6cbb03d1bd09ae777ed34bfd401f3bede947348882a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1e354767d77f3db3bb4f14ddda34086ef543d486fee8bdc9a00281d6ef6030d7
MD5 9f8549c115f9ea1c1c769f5ad6dba165
BLAKE2b-256 7ff7c315f9b6784e2b16b0c1b5b55fd08aa5a9b5ef6faf40f25e080b41a2b39f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f7b1afd9141eaf744a197c239a097aa6d9c80936c072f21ea0865aa80a8349e4
MD5 70a1c547314d42e53a20ecf24b584797
BLAKE2b-256 90bae13d50fc3c18bcc54cccb208919f1f22c86c2dd4b7fc9c59021e84105091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b35515cb4e36b2cd90d57d48c7a6045ca4ac4120dd6b0ab90dc95e3fdd4e8ed
MD5 cdc4f0485dcba09049b055ba16fc013f
BLAKE2b-256 02e4d0d8649a133acf27238fc24d06bbb324332f610dad4f6f04a64a3cbc6f2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6890e749bdca304e6db8e3aa7a588583465f6cbd71ec4307c6b9408e59b2d7f8
MD5 23c80061e9db45addae6adeda97e0a3e
BLAKE2b-256 bb4e77036da1e4a36cadf3426cf5c14a26816f7e93cbb7fcd8fdae1b9dab38d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 90fff667facc71cadec17decc132c2033004ddcb569017c228ae0177379353b7
MD5 d74cfb96ad5aa68f344d4b621e2b118e
BLAKE2b-256 613b4f78035eba8f8028f93e051ab99e295bb2232bd1fbb36804e0b1ac239613

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 226bbc36f410534de3c6448e2c8ef9ab2cbe1abe0f48461c0251ccf0d2e3b269
MD5 ac7a7679ee2f5e45de5c69ce27720103
BLAKE2b-256 6e4b755bc6684a8711b1e7b1a3218e5318b07344e0e387570943ebbfadc08207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9134412d60ed046b31a6237c32548d7bbfaf6a513c98d8150405c5f9661844cd
MD5 b286a1909c664367ecf7273ce9119914
BLAKE2b-256 efe7d4ba320a7aa62d7978e5c524fa776d9a77c21918a1370953a316e42ff5a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9f1f5f954529318d6d29e23f6211a0cbd02ea46a599bef10c86134d142c55eb1
MD5 141deb40b22f77cafb6c8658da55619a
BLAKE2b-256 9a80a7a0b265874b517971dcef61b41277a9033b689548a358743715f253384e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c750d9a2aed178ad20a4e925b7394dcd7ed317ccea024bcddea2515f3283c25
MD5 b3ffa6672b266f149719cc9ed5543249
BLAKE2b-256 7813fcb5801811ef20450db959a096f78f88ae3991406e7207f7fd83553f6f52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f0a8ceac2a94b48a45cf22f8c2ce90d48d3546c86e2770a82b2f8aad13d226bc
MD5 2a8171fbe9838eaa22ce857675937f09
BLAKE2b-256 ca04da70a171337f781607d97435d4b2243e3a35dc41ba0d2bdaafa58b4037a1

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