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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded graalpy312macOS 11.0+ ARM64

pydantic_core-2.40.0-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.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded graalpy311macOS 11.0+ ARM64

pydantic_core-2.40.0-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.0-cp314-cp314t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_core-2.40.0-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.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.40.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.40.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.40.0-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.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.40.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.40.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

File metadata

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

File hashes

Hashes for pydantic_core-2.40.0.tar.gz
Algorithm Hash digest
SHA256 bf1027256f10b3bd02ff18ada44c4bdb242435bd135bf9f4ae5ddf7af10c79ff
MD5 3652ad6ddfbaef744110a6c55603c085
BLAKE2b-256 a66caf3b4275eb9905b0b17341df1296acea37de0bd2468da7f93af63a20a7d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2efd1eec830fe2918e984dae5328fcd370d64984960cb7520a60c4b278816e69
MD5 ed9648076b7b673ea17c3ef069041124
BLAKE2b-256 ba0fe6f264f8b6af8dd5019d6ece693ed0309fda306ed59617fcb34584058971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e6e0b906540949ce0ee67b380488dd353875e4b829b17f822433529b4ca669a4
MD5 e9be8000b372a212dcfa64a0e859921d
BLAKE2b-256 820b34f99b2be25a5bcc870f75e88c5153ac9c2514fed8c2bfc2fe73e8ce6c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f15c3086e7c9958b78de2791519e1be32dad01ebea5ee7931e228bdf59efbbee
MD5 66a20ce96e8b94e99d96a9a20f9d2c55
BLAKE2b-256 225d471e9e14e5d2622044cf0b753c980c2195ec9ecd39bfe2a5f0e8e4719ede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ce665eb1c48cdef71cb71daf4328ebdfc8dd328034fa2381bf9113b337140c75
MD5 d73712aa0e3398706fa3844881c37394
BLAKE2b-256 c4d8035bf8e7fe60da5fa9ddb1154ac14cbbcf87d0d9e4d1c99a2b516e575f93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad2bd9df31c97afdcfc92bc8df5aacd89cbb82115ffab2ce39cff288ac9d5625
MD5 fe7e3316abeff50d79e164ab098c8ad7
BLAKE2b-256 a2a5738e6f261080b5cdbff744857916a3ce13af8c613d1b3a9fbe4cf3fa8160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 61a40a62aa3171cbbcc27a5fdc386560b2dc9f272ed1b3bf961940d166e70faa
MD5 6d80f4f05851c7599412f3ee9b166010
BLAKE2b-256 6aeefbdfafd1ce62952e1b75bfc4cf87c315a4ca9d9f1a5a16f6c34f6dbbba03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 101078f844d8e78dded2cb814ca935f4c7bc92f2092ebcdc7ab4283d1c2a9296
MD5 413ec1e0cd7255258bdc7fd8b99a463b
BLAKE2b-256 3149c05b0b10795ae8421a5a37a565b4ccd9bc6fd075ddc999f132bece4245d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 588d75c32eab03fb3144988f611b58d394af42026ddb97be89aac1a376e9ade4
MD5 7525e844004607af35c6362336ba3ad6
BLAKE2b-256 eeba3bd53cd0a4ffda4c80c143974c30bdcdf4a5a742f43216e953904b5b2e93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 50dcc26e0f3225ecf19b9bdd72ac1cdc2c1907c689bd88ca7c8b0d78f2fd2764
MD5 f75bddd28ec0653d43973c1be7ce9672
BLAKE2b-256 e893823fbd7109d3a7a44063950239452730d49b2617ecf875359a66a24889cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4674773e308f894853418215b66fcd37af8de95b6f8867e6f1935431c6c483c0
MD5 037e04522344a320d6227d656c0eee6a
BLAKE2b-256 4ea5f5cc91cbfe410bd013daa72acb754d1377544e92172cde27a9b86b40d98e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 be493e0e9b8186f09780ad9675790fce68ccb4d3074cc69123baf3c6a6490e13
MD5 bdb756a666c3bb52eef1f4f718be35e0
BLAKE2b-256 23d6e723ca217220427f16a538fea20a636026d2eac2c423539cf693ab78466e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ca431836c8c247b728bf0f64fbac76bbf1bcd4cc625854f483e8acfcdd70d6a9
MD5 1518871eab15fc9928752d7aa8209720
BLAKE2b-256 8ef832b7a42e9e100a758bf094ea5767b1fe76934d0b229d3d6abfc73460f97b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a59293d8ebe2cc77aa08127c4fe340812647a514f7891e414be7f2a63072d1da
MD5 f158b80422507ae8594a012ac484632e
BLAKE2b-256 20f72e3d429e96f4c4e2a193e3ff281118a2575724f27aef0576d2fd3caa5fb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1eb0c9f74d8dfc5d983620c672f17ebd8a734d459758f9775440f7969cc2c19d
MD5 070af89383004c9e478188ee206c23ea
BLAKE2b-256 51454012eeb3ef7c70568e6f3e14fa15d7792796fc997f555d1c3e203845c182

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd7e95cb7f02c846e2dcdc4529d8db507e83cca0606ad109c647d53875a15235
MD5 481ce0bc3a0df9fdccb21b53411ca79a
BLAKE2b-256 5348c5b2586174b9cac792815cfbaa49a7fc053bafadcaaefb8fb263e5af570c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 16b5226834ca63517ae13e7188ff5b83c475905d7246dc017a1bf49c7a8a8968
MD5 5456b74f79efacc9e04bbe1f1fcf4633
BLAKE2b-256 a98b72aa41482f0dd26ca3d44a42db54a044fdf217ce8401f8090f0bafec335a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dace2cebde5370c301b8e8b11000dcf28ad9971f8f33266f0b14d1aafc2b616d
MD5 4a7bae754bfb20c1688ae06651c5d9fd
BLAKE2b-256 7caacf38127cb8856fee4da73da3e7b6c71ac8bb2071e4d9765bfbff151ce890

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b24b2879255df0ba1c14a96b0194d24f74b9acc794a3d82990abf0dd9ff9d41e
MD5 02ff91195d5ef25bee513788604d1391
BLAKE2b-256 f28be32c9d18a85dfcfcc32871d45c30b4c96e4342963de5dab3783e2d8a76db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cfca1f117ebe3c4faa5ffc212cead996b4550025583e9f74885b16f66e1b584e
MD5 ea002479d83b5740afbf38a2be3bb31c
BLAKE2b-256 5df668a7419d7222732abe38b36f9c51022877bc1156b5d821ae814a91847024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bc761608f401e5fa041a9a995ad79ec9ff907ae86de71e6c652e5a5a0488b0d
MD5 35efa8d23eff7d4a7b51033570cfe008
BLAKE2b-256 cb2e9432b26f02469b12134893ac5077fe0efaf60675f5f7343dae0922bfb298

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bcd942d00c6e0abb9009cb3104b5ddc022ac10049c6e60f62e09705f9c8b16d
MD5 70375966b5e67f40aa2885d3c96872e6
BLAKE2b-256 c3a06f1e0463cc8e040b2bc056a02f6d967a34dbd301062665288b7fdd8e3b36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62b118e13d1fa086c2147412dbeff44683de343f2986fd6010443bba8253bf2d
MD5 700fa005f69d93062610578e08cd9d00
BLAKE2b-256 df281b9da6f08d294c8aef4f5ccf30a1c265566182bcef47d2e435eb886bba55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8aefdc67a8703e860377a45130b99d22fbc5073f13ccc5eecb853943b27e21e0
MD5 c731642534e50fd48f1ca861cd8139e2
BLAKE2b-256 782d8ebc19c8150874cc5ebed588593dcbb13a7789113933f2ee50532e1aefd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 83dc76aed0b5c7662caf12c75d9e8a3f08a437f40729b302d6167756a35a302c
MD5 13a5e2d6943c5069441cd867d6277125
BLAKE2b-256 9185e58376b26de659ca1286ad56864aa5fdfd308683c36aac7743d673a6863c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 aa156f8ca1ae8c1ed56ae90077422b7f7b47c4202b435c856bdbb629f89b8065
MD5 0373c21462c080686f037b09d4494d07
BLAKE2b-256 7ae7bee0feb8fb8ca8b4f7823ad4de583b9290a3a757dad33ce51c53ad49793e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca10759aa8e38e67bad21919053c8651eff2009558d93edc657ab9042b48b0b7
MD5 e3c738cd5da44adb4dc7e8f0b12845f3
BLAKE2b-256 05cc2afc291b1b37521f2c8b3e9ea3052df27e27518bf9dd9d782e1152642f6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ee9c1ca3ba463f95ce63cc4e4b59d67182d806db6c13913bbd06fba1021d71ab
MD5 b5a7c57b77a643fb57fdb9f0d4118165
BLAKE2b-256 66513b4782eff31f0c066325e82f9be6562be425fff6e329693058747a2ea739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2bd13d113a7b03dd3057ab0ea990bc5faff0f8c9811889143832ed73c9faccc0
MD5 34b5761ec1a24060943955ff55a21994
BLAKE2b-256 0c1f58a7559ea994738b06e907794e0961a877eb36f292c5ac1721a87bdea7e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1dec4eddb3f4f8f3e543c1a9b1d967ad8ad3b707f588d71a96a0fd6bcf08af64
MD5 1483f11d2361f11200c2ed3f5fc7dc90
BLAKE2b-256 ab674347afb369da13cf9f30e76fa314ec6614a060fdc9477ef5177e133d0016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 83aa18798ded5429ed97b71cb0dc295c74b10993fbf4e215e140b88fc09997cd
MD5 6441899aff3d8f2ca8f1db5532cca1ec
BLAKE2b-256 bcc0d611f19820638901b26f54aa38acfbcac4b80ae3d5d298e65d34e2bd3154

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d3a076552c93e236d9f8c88d64c219f9fd0f4497eec4e1be41cc0aec9cb306a3
MD5 20ec321c43968fd8e0485ef4ba142a4f
BLAKE2b-256 8f0708e03148f8755613c3fba06974db141d2f97ba8fbe5c3d99163ca5cf3ff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b8cd12f90ae3e519e59c486d2836e72cc11da1ebfcde1078311e811026c6869c
MD5 a9ea3ea73cb54885f59b175b56394fb6
BLAKE2b-256 cd78be9121b20ebfa8f29128a7553cf39194a45bf912c78d1cb7597fc4c439ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d9e3142868e46e75e70e7f8b3160baeff7a5910cfa6e2b25fecd86666991e012
MD5 ae66f4a4d94b9b984e05073934a2eebf
BLAKE2b-256 4cc1da70f5c794892a3eac84a32ebc736f3e04f9214ddb7dce121bef672a8041

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e41b8ec662b87c50d474bbf27089ca8884772d4b909df288907e0524ccfc446a
MD5 f50f34e7c2b3a00a174b443ae169f08a
BLAKE2b-256 963cd847796f25aede31a1f1dc94b403700673e2e2351f9e5170f5a925062208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 558e2b4ddb3bce5c4aae89d89c20a7d3ad5c3d9fb211460a604cc769316d25f0
MD5 1e0d0bcf1f838e160b2957a5468a589a
BLAKE2b-256 9c16cf4efdb05a17c19b60e6456cb77275df6b5c4507d93aa686ea890c61366d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 443ac193101c89635b4ac7495fdd713182ff4f0e698fd219a620077736962b01
MD5 430e1fc006c6516503ee678d84fb289c
BLAKE2b-256 82d2c12611db3f6bd941476c289a6dac6eaa1ddfecb512b534346edfb3da938b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cfa08656096e8b54b309da8524c17e8a61b6f69b7fc0c58e7f574b15b1f32f42
MD5 cf23ec02a4fe4dedd653f546c9663e42
BLAKE2b-256 2251677b5a744e8ac2b5b37854ef9353f3cebfc9ccdf8c62a3fe7133ff2ff0eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60219a1d888a3e50fafd17707b4d985436ce3389ef436e3c2976957a215091ba
MD5 23495559285ced4f244bfbd0a76a0dfb
BLAKE2b-256 e6cbead1464bb2ca7fde13a9af550d00f66128a658159b8c0a55bd61b7e4e916

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bb9fd1f9e8eacb171c47f719b290b68713a10e34be7f66b68609efb0a2eb4a7e
MD5 6c8171ee9cc1ea548a5e21fd346a3a18
BLAKE2b-256 fd71c93bfe669adaafd08353fc1988785f182cd30fe909011bec7048e7ec8a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95402e06e9fa6e0f67fdf2c6c7fdc08ee8bdc59c90e3ab94b6462c90154a8afc
MD5 9870d5c3922ff1d580b5d589e041aae3
BLAKE2b-256 6f18b420a6c6e7d8f1ddcfc6295b13de7ffc0cdb8290e08bf2e19915cf5affd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ef2a8902fd1f23476810859b4f92c3f1c4642bbdc689763239540c0d6993b48
MD5 40e7a691e44e6cda6d6d0827d288b080
BLAKE2b-256 99f4dab0522256dcc14fcc7982ff454489245629f8e91ea03de6a3ea96d654f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 1e2848e4322e4e8d711cf7a068ee83ca3efa1d0ef093417404a685e99a7de528
MD5 ed71312eafb83a40afe147897e309bff
BLAKE2b-256 29098ec7f3e540f30a8a6191404b3ba4db517b9b90ed411285b1a0dfd6798735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dc23c6883d2a967a4c4a6e350339df8ddd5582375efba40c619484625f094e2
MD5 fd1c8bbbc4efd470e7bbd1cf995c9816
BLAKE2b-256 2d0a602a9014c3734a1a186f68220250d7c5fe3e80d52cdd9779614900b0a4cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 279bfda72354bc092d8c36e882bb67f206d8f3f8f0596f31c11acb96969cf221
MD5 00952554cc2c9777164f5a9a00f67261
BLAKE2b-256 2a688b1e10ae2a163590cbee1a09177a47111c003c045e508eca89ce3dda93df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5192a808ac0793be0705f83a39fb0d24b7829eea2fd74eca6bc09a9f57fba090
MD5 b0a0e44eaa635ce357bcf38b09336d7a
BLAKE2b-256 531f4dcc24bc80dafc106d0826ca1883d2f2ef8a9f88a25a5150274e081011b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 8be7f372fc35ee8135d9863956dfaa7781738a6504fc401ab8e0eb01c1b5f0f4
MD5 f9a403e4adb620bc8d92007dde91e12a
BLAKE2b-256 1858491d855882467abccd9f2f70e8bec66826dc84b9aab9d5cc131e1387d3fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 3f45810f0767f757a4b3a45523258709d31abd2e08559bdde8d9f993225ee9ac
MD5 d433ff302f1c5577a9d33e6deaf07032
BLAKE2b-256 8891e29308eb5552630f2021ded4354e109d38996c82923571584f5a08dc910b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 997f4e7e5eaabf567b1a522fb21a9f5bfa38476661bd4d8ed8a856f209893771
MD5 806c7628e00d775267242838ff17dd20
BLAKE2b-256 42447179f3a9ff2aec7e2fc21fe3e29ae2d9bcf31f17e67dcb150ecd07eef737

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 713ce661dba4b7125552f9e0572e55529e875c57ab6ae311e637afbddfce56dd
MD5 98ed8b20e76b378591d7358db8ab918d
BLAKE2b-256 b29e13a171e0e351d0c1df86397bf77ae35e78eae38fa786ae1cd2782905275a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b970e6607eb0a06572d1e6da7e7a6ceae3573da85940c585c5b289c14e615457
MD5 43c46a330cd3e7a017637b6ff6a38d18
BLAKE2b-256 6cda894aabf629946ca7be403e9d196b8246f2260ab46d128b61138b1bf056a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a2ffc8a4d46a25b1c69122896a8184f069878393beff282694470b3fa091065e
MD5 73cf46e77a6101954b94d952718263fb
BLAKE2b-256 965e097e46bd36459c682d7bbc399c2f2111124ad50246e044b0ae0bd9b20923

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3b893cc81213766f627e850c4b7c243f5680a5c8010cd7c6c7a42ab685afb5f1
MD5 a0a978a812efd8a7e81e6c2d05b00241
BLAKE2b-256 b786c886d9c6e00664694afac33a8e3d6ff65167b760198611af260b2e7f4d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9963df1ffb93727ab76e1b289d720b6b482b55154b455f6f73c148513d33fb14
MD5 f7fa279fb870bb5c554a4eb36be1eac2
BLAKE2b-256 0aa8bbd6fb8f5b7d31e57dbfd5b941c589278c806fdcaa07a33699091b4bf9e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1a894789085f961313e2b0ec03da2ddcc593849aa3b258541482e27fd7f5691
MD5 3b3b8294566a6f561a1b09df8e770a4e
BLAKE2b-256 863a37a4ddc5ede9226b4e7c53e613c1bfdb0112236f573e05e04fec2f814b8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acc091941b0a372d62bea52a6f20d87de0be0b9d6033ddb47df40f8b51b4dbfc
MD5 926a68f972d9e7f8c4a39e5bce0a628d
BLAKE2b-256 9c8386e7b9df2e88b818cc6fedaa3a48458cb7adc82979af07a4343c8fbf23fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 07c6bafb5ed6afe09287bc4c571c57b69ad7407181d146d8b41bc9d9fd2e9c36
MD5 3c9691e1fe9c067b67631fd73cabd99c
BLAKE2b-256 a1d746cdb6b673cd055a9fddcc6dc05bd9c31de6da6f17f806552a6d84acd68f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd88cbc85f46b2f67bd82925b63b68566696dcac30bb6924253249ee832b1b4a
MD5 8e9d4cb6c04f6e5c5256ef3547763328
BLAKE2b-256 dc6b92f416238aa000bb80ba18d74600755eacd7bdf350d205f5008d762dd0f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b7728e0170047a9d52f6b01a948ec3cfa11e918532627725867bb6120201f0a1
MD5 642cd9854ed7fba1483b4b0af8ac9b3d
BLAKE2b-256 b357fd6111acb4930d9a87665bc1e48e7460974e84fb1efdfcf76a430238f06d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e0439a4eecde369e3865b94a3d726225236aa3d9c6430c0c20d6f7496ae24e69
MD5 73e92247fa7e9969df161a0189d259a8
BLAKE2b-256 82b9c15ed706a9781f147c46fa437f1a8694039ddd8dd6b8445bcc2a989d5c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6d8b99fb67f5b8aa5c48ed7e8f56dc4049a2935af9b396b29d9befeca8aa8d7c
MD5 61b7b652ecf2d03d91fab2b08dc1d77e
BLAKE2b-256 5b42497d8d29c57eb66f6e17a7ddd475821227ab8fd33a62a9499691b5a1f9f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a29ac1003b63b5497d419ab548b848db14147ba2183ac34c4746b2c1a94319ed
MD5 7b4ad659da35bf2a14d00b0febbe5f5a
BLAKE2b-256 75e571417f1d90c8d05fe7d69f71d2ac45cd5ce711b8840911924dc8a99f2e36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4fb4e64a2b8eaf208c020463c4c8454b60f6f3c542b3d84e2f89a12f504a0e1d
MD5 ee20b7217a4a882a44584cc486c98fc3
BLAKE2b-256 c3d66f2f4bc5d5e1fe7a23bbe5e0723468ddcb6f1d207e9bbd8d6bafbc38d535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 8ea796686d404f4d456b544520fef4a6a447824c9072bd3763d487dd426c4d70
MD5 a746871115a4aa71ed7360d783de4e20
BLAKE2b-256 72eaad02c182c13440e016223116db6988eca1e128c3fe71ae999774275878c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ee87287b8ee7d8bdbbb781e0e44518f33604fb8e249cb5da1f65fbef6f4f4348
MD5 08335e9222a9fd146ad8774cac0509db
BLAKE2b-256 2101f87c3ecb97f5850fb8eb1998f9bebbef827b576678d5a9f1a9d48f526648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1e1d230d0c4e1beaaa5416febcc7f0c6a79085a39057db7c322b0be0aea85c4
MD5 9ea9a3613d10d3ae00ced2dfd76c215f
BLAKE2b-256 3e8b4323a70839abf3f4dd89f0f3bdaba6f12c82cb2686dcb852b86f544c3234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30524580c677209699e8f0983c354f62f7b6227bc6d892d8be16f360481ade83
MD5 5018a5f7372661182b8a583579130160
BLAKE2b-256 f829db7d43ba4f48443929bb3f886f2bb44a1bbd52673690c672de4eac3ff050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ba2db6f94ab5813e091da6731900fd2496e450c81e3e7da1a5b5cda46b01911d
MD5 fa79f470ff8553d2b2cda4169af87783
BLAKE2b-256 2ebf988748d0c6a639c63ab06f5c583491dd229a144db6b01c56a7f1bb4ba796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 26eeb04df637d388a6b0e14ba5fe61d1f39b8bed96bd88a7005043639dce1707
MD5 cb4377c5117e533ab3f17386070bbe21
BLAKE2b-256 0fdda6cf32e3fcb037fd0955ec79360a03c027c0371f30b246ea2a762348e48a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6e8dee809bd7fc38797a7c4a0a3bab014bdada16faa007094218d8a2f846a86
MD5 4f5c46b70810d57d7f5e01d666baa569
BLAKE2b-256 b57de92642ffffd291afbf82a88ca5cb424ee716bf94f7d606239de9d4430a74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 328480626cab89d997277ac0d9cab0cecc20e8639848c4ab26cc9cb204e76879
MD5 84bd9c92b68e971cfb81ddf7bdca3afe
BLAKE2b-256 21f023d1b5f974f431feacb978787b3814954c132a2fa1417b33af2e6586b5a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d8995bc722c3b77a230e48bc8cec3401939491e36f2c672a78b44b2a493bccc5
MD5 a2575991d1d48d1128f2786527fa8102
BLAKE2b-256 072c136fc3757ec75a40266505fdb83f6d64a1272a8dcff1551c2cada7eaf930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91f4b3e1df22294a555a2d9a0ac45dfbc3c88f5d0236994268c04bb72606f293
MD5 8fe0bf685e82b10a62c81c2fa178d078
BLAKE2b-256 ae73dbc52236a2e02a012984804c4f6c75310dbe17bdc72b74854ccac037da5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 654692cc5d46f78802f37187ba2142766d311a71218fae0d8c7f6f3df352012b
MD5 cb11a918825de34378a29f2282c6986c
BLAKE2b-256 01f4ac46d63aceac1a84ca4dd1788dea3d825f16ea7057013ecae110cbcbf77b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 772b5556823ea38699fcd77d1edab966c0ee308c4ccc67090a699ad204360c43
MD5 ab2a2c665fda3bdf3842a87d10b620df
BLAKE2b-256 8258c92f7bad6800c7cf46b9eb0ee0c898728c0f7ace983842b04e058fd16e6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 94c5171e6c9efa2906cddc5dd2c9c4e00ae24ffaf8d9548fafffb0bc53bcd210
MD5 9024b4d13d060cb3c1b8da6dd223ca7f
BLAKE2b-256 2879832a00b1d357a722ff23dafab0e49c7dc915ab6c0a79fc306593894c847c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c2727d85caa20c22d568ca73c6dd4ba81fc9e708b8ed996870963308ce563774
MD5 551ebe42853533cf5e9c8ae00adb24a7
BLAKE2b-256 5db2aae74841e05f487fe28e751a4966d21ca818783e9eafc9f9391e4f3d3242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a0ab5e16da756583f66386fcd03d6aa37ea6db34641d6b346d10d7f857f9d2e7
MD5 e41eeea02df27ebb93693ba10d67174d
BLAKE2b-256 ce69e0c0e777e51abc47fa4bd40593adfdf5058ab2cfe337f65c4c2cd8d075df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c947484fe6ebd3ca903ff0cb1a833bc96809c09ee5abc64dfa8ae00c14eaa32a
MD5 dcf67a4fac21a086ecf5d034a319722b
BLAKE2b-256 18fa80a896cf92a2556b4c9e4da2101db8fb091a9ccab9ebf43c82f85f70fc17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e34aa1584c963d78a1590aaa127a051d184dce682407e0a44aa4ac512282402f
MD5 5e6638ac215810a678d9ce4922755118
BLAKE2b-256 259a38ab45e35de783e6301c13824bf25fe054924d7a502816ed1b4055f132f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6d020ee6b27fc8554c823fddf9785589925f1ab57304f46b8b39748814ff30e7
MD5 a5dc6347a8f3165131ab80a8f19f3420
BLAKE2b-256 12da5a8596bba6ae3574b7b2019dc90765b1c3a733f39580ce14b4c84963193b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2169682f645bc5c6432442e41b59b106ead5f144d3516d0d1e7c00970e8fb2d
MD5 e119ba99b38acd3a9353e692c85ed8c8
BLAKE2b-256 0e931ccb06707d5c7f52053e69121324815f5a104e13a0d4ac9fee0e8256e637

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 670cb0930b52949e218fbc5d028cb4c97ef6b80c788003109029d5bfc171622e
MD5 1def25d55882f956d001d2fe8188461d
BLAKE2b-256 8c51c94ec1eb8ce32607eb4529a852478f3e74d26e9cbd061f768d707786ab1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b729d371eb3ce8231feeb537e464c5c53721ca4f9bba70a83d6f062f8c5bc537
MD5 3fda3db99e8b5f59ab60b0e8e272f232
BLAKE2b-256 65a3716d5ca59d9e4bf80edd9c88af3ac617872a97b696d8a8e4669579e1ab88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4b831e66e862c2a15f34973f8cfc32a8bb0fa26096a74983f11578b796ff849c
MD5 28ac54b7481746a0a1deeb9105637c44
BLAKE2b-256 05f5e55b1298a625b88a5d15f98b19f1e50578a38b3b14573a196da2d55b20fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1ae180bf5946776acce2823c7a8849ef9829be66a3f79b30022a07b6c1282ea
MD5 8b82ba3837947b95c9a2b52781af899d
BLAKE2b-256 6118df5b09b8d8ddc110ea845dc389d49e091f4f0e34b6b6c392247ca3fc9a39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 88a6db26d32bc2625fa0d30421974af345c7c4e420bb8253e5db49ecf2cdea4b
MD5 a26d5f4157a7c1c52c924bbe474ceef6
BLAKE2b-256 9e7abad97ac205612d73d252913c0ad2e4fcba130a4b5be97521716ac1031018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 81cba8260927b51e10f57a34f7f9d24a7659cb1c96556faafc1857e8fda8a5f0
MD5 56157dd91be0280ab00b91bc946be7fe
BLAKE2b-256 f2328d0cd08d30ee8ba5aca890f3815c39aa2f97e0ad77f630e90a5ececece63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 3c8bcf485453de26a2db2b2e8e0889cd4024f6ae60301b0fa5d976803dc53a12
MD5 89bf432bfc01c26e284bd02150d180bc
BLAKE2b-256 f4dda6e4037c16bc40292b12a6ee0532ee968b172c7d78afd87d46ebd9d42c17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0b8fa8897069165f39e174cb02376d4d933d4b4edb17286d76b9eb6e806635ed
MD5 2f5c98751ca413465535ab005698a18b
BLAKE2b-256 1e0ae8757b5b6c1ac95457709f874ebfaef17f92f4c79c48f740771fd051cf33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b3783737e16672c2eb22256415dea8b795c787fe140168eb5fc09add5b2d71ed
MD5 e0e6800b14eb21fc2ee190b4c2a005e9
BLAKE2b-256 3778cc7f15a207b1a6cebce5c50ca7f21972f696ef8ff9427fe761f7ae6d8b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f8b4815702a8bde6abcc3dc73fb870fd88d3ed291dcfcabe38db2dfc9b2a16a3
MD5 ccf01389d6638cebab671ff3d02c8b68
BLAKE2b-256 c4e15fac47b27f0a1dfa98768aa3e364c06960900f9f508cc0e90360f6778fdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5421d9635cf1c023dda601ca155df175706bb843490597462709c9c8a9656553
MD5 19914b104df503f2bc449dc8e75d7724
BLAKE2b-256 ac0033799f5d3ca7852f411dcabd6a1bbc80927ea927961e5a78009d843868bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 249876e03e4676f8b3683c758f570274ee99aabc1c6fdfafa2ff87f0b592c698
MD5 be6cfd802f79525d39e747fc7477542d
BLAKE2b-256 4688b14d213c39dd1aa2cb38bf7aac8249cb832dc55b3eb26a44919c17799fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8c288e98e14b2453c04cbfcc6cf32b7158734657f25ad56768a2aa5a1bf04c3
MD5 4915916e20a5635d3cc0874b61ba7bb8
BLAKE2b-256 08fdd9a15c4607ac8ac683f77067fdb41f67f3ebfa396afb9285afc1c0f83607

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3a7bab1d01a5d953d29970b59fd6b17f7b0f05e9a17cedfba11c8fe50975075d
MD5 50a6cfbf9e89da6a89aa84dc380e16cc
BLAKE2b-256 fd98938151d059304c4f4eae4de2a30db6a1bc012fb722ed3de6c7fd627f7722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 62a20b36fa27c097d3c848d98d928a642d48c218581cf745d2a4378e19aaf9a9
MD5 9a81cb15bae7e82485b314e175b35a5f
BLAKE2b-256 62bfe27f885e8e7cbb67a6f59c1ab313d2834cb00148f427320f6d0529e8cfaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e8e4c3a83576e66457a1dc7e9beae24f09fda5ee8286fe317adda7172d30d3c
MD5 a15d489ab538165c5ec1c62c7df85959
BLAKE2b-256 19b7339a15047c8959e4bea10a72fcedee4acd2817ee342dc3c7145b8da2c36b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d563c50eb0bf79e8ca9d7e47615d98566fd6162cbe2a08a358fe3465aaf6610e
MD5 e6eb6ec38a090bfc1e8c074fab1ddaba
BLAKE2b-256 dbb498c9cc62e1c4df300d2d030c71a682ed1fa3b3cb486258907a006986f131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ae0b370c1573406ef72eead6eef6b5b2bae5f3f4f2466da87291ad5be352e0e
MD5 140cb8ed8249797c8c24f5436ca478db
BLAKE2b-256 7ecb8c64fbe1cc974a28000c755c4cf9871e94daeb55a238967faf126af78cd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b5d0b3d761d2b4a2a39f935625afa6851b60f1fcc7b02c5b8e97635088eeb5e5
MD5 9a3d68117858e6607d460de892e98086
BLAKE2b-256 c4c655960c91dfd953fecde225712d99ab301197e8776e7485ce2a35930244a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 79cb60eec205c8e643ef663167ab415f2487866b5a6b5930d06e30f0203300ff
MD5 a02fcdd6e2d264b71684ae50775b237d
BLAKE2b-256 2695a61429bdc2c6261316570e979922fcf0c5b9eb7f6d2ed86e6d27f97323b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d9c7a328248cef24ab0a7ee91d11f1ab519b7bf84e6fef4b7b29e1fe3199f01
MD5 1c90d2d7cd19bff7a04da218b09de8f3
BLAKE2b-256 b6f844ee324ba748221c2c81c255775bad499a10924e32a2285bf2b5861309cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a592d1721fc7b2de6849cf32d28b0edd534c68f49c9f4249ef7261f890927c59
MD5 6ea1658c58af58b6911a8d8476df3cdb
BLAKE2b-256 12433cb1f80652e8f05ac6ed38dd117f5733aedc37ac15345504eca2edb16db7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ed4fcd235c57e416bab2c7eae4ff42c30e4ff3a65c8f7ea17b6469166fb080ab
MD5 9a3727539ce5f1ca4f6f21dcaf340746
BLAKE2b-256 4a5320f278b44b6952dc4b7a8610326361386bd1ddd1019cfd3c0cdf5de5258c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bcd14334584299b2b20a45f8c78e9868ab4d0786575e1c54667f833c7732ffa
MD5 78f6400a2e9094b46191a69feef91378
BLAKE2b-256 ec509979cefbe80520c82ab8e5f10f2983b0fc1d9de6625abfd86160f4a1f3f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4c6db059f016be4a94a928d1fbeb589ba10e3e25bf439caa4b4bed5256db65e
MD5 22df204c25da4a40ca32a5a322ec1bd7
BLAKE2b-256 45bd6d459cdcb26bc5514798168271e43b07817b0bf758eeb2b27112eb8f364c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23abc75beed1b9572163f2411739954877f393d6efa2e947ddb9c97d69a0c674
MD5 c31b79473b4ca2f551abf3bf70abf702
BLAKE2b-256 bc5974effef37229972963bb9cb9fe0227b808ef3f6823c4b8996177014844aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f0654b4f29bc5c6a3dd84ed2c121cacf94c409cf9e9aaf5c24e2cf14c7adf6ea
MD5 7c39bd89a63c715fb4adcf8d0e9db915
BLAKE2b-256 8eaf614874bb36e8f1814bd5d0858e807e1133ed5f8b00ce8fe9b720223fc701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1bbe7f5e1e99bf922c6cfe43630c6c47ee6faae9bee18e1a98c0df97f2a2213
MD5 3510854e6ad350da87a4d54383b6acf3
BLAKE2b-256 2963de2721d35eeb22a7df5c6d2e8ef43da1302b59215223a215017b8699a009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6e0ec540dacee43cfcf6166e37350227c5a48aacd240f53515a63009edeaad25
MD5 397676d390afff7d949991c0e07adfb5
BLAKE2b-256 67de278c99c13eafc916520b18c158eebd22eb425aae0bd17d554a09e6ee035e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f8a2360781d20a9df717bc1510663c4dd77b74b884674448b06f5ea2b709281
MD5 6e9e6f98940d91e5a94b2df8ec942b93
BLAKE2b-256 859d2138e2940a5af00634662967c39c1ba83538ddd9b650fbd81ad8ec98a0c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.40.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 61be136bf2ac7eebaebc63d6741aedf541ae103c4632ec2d3a430ca625bc5cf5
MD5 0ce94886d75d7a665d0fbcebae0107b6
BLAKE2b-256 cd594a629e1796afa5f89283f4540c7dce4383b4b3007a20ff6ce1fdf0052c66

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