Skip to main content

Core functionality for Pydantic validation and serialization

Reason this release was yanked:

corrupted wheel got uploaded

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.41.3-pp310-pypy310_pp73-win_amd64.whl (2.2 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded graalpy312macOS 11.0+ ARM64

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

Uploaded graalpy311macOS 11.0+ ARM64

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

Uploaded CPython 3.14tWindows ARM64

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

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.41.3-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.3-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.3-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.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.41.3-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.3-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.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.41.3-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.3-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.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.41.3-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.3.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-2.41.3.tar.gz
Algorithm Hash digest
SHA256 cdebb34b36ad05e8d77b4e797ad38a2a775c2a07a8fa386d4f6943b7778dcd39
MD5 a6ad2214b164d4fd128002524301fff5
BLAKE2b-256 00e93916abb671bffb00845408c604ff03480dc8dc273310d8268547a37be0fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 83847aa6026fb7149b9ef06e10c73ff83ac1d2aa478b28caa4f050670c1c9a37
MD5 38903be3270051be975302360636bbf8
BLAKE2b-256 ebd791ef73afa5c275962edd708559148e153d95866f8baf96142ab4804da67a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e169371f88113c8e642f7ac42c798109f1270832b577b5144962a7a028bfb0c
MD5 ea33de8111fa3eb592b06647c217955a
BLAKE2b-256 f5017f3e4ed3963113e5e9df8077f3015facae0cd3a65ac5688d308010405a0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 16f216e4371a05ad3baa5aed152eae056c7e724663c2bcbb38edd607c17baa89
MD5 c9474e63790b9e78b172843bad3f7ed9
BLAKE2b-256 9e4eee90dc6c99c8261c89ce1c2311395e7a0432dfc20db1bd6d9be917a92320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 091d3966dc2379e07b45b4fd9651fbab5b24ea3c62cc40637beaf691695e5f5a
MD5 2f99059e1c271ca9d9cfaf3762bf7ca4
BLAKE2b-256 67ba03c5a00a9251fc5fe22d5807bc52cf0863b9486f0086a45094adee77fa0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fce6e6505b9807d3c20476fa016d0bd4d54a858fe648d6f5ef065286410c3da7
MD5 345885cccb86504bac6872de53bc7ff5
BLAKE2b-256 d3898fe254b1725a48f4da1978fa21268f142846c2d653715161afc394e67486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 05974468cff84ea112ad4992823f1300d822ad51df0eba4c3af3c4a4cbe5eca0
MD5 dcd4bb80e02942c02f48756e28bf91ce
BLAKE2b-256 7526eefc7f23167a8060e29fcbb99d15158729ea794ee5b5c11ecc4df73b21c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ecad4d7d264f6df23db68ca3024919a7aab34b4c44d9a9280952863a7a0c5e81
MD5 d271a2d2f0b9a5f3f8c53d74d11f1d18
BLAKE2b-256 ea5dd129794fc3990a49b12963d7cc25afc6a458fe85221b8a78cf46c5f22135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5e67f86ffb40127851dba662b2d0ab400264ed37cfedeab6100515df41ccb325
MD5 c3a1b85ab9eef6e48148b91b1b53dbe3
BLAKE2b-256 1d8414c7ed3428feb718792fc2ecc5d04c12e46cb5c65620717c6826428ee468

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 cb82cd643a2ad7ebf94bdb7fa6c339801b0fe8c7920610d6da7b691647ef5842
MD5 9fc2b062bdd28bd8df50318a2c1cf11e
BLAKE2b-256 45996b10a391feb74d2ff21b5597a632f7f9ad50afe3a9bfe1de0a1b10aee0cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d4ebfa1864046c44669cd789a613ec39ee194fe73842e369d129d716730216d9
MD5 45d58140d15d0a581c0cf78103f156ac
BLAKE2b-256 cb5c61cb3ad96dcba2fe4c5a618c9ad30661077da22fdae190c4aefbee5a1cc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 005bf20e48f6272803de8ba0be076e5bd7d015b7f02ebcc989bc24f85636d1d8
MD5 859763e29badbc979508469b7dccb69a
BLAKE2b-256 f0fd550a234486e69682311f060be25c2355fd28434d4506767a729a7902ee2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e2135eff48d3b6a2abfe7b26395d350ea76a460d3de3cf2521fe2f15f222fa29
MD5 2c7d6650be446daa33ce2326dca29384
BLAKE2b-256 b8ed6c39d1ba28b00459baa452629d6cdf3fbbfd40d774655a6c15b8af3b7312

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79d9a98a80309189a49cffcd507c85032a2df35d005bd12d655f425ca80eec3d
MD5 1089be1c9baa7ad2c6810c551ffcdb9f
BLAKE2b-256 38b444a6ce874bc629a0a4a42a0370955ff46b2db302bfcd895d69b28e73372a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 20f7d53153eb2a5c2f7a8cccf1a45022e2b75668cad274f998b43313da03053d
MD5 d52f2bf0efba111015e7aa7c37760722
BLAKE2b-256 a15f1bf4ad96b1679e0889c21707c767f0b2a5910413b2587ea830eee620c74c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 21d4e730b75cfc62b3e24261030bd223ed5f867039f971027c551a7ab911f460
MD5 22ea52eb9815e7f70bdc196a8cc548fa
BLAKE2b-256 bf94683a4efcbd1c890b88d6898a46e537b443eaf157bf78fb44f47a2474d47a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 219a95d7638c6b3a50de749747afdf1c2bdf027653e4a3e1df2fefa1e238d8eb
MD5 0506b7329fd7b8a671c278d4bed12d6a
BLAKE2b-256 613992380b350c0f22ae2c8ca11acc8b45ac39de55b8b750680459527e224d86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88461e25f62e58db4d8b180e2612684f31b5844db0a8f8c1c421498c97bc197b
MD5 72c2d24068680acc6387c142cfe40682
BLAKE2b-256 590ecb30ad2a0147cc7763c0c805ee1c534f6ed5d5db7bc8cf8ebaf34b4c9dab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb3c63f4014a603caee687cd5c3c63298d2c8951b7acb2ccd0befbf2e1c0b8ad
MD5 633e1ae9451ae9500137dd22ed46abd6
BLAKE2b-256 3e5da3f509f682818ded836bd006adce08d731d81c77694a26a0a1a448f3e351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43abc869cce9104ff35cb4eff3028e9a87346c95fe44e0173036bf4d782bdc3d
MD5 b76bd2bfb0991e4609935cf6a9b74d4c
BLAKE2b-256 4438e136a52ae85265a07999439cd8dcd24ba4e83e23d61e40000cd74b426f19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a6ded5abbb7391c0db9e002aaa5f0e3a49a024b0a22e2ed09ab69087fd5ab8a8
MD5 869d3e1ced7d88e81483dd78319c7da7
BLAKE2b-256 68e6a41dec3d50cfbd7445334459e847f97a62c5658d2c6da268886928ffd357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5e01519c8322a489167abb1aceaab1a9e4c7d3e665dc3f7b0b1355910fcb698
MD5 07e492afdd389a942fe3745e0c68b28d
BLAKE2b-256 4c98799db4be56a16fb22152c5473f806c7bb818115f1648bee3ac29a7d5fb9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12019e3a4ded7c4e84b11a761be843dfa9837444a1d7f621888ad499f0f72643
MD5 7aa9f494f4c467a9a781cbc7767f653e
BLAKE2b-256 7fd35e69eba2752a47815adcf9ff7fcfdb81c600b7c87823037d8e746db835cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 539b1c01251fbc0789ad4e1dccf3e888062dd342b2796f403406855498afbc36
MD5 16b9b32a627905eef711daa97598fdd5
BLAKE2b-256 007dd9c6d70571219d826381049df60188777de0283d7f01077bfb7ec26cb121

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 98ad9402d6cc194b21adb4626ead88fcce8bc287ef434502dbb4d5b71bdb9a47
MD5 35afa240de9246fd2c0985d0fc24ebae
BLAKE2b-256 807c837dc1d5f09728590ace987fcaad83ec4539dcd73ce4ea5a0b786ee0a921

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 b387f08b378924fa82bd86e03c9d61d6daca1a73ffb3947bdcfe12ea14c41f68
MD5 539ddf38afe8abbbe1472e71935b1e9a
BLAKE2b-256 6bf6c6f3b7244a2a0524f4a04052e3d590d3be0ba82eb1a2f0fe5d068237701e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2a7dd8a6f5a9a2f8c7f36e4fc0982a985dbc4ac7176ee3df9f63179b7295b626
MD5 e02b1b691d093bd07b925c9b92862712
BLAKE2b-256 a6c85b12e5a36410ebcd0082ae5b0258150d72762e306f298cc3fe731b5574ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 984ca0113b39dda1d7c358d6db03dd6539ef244d0558351806c1327239e035bf
MD5 451e6cc7dfd88d68f36c5f5a1a37d7fe
BLAKE2b-256 8bf47ab918e35f55e7beee471ba8c67dfc4c9c19a8904e4867bfda7f9c76a72e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1fe4ebd676c158a7994253161151b476dbbef2acbd2f547cfcfdf332cf67cc29
MD5 23e5d091e9cd15a72bd087edff9f5ed0
BLAKE2b-256 99f85c9d0959e0e1f260eea297a5ecc1dc29a14e03ee6a533e805407e8403c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b4be10152098b43c093a4b5e9e9da1ac7a1c954c1934d4438d07ba7b7bcf293
MD5 e9cc1a15885fad7897804e2a2ec8f73a
BLAKE2b-256 b5eb45f9a91f8c09f4cfb62f78dce909b20b6047ce4fd8d89310fcac5ad62e54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 54534eecbb7a331521f832e15fc307296f491ee1918dacfd4d5b900da6ee3332
MD5 e02519b61ef52551d24f9c5c9ce57832
BLAKE2b-256 7761c9f2791d7188594f0abdc1b7fe8ec3efc123ee2d9c553fd3b6da2d9fd53d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e1c133e3447c2f6d95e47ede58fff0053370758112a1d39117d0af8c93584049
MD5 f882bad26893665406fdc2a66f3d1e6f
BLAKE2b-256 16ca2cd8515584b3d665ca3c4d946364c2a9932d0d5648694c2a10d273cde81c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 69297795efe5349156d18eebea818b75d29a1d3d1d5f26a250f22ab4220aacd6
MD5 6f09eae2384ecec7735a2a0d0c4906b5
BLAKE2b-256 67d2476d4bc6b3070e151ae920167f27f26415e12f8fcc6cf5a47a613aba7267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5253835aa145049205a67056884555a936f9b3fea7c3ce860bff62be6a1ae4d1
MD5 fa8029c9da1459b693b71d360933f094
BLAKE2b-256 516c20aabe3c32888fb13d4726e405716fed14b1d4d1d4292d585862c1458b7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 287cbcd3407a875eaf0b1efa2e5288493d5b79bfd3629459cf0b329ad8a9071a
MD5 d5fd8d790c59cc9d716b9dc2be846e5e
BLAKE2b-256 5f92c27c1f3edd06e04af71358aa8f4d244c8bc6726e3fb47e00157d3dffe66f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cb4f40c93307e1c50996e4edcddf338e1f3f1fb86fb69b654111c6050ae3b081
MD5 3517e54140e6d912b651a9dc2ba70863
BLAKE2b-256 cd46a7f7e17f99ee691a7d93a53aa41bf7d1b1d425945b6e9bc8020498a413e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c0d7e1a9f80f00a8180b9194ecef66958eb03f3c3ae2d77195c9d665ac0a61e
MD5 e5108a6395dfa8075c1427a50a613291
BLAKE2b-256 233d915b90eb0de93bd522b293fd1a986289f5d576c72e640f3bb426b496d095

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8e0c81dc047c18059410c959a437540abcefea6a882d6e43b9bf45c291eaacd9
MD5 99c18c2f32ad566daca9a5cbc766145e
BLAKE2b-256 1a2c64233c77410e314dbb7f2e8112be7f56de57cf64198a32d8ab3f7b74adf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6a24c82674a3a8e7f7306e57e98219e5c1cdfc0f57bc70986930dda136230b2
MD5 98f8efc69a8db71bcd4fb5db1ad4c8e7
BLAKE2b-256 c397a84ea9cb7ba4dbfd43865e5dd536b22c78ee763d82d501c6f6a553403c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6212874118704e27d177acee5b90b83556b14b2eb88aae01bae51cd9efe27019
MD5 d0243935e0c97e2fc23da8ab8f5996cb
BLAKE2b-256 15b18a84b55631a45375a467df288d8f905bec0abadb1e75bce3b32402b49733

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af10c78f0e9086d2d883ddd5a6482a613ad435eb5739cf1467b1f86169e63d91
MD5 e812ec7667dd7f8f12e2176ac92b1906
BLAKE2b-256 718dc9d8cad7c02d63869079fb6fb61b8ab27adbeeda0bf130c684fe43daa126

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2868fabfc35ec0738539ce0d79aab37aeffdcb9682b9b91f0ac4b0ba31abb1eb
MD5 72994b965f3fd9d8f1000b9c22c131dd
BLAKE2b-256 4d25a65665caa86e496e19feef48e6bd9263c1a46f222e8f9b0818f67bd98dc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 32be442a017e82a6c496a52ef5db5f5ac9abf31c3064f5240ee15a1d27cc599e
MD5 b40d46055d138dd4609733a280b1d987
BLAKE2b-256 de285bcb3327b3777994633f4cb459c5dc34a9cbe6cf0ac449d3e8f1e74bdaaa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0c77e8e72344e34052ea26905fa7551ecb75fc12795ca1a8e44f816918f4c718
MD5 0a648914a7d008380ab892e42e2110b9
BLAKE2b-256 f1d8db32fbced75853c1d8e7ada8cb2b837ade99b2f281de569908de3e29f0bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 f06a9e81da60e5a0ef584f6f4790f925c203880ae391bf363d97126fd1790b21
MD5 bd95d142e62a92b693f53ff1711b14c5
BLAKE2b-256 497f07e7f19a6a44a52abd48846e348e11fa1b3de5ed7c0231d53f055ffb365f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 ce7d8f4353f82259b55055bd162bbaf599f6c40cd0c098e989eeb95f9fdc022f
MD5 cd391cc1bc38f553592a959d7fb4fc16
BLAKE2b-256 dbb45f2b0cf78752f9111177423bd5f2bc0815129e587c13401636b8900a417e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 91be4756e05367ce19a70e1db3b77f01f9e40ca70d26fb4cdfa993e53a08964a
MD5 347dce6578cf128c60a0797cb1f48070
BLAKE2b-256 3487ec610a7849561e0ef7c25b74ef934d154454c3aac8fb595b899557f3c6ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5cb19f36253152c509abe76c1d1b185436e0c75f392a82934fe37f4a1264449
MD5 eabe4cfce02a0579fddb11840f49b228
BLAKE2b-256 9973336a82910c6a482a0ba9a255c08dcc456ebca9735df96d7a82dffe17626a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef37228238b3a280170ac43a010835c4a7005742bc8831c2c1a9560de4595dbe
MD5 4c8112f25f784ccbfaa109ca74b7e3e4
BLAKE2b-256 506845842628ccdb384df029f884ef915306d195c4f08b66ca4d99867edc6338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 59aeed341f92440d51fdcc82c8e930cfb234f1843ed1d4ae1074f5fb9789a64b
MD5 fb713f7c0ecbaa992699ffc83ced17aa
BLAKE2b-256 fd753d9ba041a3fcb147279fbb37d2468efe62606809fec97b8de78174335ef4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 44af3276c0c2c14efde6590523e4d7e04bcd0e46e0134f0dbef1be0b64b2d3e3
MD5 725025aef107744723b1c9e2548b09ac
BLAKE2b-256 1f4b6dac37c3f62684dc459a31623d8ae97ee433fd68bb827e5c64dd831a5087

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 edfe9b4cee4a91da7247c25732f24504071f3e101c050694d18194b7d2d320bf
MD5 aec4158124c25737967596af0f289d88
BLAKE2b-256 151f86a6948408e8388604c02ffde651a2e39b711bd1ab6eeaff376094553a10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b5ff0467a8c1b6abb0ab9c9ea80e2e3a9788592e44c726c2db33fdaf1b5e7d0b
MD5 d8ffd4e777a9e5427674aee9dafc376a
BLAKE2b-256 2350f0fce3a9a7554ced178d943e1eada58b15fca896e9eb75d50244fc12007c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d5099f1b97e79f0e45cb6a236a5bd1a20078ed50b1b28f3d17f6c83ff3585baa
MD5 5e68cc2152e663aa7dbd5690b7900897
BLAKE2b-256 4eaef872198cffc8564f52c4ef83bcd3e324e5ac914e168c6b812f5ce3f80aab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b1d9699a4dae10a7719951cca1e30b591ef1dd9cdda9fec39282a283576c0241
MD5 eb6b115f2aae5e84577d31acdb42d54c
BLAKE2b-256 7d317b70c2d1fe41f450f8022f5523edaaea19c17a2d321fab03efd03aea1fe8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41c38700094045b12c0cff35c8585954de66cf6dd63909fed1c2e6b8f38e1e1e
MD5 0b7cf1f8639f7655f77b5bb19754b9d5
BLAKE2b-256 0fbe7c2563b53b71ff3e41950b0ffa9eeba3d702091c6d59036fff8a39050528

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd0d26f1e4335d5f84abfc880da0afa080c8222410482f9ee12043bb05f55ec8
MD5 5a76e4a33c267289e05df24044e05b23
BLAKE2b-256 72b193a36aa119b70126f3f0d06b6f9a81ca864115962669d8a85deb39c82ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6ea2102958eb5ad560d570c49996e215a6939d9bffd0e9fd3b9e808a55008cc
MD5 40bd363adbc90be1ef2aa0e1ae014c05
BLAKE2b-256 c8620abd59a7107d1ef502b9cfab68145c6bb87115c2d9e883afbf18b98fe6db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3c50eba144add9104cf43ef9a3d81c37ebf48bfd0924b584b78ec2e03ec91daf
MD5 b4a80c5bd87c4b88de4a81cd53a7a3f6
BLAKE2b-256 3bfeda942ae51f602173556c627304dc24b9fa8bd04423bce189bf397ba0419e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36388958d0c614df9f5de1a5f88f4b79359016b9ecdfc352037788a628616aa2
MD5 d5f69bbb41706201d891f5b6ef5313a0
BLAKE2b-256 4cfccbd1caa19e88fd64df716a37b49e5864c1ac27dbb9eb870b8977a584fa42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4061cc82d7177417fdb90e23e67b27425ecde2652cfd2053b5b4661a489ddc19
MD5 544adba49c600b2d84b39edace2da3df
BLAKE2b-256 baac2394004db9f6e03712c1e52f40f0979750fa87721f6baf5f76ad92b8be46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 624503f918e472c0eed6935020c01b6a6b4bcdb7955a848da5c8805d40f15c0f
MD5 5386a9e34f7380148f9ba9f8d882f3d7
BLAKE2b-256 84d72d15cb9dfb9f94422fb4a8820cbfeb397e3823087c2361ef46df5c172000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a8596700fdd3ee12b0d9c1f2395f4c32557e7ebfbfacdc08055b0bcbe7d2827e
MD5 d467a59aac57e2788d0ba04693ec5fb0
BLAKE2b-256 9fa67533cba20b8b66e209d8d2acbb9ccc0bc1b883b0654776d676e02696ef5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 347a23094c98b7ea2ba6fff93b52bd2931a48c9c1790722d9e841f30e4b7afcd
MD5 eef79e58a8a16141526a9b3117f763d1
BLAKE2b-256 751d7637f6aaafdbc27205296bde9843096bd449192986b5523869444f844b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 248a5d1dac5382454927edf32660d0791d2df997b23b06a8cac6e3375bc79cee
MD5 0c4d528d237afc955cb9b83da115a6fd
BLAKE2b-256 24fc05bb0249782893b52baa7732393c0bac9422d6aab46770253f57176cddba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 668fcb317a0b3c84781796891128111c32f83458d436b022014ed0ea07f66e1b
MD5 bcb3a7d4a256041a4cfb909fea808675
BLAKE2b-256 02c4b617e33c3b6f4a99c7d252cc42df958d14627a09a1a935141fb9abe44189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 40db5705aec66371ca5792415c3e869137ae2bab48c48608db3f84986ccaf016
MD5 383a34d95f72ea0cd333e51ac7a970d5
BLAKE2b-256 e9ea7d8eba2c37769d8768871575be449390beb2452a2289b0090ea7fa63f920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c58c5acda77802eedde3aaf22be09e37cfec060696da64bf6e6ffb2480fdabd0
MD5 fb08c878beb74519c0f55e34095803e8
BLAKE2b-256 7c16efe252cbf852ebfcb4978820e7681d83ae45c526cbfc0cf847f70de49850

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 86ffbf5291c367a56b5718590dc3452890f2c1ac7b76d8f4a1e66df90bd717f6
MD5 9825429baf73d609cf0c5b95e8374989
BLAKE2b-256 e923b8a82253736f2efd3b79338dfe53866b341b68868fbce7111ff6b040b680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 485398dacc5dddb2be280fd3998367531eccae8631f4985d048c2406a5ee5ecc
MD5 b3362c1889a670a2c934028a8d6a06e0
BLAKE2b-256 a3131b0dd34fce51a746823a347d7f9e02c6ea09078ec91c5f656594c23d2047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d699904cd13d0f509bdbb17f0784abb332d4aa42df4b0a8b65932096fcd4b21
MD5 4fe8b6619a97e6c3b4786de39527b51d
BLAKE2b-256 5bcd384988d065596fafecf9baeab0c66ef31610013b26eec3b305a80ab5f669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16f80f366472eb6a3744149289c263e5ef182c8b18422192166b67625fef3c50
MD5 799ec903ff814d5565a5dbafea247f2b
BLAKE2b-256 7fd39d14041f0b125a5d6388957cace43f9dfb80d862e56a0685dde431a20b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fc836eb8561f04fede7b73747463bd08715be0f55c427e0f0198aa2f1d92f913
MD5 e9f831f462300cb0cd9cd163544c3861
BLAKE2b-256 cd5d1adbfa682a56544d70b42931f19de44a4e58a4fc2152da343a2fdfd4cad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9af9a9ae24b866ce58462a7de61c33ff035e052b7a9c05c29cf496bd6a16a63f
MD5 e5cf5623c3b051480f50e643aad8deba
BLAKE2b-256 99ba0231b5dde6c1c436e0d58aed7d63f927694d92c51aff739bf692142ce6e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6dfe0898272bf675941cd1ea701677341357b77acadacabbd43d71e09763dceb
MD5 3a43083146c4b248a03e68681a54abf8
BLAKE2b-256 29a60f8d6d67d917318d842fe8dba2489b0c5989ce01fc1ed58bf204f80663df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 446361e93f4ffe509edae5862fb89a0d24cbc8f2935f05c6584c2f2ca6e7b6df
MD5 97eaf187636ea7e95ee56b6319afbfe1
BLAKE2b-256 53641717c7c5b092c64e5022b0d02b11703c2c94c31d897366b6c8d160b7d1de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7bdc8b70bc4b68e4d891b46d018012cac7bbfe3b981a7c874716dde09ff09fd5
MD5 96e4163a1d1e1482d079bd09f4385aa4
BLAKE2b-256 20113149cae2a61ddd11c206cde9dab7598a53cfabe8e69850507876988d2047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 5dd40bb57cdae2a35e20d06910b93b13e8f57ffff5a0b0a45927953bad563a03
MD5 94f2ed3da97e5bafdace042769f4413f
BLAKE2b-256 f4e32166b56df1bbe92663b8971012bf7dbd28b6a95e1dc9ad1ec9c99511c41e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c0178ad5e586d3e394f4b642f0bb7a434bcf34d1e9716cc4bd74e34e35283152
MD5 2993eb9f65c0bd0bcec6e0b36d28cbca
BLAKE2b-256 1ba7703a31dc6ede00b4e394e5b81c14f462fe5654d3064def17dd64d4389a1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 75428ae73865ee366f159b68b9281c754df832494419b4eb46b7c3fbdb27756c
MD5 892fea649a1ab731a38049364f854f14
BLAKE2b-256 1793126ac22c310a64dc24d833d47bd175098daa3f9eab93043502a2c11348b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 60110fe616b599c6e057142f2d75873e213bc0cbdac88f58dda8afb27a82f978
MD5 e69f2d296ca4bc089f2394a33fb4271d
BLAKE2b-256 53b9271298376dc561de57679a82bf4777b9cf7df23881d487b17f658ef78eab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 98c54e5ad0399ac79c0b6b567693d0f8c44b5a0d67539826cc1dd495e47d1307
MD5 b8170b93a606f2bfad56bf6675ad71af
BLAKE2b-256 1c08453385212db8db39ed0b6a67f2282b825ad491fed46c88329a0b9d0e543e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 971efe83bac3d5db781ee1b4836ac2cdd53cf7f727edfd4bb0a18029f9409ef2
MD5 f5077175f60a60216567a7e2f7b8746d
BLAKE2b-256 98cf6fbbd67d0629392ccd5eea8a8b4c005f0151c5505ad22f9b1ff74d63d9f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8741b0ab2acdd20c804432e08052791e66cf797afa5451e7e435367f88474b0b
MD5 c9dc1180ea43571c00367187a21cf44f
BLAKE2b-256 4ff92a3fb1e3b5f47754935a726ff77887246804156a029c5394daf4263a3e88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3cbcad992c281b4960cb5550e218ff39a679c730a59859faa0bc9b8d87efbe6a
MD5 c4f8bac450aa0b7a956b785a42f0fc00
BLAKE2b-256 e31787873bb56e5055d1aadfd84affa33cbf164e923d674c17ca898ad53db08e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7be34f5217ffc28404fc0ca6f07491a2a6a770faecfcf306384c142bccd2fdb4
MD5 98ef71f079168e0849a491dba0e0e4eb
BLAKE2b-256 2655e351b6f51c6b568a911c672c8e3fd809d10f6deaa475007b54e3c0b89f0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 351b2c5c073ae8caaa11e4336f8419d844c9b936e123e72dbe2c43fa97e54781
MD5 5e55965c33ca44c6fcbea17750dbee43
BLAKE2b-256 55b9fecd085420a500acbf3bfc542d2662f2b37497f740461b5e960277f199f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d986b1defbe27867812dc3d8b3401d72be14449b255081e505046c02687010a
MD5 86fb03a8e8ec854ca18cbe450d523846
BLAKE2b-256 90ca893c63b84ca961d81ae33e4d1e3e00191e29845a874c7f4cc3ca1aa61157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ac3ba94f3be9437da4ad611dacd356f040120668c5b1733b8ae035a13663c48
MD5 30b519c6bf8a6bb15b0d3750b984ef93
BLAKE2b-256 78acd66c1048fcd60e995913809f9e3fcca1e6890bc3588902eab9ade63aa6d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e301551c63d46122972ab5523a1438772cdde5d62d34040dac6f11017f18cc5d
MD5 67bf6a40f375ae3a08d3fe1482e41777
BLAKE2b-256 4305362832ea8b890f5821ada95cd72a0da1b2466f88f6ac1a47cf1350136722

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91dfe6a6e02916fd1fb630f1ebe0c18f9fd9d3cbfe84bb2599f195ebbb0edb9b
MD5 9e92ef37f9da8bc949448d50933c0849
BLAKE2b-256 4760f7291e1264831136917e417b1ec9ed70dd64174a4c8ff4d75cad3028aab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6d972c97e91e294f1ce4c74034211b5c16d91b925c08704f5786e5e3743d8a20
MD5 fbf20d2e6a2da413e0899c5ffb7bc537
BLAKE2b-256 37298d16b6f88284fe46392034fd20e08fe1228f5ed63726b8f5068cc73f9b46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b0947cd92f782cfc7bb595fd046a5a5c83e9f9524822f071f6b602f08d14b653
MD5 9fb9da1d8db2d9393603b0219c921115
BLAKE2b-256 360878ad17af3d19fc25e4f0e2fc74ddb858b5c7da3ece394527d857b475791d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 91a38e48cdcc17763ac0abcb27c2b5fca47c2bc79ca0821b5211b2adeb06c4d0
MD5 95b7072dc259c40ecceaf911f144f0b1
BLAKE2b-256 9678714aef0f059922ed3bfedb34befad5049ac78899a7a3bad941b19a28eadf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c32474bb2324b574dc57aea40cb415c8ca81b73bc103f5644a15095d5552df8f
MD5 7b0877349d71e2d03c4a089df9f8a242
BLAKE2b-256 8addda4bc82999b9e1c8f650c8b2d223ff343a369fbe3a1bcb574b48093f4e07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 45b445c09095df0d422e8ef01065f1c0a7424a17b37646b71d857ead6428b084
MD5 21fa4608e9b387d07c9cc19827dca092
BLAKE2b-256 2f79beb0030df8526d90667a94bdee5323b9a0063fbf3c5099693fddf478b434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7528ff51a26985072291c4170bd1f16f396a46ef845a428ae97bdb01ebaee7f4
MD5 95608f6d1623880402671b0031b47a6e
BLAKE2b-256 f5b45949e8df13a19ecc954a92207204d87fe0af5ccb6a31f7c6308d0c810221

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8f7d4504d7bdce582a2700615d52dbe5f9de4ffab4815431f6da7edf5acc1329
MD5 ab12b5fe1b08d20bae61388f9927868f
BLAKE2b-256 a5928e65785a723594d4661d559c2d1fca52827f31f32b35b8944794d80da8f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0a1e90642dd6040cfcf509230fb1c3df257f7420d52b5401b3ce164acb0a342
MD5 72f84e3a89a9955138ca240cb02661ad
BLAKE2b-256 188a6877045de472cc3333c02f5a782fca6440ca0e012bea9a76b06093733979

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 947e1c5e79c54e313742c9dc25a439d38c5dcfde14f6a9a9069b3295f190c444
MD5 13da3e620d12188b95137510dd261e99
BLAKE2b-256 905c59a2a215ef344e08d3366a05171e0acdc33edc8584e5c22cb968f26598bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4aa5a2327538f6b3c040604618cd36a960224ad7c22be96717b444c269f1a8b2
MD5 b41c0dc598fb6171e8d7a79a522e4832
BLAKE2b-256 62cb592daea1d54b935f1f6c335d3c1db3c73207b834ce493fc82042fdb827e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 21b3a07248e481c06c4f208c53402fc143e817ce652a114f0c5d2acfd97b8b91
MD5 e3fb9148b6247823730f3846ed62103c
BLAKE2b-256 fe8cba844701bf42418dcc9acd0f3e2d239f6f13fa2aba23c5fd3afdbb955a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63d787ea760052585c6bfc34310aa379346f2cec363fe178659664f80421804b
MD5 c63ecbdd5f9d42b524cea8bd9b533241
BLAKE2b-256 607d7ac0e48368c67c1ce3b34ceae1949c780381ad45ae3662f4e63a3d9a1a51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1a572d7d06b9fa6efeec32fbcd18c73081af66942b345664669867cf8e69c7b0
MD5 8c3d69254d5450247befb4e86c6b167d
BLAKE2b-256 79018346969d4eef68f385a7cf6d9d18a6a82129177f2ac9ea36cc2cec4a7b3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2de13998e396d556c17065d7847e03f6c1ce6210eb1719a778a25425284f1a17
MD5 47964a0126a0c2eaef39f151e19243b7
BLAKE2b-256 dd211c6fd14352be479806411563942237aec7e0c727b4932370c8be47787f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8c8f7cae4451a7e83d781bd862c43b3591ede41b6d6adc5dead81300c3e0fbae
MD5 9dca87689453664ec2dd0e6090ca55a5
BLAKE2b-256 10c2419cc20cf287c20da48cefcb74c491a0da3e1376dcb286067a958d4dd996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 92d96bb0abce0ce71f90845ad25b5521fbf8ce6e5589f4937cb047e4f5a36c76
MD5 03de8f41676b1b914e74874502716cc2
BLAKE2b-256 f645c353f8465c21506e9ec7a49be312de81633dfc494d50c694ff03fa7e2342

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 cb13d215db8cb0f601227785f6d32c577387253ba3a47cbef72e7c6c93c13023
MD5 8871d132534254ac4e50f0703d5853be
BLAKE2b-256 35a5ca9a232c1b6529b38595790f67c8b9b2f8c9834b1c4df6f107ac2c033513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7c1010c4d2cc10703da089543c38909aa832656ffb85cd31dc3e3d73362e0249
MD5 28f8f6c2a2797b588c207102b61f06c2
BLAKE2b-256 03d3da2cacf5c3f5bf2021635c2522380f1b387a8b64447fa3815db66ca90051

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbcc6bbcc83979b82fc1642dafd94b07c49f9b8e3b1df625f1c1aa676f952e48
MD5 a2ee8a1a40957be3406e687661ecbd1b
BLAKE2b-256 d5e75aeafab2b7bfde3650e67a7b2a9f98f0ea86caf8cf169e7260e8f624777c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 95da6803d101b5c35e4ea80f44da5ba5422f6695690570d7cc15f04a12ca4e33
MD5 f78ce29ae3cc024dd05b67583b1d5f9c
BLAKE2b-256 06b86ab1c1c3f85fb83fa4092d799a4f07df7b440efba834106f254449f19deb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18dd9a88bc1017bea142a4936de1a32aec9723f13d6cb434bd2aeec23208143a
MD5 8376221223628987ca9a5c923f622b06
BLAKE2b-256 71deeaae5c8e11d7abd800bcaccf2de0bdc455c19f0b68276147db3b56c37ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 503923874b5496b0a7d6479f481e02342771c1561e96c1e28b97a5ad056e55e9
MD5 533ecd605225082c37e3a1b53c3622bf
BLAKE2b-256 c3429a37cd33e7ea2b0be8e3f5bac55476c375736566d7d4bf2bc9083022b115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7f96e6fc3ab59e1ba1132f3105be9b8b7f80d071c73f7e8d2e1f594cbb64907
MD5 7b111a2739a65c83b118aceca3be8370
BLAKE2b-256 392a8279d703d66cbb05d2567e5192d7109bd6e70b5ff584e1a5ed9fd58bd9b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 70c01c179e1a786af804b93e3eb7506cd818744bff8cf9e3cda0d8bbb2d12204
MD5 fb2ced2b36181723a8564f4abb64a76c
BLAKE2b-256 fb9c98a5eda9df7f2976a5caa940c3e202a90caf4acf876a9263bf0809999e77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99b17a3ed3b8bf769815c782710e520b9b4efcede14eeea71ef57a2a16870ec9
MD5 65012ce0823ef8104dbee2e961b3b073
BLAKE2b-256 5b0e5a9bc1ce846b3a8000dd71a42432dfde570d34815a1f0ede2a4060e506ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.3-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 267b64a4845471c33f12155140d7449643c0c190b5ae3be6a7a3c04461ac494b
MD5 bf5c5a68e4192ce8736b7176db9ed6a5
BLAKE2b-256 5ed80bdf926edd2c86c828dbb29c715b16e36970acac2413b8b2852558aa08fa

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