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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy311macOS 11.0+ ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_core-2.41.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.41.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.41.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.41.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.41.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.41.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.41.0-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.41.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.41.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_core-2.41.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.41.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.41.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.41.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.41.0-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.41.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.41.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.41.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.41.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.41.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.41.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.41.0-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.41.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.41.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.41.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.41.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.41.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.41.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.41.0-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.41.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.41.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.41.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.41.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.41.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.41.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.41.0-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.41.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.41.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.41.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.41.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.41.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.41.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.41.0-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.41.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.41.0.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-2.41.0.tar.gz
Algorithm Hash digest
SHA256 a1b998121f26bc19af31915326ea45723169b394bde1527ecfcd62727c7ea639
MD5 ad67b881a2ba535e858f45d0c12dbe6d
BLAKE2b-256 daac0649f353b7d3cb95dc76289fa4634b2859697fc260c775960be89712bcd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0d46ebd29f096c049c91462d75c50693328ceea645cefeee6c8c8c17a2c5b33b
MD5 4a2310acdf2b69ab4e76e4a6fedc4a7c
BLAKE2b-256 4a5a85544db3bf39a1c4ae8cc42698d5688b0292439a3071a02474151b44d95e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e417b3958a0a492b819f48d32c7db86f20a890061ed777632915da9e7dc6f984
MD5 14da0fa93a3647570bd0871406205d28
BLAKE2b-256 c40e93475482be3f7aefd5f225e94405c7cc18c878d17bf6a06dfc63807faf1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 129a3d5a1e4a2f03c7c738a87c0dab44d81dc2a7572068cb23c749117a2eeb2c
MD5 e075620bcbb441a825e86eb137b0237f
BLAKE2b-256 dc696a7fd98686f4a90355971a2bba05b04926186363f4d33b556e6b094d26e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 609cee0ae00104b9d1945db2837911a3b47f7d5b89bb11c0673fdac4d6830898
MD5 0bdfd7023c63f93d1f5b7f3c09389997
BLAKE2b-256 d795f5454c70f9afc12edfc001e2676291c044438ffb1215f0f5bb14670683f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3093a3a3447dff016118c2a01e9f91627e62a22a4cb849df35a563ec9b2e44a
MD5 e339a9cb6eec24ad4dda4183ac319fa3
BLAKE2b-256 9ca1d1a75fde168d388547f505d6156bc392a9d06dc9f2dd0aee8dd29d4bac90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 044b27123e3f9aeaf9b1fd84f2f89654e93795ab4876bfd894843138505dac43
MD5 97fa6da3488d9b0fd2803778f39b9ece
BLAKE2b-256 8b9a110fda3b8ad3f93a4c20b2d35f61fe4993af497df206f19d42073abd465a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7192dc3a7c614dbfa888b1d59890c130835fd77d53803090258d5354a907ab4b
MD5 a1369f5fde53c6d2df9756d74472eeb7
BLAKE2b-256 f2835fa95b1dc0cae5b362295caef389b810d29cbf1c94403c4917659dfbf14f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 afebc092b329f96430e8d18d8cfdbc1190a484656a3e231da7540be99277b813
MD5 cb5f4af67b4ce0d8e83c368b881bbd08
BLAKE2b-256 78498d0e55f3fafdbb4cb95e997a8fd28950aac6f4688e86f13b6cff0bff4eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0de090987e4d547b9c6b8b12e8f314a7eeb6b3efb84bb3573b811cc2eae28ad9
MD5 0a5d99bed97311e1f5e444d9b0082ebc
BLAKE2b-256 3ac1e406a9b3aa9b7f22289d049dc4159cd551e2480662705f1507b153916052

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fe5678a9a8958ae2d4b0b40a7c186469d2d835a08b7aa7c8dbdefbaa370d39a3
MD5 d9fba6fffbda60d0ea24e87a20118dd7
BLAKE2b-256 69d8b0df25d54877ca994ee97b2e44186ef4377a1e7f55fc12648f5134431262

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 13ccbac6aef163d5c24738a1b72a6361cffa78fc02e1929bb63b1ee9f3e9b261
MD5 9d47ff3af7940e85c53f42254abb284c
BLAKE2b-256 68c6c4e87780e5b18c286416d2c192113bbc74e452554de4f970daa51b589b47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fb56841bd87b98be478d1a1e4dcf735776448482829abfcf6daec519d4668bd2
MD5 0ed884f9b72d41c6e7c96f52e77e59b2
BLAKE2b-256 f400e106948cc15c79c4a538bb86940635426989e8dcf1c3abe58aba4600dda9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 14eeba8409fd6d98a4a20f0e768f3b91bbf0ecad5e62b5e02ae4eccf22df64b2
MD5 1a1bfc770ae78e0d2db448f2f8c03057
BLAKE2b-256 7bf5ec74597bc0fc8f9e59e2e2c6393379209e10387b28530f700fb846c7aad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5aa0d686df1b31e035a61e3f106d91546efc631657cc1e40a84f1cbb783d8093
MD5 c57affa26522b53bef1fd75143a426be
BLAKE2b-256 3ef181333fe6d1f94f4e5d8089a60920eb375e984cbbe11621fbf4d7ed2cb5fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ec90bc1f3dd079f128f4bc169630a80fc306a174f26f04af4441987c2a7fbf0
MD5 6b7b6809fe4f3dd4831a6785a23a06fd
BLAKE2b-256 3550ed086aaa927ece90a611fb252a1b4c0bb4e41181e0dd89cce368b8c5d016

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 879f586ef8e434802c640bfdc20877fcd8bbad755f67cc51ce7a6df09fd4b031
MD5 1550d88eac65c1514c640d768379ffdb
BLAKE2b-256 bd7f84c5d4fda2c734d86ceb5d84c079e921a2cce3f2293c9c36f7b999315cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eb5ab13c849a77d88e34427aa5d99ceb524a78f6b704b81753685ec818703e95
MD5 7e2a58cb80ab69eb5cd5ce5801b2b7f7
BLAKE2b-256 1e14b66de17637d3817629dc24aba2ab738063a2f8cfefbe960b5d59ef649c5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbee8a50fe38ce399208eb7a695879b216c81e2f6f0bfc40c9f295cfd506c080
MD5 e33d84babab24eb9fc2729bac189156a
BLAKE2b-256 b8a3f4cc15da8e2bc38f54b70a8471205c5a4f4e0169b26b87ec7cc04e505785

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 baf8335f58d8a7ef849a95e71032c70e4a9c6f4f79fa02232f0a700d3db8c0c1
MD5 8b1eb7fc47d28dae8f281f48c81dc799
BLAKE2b-256 e7553d40dd32b13400d1a19dbd7583e7d7d966a41fddd8f2d96d38f082686bb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d9db4c20e370bd61b7a2368a83303f3ca19f65b24b2864b19b05b56aa480efd0
MD5 edaae35cc281d98f436a24094481dd8c
BLAKE2b-256 559fa2201f7896a35e89c3b613ae80827b550449373d8ddb3a196474a44b30b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a86797d4c9cb1e9c4637125ae40c46c89f8df8e0b1faafe2c17546a1daca41d
MD5 0d1ccf108ddebe93fc90cc9a0a6d076f
BLAKE2b-256 e9133a85967544d03d90c5906dbe057669ec52df195b791ba273ee50fbf15e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65f8367be2d9fbd8bab1c40e76a6430a72d7e91e4792326af192a0d00585a63e
MD5 4405301015093d38ca39cd66b6bd9285
BLAKE2b-256 ef008ac0299300adc132f9c5c99511138959e919b5b1d9ccc5ae321fc2355def

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 745565ca9707d994c3b55e2bdf6082eb41ceab692ca4dd1e105f04d0a1d6c475
MD5 28132b6e2ec653c2923b44d7a046cf50
BLAKE2b-256 77202970daf81e141f247c733f3a82eb53abed06becfe2ab2a9e1b63cf65827f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e36275ac95bf198ee2f0682d0aefb37e34e049c07abb36d9019a82d61df39447
MD5 b1de5ecbe6fccc49a58088bacb1a6244
BLAKE2b-256 8e01ebf5fc5cb5b08e745224a7b7717affd8e1f8e8d1fc63a2db862635161821

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 a1c096dabd99097332304a01779eb04564f6c56c911f9f6e6492da68a1624e48
MD5 2a40afa47542a2cde15792e18845c07b
BLAKE2b-256 c7b33c5f83d56348ecb9d3f89bf3d17a655fea5c9ccc2c6c464383e78216c231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1de77ba6dd4d16f1e2a2b12bfc76aacb5d3aa2aae4374df02c2b10d5fede93ec
MD5 882fe6268c65cd6851f21d7fae78bc6a
BLAKE2b-256 dd54f967b004a1dee89dc55bc08a3fffc563a881391b282b46ce179c88963577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d3437f7516161f314b49c437dbe20506ae03e35f04a608c3a260da34ed7d5866
MD5 fd539ecab5ecd3f9c7e455651ed004e4
BLAKE2b-256 4a1467bae027aa5b8e10cb947c19a6ea5a3e099112ddbe045f1dd42c2f8866a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 52f58e9eadb36289e4b926837a3c2fc7381c965ee972afe8f6fa7c7b4c62ec61
MD5 1a39b4c5d60df4a347a29735a9df00c3
BLAKE2b-256 ff034ec03f523ab8f50d8fb49ac973f25745f3033ef9b77d0261679c26046019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 011ebdf47c9b27fbb37004ddb1ded937fc35eb0d4a88ba938a17d8bdcbb65ba2
MD5 a7aac516279e0517fb639039547ae14c
BLAKE2b-256 83ce1ff01a7ee33070787ac972c458587afcdd6d4695bf0943e3fa462b8b9953

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 4c34d9ecca1785b80f2283f17da361a8e4cdd8713983fa783e8e295739c5eb84
MD5 06355be868542dff2854e542cdb33dcf
BLAKE2b-256 44eadb25c138f98d6124bcfdda6917b377e784c87e69532d365d6a9a82425c6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a82cbb337ee98d9a630c0d6a7940c2049b42e64dea1a5f357c59456209e7b9e7
MD5 b31a82ccb9f96cf6094c7ea3eb824ce0
BLAKE2b-256 080b66ec362711895909fe5a964b632ce46cac8cfc52851c9e2254da396d836b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ebba6e90922e383ae34a32d35ce19fc8924a32f32b9d4c50bab53219090cab07
MD5 ca3e2f2a7fbdd4976543eb0a2f8c5fc6
BLAKE2b-256 2c13ed0c33a52b2dee4e4224bd464e86225acc29578c1538b5c769d2ae80fd0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d5c2a55b5cd2f7668a2294a2b2db397fcf6e5a4d0084a7af96a6880720bc9fbf
MD5 57d72ab8137306c94ca7622a7a31cb89
BLAKE2b-256 83aff1e81031131ba11bbe1b65f8d34fdcffdc0b4f6e69a7f70930805fd811c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 beb473487c575a1b4837883bb3ec77c7bc2d6bf4c456d0fbdb2d1befb50bb022
MD5 04df09862d504e08df0dddfab3a42627
BLAKE2b-256 848961566cc9783088207201ef2e77bccd3ac18d6a1561fe795f0a79c3d6babe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 68fe45c1b56257ddc131e7cdf0889b1ddcb9cc76d149603867add419f7258159
MD5 fcab084d8dcd5924dce9cb348d7ccebd
BLAKE2b-256 30f36316d427a8d496520b9917a26bce6a544c98fa250829db136d97f2aa5510

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7cc9868cf645a78e3a49f3a7300d46170de37eb720e7c0ec5b8e593389f44bd7
MD5 c0a38a9c0302a42388b996abe20952a8
BLAKE2b-256 d3a291987a592d87b13f5354e44ad941aa4061c5b8fd607100e756f5bc368af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4657653aeb5f4abbae87ab9e21c2bd094583afee57c75201fac8c71aa2cf74df
MD5 94eca8bc43a64322a02aa1045f9bc2de
BLAKE2b-256 98134a29826b65179cb12ccb82af6cdad545610e1c5e17748cef70bac1a36e37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9e006f1161c03384c3ba52d802f332bcc5a88ad530195b1771acb3d83ff63ea
MD5 840c170f91b56a4b675e1d5afbf12e52
BLAKE2b-256 a875085947c204d951b8416fba58ae9ab34198effcf9a6a23fc771b9614f7669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a213587bc728166b4b42c9593547568b3b9b44e9ce2e9341e6b3643a934a885
MD5 a9b5398f94a066abbc049f1545521e70
BLAKE2b-256 fb14c9b920754efe8d837674068a8b3582179291ed914861686015b4342b40b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d373257c0bb38de28667548d50f0bb2311345edde3a8bfc27135dd940387b9f7
MD5 cd7b1df02db7bb86bbdf028ee29b6bcc
BLAKE2b-256 11fe789d0601ad3c5cc1879807b2ba0460f0ede50bd75ce506ad682c4bdc146c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0b2e04414ea69a091943699a59887ee92ff5680fd7a24f43f36fd8c3f07f633e
MD5 35c52043b436f75805e1b6e2aeac8684
BLAKE2b-256 0c50a1fe79038923ca3929e3ad286fb283eb4443db3ba73f90931802fa4c6060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c9caadf9842c32961a18ad20b7a23f6d7e80691497320d651dcdb07903f653b6
MD5 c905f0a731a08d7f39f037472e1972d4
BLAKE2b-256 5bae9915f75b7ea5272b13f0b0e2cbe3c6b5785d08fdaa46925ffe540fd6d64b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7546d5c40a44a0f6d3efa7aed1e7aa234862cecc790a91cfadbdb5d95128f50
MD5 d2a5e3d57aa2aa921352ceef62aea8bd
BLAKE2b-256 b571730023504d88d038468b2efbf6704cbc039c841e0e8514cfd91eb0c1975e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2df49a1a954d9592fe0a00352a1e9db96c3f5e9d8adfb695d88c65ab9e6cd182
MD5 f2c5d3a9edc4f9f1835abddb9a1016af
BLAKE2b-256 c4bc582d774c5e6efa83064b97a7d90b2e3a4de7df6d4eac8e77cbc24904dab8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 910e328297969512bcf0cb633969bfedd4da9f11982db2c6a1368dfba955e119
MD5 084f6534c12feb16d251b33fbb3a5435
BLAKE2b-256 b5e22ad51f1b78e317954f43cc995a6cc2a4ddfbe083732832ae33b91f522d02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9e514292368a3bc634fd59d80b5aa86f0eba06e5cd157a90ba6bd031c2c5db69
MD5 bc410527d721e633138c6968b77566c9
BLAKE2b-256 896d7aa477f31e06e9adfd62d9b586c34ae01e2cd3b0eb5d3df1838204a03851

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ae4551b62bd1651101f985e581c7cfa520aab4065165f819d08749a4f8f27eb3
MD5 0f81e943aff6062a424085a45a94c27a
BLAKE2b-256 fa94a27a54ef9eb0f026d776690c0cc5bb4d11cbd15351cceb2701cf8f662686

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 27b5b8bbfc608c387a4adb28243f7ed14640205f51678ad0213a4f0ce204db00
MD5 437597d328177d4dff6f6bb89d5cce2f
BLAKE2b-256 6b4f7cf7585695528325f3be74ffd5580ac973230f4084aa6e3dfa92afd9a3bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 342af4ad769e2ba9cbc583ef8377b9aafed49e4ac28bfeb7692f955a59df269f
MD5 8e9608fb8127737c1e059da59a0968e8
BLAKE2b-256 bf152434cb8718f8023464029a386ecfc1458fe5d1919d445f74199327344470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5d30a9a12abc2b72022385a18f7305e21ba8dbdfa40dc36910dcaa3aef7078c2
MD5 ed2fc74d19b56049140bb4b75b17dfbc
BLAKE2b-256 d1480dc9375257850e2c7a218bd111f8c16eb8d88f53570d57b820e28f108ff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22181323ba0c6dd5c921972bc0f49c1314c9f2917ce6c4055b181c25fc443630
MD5 08c2531d99c15c9cc811c76a27cde363
BLAKE2b-256 949f3db2449cade2a211dbd250737b10dadc3a881b121d976dbd4bc15f26506b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1b98bb7ea8902cbc4a47923166ca84062d78cd1dfc4c4700957686a83af976b4
MD5 f2c70078a7a5f4edcdbd1fe7e36d0f15
BLAKE2b-256 08961824a970dbe700813d15613c064c05153222d96dfdd93793b49d67be7ffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 afa9b417b1eb1cddb35f20d74ff6e0e97dd02e788dd6bb5ee7dd89ba42f33906
MD5 488f92f2d8d085f8fe2e9df1a5863b15
BLAKE2b-256 b22fc240a6442689fc84dc871035f54b2dc58425b5a34f21e39788b421fcea6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb82ddf550d99b11e82b27dc0be86163ba9bf5612facb74d65468b83b6a8bbb9
MD5 d6a1e9297e850e2d30fdf74883920c77
BLAKE2b-256 d082d4fe9f92f9a5d9bb74f17c293e6e01b20e4480a7bbf30d69e45300e4885e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be0c78df4edd3efa764ec2c3a6c6210014caf1358783f8fc23c58404d137f5cb
MD5 ba36d2c3339e2609d8829f3d56d8f2e1
BLAKE2b-256 364169c73da939cfcef43d38affd109d2556b58116a3be9e94b439c21ef6c488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 37780818c2697a0a0060fb13a4180e10145c4e7b0bec2b2466d4d9cd5bade8ac
MD5 bc783dd6a685771ef417ea5f81de16ec
BLAKE2b-256 83a43bc2c6cbf27fa07acfb44f30639d799e02a2d166769a83be3fb094b7a895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbaa5e845f41f1a520f5754b6b6c828496f9cff6e95f1b4bdf3872a1222d6730
MD5 d4b50d77611f4e9176f246dfc3d9acc4
BLAKE2b-256 847849b2e813800f5deaa7c31dfee8dc8600f7e4b33eb2d71063ba4b04355ee2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bdd7ffb2a677b94849edbcc433add2e1d3d4bca0318df2f22cf5604d4cc9967
MD5 38ab0c465cddf667a40bbd1785dfa5bb
BLAKE2b-256 ac3b58a60db6b934187e36c3538455bf76cee0107d2869771cfcb6cad40e1321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 d57241cfb1251daf4caeef20e9e9def0f5594aa7e5adf4f94bc1eafe9011b17a
MD5 6d2f20ffe9c56258eac6fd0d52cd9863
BLAKE2b-256 b0a6c44be1be58c4f8eb76e2312e5c9f07f775f45127021c040ce629994f0321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a0cb13ef0d339a126c87b1f79767b44f9c566d8d077cb7e8a95cddefbd36c593
MD5 7b2ba6a8f929f97016b7d726b5fd0cbc
BLAKE2b-256 17564d120970c5ebd93f9ed588c9283a3939685706d26f757d07539f81efd26e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 13b5207fa76c4dc8d1393664d6d92d1674402c751d82e864d11b9c805b5a2e6e
MD5 c115ee4fb750a9c02a163c0408c01159
BLAKE2b-256 2901a92998ff01649fa1303f62490de34ec87c6a2756fb532718a58c97d69b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2f2fc7b8f19777e987c718f399a7bfc3f566a1c49a15530357c3cec2dd65a2bb
MD5 a237761a8459a2a73b7a8b85d1a4be43
BLAKE2b-256 07472c6682c47e9e09e793bf542f632717a62e32391a0925d66903d502fde9e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 088bfdc341aff341822fd6d1bfb191bc8d9d659e1e802e8b9cdabb6d5cf1f444
MD5 612818b259a2e56efc224d13c8baaac1
BLAKE2b-256 053bcf9ca39873089a6f2ed242801b746b0bbe419837dd03bcd9f57083fc2475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c3dfff9eeee2a4e994df54dbf3d30d38651394b668953d3b9116c1f7d5c3822f
MD5 0ebd7827fcc016d5126e75b109e56926
BLAKE2b-256 a56730a347985e0a1ff21468ba5fbc48df4f41a9172565b150a888f383650ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac529167b9c3dc9c5e7fec805c40e45e05bf6e7369894d997c56dfd783a7da28
MD5 8e51c01949ca0f9c92f530bd24b8bdf7
BLAKE2b-256 703444335aeafbc09cb583dd820164744673787e130d2b7043bb6534a763d189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 268e1ad228ad12fb5b01d2a38fd2db0f514dda860befd6791fdba4e8f397cbd1
MD5 cdccc1bf2c5816269d3637285712d30c
BLAKE2b-256 f503b0c2c0c13244297f1e7fdba24d12f7b36a87ac9feb10439ffcefb4579289

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9eb0559f79f85bf18a145cd508477ab2ef7cb70fcb9abc3c9290f4abf48be90f
MD5 d6c0d78ae8097fe76b8c1e8877ab50ef
BLAKE2b-256 34433a1ee12882dfb281360fd1ffc44e2ec155ead88a34f99ccd3b49ce3f9ad3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4015d48c18500911cacd7ac8f941650ac15b50705734002e0927eabfd14ff449
MD5 84b75c56dd67d9d80dcc9113a81b0d0a
BLAKE2b-256 c71168f55bf14c4bb543b1e946ba8f7773087539290317ffe72c28ab185aa94b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de247768f4ec995b11607ec1e06bbd6a38118adb6881dc51d8443f0dca6d6f27
MD5 f654ed2c20aae50cd2b20977ef04ebe1
BLAKE2b-256 942b23bc86c561025462c1be11625b3cdc73d970106294a96bf486ed2316d799

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 493aa839f0a7682566cf7f93b24f98886aa7a02ece0b70f4ebb43efb7240ef3d
MD5 106068ef45c5547719c295cd3fd8888c
BLAKE2b-256 640ea6e88682d9247a197a14e89b4e5ca655e77d2a4eb0663f3b5d77054fd103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bf96285405db7e0bc8ec2f35e5c5c881212cdcbdf65623e64998dac468ef929
MD5 7c2b1dd136edf74237e0db4e5a391a91
BLAKE2b-256 a11863815b7989c4f790ba65037b31938ad9e4b162171cdf5129596ccf248e99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cebf3b25960e804338f14e14e1f0793e6f6402770ae5190722e2085983a3b807
MD5 2c6fecf2c87f5a9cfc6c09cb150abd83
BLAKE2b-256 cf9fcc0992e571d5674437d8d90999733b0e894a49a93494ae607dc2a1d9bbae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 d6d3037f531d276d07c91f513ecd1c2b871081725d8abe7ef5e9b23c97ad34e0
MD5 f1ac09b168b0cdcd2e78e0f7797dfa4a
BLAKE2b-256 29e5e071da062a6d1ae9cc35453ada04d3a7897b4733ae334a58e51f996a7845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d498bb31d74967b3012488691e473c1b5521ffcf5a94069cf4b2cd49f7792e5f
MD5 a48509e132150bcbd43dc6bea4623b50
BLAKE2b-256 b24fe638b9f5b37214dce8b5b4a2704eda763b0bad06477e7d5a8cad162011fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0688e4079d89ad4ee1bf32853a3ce765035f0b133df071de43334fc4bcc9a51f
MD5 bb590f1a682621cdffa8f00cffc965e0
BLAKE2b-256 17bfa904cfabc9ae902b35a4251530a913ca3de0c99a54eabb288edae83ff2f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dafee0a37921dd250fa68bab1f64e6b281fa19818deb47bae23648541786ceca
MD5 2526284d31f2e051b0cbdbd65c3ef39d
BLAKE2b-256 0f421fe276599d1e3a14e3cb8d1784193436e7d2c7fe7d188aabc51a91099d37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 a183c4944c5a43c12c34e94b2d2b080d2b11803910f975fd4c78b66270a05412
MD5 8cc2f415d542c5a891ecbca7f448c43b
BLAKE2b-256 423b3cf090b9a9d88b54e0b52fe10d512186465b2b587221e4f5b66dabee9078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ef581d8b80defbaabf0c327fef89cc52835be664f89970fcb9199711588d878
MD5 ebd6a74acb1dc71c864d46919a2052e9
BLAKE2b-256 9399fc8b1ad7dd7179011819d72c6d6b3058c1454644bd8ddea0ad2311e171bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c3342740aa97374e2fc5cdb469cda632fe1a05733dcccf89250183a07bbfc49
MD5 abeb446ec3ee0222859e2c59b141620d
BLAKE2b-256 e1afb0735606326ddcaf4c5cc22144617221122172c9d8e983f31697bd6bbb41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e8cd6faaa8f960604304534f07ec5aa5e2bec4b902512f96956fffcd8763ea41
MD5 5140d6a2cfef72c2bbe2066dcb4a6920
BLAKE2b-256 45355f294592848f3043a6f2f28ad196d63ebd63d39199dfe08a22f892e93158

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7dd17786b7ec6e416aff287a538d96b144e0f5404711d839c682dbd71c73abf3
MD5 7a5c31d365e3a2a57e16af46cfd8b47b
BLAKE2b-256 362af6c9de051729295bfb5cc6d7c4013d5ca136e5eb86b5fc003265de41a122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9521745e28007af7dbbf38bf71ff7684cf51b9b7dc336b7bd56c46cfb46aca8
MD5 48cf34da9f586ad438f5946897d93968
BLAKE2b-256 7da911e933fca31bcd85d838775b1a17159b07b104b93eb90ab6775856185a0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5acceaa0269733ffb38bce6c7f9f1890cc48b98fec9b828b701cec72f05f1b4c
MD5 8975e44acfa90a6e379f8fbb991ff58d
BLAKE2b-256 169688874c1f01e9fdf4887a595a32e47ef5fa1e3fadef55c4896963b93e5f13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a5bb103e655931b05d6a7cdbe76593c35d0e2d105c2c9ed0627b6b171dbf35e7
MD5 cf2b5e318840cd91a4a732bd392b86cc
BLAKE2b-256 1f33a045bae27ba2d79a901fe6296e237e0b2e41d7b3bf408f2dbed17dd64da0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e220c5407641fb77b67b04d46aff80fc01270e959c3867aa849df9f2f160e689
MD5 ae93c060a1d7855ca90d4420cdfc70fb
BLAKE2b-256 4fbba1d9df96cdbf58b4b3a71a4b0640b27893bba673c61d6f34795b2401464f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 80e537e75d012899c0941d9fc75974b73a1c64003da95a1aa668a37ffef80f16
MD5 00c651087242117d551ac943bba2cebd
BLAKE2b-256 66a1125089baa5f64dfb2d0f4e867eeaf5236414bcbb0d5e6ac139aab86aac77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ac82a8c61deef0ba80b9437ac110188d773814331f2199d496f6aed6e835038d
MD5 3b3403147ecc7d87190cac6d9ef731e7
BLAKE2b-256 58dd391ecaae6e24785c0a33461a60051e3692b16ef30b354b6fd2a5e702c230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 2b7fa4a93d6727347d9a9c0ed5cfb007b54b1ede3a2c6353c7af1c546970394a
MD5 edb1a674c4f7347e20aa670123e70b2c
BLAKE2b-256 852030a2228ba1b2600cef5d415d2dc2b92c4d9c191e5170058a6817efc56e1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d09cbdceee2468e6db86c14051da719059410b8a9cb9583f3ca78af69f97f777
MD5 e6c1fcdb3000f28e7c2808d1658d0f5e
BLAKE2b-256 f1fce995a4a3eb3e603f1c61a21be4fb064cdb5d428b6b23d9cb936ee7b9e7fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 cb62a22015bc18927970c2bf5cd56faf0f41bbccf8e913bd30846635e3f9735f
MD5 559be76f105400e093625fa6f8d1abab
BLAKE2b-256 57d29ebbdfba997493bd61cbfb438baae0026b77d69f0d3044f49a347e76fbf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d985386f49c5f66f20f8eeb5a1cb0f89c5bd0b4eace8d993e969bcb61386c13c
MD5 ed0623475aecfdeb1593eef3d8a736a2
BLAKE2b-256 f58e38a1f9cb93507de1886d72c81b380b9096656afcf926fb0cd5e507c00714

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee01830dd038811e531af43a2b2ef837bf9abd0cb33bf9e8b44b103867e7400a
MD5 da2a371c196d274ada675a3e1f330ea5
BLAKE2b-256 ed080e7e120f502b76b65a59079b255c19326672271d16dc07a34a32bef69ac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fc9ea55515f123f6c183eb35731f3d0e9817c7d0cc908439a932e02b44cb3947
MD5 2641ab0ebbc9aeefcd1f4df2b4616319
BLAKE2b-256 6325a9ac2b76e9772112c0d0322060c68e7e80ceae4a36a77a7480180100a306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e299d0d9138715b082edeff4fdf8566ffc7a5bc3ce1dafe8613467a9a60f3915
MD5 c6f180abb29104eaba14278127ed7a11
BLAKE2b-256 c47f01416dad72e5871d099fbfa89e794fd2ea01b8bc0a52c4d04faf366d632f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 84f8e412365ea72422a235d40e613aa465705a7ff3b90fca9a436f5e8e6636fd
MD5 1366abfa785983e70b18715f055357dd
BLAKE2b-256 0ed8825843c80ad65a594a9dcc50938ed1d893e0e875e43c3c99f12a5b8184a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d791f0b330f267dd2c701bace95e54ecf1c27a99b433d5b2048f8bad6e5fe631
MD5 30392c584e955659f15478167c1781f3
BLAKE2b-256 c8884dbac7eb70aed9b57dc26b6f2a26e71b21ac4ab11673f033fbe9d0f5c32c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9ceb35819f72cae3349eadf0431a782fb2fb22300b57ca3a6a12a4462ccfba26
MD5 8930fa8adba27120132a478541fb3ab8
BLAKE2b-256 619f5eaab67860ef7e4357719b0555e358ecfeec4486324a0df4363005ed3a3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 20e20006737174afc79086adec908cd438390158ad54b0c1b5e578646d30012d
MD5 78727211e8f94e17cde17738b5f75809
BLAKE2b-256 83647c1f860d6ba6532f2748faba7b1e24111e567a16c2ef6bda04ce8896d4f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6ecbc941c44e8f24ec887aae5d785bf69ddbfc19bec16b30e47f5cac7ecca0e0
MD5 d66ab743a3310b217bb80eb4ec7d13b7
BLAKE2b-256 1ef1827a2a208fcf16662cea02ca75f724320a0384508508e4e156fa97efa0cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e505c55081f4a32c6de59f96d2ef8c50ebca098be128cc2b17d8c6a118ca4da5
MD5 2b137fea7b3e4cfc5209c07410bf988a
BLAKE2b-256 c572daab1223320a02def7112ca2790b144d3cdf87ce07c9fc9d557acc314b35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f26b98c3d6bcda74800eea9bf614c8f81c274abfbb7f518405d3260e9ff400bf
MD5 98970b8a5deaf37a63d1abba46549b6a
BLAKE2b-256 44e686ae4485ca344fa86b0b4b3bbd2bd6d7784033329b5b14044fbc8b980330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dcbb835420ce3bb2ac0b15751252b8400bd9535d6b2ead173b3be84d8d90dbbc
MD5 2b7334babceec0a7d0f73ca64c0676e4
BLAKE2b-256 6738345939f7aefb21270fbfa56a5d0443b425748c7d0cf5a97a78944ebe8a86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 8c74531545ec5ffea794464f7f46d7adca67fcf6d0bd411cbb9e2c8104b3229b
MD5 ff4f52fa864bc9f3d691c77a964a756d
BLAKE2b-256 6d5cc86dcffcb940a679fd7ae7141ad2b1a70ce90cfaa6f090b85477d4818c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d698b317e55cff6937086ac398362a90ff074cbc7292c07bbe455f61b07c38c9
MD5 416226e4374fbf32c99df337bcbeafdd
BLAKE2b-256 4bd19521c37ff65e31c9a6d5cf55d27d254a5461c3b7e1bdee394436f6623dea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ad2bc6db3b5631a0eb0db03c880fd61c3fdd1ca2dd6dc3c08c3fb81ff1db19a
MD5 99394a6c5a13610ee1de9b57687ee17c
BLAKE2b-256 9663cfb20053999166aac85a58abaa28394f864b4be326a7a5d586cc6c11aad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9c7f24294d31f7394fb2a84e43d08efe03ad103f567fbaaa625a7cc6ec1624e
MD5 fc1d6f6972b540ae36d8cb3d18b861ac
BLAKE2b-256 81024e251c202ae41e7afff2ad5a92d4ea9040912c307b9d6370730a3e9dc531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68e9fb3cf1971da8e2dff1eb61ed2f3886880887d7e9645a1b67242ffcc70b2d
MD5 f5b53ea67548f65a2767228908c80d2f
BLAKE2b-256 d5dc5956ead034b7636d389f7b1cf2ce4d460a8d1aa515d0e9cadc95c024b153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17df130b59bc583fec7561edd650aad2e1597224351d9b4780d2bddb0445343c
MD5 ea5909438f0815280f1f2d2ec51d4e52
BLAKE2b-256 4eaee7b63525805e4f095e2f6f4984bce9b55dc92c36e15edcecdfa359475cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48f8a6aeba3cca7239242ee48835de9676a94294294e3e5c44c9b91b16a4cadc
MD5 bb11bd5efd0372a0458e5f39cde18158
BLAKE2b-256 955281efcbf87e76ddc7555563d1399a9815b8c9111ed555195400bb146f6e5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e39f839af31abefcc389224f722307292268450031e54f4d852805eed3b11bad
MD5 e9a3407a6e2313e67579a147e55822fd
BLAKE2b-256 75e3b03354ee6c64a87270a6ab97b351f7920de110429e61516a15f240e8925f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2184718f70933008dfb257576f5d7f615497759b7e74564587dd0c5f8ad87748
MD5 bc9bb10d6f582c5895727ccb30dee8f9
BLAKE2b-256 9c0c5d7a4cbaaf16b9c9e7c1e8423cc9d9188aee76f8616c745c2806ba9052fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3b4b61c65112e2925a0d3e03faba20ee977e66c3dabe792923c6c09868ce4d69
MD5 8571816c1e80f9d79dda9761f6f5ccf5
BLAKE2b-256 cd07a911a0675df381111e358e786b2974fb3fe8ef668dc32d16dd19a27e0048

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