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

Uploaded PyPyWindows x86-64

pydantic_core-2.41.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.41.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.41.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.41.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-2.41.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.41.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.41.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.41.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy312macOS 10.12+ x86-64

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

Uploaded graalpy311macOS 11.0+ ARM64

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

Uploaded graalpy311macOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pydantic_core-2.41.1-cp314-cp314t-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pydantic_core-2.41.1-cp314-cp314-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pydantic_core-2.41.1-cp314-cp314-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_core-2.41.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pydantic_core-2.41.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pydantic_core-2.41.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pydantic_core-2.41.1-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_core-2.41.1-cp314-cp314-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

pydantic_core-2.41.1-cp313-cp313t-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pydantic_core-2.41.1-cp313-cp313-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_core-2.41.1-cp313-cp313-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.41.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_core-2.41.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_core-2.41.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pydantic_core-2.41.1-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.41.1-cp313-cp313-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_core-2.41.1-cp312-cp312-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_core-2.41.1-cp312-cp312-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_core-2.41.1-cp312-cp312-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.41.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.41.1-cp312-cp312-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_core-2.41.1-cp311-cp311-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-2.41.1-cp311-cp311-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-2.41.1-cp311-cp311-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.41.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.41.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-2.41.1-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.41.1-cp311-cp311-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_core-2.41.1-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-2.41.1-cp310-cp310-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-2.41.1-cp310-cp310-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.41.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.41.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-2.41.1-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.41.1-cp310-cp310-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pydantic_core-2.41.1-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-2.41.1-cp39-cp39-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-2.41.1-cp39-cp39-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.41.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.41.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-2.41.1-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.41.1-cp39-cp39-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file pydantic_core-2.41.1.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-2.41.1.tar.gz
Algorithm Hash digest
SHA256 1ad375859a6d8c356b7704ec0f547a58e82ee80bb41baa811ad710e124bc8f2f
MD5 069d88318849d1cdc91ffd179e1a7f96
BLAKE2b-256 7d1412b4a0d2b0b10d8e1d9a24ad94e7bbb43335eaf29c0c4e57860e8a30734a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f1fc716c0eb1663c59699b024428ad5ec2bcc6b928527b8fe28de6cb89f47efb
MD5 86c32466417b530c4d59e3d2f9b24482
BLAKE2b-256 1d62755d2bd2593f701c5839fc084e9c2c5e2418f460383ad04e3b5d0befc3ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1e798b4b304a995110d41ec93653e57975620ccb2842ba9420037985e7d7284e
MD5 e0d9fe1a60c89eb4330a58a452a891c2
BLAKE2b-256 9c48a9263aeaebdec81e941198525b43edb3b44f27cfa4cb8005b8d3eb8dec72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e244c37d5471c9acdcd282890c6c4c83747b77238bfa19429b8473586c907656
MD5 a3c9ab327f4139c46baf7925aa9ecb6a
BLAKE2b-256 4230134c8a921630d8a88d6f905a562495a6421e959a23c19b0f49b660801d67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e82947de92068b0a21681a13dd2102387197092fbe7defcfb8453e0913866506
MD5 5b1ac17bdd37a6ed77983bdba65045ed
BLAKE2b-256 cbc118f416d40a10f44e9387497ba449f40fdb1478c61ba05c4b6bdb82300362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc17b6ecf4983d298686014c92ebc955a9f9baf9f57dad4065e7906e7bee6222
MD5 4891e5142baa43820c45841c0bec8fea
BLAKE2b-256 2b009fe640194a1717a464ab861d43595c268830f98cb1e2705aa134b3544b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 42ae9352cf211f08b04ea110563d6b1e415878eea5b4c70f6bdb17dca3b932d2
MD5 a0d9067db51bc98a52cfa47c6327ca8a
BLAKE2b-256 b2adf4cdfaf483b78ee65362363e73b6b40c48e067078d7b146e8816d5945ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6550617a0c2115be56f90c31a5370261d8ce9dbf051c3ed53b51172dd34da696
MD5 7e8dc66654a605fe660090b62b7e261a
BLAKE2b-256 e5177eebc38b4658cc8e6902d0befc26388e4c2a5f2e179c561eeb43e1922c7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af2385d3f98243fb733862f806c5bb9122e5fba05b373e3af40e3c82d711cef1
MD5 c5f37ec73be48828949d98e6400b982e
BLAKE2b-256 e66cfa3e45c2b054a1e627a89a364917f12cbe3abc3e91b9004edaae16e7b3c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 13ab9cc2de6f9d4ab645a050ae5aee61a2424ac4d3a16ba23d4c2027705e0301
MD5 88270ec4eba1c17001973838e76ae634
BLAKE2b-256 7e783093b334e9c9796c8236a4701cd2ddef1c56fb0928fe282a10c797644380

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e019167628f6e6161ae7ab9fb70f6d076a0bf0d55aa9b20833f86a320c70dd65
MD5 5165fc2b3108b4f33d9cc2c8787cc74d
BLAKE2b-256 c8bfdd4d21037c8bef0d8cce90a86a3f2dcb011c30086db2a10113c3eea23eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 300a9c162fea9906cc5c103893ca2602afd84f0ec90d3be36f4cc360125d22e1
MD5 d5835abe58c7bfd55d4b354bff2a8d23
BLAKE2b-256 357470c1e225d67f7ef3fdba02c506d9011efaf734020914920b2aa3d1a45e61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dce8b22663c134583aaad24827863306a933f576c79da450be3984924e2031d1
MD5 fcde5a54017717787b1235d750fe25bf
BLAKE2b-256 bbe124ef4c3b4ab91c21c3a09a966c7d2cffe101058a7bfe5cc8b2c7c7d574e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34df1fe8fea5d332484a763702e8b6a54048a9d4fe6ccf41e34a128238e01f52
MD5 8e1649d6b3fa20035fa7e7261156a220
BLAKE2b-256 ea5e45513e4dc621f47397cfa5fef12ba8fa5e8b1c4c07f2ff2a5fef8ff81b25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 421b5595f845842fc093f7250e24ee395f54ca62d494fdde96f43ecf9228ae01
MD5 1217488d707f01bda49041046410756c
BLAKE2b-256 22e3f1797c168e5f52b973bed1c585e99827a22d5e579d1ed57d51bc15b14633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80e97ccfaf0aaf67d55de5085b0ed0d994f57747d9d03f2de5cc9847ca737b08
MD5 15ef447e10e513c8173e0edea3d6a1b2
BLAKE2b-256 6eb5334473b6d2810df84db67f03d4f666acacfc538512c2d2a254074fee0889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fabcbdb12de6eada8d6e9a759097adb3c15440fafc675b3e94ae5c9cb8d678a0
MD5 87a6bc4e341bfe5478f2a2c5939f0d5e
BLAKE2b-256 d431f403d7ca8352e3e4df352ccacd200f5f7f7fe81cef8e458515f015091625

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6771a2d9f83c4038dfad5970a3eef215940682b2175e32bcc817bdc639019b28
MD5 8bcc309d6d65daed205a8afdc24c8e00
BLAKE2b-256 143fcfec8b9a0c48ce5d64409ec5e1903cb0b7363da38f14b41de2fcb3712700

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eec83fc6abef04c7f9bec616e2d76ee9a6a4ae2a359b10c21d0f680e24a247ca
MD5 8318bffdade206a6a9a7ebba88c977ca
BLAKE2b-256 ff9c5111c6b128861cb792a4c082677e90dac4f2e090bb2e2fe06aa5b2d39027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3b7d9cfbfdc43c80a16638c6dc2768e3956e73031fca64e8e1a3ae744d1faeb
MD5 4a109b0a07d3f5f4326c1acda1307b43
BLAKE2b-256 5abd389504c9e0600ef4502cd5238396b527afe6ef8981a6a15cd1814fc7b434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b04fa9ed049461a7398138c604b00550bc89e3e1151d84b81ad6dc93e39c4c06
MD5 af96a32d27955fb7b21253358f388cda
BLAKE2b-256 2b3ea51c5f5d37b9288ba30683d6e96f10fa8f1defad1623ff09f1020973b577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ced20e62cfa0f496ba68fa5d6c7ee71114ea67e2a5da3114d6450d7f4683572a
MD5 520f4cad295020b117e8dc230708104c
BLAKE2b-256 a23023a224d7e25260eb5f69783a63667453037e07eb91ff0e62dabaadd47128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2896510fce8f4725ec518f8b9d7f015a00db249d2fd40788f442af303480063d
MD5 f19b7230a3d914b1d08091e42c5820d3
BLAKE2b-256 2a4394a4877094e5fe19a3f37e7e817772263e2c573c94f1e3fa2b1eee56ef3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7bc140c596097cb53b30546ca257dbe3f19282283190b1b5142928e5d5d3a20
MD5 9bf960e36cce28c8dec12d795d7fb289
BLAKE2b-256 8ec408609134b34520568ddebb084d9ed0a2a3f5f52b45739e6e22cb3a7112eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 68f2251559b8efa99041bb63571ec7cdd2d715ba74cc82b3bc9eff824ebc8bf0
MD5 a5f8287d8a9297c3601879c3d2cdfb92
BLAKE2b-256 1689d0afad37ba25f5801735af1472e650b86baad9fe807a42076508e4824a2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8ae0dc57b62a762985bc7fbf636be3412394acc0ddb4ade07fe104230f1b9762
MD5 ff554a5431df9037c441093c69b03da6
BLAKE2b-256 2dc33f6e6b2342ac11ac8cd5cb56e24c7b14afa27c010e82a765ffa5f771884a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1ebc7ab67b856384aba09ed74e3e977dded40e693de18a4f197c67d0d4e6d8e
MD5 6ab55b1e235cfaff31f7deec208c0b1e
BLAKE2b-256 c3e47d9791efeb9c7d97e7268f8d20e0da24d03438a7fa7163ab58f1073ba968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f9b9c968cfe5cd576fdd7361f47f27adeb120517e637d1b189eea1c3ece573f4
MD5 ebc274b0eb7954eeeac9cd57dfb58d81
BLAKE2b-256 e77e8ac10ccb047dc0221aa2530ec3c7c05ab4656d4d4bd984ee85da7f3d5525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 4fee76d757639b493eb600fba668f1e17475af34c17dd61db7a47e824d464ca9
MD5 718b96325b558cc405e063e14c2e9c8d
BLAKE2b-256 3138cdd8ccb8555ef7720bd7715899bd6cfbe3c29198332710e1b61b8f5dd8b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1b5c4374a152e10a22175d7790e644fbd8ff58418890e07e2073ff9d4414efae
MD5 b0a1d2d7b4cde32ebffe63866d40b82e
BLAKE2b-256 3860742fef93de5d085022d2302a6317a2b34dbfe15258e9396a535c8a100ae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a31ca0cd0e4d12ea0df0077df2d487fc3eb9d7f96bbb13c3c5b88dcc21d05159
MD5 679df991a37bd612edeffc4af8913fd3
BLAKE2b-256 98670cf429a7d6802536941f430e6e3243f6d4b68f41eeea4b242372f1901794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49bd51cc27adb980c7b97357ae036ce9b3c4d0bb406e84fbe16fb2d368b602a8
MD5 9690b4f4336c3d6f458ffff50d83fd96
BLAKE2b-256 6f8c02df9d8506c427787059f87c6c7253435c6895e12472a652d9616ee0fc95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3925446673641d37c30bd84a9d597e49f72eacee8b43322c8999fa17d5ae5bc4
MD5 0f40b8535f0ae630da5b7edbae5659b6
BLAKE2b-256 da6db727ce1022f143194a36593243ff244ed5a1eb3c9122296bf7e716aa37ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4f94f3ab188f44b9a73f7295663f3ecb8f2e2dd03a69c8f2ead50d37785ecb04
MD5 4cf16214b9c82d95b5cb0238e025f688
BLAKE2b-256 66454a4ebaaae12a740552278d06fe71418c0f2869537a369a89c0e6723b341d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5f1d5d6bbba484bdf220c72d8ecd0be460f4bd4c5e534a541bb2cd57589fb8b
MD5 320d8f587b616f7edd00a31e7af8b72f
BLAKE2b-256 13c0e8ec05f0f5ee7a3656973ad9cd3bc73204af99f6512c1a4562f6fb4b3f7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82b887a711d341c2c47352375d73b029418f55b20bd7815446d175a70effa706
MD5 427eb3a2b17038905ea301d32b808143
BLAKE2b-256 08f7ee64cda8fcc9ca3f4716e6357144f9ee71166775df582a1b6b738bf6da57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f0bf7f5c8f7bf345c527e8a0d72d6b26eda99c1227b0c34e7e59e181260de31
MD5 da0ef46316ddaaff115a66164ad75294
BLAKE2b-256 3e8d028c4b7d157a005b1f52c086e2d4b0067886b213c86220c1153398dbdf8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df11c24e138876ace5ec6043e5cae925e34cf38af1a1b3d63589e8f7b5f5cdc4
MD5 030a86e86d4b432b42b05beb73140e12
BLAKE2b-256 2742a96c9d793a04cf2a9773bff98003bb154087b94f5530a2ce6063ecfec583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47f1f642a205687d59b52dc1a9a607f45e588f5a2e9eeae05edd80c7a8c47674
MD5 7bab01ce6aa1a766cf22da4749d8aaad
BLAKE2b-256 50329a3d87cae2c75a5178334b10358d631bd094b916a00a5993382222dbfd92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2bf1917385ebe0f968dc5c6ab1375886d56992b93ddfe6bf52bff575d03662be
MD5 10b3f9f7938105cc5e65bcc384d22568
BLAKE2b-256 0a25d77a73ff24e2e4fcea64472f5e39b0402d836da9b08b5361a734d0153023

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85ff7911c6c3e2fd8d3779c50925f6406d770ea58ea6dde9c230d35b52b16b4a
MD5 b0c5a9f61bac0eb0c9b2709d0fbc5567
BLAKE2b-256 2039baba47f8d8b87081302498e610aefc37142ce6a1cc98b2ab6b931a162562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 05226894a26f6f27e1deb735d7308f74ef5fa3a6de3e0135bb66cdcaee88f64b
MD5 da34effee91d00c97aa823eb7b262a1a
BLAKE2b-256 4112cec246429ddfa2778d2d6301eca5362194dc8749ecb19e621f2f65b5090f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 555ecf7e50f1161d3f693bc49f23c82cf6cdeafc71fa37a06120772a09a38795
MD5 965ce41a92149c87a4ea58dcb4021df1
BLAKE2b-256 d7b8760f23754e40bf6c65b94a69b22c394c24058a0ef7e2aa471d2e39219c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71eaa38d342099405dae6484216dcf1e8e4b0bebd9b44a4e08c9b43db6a2ab67
MD5 c8c53af06036686ff0a678d3c0e3986b
BLAKE2b-256 d658b41dd3087505220bb58bc81be8c3e8cbc037f5710cd3c838f44f90bdd704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 440d0df7415b50084a4ba9d870480c16c5f67c0d1d4d5119e3f70925533a0edc
MD5 daf2e211279642e83dd1a380d0b36341
BLAKE2b-256 040428b040e88c1b89d851278478842f0bdf39c7a05da9e850333c6c8cbe7dfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ad4111acc63b7384e205c27a2f15e23ac0ee21a9d77ad6f2e9cb516ec90965fb
MD5 7f910cfb5f698c53cf62107bde11fc5b
BLAKE2b-256 2941902640cfd6a6523194123e2c3373c60f19006447f2fb06f76de4e8466c5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b42ae7fd6760782c975897e1fdc810f483b021b32245b0105d40f6e7a3803e4b
MD5 9e32232fcbe6fb3a2377f845ca31b479
BLAKE2b-256 a7ce5c316fd62e01f8d6be1b7ee6b54273214e871772997dc2c95e204997a055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a38a5263185407ceb599f2f035faf4589d57e73c7146d64f10577f6449e8171d
MD5 97ce6b99bd0b465090b3378a121a04f3
BLAKE2b-256 b14bc3b991d95f5deb24d0bd52e47bcf716098fa1afe0ce2d4bd3125b38566ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fff2b76c8e172d34771cd4d4f0ade08072385310f214f823b5a6ad4006890d32
MD5 98c97bbbe0924878be446f326c738467
BLAKE2b-256 93efe0870ccda798c54e6b100aff3c4d49df5458fd64217e860cb9c3b0a403f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 968e4ffdfd35698a5fe659e5e44c508b53664870a8e61c8f9d24d3d145d30257
MD5 4fdfbb238c7b27434104f572617a8e2c
BLAKE2b-256 58e52c19bd2a14bffe7fabcf00efbfbd3ac430aaec5271b504a938ff019ac7be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4dc703015fbf8764d6a8001c327a87f1823b7328d40b47ce6000c65918ad2b4f
MD5 a56efa49626443536153fa1c52276abb
BLAKE2b-256 77afd5c6959f8b089f2185760a2779079e3c2c411bfc70ea6111f58367851629

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a97939d6ea44763c456bd8a617ceada2c9b96bb5b8ab3dfa0d0827df7619014
MD5 6a3a216ad3c8cb9fb8d1c82c315b9ded
BLAKE2b-256 f6ec929f9a3a5ed5cda767081494bacd32f783e707a690ce6eeb5e0730ec4986

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08a589f850803a74e0fcb16a72081cafb0d72a3cdda500106942b07e76b7bf62
MD5 e27e1c3d1955e22188677fdce8a73a58
BLAKE2b-256 214d8713737c689afa57ecfefe38db78259d4484c97aa494979e6a9d19662584

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a75a33b4db105dd1c8d57839e17ee12db8d5ad18209e792fa325dbb4baeb00f4
MD5 a7b7820d565e0adb00e75e32f9dd72c9
BLAKE2b-256 315da35c5d7b414e5c0749f1d9f0d159ee2ef4bab313f499692896b918014ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12d4257fc9187a0ccd41b8b327d6a4e57281ab75e11dda66a9148ef2e1fb712f
MD5 4e8c8fa670a4aaa34eafff969b474f7e
BLAKE2b-256 ab91946527792275b5c4c7dde4cfa3e81241bf6900e9fee74fb1ba43e0c0f1ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 170406a37a5bc82c22c3274616bf6f17cc7df9c4a0a0a50449e559cb755db669
MD5 36fab728f243d12fe36dae87d5abadf6
BLAKE2b-256 f39231eb0748059ba5bd0aa708fb4bab9fcb211461ddcf9e90702a6542f22d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d2ae423c65c556f09569524b80ffd11babff61f33055ef9773d7c9fabc11ed8d
MD5 a9c6981eaea00e09ad57e2d319a8ac8b
BLAKE2b-256 2655a33f459d4f9cc8786d9db42795dbecc84fa724b290d7d71ddc3d7155d46a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9cebf1ca35f10930612d60bd0f78adfacee824c30a880e3534ba02c207cceceb
MD5 88385dc792199d8b46d5b9b7089ea1ab
BLAKE2b-256 4f2e4784fd7b22ac9c8439db25bf98ffed6853d01e7e560a346e8af821776ccc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70e790fce5f05204ef4403159857bfcd587779da78627b0babb3654f75361ebf
MD5 4e3c57a3deb77bdc4289e90a71335199
BLAKE2b-256 278a6d54198536a90a37807d31a156642aae7a8e1263ed9fe6fc6245defe9332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c95caff279d49c1d6cdfe2996e6c2ad712571d3b9caaa209a404426c326c4bde
MD5 d8b711f3e0ac916759efebdffcdb2764
BLAKE2b-256 b253d95699ce5a5cdb44bb470bd818b848b9beadf51459fd4ea06667e8ede862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 377defd66ee2003748ee93c52bcef2d14fde48fe28a0b156f88c3dbf9bc49a50
MD5 8551c9fbcd516151413735d4efd3e705
BLAKE2b-256 b178562998301ff2588b9c6dcc5cb21f52fa919d6e1decc75a35055feb973594

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 83b64d70520e7890453f1aa21d66fda44e7b35f1cfea95adf7b4289a51e2b479
MD5 56ab5859e3043084a6005a85ef5e3e29
BLAKE2b-256 352f1c2e71d2a052f9bb2f2df5a6a05464a0eb800f9e8d9dd800202fe31219e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 80745b9770b4a38c25015b517451c817799bfb9d6499b0d13d8227ec941cb513
MD5 68f7ab44bf831a08d742ca5bfd183aba
BLAKE2b-256 65e8e9aecafaebf53fc456314f72886068725d6fba66f11b013532dc21259343

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2e71b1c6ceb9c78424ae9f63a07292fb769fb890a4e7efca5554c47f33a60ea5
MD5 e197eb07e49fe0ae2327fbdd8408af6f
BLAKE2b-256 0fae174aeabd89916fbd2988cc37b81a59e1186e952afd2a7ed92018c22f31ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bf0bd5417acf7f6a7ec3b53f2109f587be176cb35f9cf016da87e6017437a72d
MD5 1ea1fe0332663d2c5ea86ac38b2c05eb
BLAKE2b-256 d3fe694cf9fdd3a777a618c3afd210dba7b414cb8a72b1bd29b199c2e5765fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 365109d1165d78d98e33c5bfd815a9b5d7d070f578caefaabcc5771825b4ecb5
MD5 51222e6f44efb75c188f837aaf91fb61
BLAKE2b-256 b5a7975585147457c2e9fb951c7c8dab56deeb6aa313f3aa72c2fc0df3f74a49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 209910e88afb01fd0fd403947b809ba8dba0e08a095e1f703294fda0a8fdca51
MD5 50393965dcb768ad08d34cf2de40a182
BLAKE2b-256 7aaedbe51187a7f35fc21b283c5250571a94e36373eb557c1cba9f29a9806dcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5da98cc81873f39fd56882e1569c4677940fbc12bce6213fad1ead784192d7c8
MD5 bb4e8b0f305bb7b49ec0dfae2219ad16
BLAKE2b-256 61d94de44600f2d4514b44f3f3aeeda2e14931214b6b5bf52479339e801ce748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab0adafdf2b89c8b84f847780a119437a0931eca469f7b44d356f2b426dd9741
MD5 aa1d5676eac9efcffbaa82597e4c9122
BLAKE2b-256 b9b66db08b2725b2432b9390844852e11d320281e5cea8a859c52c68001975fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 93e9decce94daf47baf9e9d392f5f2557e783085f7c5e522011545d9d6858e00
MD5 cc584cc8aea810968dd8fafbb18af58b
BLAKE2b-256 8e2e23fc2a8a93efad52df302fdade0a60f471ecc0c7aac889801ac24b4c07d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 706abf21e60a2857acdb09502bc853ee5bce732955e7b723b10311114f033115
MD5 6a3f376cda0cd03f206b7975a8dc8a16
BLAKE2b-256 6237ea94d1d0c01dec1b7d236c7cec9103baab0021f42500975de3d42522104b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47694a31c710ced9205d5f1e7e8af3ca57cbb8a503d98cb9e33e27c97a501601
MD5 3dd90967054e1adfc5db12809d7c2754
BLAKE2b-256 3114010cd64c5c3814fb6064786837ec12604be0dd46df3327cf8474e38abbbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 db2f82c0ccbce8f021ad304ce35cbe02aa2f95f215cac388eed542b03b4d5eb4
MD5 4487d1543e907230140f0c3787a2c798
BLAKE2b-256 eebc5f520319ee1c9e25010412fac4154a72e0a40d0a19eb00281b1f200c0947

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7d82ae99409eb69d507a89835488fb657faa03ff9968a9379567b0d2e2e56bc5
MD5 6fab5b618e09bc1b7751d2afd2f2f553
BLAKE2b-256 d8164e2706184209f61b50c231529257c12eb6bd9eb36e99ea1272e4815d2200

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b92d6c628e9a338846a28dfe3fcdc1a3279388624597898b105e078cdfc59298
MD5 864ceec438d9705174667ba79ff447ca
BLAKE2b-256 9d7263c9a4f1a5c950e65dd522d7dd67f167681f9d4f6ece3b80085a0329f08f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 2876a095292668d753f1a868c4a57c4ac9f6acbd8edda8debe4218d5848cf42f
MD5 1061115c31cc043826f207da7d80ea4a
BLAKE2b-256 fd9ab54512bb9df7f64c586b369328c30481229b70ca6a5fcbb90b715e15facf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 35291331e9d8ed94c257bab6be1cb3a380b5eee570a2784bffc055e18040a2ea
MD5 f22ab90482231a9d6fdd7332dcbdec22
BLAKE2b-256 bd2e77a821a67ff0786f2f14856d6bd1348992f695ee90136a145d7a445c1ff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1e2df5f8344c99b6ea5219f00fdc8950b8e6f2c422fbc1cc122ec8641fac85a1
MD5 6b1d86a02f9dc3bd688aa65317f8f553
BLAKE2b-256 fe7b239c2fe76bd8b7eef9ae2140d737368a3c6fea4fd27f8f6b4cde6baa3ce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fecc130893a9b5f7bfe230be1bb8c61fe66a19db8ab704f808cb25a82aad0bc9
MD5 2bbbc9e81b35b9be2bdf86db28e7e98a
BLAKE2b-256 2bb86b7e7217f147d3b3105b57fb1caec3c4f667581affdfaab6d1d277e1f749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4a9543ca355e6df8fbe9c83e9faab707701e9103ae857ecb40f1c0cf8b0e94d
MD5 20f56c5e18e0c9a6b99715d67598c95e
BLAKE2b-256 e54f3aaa3bd1ea420a15acc42d7d3ccb3b0bbc5444ae2f9dbc1959f8173e16b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63892ead40c1160ac860b5debcc95c95c5a0035e543a8b5a4eac70dd22e995f4
MD5 b7ed9497349fe21ac33cb978d450b2fe
BLAKE2b-256 57c5aab61e94fd02f45c65f1f8c9ec38bb3b33fbf001a1837c74870e97462572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 447ddf56e2b7d28d200d3e9eafa936fe40485744b5a824b67039937580b3cb20
MD5 a27ba28f80c29cba11b7026e0ad1d4aa
BLAKE2b-256 47ba183e8c0be4321314af3fd1ae6bfc7eafdd7a49bdea5da81c56044a207316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46a1c935c9228bad738c8a41de06478770927baedf581d172494ab36a6b96575
MD5 79ec135224bb00d477a053986e16e5a9
BLAKE2b-256 d5b3ff225c6d49fba4279de04677c1c876fc3dc6562fd0c53e9bfd66f58c51a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28527e4b53400cd60ffbd9812ccb2b5135d042129716d71afd7e45bf42b855c0
MD5 e263fa0bf8eab87cb8d788aa724b5870
BLAKE2b-256 388ad9edcdcdfe80bade17bed424284427c08bea892aaec11438fa52eaeaf79c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f2611bdb694116c31e551ed82e20e39a90bea9b7ad9e54aaf2d045ad621aa7a1
MD5 94cb5d858a9eeb7259719e66a81694db
BLAKE2b-256 58bde3975cdebe03ec080ef881648de316c73f2a6be95c14fc4efb2f7bdd0d41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07588570a805296ece009c59d9a679dc08fab72fb337365afb4f3a14cfbfc176
MD5 ae504b20ea2fb09a34d40664dd05b470
BLAKE2b-256 f0f96bc15bacfd8dcfc073a1820a564516d9c12a435a9a332d4cbbfd48828ddd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f276a6134fe1fc1daa692642a3eaa2b7b858599c49a7610816388f5e37566a1
MD5 6e038fd6f34ee4f7fcb1668e3a661ce1
BLAKE2b-256 f6a9ec440f02e57beabdfd804725ef1e38ac1ba00c49854d298447562e119513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5042da12e5d97d215f91567110fdfa2e2595a25f17c19b9ff024f31c34f9b53e
MD5 04a9563deb674716079c519adacdf85b
BLAKE2b-256 885231b4deafc1d3cb96d0e7c0af70f0dc05454982d135d07f5117e6336153e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dff5bee1d21ee58277900692a641925d2dddfde65182c972569b1a276d2ac8fb
MD5 809f1124028b219c30799f41f408e067
BLAKE2b-256 325d4b435f0b52ab543967761aca66b84ad3f0026e491e57de47693d15d0a8db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 678f9d76a91d6bcedd7568bbf6beb77ae8447f85d1aeebaab7e2f0829cfc3a13
MD5 df9d442a5cc372d7cba415c5e06f8a31
BLAKE2b-256 564c52d111869610e6b1a46e1f1035abcdc94d0655587e39104433a290e9f377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 248dafb3204136113c383e91a4d815269f51562b6659b756cf3df14eefc7d0bb
MD5 e7fc96e8356dcc5ba09b6c07f21ad93e
BLAKE2b-256 83c31037cb603ef2130c210150a51b1710d86825b5c28df54a55750099f91196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1b974e41adfbb4ebb0f65fc4ca951347b17463d60893ba7d5f7b9bb087c83897
MD5 7f13b3408de5c419180ee4710257d62b
BLAKE2b-256 aa084b8a50733005865efde284fec45da75fe16a258f706e16323c5ace4004eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cec0e75eb61f606bad0a32f2be87507087514e26e8c73db6cbdb8371ccd27917
MD5 5ca732c026237d237b3498fa9b7bf149
BLAKE2b-256 5325cd47df3bfb24350e03835f0950288d1054f1cc9a8023401dabe6d4ff2834

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2757606b7948bb853a27e4040820306eaa0ccb9e8f9f8a0fa40cb674e170f350
MD5 516bfb76bb98bbf47cbd31b35ba2b119
BLAKE2b-256 ea58b1e640b4ca559273cca7c28e0fe8891d5d8e9a600f5ab4882670ec107549

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f2ab7d10d0ab2ed6da54c757233eb0f48ebfb4f86e9b88ccecb3f92bbd61a538
MD5 927e3c508078d780cf21570bf835a2e5
BLAKE2b-256 295050614bd906089904d7ca1be3b9ecf08c00a327143d48f1decfdc21b3c302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b054ef1a78519cb934b58e9c90c09e93b837c935dcd907b891f2b265b129eb6e
MD5 52806deaea6735844232497f677657e7
BLAKE2b-256 98264e677f2b7ec3fbdd10be6b586a82a814c8ebe3e474024c8df2d4260e564e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ab7e594a2a5c24ab8013a7dc8cfe5f2260e80e490685814122081705c2cf2b0
MD5 87677952628b7b4eb347770ce395abd4
BLAKE2b-256 9c5829f12e65b19c1877a0269eb4f23c5d2267eded6120a7d6762501ab843dc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0234236514f44a5bf552105cfe2543a12f48203397d9d0f866affa569345a5b5
MD5 d4649cf09fe201e0504bc41eb10e78f2
BLAKE2b-256 ecb471b2c77e5df527fbbc1a03e72c3fd96c44cd10d4241a81befef8c12b9fc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 241299ca91fc77ef64f11ed909d2d9220a01834e8e6f8de61275c4dd16b7c936
MD5 b88427fd0215d9c9d8eecc25bd5cc658
BLAKE2b-256 e3e7a8694c3454a57842095d69c7a4ab3cf81c3c7b590f052738eabfdfc2e234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e63036298322e9aea1c8b7c0a6c1204d615dbf6ec0668ce5b83ff27f07404a61
MD5 527e444771162070ae85ec396c018f04
BLAKE2b-256 b32ca5c4640dc7132540109f67fe83b566fbc7512ccf2a068cfa22a243df70c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 b5674314987cdde5a5511b029fa5fb1556b3d147a367e01dd583b19cfa8e35df
MD5 06a35f52495adc74e4b381b2f33454b2
BLAKE2b-256 d3c90f68c22ba0cac693326a7de73f04c7543886e0b240e2320f8ced861f0c3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 84d0ff869f98be2e93efdf1ae31e5a15f0926d22af8677d51676e373abbfe57a
MD5 6c02d6ef2bd471a1911659c8c485dd69
BLAKE2b-256 07418964006fd8897df13cb0eec374bda053d1936cbc81315acdd755d85c99d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 30edab28829703f876897c9471a857e43d847b8799c3c9e2fbce644724b50aa4
MD5 3621a45f64949324048b24fab4870a77
BLAKE2b-256 60e806387d852bf67402fb0129b3297aa0c358aa9647e59f795c0965a7bedefe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c8a1af9ac51969a494c6a82b563abae6859dc082d3b999e8fa7ba5ee1b05e8e8
MD5 88f9d16b3e5ea893d31f0759b1961009
BLAKE2b-256 c6dfb8f2ac7fa15479e989d0c2ea88e5e28eeb923096b2462804b9113bce51b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8fa93fadff794c6d15c345c560513b160197342275c6d104cc879f932b978afc
MD5 e2ea016bdc6e567203b13a21c192db7c
BLAKE2b-256 a3992c7010145da82fdd30955c1c0e1e75723ca7aef32b52f2565383fd2347d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 530bbb1347e3e5ca13a91ac087c4971d7da09630ef8febd27a20a10800c2d06d
MD5 ff09d28dcd410deb2c0825fffd76a3ef
BLAKE2b-256 097f027061a060718733a6c016e7d4acc864c8bb69f0092d9b3da7e3888b102f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 055c7931b0329cb8acde20cdde6d9c2cbc2a02a0a8e54a792cddd91e2ea92c65
MD5 52afc85f5c8aa0baf326aca9a85455f5
BLAKE2b-256 fa990d4f031aeddf2cf03a5eb8eafde50147259067716c32174551b786aa72e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b83aaeff0d7bde852c32e856f3ee410842ebc08bc55c510771d87dcd1c01e1ed
MD5 82010b17cb2e62a6ca2c8d3c0a6773c8
BLAKE2b-256 4cdc19d01747082daf3667f952b6deee73e9e63338caa9c61442558cbdf8c876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 666aee751faf1c6864b2db795775dd67b61fdcf646abefa309ed1da039a97209
MD5 663073107f7ecc42cf65442d00cb58c5
BLAKE2b-256 46a8846a8e466edd841c67f11f0ae738ca5c5d87968f6d8630bc449e2e6e11f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d43bf082025082bda13be89a5f876cc2386b7727c7b322be2d2b706a45cea8e
MD5 15ca0d396ca21656e269707c41edf90c
BLAKE2b-256 81a9050595183529316cf95d0f97662a4fe782dbea5f31dba0cf366015b67fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 65a0ea16cfea7bfa9e43604c8bd726e63a3788b61c384c37664b55209fcb1d74
MD5 faab8b689e10769e5e5eb9d7b28332ef
BLAKE2b-256 3a5e791c16d5e2a0b394c2c236f7d2556dbc381f8666bc12db7d35dc051c67e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff548c908caffd9455fd1342366bcf8a1ec8a3fca42f35c7fc60883d6a901074
MD5 82db0876c6f60659cb46303cf240b43d
BLAKE2b-256 396a3b5c2ba43da5380f252b35f7e74851e1379f4935c8bccbbda05992b5fe4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 10ce489cf09a4956a1549af839b983edc59b0f60e1b068c21b10154e58f54f80
MD5 cb18c1f5dd0859d8f4cf98d923551c51
BLAKE2b-256 aad290421a4749f15aa4f06dd1d25a6419b91b181ae7994a4e7c4ed0a6415057

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