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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_core-2.39.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.39.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.39.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.39.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.39.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.39.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.39.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.39.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.39.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.39.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.39.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.39.0-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.39.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.39.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.39.0-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.39.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.39.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.39.0-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.39.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.39.0.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-2.39.0.tar.gz
Algorithm Hash digest
SHA256 b890a3990bd55ba5dab17fb6ae80eb25bb33e2f5b462da386562e7a168dd02de
MD5 77596fd11a90c539c326b356a55b14bd
BLAKE2b-256 fe297ce2ccd75e3da2dae8b2c21ed15f596ddd6430fc603951b4c6292b47dec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3fe332943e8b45b5f179f1c4c5d8adca1835900d8604d7d6002739b5168e9c11
MD5 cd11834872b3807ceb0b85223ad98b0b
BLAKE2b-256 ec16c24abc763376eb8cd80632f82af5d1cec2a1ef5fc08c037637fda431e3e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c4118843e7671ae4b3eee9e5ab842fac1c8129ef70595033441260044f528f55
MD5 2263ec1c59a7750a2a56b0d72d0036d9
BLAKE2b-256 fc364b6e040b1a6c7fdff01c10345828e71a715b953c837397367defd6fae673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1b6a39374f5a8c89265b1f548fed0887717013e67ab9002261df5bf581935bb1
MD5 57fc3b277a0f7692c4f6bd06c0b4e3f6
BLAKE2b-256 eb8ae4db672d4563bc6564c4affeecab0d84a58eadaf42f1ea9f20aa2e20de40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 880c2b4d06f5dd99d132294cc59b490aacf0ba092161625817539a11de1c029e
MD5 69a0ba74d026c6d48c7a9627b609a869
BLAKE2b-256 bdb7c3f68d1e8492efdb372562310819e838e988b9a7b46a35dacc65f26b5a5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c1d9379bc1338996195af9b2fbae6f22b701d4574ef6a455a561e7a12010226
MD5 6f43bed6434fb1020636bba816945d48
BLAKE2b-256 ad3c5c33bf9a6af70e92e16a774680656ac724e8b5f59fdd2e544cb25178e839

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a94faca4f4a2297cb66563ddcb9a5aff0bfe4a9b4963f67975132e6ca5fa66c
MD5 7a7adddbb5f3da9be1bd5e422c0090a1
BLAKE2b-256 7ddead92f06e31c516521a15e6bcdf3af88d97b850165a4b2e8c886815061cc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a24cef2923aca7711e2bc5b65d4d1c560835a3dc7e6f537bc87d499cbd3bd99
MD5 81d1f4a4f5615474e1f22410094fe8c5
BLAKE2b-256 9c71c1168486d1887f3646fba5c29a918cbd2d2f55cf3e9ab6501126c86b1767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69c63341573fcb2cdb39e59a8456c459fdbaa974759c2d5b459517da302d25ae
MD5 d7e05fe903bb9394ba76a9ab5a8bf734
BLAKE2b-256 a7b5cad5191a794a3e8a7c88434d1363567a4b591dbf3bbc9a24bd98dd589b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6e1dc96dff3337e8f04535b8d14faeb65dde258b12f2c63298fe0d2d6d3730a6
MD5 b6792e798015d78d4df59a75b2a5c24a
BLAKE2b-256 a56fb24e4fcd7d91a73a7c980e32d9c760bd630922f898b08f79314272f7208a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d7ec48dfb0b802ec739de24da41958ea2a68fa6688ab2238723600c92a488b8c
MD5 b0dadf47ccf35bc4cd461021fdab14ac
BLAKE2b-256 ce51c06583f73ca5faf6c5add2fa3a49f127152f976525d54fe3c911c7a876ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c91477ae4a1e5d689540e79eee6100a61729a20c2f69e5dfb7ae80823ac071c6
MD5 a0a662b909825e05875ee2cf9a213520
BLAKE2b-256 839eed0931ac5c938d1cba220593765e828ec9943a042de6fd37eab5b53bfbe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0a5170c596ed9efb93897ff36d2e30eb7bf6bb01927259242404e19c50ffd4ce
MD5 7d2788b259cef4fce0608017270efe63
BLAKE2b-256 54848c075683f8ae9889f03d69d11a2129ab5b957e18b772121c0be7f5677ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d762b96ee4aa0dec9e0525124cdebc8c958ceac4f50beada6352cee3c5bf18c
MD5 e71255294100e38b30ccee5d9f01343e
BLAKE2b-256 2db600c3c25927511ca503a80365c8ae16d95572573cb02863b691881ccc7b79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 91ec0a18e7d34a823695a32a42d3f735114f593cab8f242423395f8af351ef9f
MD5 4c77eb139d61587cacae4a576294d29d
BLAKE2b-256 b7fa900f483d63534bd9604b249a81b1a90fa31e3a048815d414eb3e8de855c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c28909b0c1b1be934dae87cbb4c1a492dff47932df647878226004f34d06b65
MD5 e9b4e182ced8bc4c3faba0e8a8a8c75a
BLAKE2b-256 66a7c78b35d04e6f795a6a34d8c11e089c98eac29d36c4bd99de680eb15ab3a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d624e5ddd172fcc84675e9909620f4ba8f9b4b8fa01b1825ad3e7e0819f045b5
MD5 1d0c0748fc78a71d03975da335a2af23
BLAKE2b-256 8a3a1e2bfeaddfc4a2fe5a027e1f7788ef655cf4a8bfeb22ece530573cf6e259

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dc618f5fc242564ccf419980b6f966e2fa1be0f686b2bfff6a18e10a3ba147e
MD5 d00dbcab4f0842bd30da49561d044cbc
BLAKE2b-256 25f14a4b717eae4441c4f9bd446133ca5045e1d71327b894064114986060d5ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 76343b65a6dcb05614757655f4469813884244ef5f1d2fc8e72a3a1a165dfdb7
MD5 50b2585952fede53e6d5456fb25bf5c6
BLAKE2b-256 840d918acb08cb9b7fcd5105fbb47943383e3865f48d0bc484e57e9f5dd5a227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d9c12442046027e33fb03f3fd529ad76b1d7ba56d5a9532cad0ef81d2305cb2
MD5 49d8e3ef3c0751e5b469a32b6703a859
BLAKE2b-256 ebb3dc143f73cffcb415c5788c476305668cecd7dad82abc6b02367b25965c4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 390916d3f224e744e9b2873cbd10ad6f93c4327e1115166ad644d0997962799a
MD5 c27b07c9b1aa8b7719eb144904d55228
BLAKE2b-256 ca92e1acf446f5cfa93aec004650384a567e07a7ec663abbcb4d3bfd8c478c31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 cd2db07884d9c813db08202c1670f7ea2f21f3961fdc4949c4df04ceb2a7efc0
MD5 ac9b14316c7ed2d2971a685339151a3a
BLAKE2b-256 dcc94e6f8e58f8e51172f2ee20ea0de05d0b03d75ae41dfd30e228e1de4970f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 14096d6a37cfd4b22f592c75923ddf88d25517cd01b936a94cb5d7616ea575b1
MD5 b4bbc10582fe4fef78e1f2665dfe7141
BLAKE2b-256 a45874f0a1047d2da9f9feccdaca451a6a176a62464c9b8242fac985299fc865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 cc2d31b5f713b9073fbc33f4fb58c0044c2778c8d740694df5a3f23c5a2800dc
MD5 79f2b73d0da5f049947f4c9ec6f90d45
BLAKE2b-256 5c289b76c6146707e17b3dd52c3c662e2868d9ae46d50af6380c214f4c5d4ac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 47271648833cc9faee9e69aeb8ff6d80b0c9762d263512f108c32b1a69fa6642
MD5 be02928966453bceca2d5dcce6890bdb
BLAKE2b-256 f820fb5928789af0fd515312a88f35b0c6e5d1fdb241adbd60721d8bbc3d6983

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c037039904f55bd772105007b55fae2ceeeb65399f58d706a6b616da347ec055
MD5 7de90f03b93128763108f9d57f574388
BLAKE2b-256 7b9445619f215837cef7c9608ceeae38f4147b0efe3a1cf03074b32015bcd700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cc865a18e3cee0680cfd7ec5e15ffb3c20f0ba864979af6e1b5f2f72fe903875
MD5 b5ef6cf053d4b44d20cd25b027e12b4c
BLAKE2b-256 c6221aa7c2441c199e9f9c0d67f00c23b0d8a9326533e3858d35000465920ae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2873fa6d91348a20d2d4b20d73c954edd8e2f83a095e90ec312a2cc13d773d59
MD5 624aa2dc37634f4a8f59f9eb3f64eb47
BLAKE2b-256 d116ee777a90b549a8c5f15e81300967060f2014085cd632e099770803d260a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4df6821cc2894806328cb0db17caf1958b45bb66352c50399a31125f54d52de3
MD5 6ccba01adb3a0732232ba783099aa99a
BLAKE2b-256 43ef5c889cb1755553c32ca7b35252ace7c1c024596cd24aa1704e16c4d99243

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 076775d0e8125d7c4f596420264db95ff7e679a495af71e0d535328827336a8f
MD5 b9f8ebaae23c3be38d1a96edc3284243
BLAKE2b-256 a2853d7f730dd576b2c11b3dd9bf60474f92ebefa4dc6a68c4e10c79cab19344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a01ae02038f93913f5c94306bb344acafbe2d2a578f3c9e2400ce059fda1119d
MD5 d0ab6cffc99e1263803362988f47e706
BLAKE2b-256 aafcc08efaf0eec58051631edeadfb01223b36a01426b5355aaf092f7ebe5d3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc895d9c12e3358f5b3d82d45dbf9c6c99a66fb75c89da4d6a67cbc3c0cf851a
MD5 2b913e4f2b3fc94abbbb26af360f1063
BLAKE2b-256 0b64ce8a16110072512913f588fe9b41478e951c0eb3528ad13c403b4d2588fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c935f507baec2da7d2d4083643413fcbe258cd19e1a462ef0e19a74211b77608
MD5 7ce1c9193192304d07f5dcb114814c81
BLAKE2b-256 cadc97c2606ef88ade4a75501f5f2069e8f0df1cffada7f60461b2df243bab85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23db92473d4d762dd07dd85ef03f6c26639766b0983c9f4366a8c723eff793cc
MD5 9a4095703ea60913aeeef9619dff206d
BLAKE2b-256 c40b23809551612b6972f2b21253829faea5d66836ab11db7ba3942ab02fb28a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 48cb6400861836775f2f52464189011829d83e70646e286f6dd18c4d9ce4c5bd
MD5 574fa3a7829db920753aa8f0db3bcf13
BLAKE2b-256 1b262b62de704dd14a462313e4ff2aab12f941398e21b3fc3b6dd6567be0908f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 9e71182cb803f23cacd5482b63a18680f17dc37fd5804951934e4b7e784bae54
MD5 dd03c147e373356c8ab21d927c6f5da9
BLAKE2b-256 7ff17650af397bdad102acf5077c2da4d74200d4fdea3c09b6d490389849d79e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d5103277f46989026722dedf4f24cd2423ac971aeec88a9a4acf00272331eb7
MD5 127dee54672dc2122c4c15e67ad57aa0
BLAKE2b-256 5c3b1777c0a1f649346c0daf3b100d593885b167033ceb96da0fae4f2429b3bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 386169d01f3398854198a1f388c3b703d7a3723c06d3feb315c6960674307e1f
MD5 99cb7b08cf0ba6e6b2f394be9c2e58f0
BLAKE2b-256 f098594717714c1caaa8ffa5060a9884da6fa0b220548dc8aed620f546b6b2ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 513bef3e2ee064d3eab6def9869166fa29c7b37e8723a05ab9edfe3973ff2680
MD5 9591d5cb5ab54729f24ec7cbea6fa363
BLAKE2b-256 b274bf4aa6b81eb8535a1627b99c25242ee4a77971c92f5f739907ed33963935

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 37aee551278fd57cfad7c4854e48a25384ab499708410d6bc8cc7589404db021
MD5 8ccc311fe18542e5b6d23fb3916ce501
BLAKE2b-256 15bbada4171cdfda216d04e2b5d6d3c18d1b7f0e847fab5f89e74b95fad87e55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 df3605cd29d201b6c074692aa8077290610af916747076404b1bdfa0482fc1df
MD5 8753a937fc94467c2b3c53bff87c92a0
BLAKE2b-256 ccce5857122a391639204fc0240b06b267df4384b42f83d47184a8d6933ee16d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a089ab52f388053b95b0dc337b0b61f7ebc0397cee66419019d16bc1c0becf2
MD5 e000eecb48498b2851065be55adc793b
BLAKE2b-256 86e7290b11928aa45d02f586ad5060dcf9ef80e0c5a780a385893d624d8a6e80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a190979d1f02e266532a8d246ef593b97a48b01494ab59d9193eecee3a39fb37
MD5 d3fd6d960a4e9ff7a7989b91d3cb03c2
BLAKE2b-256 36785b1c219f58dbfd2dd1b50167d7913067dc64833dbd616ac202e6314ddeb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f4931baf77757ab83f283afdca594a6860c1bbb1ded424b568b0ceb6149a7da1
MD5 5f703703ea46d5949aa953542ed1c84f
BLAKE2b-256 a82029a77fce47c4bf6cb419edefbc0aa866fc1361e11e6c43f0ee88f2548404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a47f79792819a2f8bc43555292fc61325295c3657e28519edb126e7ed7d281b9
MD5 6ce5618f90c18029ef5cdfbc56505702
BLAKE2b-256 2809361c531a72c4cc0086af3e5fbadcce798c59a1d84e7f313d30065dc81bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 27c32b2c00232307a06efa3e4c4c01a904165cb2c17115a9a7f0cec8b2ac9820
MD5 c64c8dbc6c5cb92a1e5ab534b1044981
BLAKE2b-256 dc7b8122825ee83a23023c1abb789cb757c38b72be01cedf8fdcc20d875b9e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9aac75690724f8f16552f09a5249d1e83108ca6eb57b215ea8867602192f683c
MD5 12794b9f3d24ed400bed9342e0550baf
BLAKE2b-256 62a58e9e11aa357b34a8b25b0d202edeafbdcaa037763e47eed1b4d816aed7c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d63352f917ce5cf3ec8cffed01be73e51f55b9d629a63c538e3f6ff94c04130b
MD5 04f62b4e350326270e3ea8bd6d1c58a2
BLAKE2b-256 4b3afe655542a99005c482cded50f199920bc53bdfb987053a9e46fd4aa545b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fff213e01e63c5984214591ef8ee7a756cb7cd38fde855f5644505bf6f491e7
MD5 0c4a7cf8dd05c8c76aca7ce68cab72d4
BLAKE2b-256 ef8906d3d42d30cf478670ba00a09503f806b762bb6f375e38098036e87d6992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aeecc1682e4ba14ac21a33fe5da165df6d95d28453f42708d0b3418a5298bd4e
MD5 fda47dfac9215ea6578bf0c2036b79ee
BLAKE2b-256 57b5c7fe23c0aaa6cdb5684fe5e4cbd221bc8d78b1d8a3ae1117864980aca2e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 feae4a429f615a3089121ed42945c8841beb04115151d6b237d66f9d53b0b4fb
MD5 4cc4ac090c1eca06c38f46ceeeeaa88a
BLAKE2b-256 1045f4835f3dc713d952b8ec735b8bef4e88c3b0ff1d223690fa3a407240e787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f13cbde756d5f5a1f802c85768454d2aa9f5054bf27fb2004ba79e9140cc1848
MD5 07397ff854ffcfdbfd90a38450949cef
BLAKE2b-256 a7e29940345a4e9742a147788c69c1b0ac0baf53167f7f635fb9c85af6a35b20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3222ab1fa70f1d851a37c2865d9ac4e498f3b464ab365fd4be7fd4c113399907
MD5 eea6ff14a1255672e296395ec23a4d65
BLAKE2b-256 74498c78829b83afab293166b35b6f2d5fc483e31d6db5f3d336cdf20980ed6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b5b943e7b6342ea4890b8576daf5cc3c0cc472a2606b1cb497cb3f79db929235
MD5 ef674b0310c243546ae40b827c787c31
BLAKE2b-256 0c5f8fe19a603f9ed1b35945e54693501c58a43258cd403a92fe81c254063486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8c649c350562f2490986452ff889fdf64dadca459ba52b9c359ca54d2b469e3b
MD5 88ed9428e294443d948ab141adc9d7d5
BLAKE2b-256 e189cb2549d1132029c3d788aa40168fbaaf6c18f0ffbee090fb440a4287708f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 37cbdd4b1fbfd59af044036b5d65d3135bdd0f773507db9720a6d2179d595b8f
MD5 199cc8bee72176dc33f26a982a79cbd7
BLAKE2b-256 94c68f29403ec8b64cc362c14b9b4c1394de518e32572bd2da86d736f9533593

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d57a0d534fff20d2443846348e7ce4f9d7bbadb20bf7f3b6396f43ce9f33fe07
MD5 f079c673ac3002eac9cf6c4762c21c36
BLAKE2b-256 0829091e08b9f4dc1f9210b8f4bcdc8613144770eba8f52ddac298394f52962e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7bfabb6a9aba20fd6a5fb906c8827983c53d87a856964f9d8cab1782566f31b6
MD5 b9acbbac1e143e4f4c11c3aa88923be8
BLAKE2b-256 d752d04ce9d891f1bbe16ce23d7414224577b372b167520cafbfae2668840b24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 107800abb2e77f8b8762d5f8aa484d8300f3f09367c2d917f4106d43f69149e4
MD5 94e97074259fd584f793ed58f9530ae4
BLAKE2b-256 54403f9a19b0f895b40ca16bd8d79504aa8f16a126661444b2faaac9f7759105

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6cf45bf6b3d1150379f8f231cd4a774610c97ee4a2b75090d18194b606756724
MD5 f5cb310625c17fb0129fa2191e91d278
BLAKE2b-256 8232536c67519b78f902243d7453d4057e527516f14b3810c20cf7fe3a2668be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97960804bde19d8ec20950b61b12592be01343286a06501f51a1b241b605476e
MD5 3ba3ed71814760ec1404852c4f2ac814
BLAKE2b-256 5337e61ea5c9983086f95a2ac325845736f0d099bce1059ffd1c4e7f1dc009bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c9ae72ce4af4ef2a52cb748e8fd40d305e9948458886bbd3af5eb9c295bed42f
MD5 8e70b3311bdb24f44f6e71947e32f236
BLAKE2b-256 2a1e90ed77f25ca515a91ebe70dc1855b6298c6d85a3fdffe40da98844004e36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 265ebcc2fdfdc9200b4d65b7491cbd16bf10694756e4c9cf4a662a5870c4da3b
MD5 594fec3c5362793f621e0e395538373e
BLAKE2b-256 92c9e7415813cd59e2adac70a858f00b3ab79db9da72f832b7eca86921daca30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 25e745c646630be9227ba607e97ef688c116f360c590d0f12d8373b199e27efb
MD5 4df34093a4b122cff770edeaf795883c
BLAKE2b-256 24e3df4856fc92f870b6277116ab208251e67b601bcd9102689cbc0580a9fec5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 191108ea0790c5c0e2e6ed2f341254c761b4933b2cda484c35a7f2326e12ffe9
MD5 efb4692d0982fcde23fc8a08e544c3fe
BLAKE2b-256 8d42e00bac1b02274961fc9f3bb27d9062547b3f12b3bf4969d75f45b6da3099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ec5b0d04beb086c40862933d655b1356dc8ffed83daeba95c8131ad6cf8a5266
MD5 c9559d825507a29d13a26a50b8423148
BLAKE2b-256 c26acc285c24f67dab0d064bc8a21e1dabc24145fc26efaa5cefcbf36eeff77b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 bc09dca4aee71f2784eff80ad8746143d19315541204a94a4d379c341bc76914
MD5 393c7a4b4a6b7dd6782d2abe223729f5
BLAKE2b-256 487e48d74e71887f15086aa990dbc0113ca17a6d34cc05cc581841c78d84b6e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5309f43076d4e4c8102217de0173013184cd1ea43f0fe63c4991f7cd38c700de
MD5 fc4ce7be96da21f5a50fa19792ee7245
BLAKE2b-256 76771760619c8d6dea5b3b0cadf3d6c5a2580c9cb2c05862119cadffae259dff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0a7eb0db68544d76abbb446fef9a25826b25525d8cb533afd434a3bd4a8eaa4b
MD5 f98bef0e1e8f3063a5930fc725942304
BLAKE2b-256 eca9d03b33a73686891d50efc44bda6db42f2f27f7c495480515ed145fae639e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 18c4786a5f659afe460b6fabeba60071ed2cb6967a1e0fe58be4d585d72663f1
MD5 1a530d602d31d686b56cd8fb101c39d7
BLAKE2b-256 3960d37f4575f802ced2d7af447d8d18ff8df0a433fed2c1628af754d0225d47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 dc4dba07fda0d4b8e47f099bfda9bd49fb4788f89d4c8faf2fe6fa1f97754083
MD5 9db461e7f35b5d6c55a198b682a04274
BLAKE2b-256 1132b2b2f20d6311267385d025ce71f3db2c3f865a76050b69a941c7cd4830d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bc5407a882d7f983ec026e727584880145c2dc9d0bfc4e614331344462e07645
MD5 f839b08b84e8e971fb038d03f072cf42
BLAKE2b-256 faa22073f90d76b9b7ebd3ec83853a3deb0e5b3fe6573b74ab6c19f69984d88e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 330915acaef9e08f6b9117acb8c57a90fe612586edd955d12b3b72d355ebcc42
MD5 1d721546e532a00ca09b228dcc022f71
BLAKE2b-256 ffe996f6cfe2f23c6435c2c90ef576b069fd28e433672d0af7265c0b459f021d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 226b9c5ed2ec6ffb18cf4df9e3f5d9ec0cf3f7d6a2ba086fca3541cc0855c92e
MD5 1443353a801e50161b9d2153fa8a575f
BLAKE2b-256 2674b7eb394da8fd5306a1521f4d68c3f0312b7902f8db5c59982c96657ce819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3db8e56a9c469a63088523f5a0f254d692c7ee3712ab98464348a9a853f0434
MD5 a7e7f035604a3f94d69e6c0db607a3d5
BLAKE2b-256 368e2b794f188e4fccc8e3ede5f02118dd71bcf984b524df3510fc1be2ed8e92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80fdecc53142cd1b501dcadbba3532b5396e9022c06122e79050e34eb8a7a94e
MD5 854801db994a2106e9615dd818a7b65c
BLAKE2b-256 5acd4cccc9f236b19f5a97d2a14c355c2166c9574e45607e77860a2b46486ec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 545cbc1dce1a161cb377b6130e3e702cc495380befb63ee95ced4e179c5d4bf6
MD5 72075057b79431b60f051aba85cf8541
BLAKE2b-256 a2e8e23c005750a5ac435bb6dbb93630bc9c567ad2db672e702e87a6e2609ee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 43d832dd6fe2e4551dc252a6c91f1eceeb8d92bec3812044098028ca0faf262c
MD5 c671d5663c915b4d71680417c61b8c14
BLAKE2b-256 624733c930608093738c60bc6d43f8e37503b65234aa065696572eba61c582e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dac84948167dc5134953dd9113d677bed9295ef3d23eaab26616ec78987dbe5d
MD5 e80773bc66403710f46b7c85d427ec12
BLAKE2b-256 9f23d34f275295a9a2bd92b77e43f68923537d87bc55c0a043f68044d9dc357e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f2df031f5e4d4df98c8adc0b837ec8f94705a4a85b11d6f1222911534d84f4f5
MD5 93c9b3df80689705c8fbf482ba44e842
BLAKE2b-256 cf842ecd04513acf95158d8222738b6b50c88289d7d19ba91ed5c09ab8d26766

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c40fd19016796aafdfce7e5013c361aaa38d6ee491923f9b11f14e879eda916a
MD5 78ebc1c4d5d3c57ece8ab1b6c295235d
BLAKE2b-256 670e0642f9da3971c4baff8c1d9700a42b8f08b2f6f29c6febdfd7af35a328df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 7ecc2d9abb81657507e270c05e6f3022be4d756607ee321f29cdafdb4f59c09f
MD5 0eb77ef2f9ce585c2d2458d70287d068
BLAKE2b-256 9598de5564dd1588fc92c4d99adc3628663b5a9ff44f63d257c17124bcc121aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8ca692dc420078a6534062280379cbe0b4a4bdeeff21608ffd88eb9064b95be0
MD5 33a8d6b8f6b6514181db587ad3ccd2a8
BLAKE2b-256 157f73baeb2fa1897bbcf19b6d706263c399a78eadfa7d480c42cb85ed192b23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 7951d38183030626acf6f3a7e034df9dc3a0f4f2bcd5a38f3c72730877bbed15
MD5 83a9baf97056f519f91120bb1820de0b
BLAKE2b-256 0d31f019684f538c1644adddcc8988cfa7419c814f63b760cf8f02779081bcdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ea26c8044a7f7bd45d9e59b7ea6812252645908635e9deb0fcd6402411ca2814
MD5 f857be0030b26af7edcdc63599add04a
BLAKE2b-256 04afc19a757e52c7f8e57e4af9168e0d86cf3973659c48de07c696fbde142344

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9c7df280f857b2f7a3645decee9af2e34b1b60508dd2ae81cc2cde5071cbe94f
MD5 9f77b763ed13c9048be41758e267c953
BLAKE2b-256 d36f83e9c514d25bdb2d81a6a19f078e3e2883a507d3d48cbd4b9593a62da955

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1e22d8aa77be01f3461871da9afdd282315634623551c112782b5110155960ac
MD5 78b27752fbd1273e0a6da01f2f92ff27
BLAKE2b-256 277aef8df02f99849a65404c0c9288a1f3454214a83b0b83d70e4b85a126e7cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 41cdae04aede12608df951ace46a455897f375f280ba5cfd94a7a9ca9aa9f97c
MD5 3fb157470cf9939a0e662a4edb21cc6c
BLAKE2b-256 1d913957d17d111655eb603250694dca733594ef9c15ee5bc6f25b742c3d3403

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b65f4f6b9849e5705a41d459f476563f470b9dacbf741173c6b64d49ea990f9f
MD5 299ee4437915bdc84c81f53b66b5e759
BLAKE2b-256 6d9425050dea93c14829ee5aa506e594a113df4d8a94f740efb00b039470cbc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c23d312af7fe39a47449540765c7307bee5b6199bc6cb94f466febc6c20cddd
MD5 53586e4de917bd85bdb0fafbbd424f40
BLAKE2b-256 d7597bcabeec767f538b494007ac6a5a0c1981f11bb42f6750e8ec4df1514d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 655dda5b5d5d696e8dba079b88872db526a7c4e284907d7f17e391bdb54b74bb
MD5 5142a4d317f5245bb65fdb0518e0011d
BLAKE2b-256 cea8dbcc0c5738730752085b905d01311478ca22d6d8a236df6b59dd3b3059b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10835f957ac69c0087fa7e1bd658877445884e4fabaa15b076beb05154a29f51
MD5 2db224987a482da1050d2b6fe55d01e3
BLAKE2b-256 5d064d99e5b5006d73c5423a04a91102f0d5d8d6c1d7aaa25e1c13fd622fbdaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80e2685365ffe0c313032965bc3c766c06b5e0815fa33d68dc2114ce249d08ac
MD5 b8fe806600c61e3b26732311e18a6883
BLAKE2b-256 c72777d6bdda6373c4b7e098568161e10d306217e454a7a4ee8641e29e7021e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 fc665046df3d7dde339145ee0628545411500ea4910db806ac10346fe59343cd
MD5 41b3af79bff8fd3235a57004f33b03a1
BLAKE2b-256 497d4bb0160c603776dc85ac022fd01b1003411782b0d0f1e570eff62aa6e05a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 18d053bcba64983f90deb6f484d6ebb00fb3f91b20f0f3e10ade9eecc3294173
MD5 98d20608021032fb9bed07e8e3ca1cf6
BLAKE2b-256 2e1bff58e9bcba76a307bf5aa0bb05ff5b980223bab0b235b0e94f676aa86039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 22e58ee3fb7d86e3b2243018501e66f378cd56ffadd589064cc3619d66c41068
MD5 0ec9f1cd0a950a53061573b1726dfc6d
BLAKE2b-256 962dded64495ab9321702472917af1aa5b6b44f95a5d7ec2a4352a337e2e53bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 276f5b0ba620c9086639a0498b08aac4afa53b8a3df52494550bf53e9b9b4548
MD5 b11298ecd16dc899f7220b25625cd2aa
BLAKE2b-256 aeab67097494f0b09b0914949fafb0e702eb29330018632d0b473f16a219cddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 40d9f7e589603415975498a083727229c840bd0c20e39e4b06818463847c9c8c
MD5 54e4f1dfbf40be327dca6865aff19663
BLAKE2b-256 bb2a8460637d83c29b69a6ab73ca1370247d3d2832469e3e1e697bd736a981ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff009ba4a335a7935b4e4d9861d11006ef8114c2739256de1810515a6df28922
MD5 138d2da3459d04bac4278c14e5f71a0f
BLAKE2b-256 257274349af94e3d06ced91a3dcd0bf9d05315c46eb0459f137f9ba1f18d3780

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6c402d5bcb7864bfe655e1e88e23474d58be6c3b8caca42d08f5bebecc8cdaae
MD5 b07a86d35112bbf186343e5cbdba8840
BLAKE2b-256 a182bc59add68bc07e2f7187e12fc231c57b99d921ab48d9b6ccb23652a4a3bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45dc4303600bd9c0b21657621477ed718c1dfb60351cb89cabcb35000f1fb43c
MD5 22fc59291107206578ebbf9541369c11
BLAKE2b-256 d00b1e1689ebb77f423d14b2a2290a5acf89061477e829b98b7f0da2ddbbaa0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f762b20942b8a68853ba340fbd9ff2d7dc342d23222b3257af44bb40612c555
MD5 4e218214636c6802000045321a4005d7
BLAKE2b-256 5250f1ae16eaa1ad27a24ac516459a4b6d7aa9c4e98b5c7c535f7fb4bb25b5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 862ad803d1488b10f179f5ad3303a7bbcfb2b886546c48fe5d1e8a4f897d1f6a
MD5 56747b2c472b76321eed200c158b1838
BLAKE2b-256 f2db5bdb82a555f1905d8b8378e58d53ce94ceaa296791f13fbe8b5ce2f27da6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bc2586e4fb7c6d6d5af65c063b78eaa8dc4ce80d3f5efb9cd29818de19455777
MD5 05fbd88cc4d19227dd267c0b14669288
BLAKE2b-256 13a75eac2248fce05083550672daa72ef8eedaa6c59bfe2b91ad7500c7d8d650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3183c11e7195b3879273e1c07b95cf1532b771935375b6b61bbad3a2614870c
MD5 099dd745905d56053c0b83a1b654fbef
BLAKE2b-256 f9c13f2203990e29bf62b6fd1985d5ec247e08a25dc097df28a44c216a107a8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.39.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a1dd09fb9350f3cff4c4a27e7bee2001452e65d44405b265aef081998d54094
MD5 efddcbb005516b74f12a87a04886353d
BLAKE2b-256 2827eac15f02c493447b471167c50cda17127159fb04bb087a9f4e69be2d64ea

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