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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.41.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.41.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy311macOS 11.0+ ARM64

pydantic_core-2.41.4-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.4-cp314-cp314t-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

pydantic_core-2.41.4-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.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_core-2.41.4-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.4-cp313-cp313t-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

pydantic_core-2.41.4-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.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.41.4-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.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.41.4-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.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.41.4-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.4-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.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.41.4-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.4-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.4-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.4-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.41.4-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.4-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.4-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.4-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.4-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.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.41.4-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.4-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.4-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.4-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.4-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.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.41.4-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.4.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-2.41.4.tar.gz
Algorithm Hash digest
SHA256 70e47929a9d4a1905a67e4b687d5946026390568a8e952b92824118063cee4d5
MD5 4d3d7b8f23f454ca94b8966e3da1eb3e
BLAKE2b-256 df18d0944e8eaaa3efd0a91b0f1fc537d3be55ad35091b6a87638211ba691964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c173ddcd86afd2535e2b695217e82191580663a1d1928239f877f5a1649ef39f
MD5 e3f9630e318b48264424c31b29c0f99d
BLAKE2b-256 48f7925f65d930802e3ea2eb4d5afa4cb8730c8dc0d2cb89a59dc4ed2fcb2d74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5a28fcedd762349519276c36634e71853b4541079cab4acaaac60c4421827308
MD5 fcf328f688f50c8286003df026384c44
BLAKE2b-256 fc8ee4f12afe1beeb9823bba5375f8f258df0cc61b056b0195fb1cf9f62a1a58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 ca4df25762cf71308c446e33c9b1fdca2923a3f13de616e2a949f38bf21ff5a8
MD5 ac1f2b7d9c2c7c62b8cb7ac5c012c148
BLAKE2b-256 edf2ab385dbd94a052c62224b99cf99002eee99dbec40e10006c78575aead256

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 26895a4268ae5a2849269f4991cdc97236e4b9c010e51137becf25182daac405
MD5 975f5675c31cdab1ccd1e821c0948366
BLAKE2b-256 2e0f4f2734688d98488782218ca61bcc118329bf5de05bb7fe3adc7dd79b0b86

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eca1124aced216b2500dc2609eade086d718e8249cb9696660ab447d50a758bd
MD5 156fbfdd82a8b002e18667f7f6180e3c
BLAKE2b-256 d6f9744bc98137d6ef0a233f808bfc9b18cf94624bf30836a18d3b05d08bf418

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c9024169becccf0cb470ada03ee578d7348c119a0d42af3dcf9eda96e3a247c
MD5 cf2994ae5b018b8c24629757ec72a3de
BLAKE2b-256 17c8629e88920171173f6049386cc71f893dff03209a9ef32b4d2f7e7c264bcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54d86c0cada6aba4ec4c047d0e348cbad7063b87ae0f005d9f8c9ad04d4a92a2
MD5 e760f1178173676d3af21b2c23004cdf
BLAKE2b-256 47130525623cf94627f7b53b4c2034c81edc8491cbfc7c28d5447fa318791479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 491535d45cd7ad7e4a2af4a5169b0d07bebf1adfd164b0368da8aa41e19907a5
MD5 864cd638892b3891c3693d242cefbac2
BLAKE2b-256 7e7d138e902ed6399b866f7cfe4435d22445e16fff888a1c00560d9dc79a780f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3619320641fd212aaf5997b6ca505e97540b7e16418f4a241f44cdf108ffb50d
MD5 51ac4b0460b85deed383c1639b06df70
BLAKE2b-256 aa8bb7bb512a4682a2f7fbfae152a755d37351743900226d29bd953aaf870eaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b69d1973354758007f46cf2d44a4f3d0933f10b6dc9bf15cf1356e037f6f731a
MD5 5124e3e7979d3ca446bb831f3f1120e6
BLAKE2b-256 24068a84711162ad5a5f19a88cead37cca81b4b1f294f46260ef7334ae4f24d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4c973add636efc61de22530b2ef83a65f39b6d6f656df97f678720e20de26caa
MD5 71e4b35016ab58001f03102b23ee83bf
BLAKE2b-256 4458627565d3d182ce6dfda18b8e1c841eede3629d59c9d7cbc1e12a03aeb328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6273ea2c8ffdac7b7fda2653c49682db815aebf4a89243a6feccf5e36c18c347
MD5 6c454eb5ec2e78fc65b50c0771cc9832
BLAKE2b-256 0e8065ab839a2dfcd3b949202f9d920c34f9de5a537c3646662bdf2f7d999680

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b2a054a8725f05b4b6503357e0ac1c4e8234ad3b0c2ac130d6ffc66f0e170e2
MD5 2965ceee5c7356cddcc0286367c7ea98
BLAKE2b-256 c4af625626278ca801ea0a658c2dcf290dc9f21bb383098e99e7c6a029fccfc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b0d9db5a161c99375a0c68c058e227bee1d89303300802601d76a3d01f74e258
MD5 c5073914b50dca7fd8855fcff7620332
BLAKE2b-256 20f62fba049f54e0f4975fef66be654c597a1d005320fa141863699180c7697d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d88d0054d3fa11ce936184896bed3c1c5441d6fa483b498fac6a5d0dd6f64a9
MD5 999778e3fa6804da7789009fbe3f5db1
BLAKE2b-256 71f066ec5a626c81eba326072d6ee2b127f8c139543f1bf609b4842978d37833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e5ab4fc177dd41536b3c32b2ea11380dd3d4619a385860621478ac2d25ceb00
MD5 89a467a61824b3cd921e53a54e028cb2
BLAKE2b-256 5dd4912e976a2dd0b49f31c98a060ca90b353f3b73ee3ea2fd0030412f6ac5ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd8a5028425820731d8c6c098ab642d7b8b999758e24acae03ed38a66eca8335
MD5 2373c9021101825c9c71abac915327f5
BLAKE2b-256 2bc6db8d13a1f8ab3f1eb08c88bd00fd62d44311e3456d1e85c0e59e0a0376e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4dab9484ec605c3016df9ad4fd4f9a390bc5d816a3b10c6550f8424bb80b18c
MD5 1d849a45a9d61f448b0cde58251b3a90
BLAKE2b-256 0dc1dd3542d072fcc336030d66834872f0328727e3b8de289c662faa04aa270e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4a9ab037b71927babc6d9e7fc01aea9e66dc2a4a34dff06ef0724a4049629f94
MD5 a2829f927f44f9a3f0ac55e0b69fb670
BLAKE2b-256 5edb6db8073e3d32dae017da7e0d16a9ecb897d0a4d92e00634916e486097961

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4f5d640aeebb438517150fdeec097739614421900e4a08db4a3ef38898798537
MD5 523b0f711424519397f0509993bdc90b
BLAKE2b-256 c448ae937e5a831b7c0dc646b2ef788c27cd003894882415300ed21927c21efa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ed810568aeffed3edc78910af32af911c835cc39ebbfacd1f0ab5dd53028e5c
MD5 97d13ecac1438f9a45dfdbba6c82b328
BLAKE2b-256 2f1d679a344fadb9695f1a6a294d739fbd21d71fa023286daeea8c0ed49e7c2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f184d657fa4947ae5ec9c47bd7e917730fa1cbb78195037e32dcbab50aca5ee
MD5 7346125a84752665d722dbe37ef5249c
BLAKE2b-256 debe57dcaa3ed595d81f8757e2b44a38240ac5d37628bce25fb20d02c7018776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d175600d975b7c244af6eb9c9041f10059f20b8bbffec9e33fdd5ee3f67cdc42
MD5 ca2aa6a85621d564c95a56b1eccfd8f6
BLAKE2b-256 21fb6860126a77725c3108baecd10fd3d75fec25191d6381b6eb2ac660228eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a1b2cfec3879afb742a7b0bcfa53e4f22ba96571c9e54d6a3afe1052d17d843b
MD5 91fe900be29596638a074cdc5756f0b6
BLAKE2b-256 b0125ba58daa7f453454464f92b3ca7b9d7c657d8641c48e370c3ebc9a82dd78

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.4-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 d34f950ae05a83e0ede899c595f312ca976023ea1db100cd5aa188f7005e3ab0
MD5 978aa1228e69038bab4b6d7b683cc2c8
BLAKE2b-256 8aac9fc61b4f9d079482a290afe8d206b8f490e9fd32d4fc03ed4fc698214e01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 de2cfbb09e88f0f795fd90cf955858fc2c691df65b1f21f0aa00b99f3fbc661d
MD5 12be6fec648a22152319f7537e1f6f13
BLAKE2b-256 c73df8c1a371ceebcaf94d6dd2d77c6cf4b1c078e13a5837aee83f760b4f7cfd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5729225de81fb65b70fdb1907fcf08c75d498f4a6f15af005aabb1fdadc19dfa
MD5 18e66e6f388a27c472924040e6c8b4a2
BLAKE2b-256 1e29b53a9ca6cd366bfc928823679c6a76c7a4c69f8201c0ba7903ad18ebae2f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 523e7da4d43b113bf8e7b49fa4ec0c35bf4fe66b2230bfc5c13cc498f12c6c3e
MD5 86628b18bfbb3d8b9cab289422c6670b
BLAKE2b-256 4a07ea8eeb91173807ecdae4f4a5f4b150a520085b35454350fc219ba79e66a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6c1fe4c5404c448b13188dd8bd2ebc2bdd7e6727fa61ff481bcc2cca894018da
MD5 9128d9c29450c057a8df4ed2c0f78588
BLAKE2b-256 0dc2472f2e31b95eff099961fa050c376ab7156a81da194f9edb9f710f68787b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3f1ea6f48a045745d0d9f325989d8abd3f1eaf47dd00485912d1a3a63c623a8d
MD5 89a1a3748505ea01781201cd358b6b0b
BLAKE2b-256 3e6151d89cc2612bd147198e120a13f150afbf0bcb4615cddb049ab10b81b79e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 557a0aab88664cc552285316809cab897716a372afaf8efdbef756f8b890e894
MD5 ecb6b29f8c00a1e52fab59c1376e69bc
BLAKE2b-256 b4dce5aa27aea1ad4638f0c3fb41132f7eb583bd7420ee63204e2d4333a3bbf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 5b66584e549e2e32a1398df11da2e0a7eff45d5c2d9db9d5667c5e6ac764d77e
MD5 cc482040b20d62a796b034a46bd13383
BLAKE2b-256 22aef10524fcc0ab8d7f96cf9a74c880243576fd3e72bd8ce4f81e43d22bcab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6d55fb8b1e8929b341cc313a81a26e0d48aa3b519c1dbaadec3a6a2b4fcad025
MD5 3063f2ebc35c576b0783c0f0357fba57
BLAKE2b-256 2cba6c533a4ee8aec6b812c643c49bb3bd88d3f01e3cebe451bb85512d37f00f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b568af94267729d76e6ee5ececda4e283d07bbb28e8148bb17adad93d025d25a
MD5 812e7ef4681b4e529ad06d1a60d27617
BLAKE2b-256 cabae7c7a02651a8f7c52dc2cff2b64a30c313e3b57c7d93703cecea76c09b71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c4d1e854aaf044487d31143f541f7aafe7b482ae72a022c664b2de2e466ed0ad
MD5 dfd8b36d334add5f8b5b4c82204edd46
BLAKE2b-256 343bccdc77af9cd5082723574a1cc1bcae7a6acacc829d7c0a06201f7886a109

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a44ac1738591472c3d020f61c6df1e4015180d6262ebd39bf2aeb52571b60f12
MD5 47457d937184a9460b0f32a9f82febbd
BLAKE2b-256 92974de0e2a1159cb85ad737e03306717637842c88c7fd6d97973172fb183149

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 31a41030b1d9ca497634092b46481b937ff9397a86f9f51bd41c4767b6fc04af
MD5 201e58eb8a1e9c8eab4bc79229a722f2
BLAKE2b-256 282778814089b4d2e684a9088ede3790763c64693c3d1408ddc0a248bc789126

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e6ab5ab30ef325b443f379ddb575a34969c333004fca5a1daa0133a6ffaad616
MD5 1b7778f2154eb959342c1d89ff162deb
BLAKE2b-256 e9e3a3ffc363bd4287b80f1d43dc1c28ba64831f8dfc237d6fec8f2661138d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b1eb1754fce47c63d2ff57fdb88c351a6c0150995890088b33767a10218eaa4e
MD5 a2eeaa4d251a2f53a763bcefec26bf29
BLAKE2b-256 b0641e79ac7aa51f1eec7c4cda8cbe456d5d09f05fdd68b32776d72168d54275

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fc3b4cc4539e055cfa39a3763c939f9d409eb40e85813257dcd761985a108554
MD5 b53ba5d012fa8af6cea985fe9f05c097
BLAKE2b-256 fba471f759cc41b7043e8ecdaab81b985a9b6cad7cec077e0b92cff8b71ecf6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d72f2b5e6e82ab8f94ea7d0d42f83c487dc159c5240d8f83beae684472864e2d
MD5 2ae54927299842571a3bbadde04147c9
BLAKE2b-256 0f508cb90ce4b9efcf7ae78130afeb99fd1c86125ccdf9906ef64b9d42f37c25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82df1f432b37d832709fbcc0e24394bba04a01b6ecf1ee87578145c19cde12ac
MD5 5f2607c244031a716b89bb5682f53297
BLAKE2b-256 9e24b58a1bc0d834bf1acc4361e61233ee217169a42efbdc15a60296e13ce438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9205d97ed08a82ebb9a307e92914bb30e18cdf6f6b12ca4bedadb1588a0bfe1
MD5 f227b78bc3bc97618e1259350526879f
BLAKE2b-256 5428d3325da57d413b9819365546eb9a6e8b7cbd9373d9380efd5f74326143e6

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.4-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 19f3684868309db5263a11bace3c45d93f6f24afa2ffe75a647583df22a2ff89
MD5 01f55f867db1aac8f8cdc9c37f05123f
BLAKE2b-256 fcdeb20f4ab954d6d399499c33ec4fafc46d9551e11dc1858fb7f5dca0748ceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 d405d14bea042f166512add3091c1af40437c2e7f86988f3915fabd27b1e9cd2
MD5 a9164a25bf4addbcf277ad90cddd7240
BLAKE2b-256 6aeedf8e871f07074250270a3b1b82aad4cd0026b588acd5d7d3eb2fcb1471a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d25e97bc1f5f8f7985bdc2335ef9e73843bb561eb1fa6831fdfc295c1c2061cf
MD5 06cc0819048c98eb19318688adf67890
BLAKE2b-256 07ea3df927c4384ed9b503c9cc2d076cf983b4f2adb0c754578dfb1245c51e46

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a870c307bf1ee91fc58a9a61338ff780d01bfae45922624816878dce784095d2
MD5 2fe0b8ac8d8523a209edff5438979268
BLAKE2b-256 de2dcba1fa02cfdea72dfb3a9babb067c83b9dff0bbcb198368e000a6b756ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ed97fd56a561f5eb5706cebe94f1ad7c13b84d98312a05546f2ad036bafe87f4
MD5 8cc31cd9ba91d4b4314fd6b286935ac5
BLAKE2b-256 360db5706cacb70a8414396efdda3d72ae0542e050b591119e458e2490baf035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 f8e49c9c364a7edcbe2a310f12733aad95b022495ef2a8d653f645e5d20c1564
MD5 70bf01a94f351d6fa71ea5574130127c
BLAKE2b-256 7286c99921c1cf6650023c08bfab6fe2d7057a5142628ef7ccfa9921f2dda1d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d081a1f3800f05409ed868ebb2d74ac39dd0c1ff6c035b5162356d76030736d4
MD5 3a0c343571828eecd5fc006250e81d1d
BLAKE2b-256 bed8fd0de71f39db91135b7a26996160de71c073d8635edfce8b3c3681be0d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ecde6dedd6fff127c273c76821bb754d793be1024bc33314a120f83a3c69460c
MD5 283f27b4fef46afa221602cf4edeec19
BLAKE2b-256 f8035d12891e93c19218af74843a27e32b94922195ded2386f7b55382f904d2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f52679ff4218d713b3b33f88c89ccbf3a5c2c12ba665fb80ccc4192b4608dbab
MD5 49b0ea682f56cfd17a9e543440f16796
BLAKE2b-256 7663a54973ddb945f1bca56742b48b144d85c9fc22f819ddeb9f861c249d5464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 285b643d75c0e30abda9dc1077395624f314a37e3c09ca402d4015ef5979f1a2
MD5 4303cf3b9a23da1499b87401fb2f96dd
BLAKE2b-256 04f7db71fd4cdccc8b75990f79ccafbbd66757e19f6d5ee724a6252414483fb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7b74e18052fea4aa8dea2fb7dbc23d15439695da6cbe6cfc1b694af1115df09d
MD5 6ef4ed7950b39bd3c7c2753b8e49430c
BLAKE2b-256 f97ec8e713db32405dfd97211f2fc0a15d6bf8adb7640f3d18544c1f39526619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1351f5bbdbbabc689727cb91649a00cb9ee7203e0a6e54e9f5ba9e22e384b84
MD5 5580fab984549517fc71de91362fbfd6
BLAKE2b-256 1862273dd70b0026a085c7b74b000394e1ef95719ea579c76ea2f0cc8893736d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d95b253b88f7d308b1c0b417c4624f44553ba4762816f94e6986819b9c273fb2
MD5 8337e386e78496dcc4718dce528518ad
BLAKE2b-256 af8fae4e1ff84672bf869d0a77af24fd78387850e9497753c432875066b5d622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 664b3199193262277b8b3cd1e754fb07f2c6023289c815a1e1e8fb415cb247b1
MD5 ff786a7f3a352c7c6e88ad09908b1e9d
BLAKE2b-256 68de45af3ca2f175d91b96bfb62e1f2d2f1f9f3b14a734afe0bfeff079f78181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de7c42f897e689ee6f9e93c4bec72b99ae3b32a2ade1c7e4798e690ff5246e02
MD5 07c638bf3009e45b3c87b1929e0772f4
BLAKE2b-256 60a424271cc71a17f64589be49ab8bd0751f6a0a03046c690df60989f2f95c2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94dab0940b0d1fb28bcab847adf887c66a27a40291eedf0b473be58761c9799a
MD5 84dbcc307bdf31d1e56840d4cd5eba29
BLAKE2b-256 683e800d3d02c8beb0b5c069c870cbb83799d085debf43499c897bb4b4aaff0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1affa4798520b148d7182da0615d648e752de4ab1a9566b7471bc803d88a062d
MD5 e9f2f4cf20071aed649491710f8dc9e7
BLAKE2b-256 3003cf485fff699b4cdaea469bc481719d3e49f023241b4abb656f8d422189fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7393f1d64792763a48924ba31d1e44c2cfbc05e3b1c2c9abb4ceeadd912cced
MD5 29053eb8f891c87a2fc44ea9f529d96f
BLAKE2b-256 00b60ce5c03cec5ae94cca220dfecddc453c077d71363b98a4bbdb3c0b22c783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85e050ad9e5f6fe1004eec65c914332e52f429bc0ae12d6fa2092407a462c746
MD5 04a2bfec24f1d7e26710b63bf01a887d
BLAKE2b-256 13d0c20adabd181a029a970738dfe23710b52a31f1258f591874fcdec7359845

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 833eebfd75a26d17470b58768c1834dfc90141b7afc6eb0429c21fc5a21dcfb8
MD5 7fa91ee99f7a517d0da2bc5231805c53
BLAKE2b-256 0623936343dbcba6eec93f73e95eb346810fc732f71ba27967b287b66f7b7097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d682cf1d22bab22a5be08539dca3d1593488a99998f9f412137bc323179067ff
MD5 146c43a630ea291babcc1c96273816c1
BLAKE2b-256 1ec249c5bb6d2a49eb2ee3647a93e3dae7080c6409a8a7558b075027644e879c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9be1c01adb2ecc4e464392c36d17f97e9110fbbc906bcbe1c943b5b87a74aabd
MD5 8a75d4bae757137d5bd5a0848a14b910
BLAKE2b-256 b0e535ae4919bcd9f18603419e23c5eaf32750224a89d41a8df1a3704b69f77e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 84d8854db5f55fead3b579f04bda9a36461dab0730c5d570e1526483e7bb8431
MD5 f72bdbf49cacd73edc6773fc05ae374e
BLAKE2b-256 684cc06be6e27545d08b802127914156f38d10ca287a9e8489342793de8aae3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f9672ab4d398e1b602feadcffcdd3af44d5f5e6ddc15bc7d15d376d47e8e19f8
MD5 549d652d9e64a42950311d4991832959
BLAKE2b-256 5270d702ef7a6cd41a8afc61f3554922b3ed8d19dd54c3bd4bdbfe332e610827

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3a95d4590b1f1a43bf33ca6d647b990a88f4a3824a8c4572c708f0b45a5290ed
MD5 6ab41b091050f6c81978229e00b73757
BLAKE2b-256 f41d3d9fca34273ba03c9b1c5289f7618bc4bd09c3ad2289b5420481aa051a99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 98f348cbb44fae6e9653c1055db7e29de67ea6a9ca03a5fa2c2e11a47cff0e47
MD5 e1c3b1718610790d496c592604f0a374
BLAKE2b-256 f08306d001f8043c336baea7fd202a9ac7ad71f87e1c55d8112c50b745c40324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd96e5d15385d301733113bcaa324c8bcf111275b7675a9c6e88bfb19fc05e3b
MD5 429352e40316e5881b562fce10641e5d
BLAKE2b-256 836ac070e30e295403bf29c4df1cb781317b6a9bac7cd07b8d3acc94d501a63c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b9f5f30c402ed58f90c70e12eff65547d3ab74685ffe8283c719e6bead8ef53f
MD5 5789ff11bc898cb985ee828b22b89a1d
BLAKE2b-256 7069dce747b1d21d59e85af433428978a1893c6f8a7068fa2bb4a927fba7a5ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 025ba34a4cf4fb32f917d5d188ab5e702223d3ba603be4d8aca2f82bede432a4
MD5 18185f876c40616debb4638ccc5cf753
BLAKE2b-256 b2a7e5fc60a6f781fc634ecaa9ecc3c20171d238794cef69ae0af79ac11b89d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 304c54176af2c143bd181d82e77c15c41cbacea8872a2225dd37e6544dce9999
MD5 08d05bcbc0a90ec1fe225165c77dabd8
BLAKE2b-256 1e634d948f1b9dd8e991a5a98b77dd66c74641f5f2e5225fee37994b2e07d391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec22626a2d14620a83ca583c6f5a4080fa3155282718b6055c2ea48d3ef35970
MD5 673688fa614629fed375e559ff0655ab
BLAKE2b-256 140ae567c2883588dd12bcbc110232d892cf385356f7c8a9910311ac997ab715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c53ff33e603a9c1179a9364b0a24694f183717b2e0da2b5ad43c316c956901b2
MD5 d041024c8004ba54193a58fd008428f6
BLAKE2b-256 58da46fdac49e6717e3a94fc9201403e08d9d61aa7a770fab6190b8740749047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab06d77e053d660a6faaf04894446df7b0a7e7aba70c2797465a0a1af00fc887
MD5 1f3f532753a20b4f2aa9c3c349930b43
BLAKE2b-256 e981d3b3e95929c4369d30b2a66a91db63c8ed0a98381ae55a45da2cd1cc1288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6cb9cf7e761f4f8a8589a45e49ed3c0d92d1d696a45a6feaee8c904b26efc2db
MD5 adac29337fd4ee33c3113e6f407d362f
BLAKE2b-256 33905c172357460fc28b2871eb4a0fb3843b136b429c6fa827e4b588877bf115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 711156b6afb5cb1cb7c14a2cc2c4a8b4c717b69046f13c6b332d8a0a8f41ca3e
MD5 698419b5d8289e06891cf7b3a811b417
BLAKE2b-256 e09d7c5e24ee585c1f8b6356e1d11d40ab807ffde44d2db3b7dfd6d20b09720e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 09c2a60e55b357284b5f31f5ab275ba9f7f70b7525e18a132ec1f9160b4f1f03
MD5 16215369eb7b2877559fdbc5c6ee8039
BLAKE2b-256 417e6ac90673fe6cb36621a2283552897838c020db343fa86e513d3f563b196f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c19cb355224037c83642429b8ce261ae108e1c5fbf5c028bac63c77b0f8646e
MD5 651cd7eaf54f3e3d4121e56ec689ee16
BLAKE2b-256 9000806efdcf35ff2ac0f938362350cd9827b8afb116cc814b6b75cf23738c7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 37e516bca9264cbf29612539801ca3cd5d1be465f940417b002905e6ed79d38a
MD5 533b6fe8c459c5b573d15898267036c8
BLAKE2b-256 26efe735dd008808226c83ba56972566138665b71477ad580fa5a21f0851df48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7533c76fa647fade2d7ec75ac5cc079ab3f34879626dae5689b27790a6cf5a5c
MD5 837fde0654904203ce9feff044494c36
BLAKE2b-256 befc15d1c9fe5ad9266a5897d9b932b7f53d7e5cfc800573917a2c5d6eea56ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6916b9b7d134bff5440098a4deb80e4cb623e68974a87883299de9124126c2a8
MD5 0f6cfeb244ad576167a0d69a7293b37a
BLAKE2b-256 5f8d17fc5de9d6418e4d2ae8c675f905cdafdc59d3bf3bf9c946b7ab796a992a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a926768ea49a8af4d36abd6a8968b8790f7f76dd7cbd5a4c180db2b4ac9a3a2
MD5 ff44f7afcfeca2d954cfc30f2ee75258
BLAKE2b-256 99bba4584888b70ee594c3d374a71af5075a68654d6c780369df269118af7402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 15dd504af121caaf2c95cb90c0ebf71603c53de98305621b94da0f967e572def
MD5 df3a5513d1938f1a7aba4bd76990a0f8
BLAKE2b-256 5eb978336345de97298cf53236b2f271912ce11f32c1e59de25a374ce12f9cce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef9ee5471edd58d1fcce1c80ffc8783a650e3e3a193fe90d52e43bb4d87bff1f
MD5 9db655b273c979631ff7035679a63b9d
BLAKE2b-256 65f56a66187775df87c24d526985b3a5d78d861580ca466fbd9d4d0e792fcf6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eae547b7315d055b0de2ec3965643b0ab82ad0106a7ffd29615ee9f266a02827
MD5 f5d8241cc98c5ee5a04061c02b696973
BLAKE2b-256 944dd203dce8bee7faeca791671c88519969d98d3b4e8f225da5b96dad226fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5cf90535979089df02e6f17ffd076f07237efa55b7343d98760bde8743c4b265
MD5 8207d3734da8651dad23e6f27257cf1b
BLAKE2b-256 54e703d2c5c0b8ed37a4617430db68ec5e7dbba66358b629cd69e11b4d564367

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61760c3925d4633290292bad462e0f737b840508b4f722247d8729684f6539ae
MD5 09490e4470b420d91e53852e5cc1ad2a
BLAKE2b-256 21f840b72d3868896bfcd410e1bd7e516e762d326201c48e5b4a06446f6cf9e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 28ff11666443a1a8cf2a044d6a545ebffa8382b5f7973f22c36109205e65dc80
MD5 57bf185c19a8120a263414b3f57bad0f
BLAKE2b-256 624cf6cbfa1e8efacd00b846764e8484fe173d25b8dab881e277a619177f3384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a8c2e340d7e454dc3340d3d2e8f23558ebe78c98aa8f68851b04dcb7bc37abdc
MD5 d168787c5f4456c80ff0a85e2dd88ed8
BLAKE2b-256 d6235dd5c1324ba80303368f7569e2e2e1a721c7d9eb16acb7eb7b7f85cb1be2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0cf2a1f599efe57fa0051312774280ee0f650e11152325e41dfd3018ef2c1b57
MD5 1d117759866b8a5720d6851bdae4f439
BLAKE2b-256 28c3a74c1c37f49c0a02c89c7340fafc0ba816b29bd495d1a31ce1bdeacc6085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a26d950449aae348afe1ac8be5525a00ae4235309b729ad4d3399623125b43c9
MD5 87d6784a28447b9c0dbdaa2efdedfc7a
BLAKE2b-256 ea4bc2c9c8f5e1f9c864b57d08539d9d3db160e00491c9f5ee90e1bfd905e644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1cae8851e174c83633f0833e90636832857297900133705ee158cf79d40f03e6
MD5 aa65a875addf28c1cb23704640ff44fa
BLAKE2b-256 cb5d2c0d09fb53aa03bbd2a214d89ebfa6304be7df9ed86ee3dc7770257f41ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e8cd3577c796be7231dcf80badcf2e0835a46665eaafd8ace124d886bab4d700
MD5 45c82892dc473dd16e5335a87344d483
BLAKE2b-256 ae03505020dc5c54ec75ecba9f41119fd1e48f9e41e4629942494c4a8734ded1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dfe3aa529c8f501babf6e502936b9e8d4698502b2cfab41e17a028d91b1ac7b
MD5 bd3f26c69af3e1b6d7855d378bdd4817
BLAKE2b-256 d3818cece29a6ef1b3a92f956ea6da6250d5b2d2e7e4d513dd3b4f0c7a83dfea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62637c769dee16eddb7686bf421be48dfc2fae93832c25e25bc7242e698361ba
MD5 72419c59acbcf1571a985779fa7dcdf8
BLAKE2b-256 2e1caf1e6fd5ea596327308f9c8d1654e1285cc3d8de0d584a3c9d7705bf8a7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1b65077a4693a98b90ec5ad8f203ad65802a1b9b6d4a7e48066925a7e1606706
MD5 2bca74e4022927b9429037f143df237e
BLAKE2b-256 7dd0cdf7d126825e36d6e3f1eccf257da8954452934ede275a8f390eac775e89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e1d778fb7849a42d0ee5927ab0f7453bf9f85eef8887a546ec87db5ddb178945
MD5 d405dbe694925cb8f02442f132fcf559
BLAKE2b-256 f42135adf4a753bcfaea22d925214a0c5b880792e3244731b3f3e6fec0d124f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d55bbac04711e2980645af68b97d445cdbcce70e5216de444a6c4b6943ebcccd
MD5 8f6fdff488d159943c40203e60564bd5
BLAKE2b-256 528c3eb872009274ffa4fb6a9585114e161aa1a0915af2896e2d441642929fe4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca2322da745bf2eeb581fc9ea3bbb31147702163ccbcbf12a3bb630e4bf05e1d
MD5 b78b392ad990949f6998026331162a58
BLAKE2b-256 e337a6a579f5fc2cd4d5521284a0ab6a426cc6463a7b3897aeb95b12f1ba607b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 30a9876226dda131a741afeab2702e2d127209bde3c65a2b8133f428bc5d006b
MD5 e2c03c34bfaa1424cccea4197666a304
BLAKE2b-256 5992b7b0fe6ed4781642232755cb7e56a86e2041e1292f16d9ae410a0ccee5ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2442d9a4d38f3411f22eb9dd0912b7cbf4b7d5b6c92c4173b75d3e1ccd84e36e
MD5 4a213e3389f2827643a6a7fbc07c0404
BLAKE2b-256 a73d9b8ca77b0f76fcdbf8bc6b72474e264283f461284ca84ac3fde570c6c49a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a238dd3feee263eeaeb7dc44aea4ba1364682c4f9f9467e6af5596ba322c2332
MD5 87836a9338ba1dac27f43684bd6a6d7f
BLAKE2b-256 29ee5bda8d960d4a8b24a7eeb8a856efa9c865a7a6cab714ed387b29507dc278

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 3adf61415efa6ce977041ba9745183c0e1f637ca849773afa93833e04b163feb
MD5 a5999cbc2d191fa1896b4fd2356f4e4c
BLAKE2b-256 a26ed80cc4909dde5f6842861288aa1a7181e7afbfc50940c862ed2848df15bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 170ee6835f6c71081d031ef1c3b4dc4a12b9efa6a9540f93f95b82f3c7571ae8
MD5 716ec13e0d43749a10de0f282e0db4ee
BLAKE2b-256 644a36d8c966a0b086362ac10a7ee75978ed15c5f2dfdfc02a1578d19d3802fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 44e7625332683b6c1c8b980461475cde9595eff94447500e80716db89b0da005
MD5 9642ac1dc3783fd399d69c445c9a02a0
BLAKE2b-256 b397ea83b0f87d9e742405fb687d5682e7a26334eef2c82a2de06bfbdc305fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6e0fc40d84448f941df9b3334c4b78fe42f36e3bf631ad54c3047a0cdddc2514
MD5 25b7380a7807287b1b257b42ee499d43
BLAKE2b-256 e73e79783f97024037d0ea6e1b3ebcd761463a925199e04ce2625727e9f27d06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66c529f862fdba70558061bb936fe00ddbaaa0c647fd26e4a4356ef1d6561891
MD5 231c32eb3352e08acfc19ec7a6274f25
BLAKE2b-256 6a0ad26e1bb9a80b9fc12cc30d9288193fbc9e60a799e55843804ee37bd38a9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 df649916b81822543d1c8e0e1d079235f68acdc7d270c911e8425045a8cfc57e
MD5 3b616dd1245c3bc1a697b4c3e9f077c0
BLAKE2b-256 b2ad05d886bc96938f4d31bed24e8d3fc3496d9aea7e77bcff6e4b93127c6de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e04e2f7f8916ad3ddd417a7abdd295276a0bf216993d9318a5d61cc058209166
MD5 b34dbc8b6ed3440d232368577947630d
BLAKE2b-256 4f912507dda801f50980a38d1353c313e8f51349a42b008e63a4e45bf4620562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1e2906efb1031a532600679b424ef1d95d9f9fb507f813951f23320903adbd7
MD5 debcf36935668de75e7af1a952cc49ca
BLAKE2b-256 99c6e974aade34fc7a0248fdfd0a373d62693502a407c596ab3470165e38183c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 692c622c8f859a17c156492783902d8370ac7e121a611bd6fe92cc71acf9ee8d
MD5 e275d9319cf94d6907c4ecbf6b51fe69
BLAKE2b-256 3056c84b638a3e6e9f5a612b9f5abdad73182520423de43669d639ed4f14b011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc3b4c5a1fd3a311563ed866c2c9b62da06cb6398bee186484ce95c820db71cb
MD5 9526aa64198b1190186ef00ad104d7fb
BLAKE2b-256 d966af014e3a294d9933ebfecf11a5d858709014bd2315fa9616195374dd82f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cc8e85a63085a137d286e2791037f5fdfff0aabb8b899483ca9c496dd5797338
MD5 73a9c73cce8129c6330dda013fd72380
BLAKE2b-256 bae563c521dc2dd106ba6b5941c080617ea9db252f8a7d5625231e9d761bc28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 646e76293345954acea6966149683047b7b2ace793011922208c8e9da12b0062
MD5 abf93454282442061885da213f6e195f
BLAKE2b-256 2c36f86d582be5fb47d4014506cd9ddd10a3979b6d0f2d237aa6ad3e7033b3ea

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