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

You'll need rust stable installed, or rust nightly if you want to generate accurate coverage.

With rust and python 3.8+ installed, compiling pydantic-core should be possible with roughly the following:

# clone this repo or your fork
git clone git@github.com:pydantic/pydantic-core.git
cd pydantic-core
# create a new virtual env
python3 -m venv env
source env/bin/activate
# install dependencies and install pydantic-core
make install

That should be it, the example shown above should now run.

You might find it useful to look at python/pydantic_core/_pydantic_core.pyi and python/pydantic_core/core_schema.py for more information on the python API, beyond that, tests/ provide a large number of examples of usage.

If you want to contribute to pydantic-core, you'll want to use some other make commands:

  • 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 to run format build-dev lint test

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 🎉

Project details


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.27.2.tar.gz (413.4 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.27.2-pp310-pypy310_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.27.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.27.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.27.2-pp39-pypy39_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.27.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.27.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pydantic_core-2.27.2-cp313-cp313-win32.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_core-2.27.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pydantic_core-2.27.2-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.27.2-cp313-cp313-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_core-2.27.2-cp312-cp312-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.27.2-cp312-cp312-win32.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.27.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_core-2.27.2-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.27.2-cp312-cp312-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_core-2.27.2-cp311-cp311-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

pydantic_core-2.27.2-cp311-cp311-win32.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.27.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-2.27.2-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.27.2-cp311-cp311-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pydantic_core-2.27.2-cp310-cp310-win32.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.27.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-2.27.2-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.27.2-cp310-cp310-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

pydantic_core-2.27.2-cp39-cp39-win32.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-2.27.2-cp39-cp39-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-2.27.2-cp39-cp39-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

pydantic_core-2.27.2-cp39-cp39-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.27.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-2.27.2-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.27.2-cp39-cp39-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

pydantic_core-2.27.2-cp38-cp38-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-2.27.2-cp38-cp38-win32.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARMv7l

pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-2.27.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-2.27.2-cp38-cp38-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.27.2-cp38-cp38-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.27.2.tar.gz
  • Upload date:
  • Size: 413.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.1

File hashes

Hashes for pydantic_core-2.27.2.tar.gz
Algorithm Hash digest
SHA256 eb026e5a4c1fee05726072337ff51d1efb6f59090b7da90d30ea58625b1ffb39
MD5 c90633350cda088856cf60c1c87de618
BLAKE2b-256 fc01f3e5ac5e7c25833db5eb555f7b7ab24cd6f8c322d3a3ad2d67a952dc0abc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7e17b560be3c98a8e3aa66ce828bdebb9e9ac6ad5466fba92eb74c4c95cb1151
MD5 cabb0c3b345b1d24b1710451a746f15c
BLAKE2b-256 63373e32eeb2a451fddaa3898e2163746b0cffbbdbb4740d38372db0490d67f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0d75070718e369e452075a6017fbf187f788e17ed67a3abd47fa934d001863d9
MD5 2a4201acde92333dc16f5f861b19026a
BLAKE2b-256 81b05e74656e95623cbaa0a6278d16cf15e10a51f6002e3ec126541e95c29ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 0296abcb83a797db256b773f45773da397da75a08f5fcaef41f2044adec05f50
MD5 d090bef294c2c28dc00383b8d374e842
BLAKE2b-256 86aa837821ecf0c022bbb74ca132e117c358321e72e7f9702d1b6a03758545e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bec317a27290e2537f922639cafd54990551725fc844249e64c523301d0822fc
MD5 80d4c752d27d9ccb7034aba44b257e71
BLAKE2b-256 6da761246562b651dff00de86a5f01b6e4befb518df314c54dec187a78d81c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d591580c34f4d731592f0e9fe40f9cc1b430d297eecc70b962e93c5c668f15f
MD5 735896d733d29397baf83d5e6d68ff91
BLAKE2b-256 d77a7bbf241a04e9f9ea24cd5874354a83526d639b02674648af3f350554276c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 688d3fd9fcb71f41c4c015c023d12a79d1c4c0732ec9eb35d96e3388a120dcf3
MD5 b5d89145528fbc0c71631e5352b45030
BLAKE2b-256 f6f0a3ae8fbee269e4934f14e2e0e00928f9346c5943174f2811193113e58252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 82f986faf4e644ffc189a7f1aafc86e46ef70372bb153e7001e8afccc6e54133
MD5 7647ed4465312de510ee996a505549a0
BLAKE2b-256 4f5f4784c6107731f89e0005a92ecb8a2efeafdb55eb992b8e9d0a2be5199335

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b0cb791f5b45307caae8810c2023a184c74605ec3bcbb67d13846c28ff731ff8
MD5 20e8c72a96e06dcdab812024b7f12072
BLAKE2b-256 ad3dc5913cccdef93e0a6a95c2d057d2c2cba347815c845cda79ddd3c0f5e17d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2bf14caea37e91198329b828eae1618c068dfb8ef17bb33287a7ad4b61ac314e
MD5 8b28e7aa50374d73d899648ed7d286f8
BLAKE2b-256 4672af70981a341500419e67d5cb45abe552a7c74b66326ac8877588488da1ac

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7d0c8399fcc1848491f00e0314bd59fb34a9c008761bcb422a057670c3f65e35
MD5 ff46255783d29c93d0a645ba619643ae
BLAKE2b-256 a10cc5c5cd3689c32ed1fe8c5d234b079c12c281c051759770c05b8bed6412b5

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f141ee28a0ad2123b6611b6ceff018039df17f32ada8b534e6aa039545a3efb2
MD5 dd00dee6561093980fd1f425d20c766c
BLAKE2b-256 dbad28869f58938fad8cc84739c4e592989730bfb69b7c90a8fff138dff18e1e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 8083d4e875ebe0b864ffef72a4304827015cff328a1be6e22cc850753bfb122b
MD5 a93924feda64cd0f3c7be000407c35e7
BLAKE2b-256 5e3efe5b6613d9e4c0038434396b46c5303f5ade871166900b357ada4766c5b7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d4041c0b966a84b4ae7a09832eb691a35aec90910cd2dbe7a208de59be77965b
MD5 d7887464904dc4fcd5d463a54db25ece
BLAKE2b-256 828a05f8780f2c1081b800a7ca54c1971e291c2d07d1a50fb23c7e4aef4ed403

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 251136cdad0cb722e93732cb45ca5299fb56e1344a833640bf93b2803f8d1bfd
MD5 e433bc7a8bb756b61f88458ccb28ab49
BLAKE2b-256 9c63ed80ec8255b587b2f108e514dc03eed1546cd00f0af281e699797f373f38

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c817e2b40aba42bac6f457498dacabc568c3b7a986fc9ba7c8d9d260b71485fb
MD5 4032abde2b653c79f6812934d4e29680
BLAKE2b-256 41f7f847b15fb14978ca2b30262548f5fc4872b2724e90f116393eb69008299d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d2088237af596f0a524d3afc39ab3b036e8adb054ee57cbb1dcf8e09da5b29cc
MD5 56a23abca9a5fd84ce386455c3cb3943
BLAKE2b-256 a96d6d18308a45454a0de0e975d70171cadaf454bc7a0bf86b9c7688e313f0bb

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00bad2484fa6bda1e216e7345a798bd37c68fb2d97558edd584942aa41b7d278
MD5 ce1a753ffee18a6fa5c762cf344d6aff
BLAKE2b-256 86d3e797bba8860ce650272bda6383a9d8cad1d1c9a75a640c9d0e848076f85e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c33939a82924da9ed65dab5a65d427205a73181d8098e79b6b426bdf8ad4e656
MD5 38d6aed89811a1ce5f6ebce1a5ba97b1
BLAKE2b-256 290edcaea00c9dbd0348b723cae82b0e0c122e0fa2b43fa933e1622fd237a3ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ac4dbfd1691affb8f48c2c13241a2e3b60ff23247cbcf981759c768b6633cf8b
MD5 21a6b41aa33b03cbe1d534ba5760d30d
BLAKE2b-256 51b2b2b50d5ecf21acf870190ae5d093602d95f66c9c31f9d5de6062eb329ad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 953101387ecf2f5652883208769a79e48db18c6df442568a0b5ccd8c2723abee
MD5 fad7e4350e1f0af6fc1fbd1859cd0617
BLAKE2b-256 714782b5e846e01b26ac6f1893d3c5f9f3a2eb6ba79be26eef0b759b4fe72946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1ebaf1d0481914d004a573394f4be3a7616334be70261007e47c2a6fe7e50130
MD5 c39780a7938bd25782352bb3d4a29dcc
BLAKE2b-256 a499bddde3ddde76c03b65dfd5a66ab436c4e58ffc42927d4ff1198ffbf96f5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ba5dd002f88b78a4215ed2f8ddbdf85e8513382820ba15ad5ad8955ce0ca19a1
MD5 a6ac1ae0e5c2dad9a393bfd266860555
BLAKE2b-256 f4d7eb64d015c350b7cdb371145b54d96c919d4db516817f31cd1c650cae3b21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 18a101c168e4e092ab40dbc2503bdc0f62010e95d292b27827871dc85450d7ee
MD5 0a688c95062f352b6ca25c2e22126c18
BLAKE2b-256 ca2dc365cfa930ed23bc58c41463bae347d1005537dc8db79e998af8ba28d35e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7a66efda2387de898c8f38c0cf7f14fca0b51a8ef0b24bfea5849f1b3c95af27
MD5 3b61c6d723ae8c5007c2d02eec2acffd
BLAKE2b-256 50cca46b34f1708d82498c227d5d80ce615b2dd502ddcfd8376fc14a36655af1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd8086fa684c4775c27f03f062cbb9eaa6e17f064307e86b21b9e0abc9c0f02e
MD5 6378cb0e25ed955b0c0d663c03edb71e
BLAKE2b-256 a674d12b2cd841d8724dc8ffb13fc5cef86566a53ed358103150209ecd5d1999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eda3f5c2a021bbc5d976107bb302e0131351c2ba54343f8a496dc8783d3d3a6a
MD5 c61ca64b4c4e678448aa603474d90ee4
BLAKE2b-256 c8f1786d8fe78970a06f61df22cba58e365ce304bf9b9f46cc71c8c424e0c334

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce8918cbebc8da707ba805b7fd0b382816858728ae7fe19a942080c24e5b7cd1
MD5 2fd2fdd3e666e4696c24bf3b8344884a
BLAKE2b-256 bd7b8cb75b66ac37bc2975a3b7de99f3c6f355fcc4d89820b61dffa8f1e81677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa8e459d4954f608fa26116118bb67f56b93b209c39b008277ace29937453dc9
MD5 df90c4c603d3b35250f04051355eb6bb
BLAKE2b-256 b11cb6f402cfc18ec0024120602bdbcebc7bdd5b856528c013bd4d13865ca473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 71b24c7d61131bb83df10cc7e687433609963a944ccf45190cfc21e0887b08c9
MD5 3351d508d184dbd22c3c03457638b185
BLAKE2b-256 ba1552cfe49c8c986e081b863b102d6b859d9defc63446b642ccbbb3742bf371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8d9b3388db186ba0c099a6d20f0604a44eabdeef1777ddd94786cdae158729e4
MD5 4ef9e4f41a1cf9476d83715ea854f3fd
BLAKE2b-256 a06e940bcd631bc4d9a06c9539b51f070b66e8f370ed0933f392db6ff350d873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 82f91663004eb8ed30ff478d77c4d1179b3563df6cdb15c0817cd1cdaf34d154
MD5 38306e0358cc64382d2e0362ae55d820
BLAKE2b-256 106ce62b8657b834f3eb2961b49ec8e301eb99946245e70bf42c8817350cbefc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7d14bd329640e63852364c306f4d23eb744e0f8193148d4044dd3dacdaacbd8b
MD5 08726af42a557eadcf5af968fd76a02d
BLAKE2b-256 41b19bc383f48f8002f99104e3acff6cba1231b29ef76cfa45d1506a5cad1f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3911ac9284cd8a1792d3cb26a2da18f3ca26c6908cc434a18f730dc0db7bfa3b
MD5 e86831ac9f7fb4721096fad6fb9d17d2
BLAKE2b-256 bc49c54baab2f4658c26ac633d798dab66b4c3a9bbf47cff5284e9c182f4137a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cc3f1a99a4f4f9dd1de4fe0312c114e740b5ddead65bb4102884b384c15d8bc9
MD5 636dd11a2918251a6174d2e3db7f5fc8
BLAKE2b-256 1feacd7209a889163b8dcca139fe32b9687dd05249161a3edda62860430457a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1e2cb691ed9834cd6a8be61228471d0a503731abfb42f82458ff27be7b2186fc
MD5 4dc3a7c331e7437fc84f34556d0e2bd1
BLAKE2b-256 9b674e197c300976af185b7cef4c02203e175fb127e414125916bf1128b639a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a0fcd29cd6b4e74fe8ddd2c90330fd8edf2e30cb52acda47f06dd615ae72da57
MD5 71a58208014b7326bb7a649c994d050a
BLAKE2b-256 fcdf791c827cd4ee6efd59248dca9369fb35e80a9484462c33c6649a8d02b565

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 220f892729375e2d736b97d0e51466252ad84c51857d4d15f5e9692f9ef12be4
MD5 5a46ec2ba7bde3d7ce33b9f78ee57a90
BLAKE2b-256 f2b3807b94fd337d58effc5498fd1a7a4d9d59af4133e83e32ae39a96fddec9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 de3cd1899e2c279b140adde9357c4495ed9d47131b4a4eaff9052f23398076b3
MD5 ad413d18acde0bd251ad712b5cfd2b77
BLAKE2b-256 3540aea70b5b1a63911c53a4c8117c0a828d6790483f858041f47bab0b779f44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fb4aadc0b9a0c063206846d603b92030eb6f03069151a625667f982887153e2
MD5 1c2ddb46f2dbc58179fc1244a08c26eb
BLAKE2b-256 8df049129b27c43396581a635d8710dae54a791b17dfc50c70164866bbf865e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c3ed807c7b91de05e63930188f19e921d1fe90de6b4f5cd43ee7fcc3525cb8c
MD5 281bed899b3acf3127d3d489f5797d59
BLAKE2b-256 06867f306b904e6c9eccf0668248b3f272090e49c275bc488a7b88b0823444a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05e3a55d124407fffba0dd6b0c0cd056d10e983ceb4e5dbd10dda135c31071d6
MD5 53cc220d2e7911b875a71086bceb3ef3
BLAKE2b-256 fa2002fbaadb7808be578317015c462655c317a77a7c8f0ef274bc016a784c54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 519f29f5213271eeeeb3093f662ba2fd512b91c5f188f3bb7b27bc5973816934
MD5 310fe393fa4da3c1f0af9b74ed3f5816
BLAKE2b-256 f6314240bc96025035500c18adc149aa6ffdf1a0062a4b525c932065ceb4d868

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 172fce187655fece0c90d90a678424b013f8fbb0ca8b036ac266749c09438cb7
MD5 e1c6ff4da91c9db5de8ec1eeac497b36
BLAKE2b-256 9e91840ec1375e686dbae1bd80a9e46c26a1e0083e1186abc610efa3d9a36180

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 28ccb213807e037460326424ceb8b5245acb88f32f3d2777427476e1b32c48c4
MD5 ab6bb140d3f876750085194d7fd0cb6c
BLAKE2b-256 0d0f943b4af7cd416c477fd40b187036c4f89b416a33d3cc0ab7b82708a667aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 83097677b8e3bd7eaa6775720ec8e0405f1575015a463285a92bfdfe254529ef
MD5 29984844af304be869790a0e4ef42e92
BLAKE2b-256 d3f3c97e80721735868313c58b89d2de85fa80fe8dfeeed84dc51598b92a135e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e0c8cfefa0ef83b4da9588448b6d8d2a2bf1a53c3f1ae5fca39eb3061e2f0b0
MD5 30c37db441a0d84c9edf287f0f48729e
BLAKE2b-256 d67451c8a5482ca447871c93e142d9d4a92ead74de6c8dc5e66733e22c9bba89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 26f0d68d4b235a2bae0c3fc585c585b4ecc51382db0e3ba402a22cbc440915e4
MD5 3ff7f0afff30336e5bea12c2d863ac0f
BLAKE2b-256 101c16b3a3e3398fd29dca77cea0a1d998d6bde3902fa2706985191e2313cc76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 08e125dbdc505fa69ca7d9c499639ab6407cfa909214d500897d02afb816e7cc
MD5 abc96ab6b753b3f395b64425a5a04842
BLAKE2b-256 e8ef013f07248041b74abd48a385e2110aa3a9bbfef0fbd97d4e6d07d2f5b89a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 c70c26d2c99f78b125a3459f8afe1aed4d9687c24fd677c6a4436bc042e50d6c
MD5 52a2ac9c25f9023e027ec4af3283c670
BLAKE2b-256 729da241db83f973049a1092a079272ffe2e3e82e98561ef6214ab53fe53b1c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 30c5f68ded0c36466acede341551106821043e9afaad516adfb6e8fa80a4e6a6
MD5 e9f749f1b4b2f5414b999ab7c3a54464
BLAKE2b-256 2b4cca02b7bdb6012a1adef21a50625b14f43ed4d11f1fc237f9d7490aa5078c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3de3ce3c9ddc8bbd88f6e0e304dea0e66d843ec9de1b0042b0911c1663ffd474
MD5 7d3ec690ab186f364823221262a6f2a2
BLAKE2b-256 6e952359937a73d49e336a5a19848713555605d4d8d6940c3ec6c6c0ca4dcf25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1a4207639fb02ec2dbb76227d7c751a20b1a6b4bc52850568e52260cae64ca3b
MD5 03812fa7a2149e95e657c185ee18c17a
BLAKE2b-256 947a941e89096d1175d56f59340f3a8ebaf20762fef222c298ea96d36a6328c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1c1fd185014191700554795c99b347d64f2bb637966c4cfc16998a0ca700d048
MD5 7f9319ff7a9ecc373fd43d941d33d001
BLAKE2b-256 a87cb860618c25678bbd6d1d99dbdfdf0510ccb50790099b963ff78a124b754f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40d02e7d45c9f8af700f3452f329ead92da4c5f4317ca9b896de7ce7199ea459
MD5 885980b3890b112bdfeb32d1eee285af
BLAKE2b-256 0e41f15316858a246b5d723f7d7f599f79e37493b2e84bfc789e58d88c209f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9640b0059ff4f14d1f37321b94061c6db164fbe49b334b31643e0528d100d99
MD5 651c2ee0e6eb005f56e0afa62bd7fd6c
BLAKE2b-256 896c3985203863d76bb7d7266e36970d7e3b6385148c18a68cc8915fd8c84d57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5e68c4446fe0810e959cdff46ab0a41ce2f2c86d227d96dc3847af0ba7def306
MD5 d21b3bab38f03c3ad23602e5f87240a2
BLAKE2b-256 2b5b1b29e8c1fb5f3199a9a57c1452004ff39f494bbe9bdbe9a81e18172e40d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c19d1ea0673cd13cc2f872f6c9ab42acc4e4f492a7ca9d3795ce2b112dd7e15
MD5 fd022bc4391a26c563075f272abeaef5
BLAKE2b-256 a63c724039e0d848fd69dbf5806894e26479577316c6f0f112bacaf67aa889ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d81d2068e1c1228a565af076598f9e7451712700b673de8f502f0334f281387d
MD5 2b1edbc3bde7269178cb065dd47a9312
BLAKE2b-256 bf7342c3742a391eccbeab39f15213ecda3104ae8682ba3c0c28069fbcb8c10d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26f32e0adf166a84d0cb63be85c562ca8a6fa8de28e5f0d92250c6b7e9e2aff7
MD5 2ac84941f995deb89cf72e86c66806c7
BLAKE2b-256 9ee371fe85af2021f3f386da42d291412e5baf6ce7716bd7101ea49c810eda90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e10c99ef58cfdf2a66fc15d66b16c4a04f62bca39db589ae8cba08bc55331bc
MD5 6b2341a465b12afc204a41b5d7ca06ea
BLAKE2b-256 c289f3450af9d09d44eea1f2c369f49e8f181d742f28220f88cc4dfaae91ea6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0fd26b16394ead34a424eecf8a31a1f5137094cabe84a1bcb10fa6ba39d3d31
MD5 9a00fdca1ca6d431bc9bf5d161b9e076
BLAKE2b-256 574ca8838731cb0f2c2a39d3535376466de6049034d7b239c0202a64aaa05533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 50a68f3e3819077be2c98110c1f9dcb3817e93f267ba80a2c05bb4f8799e2ff4
MD5 5d7e6285bd7376884cb59a310db25e3d
BLAKE2b-256 2ba3e50460b9a5789ca1451b70d4f52546fa9e2b420ba3bfa6100105c0559238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7041c36f5680c6e0f08d922aed302e98b3745d97fe1589db0a3eebf6624523af
MD5 631f90d6f73fc37ca16609dd69c4b9b4
BLAKE2b-256 4e99fe80f3ff8dd71a3ea15763878d464476e6cb0a2db95ff1c5c554133b6b83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 03d0f86ea3184a12f41a2d23f7ccb79cdb5a18e06993f8a45baa8dfec746f0e9
MD5 6c266c4b4028267370194b70dc462cef
BLAKE2b-256 b77d8eb3e23206c00ef7feee17b83a4ffa0a623eb1a9d382e56e4aa46fd15ff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 337b443af21d488716f8d0b6164de833e788aa6bd7e3a39c005febc1284f4962
MD5 81cfdf2661a4bfb2c48af398de8eb3b3
BLAKE2b-256 7cf789be1c8deb6e22618a74f0ca0d933fdcb8baa254753b26b25ad3acff8f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47956ae78b6422cbd46f772f1746799cbb862de838fd8d1fbd34a82e05b0983a
MD5 74a358a5b477007383d3ced8b46025b5
BLAKE2b-256 32903b15e31b88ca39e9e626630b4c4a1f5a0dfd09076366f4219429e6786076

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 280d219beebb0752699480fe8f1dc61ab6615c2046d76b7ab7ee38858de0a4e7
MD5 6979ab1ad846dfdc4434ecd52f8336bf
BLAKE2b-256 7a6761291ee98e07f0650eb756d44998214231f50751ba7e13f4f325d95249ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e2bb4d3e5873c37bb3dd58714d4cd0b0e6238cebc4177ac8fe878f8b3aa8e74c
MD5 91b36b1f4e86cdd19052c72fca7d2764
BLAKE2b-256 7d39e06fcbcc1c785daa3160ccf6c1c38fea31f5754b756e34b65f74e99780b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3de9961f2a346257caf0aa508a4da705467f53778e9ef6fe744c038119737ef5
MD5 291aaed87f5cef5fdb65e276810374c4
BLAKE2b-256 a2d1f2dfe1a2a637ce6800b799aa086d079998959f6f1215eb4497966efd2274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7969e133a6f183be60e9f6f56bfae753585680f3b7307a8e555a948d443cc05a
MD5 9f61bcc57c24f0487940d60662d10f08
BLAKE2b-256 c343fafabd3d94d159d4f1ed62e383e264f146a17dd4d48453319fd782e7979e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 14d4a5c49d2f009d62a2a7140d3064f686d17a5d1a268bc641954ba181880236
MD5 c21dd6a1c7e4d6f69e75f2de91f57bdc
BLAKE2b-256 ff83c06d333ee3a67e2e13e07794995c1535565132940715931c1c43bfc85b11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 491a2b73db93fab69731eaee494f320faa4e093dbed776be1a829c2eb222c34c
MD5 5009d9a437bcf5fbd63b2a6e92fdd805
BLAKE2b-256 712a185aff24ce844e39abb8dd680f4e959f0006944f4a8a0ea372d9f9ae2e53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2d367ca20b2f14095a8f4fa1210f5a7b78b8a20009ecced6b12818f455b1e9fa
MD5 9a5329c67d4fd9fc3b9fd87f9853f2a2
BLAKE2b-256 3abcfed5f74b5d802cf9a03e83f60f18864e90e3aed7223adaca5ffb7a8d8d64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 77d1bca19b0f7021b3a982e6f903dcd5b2b06076def36a652e3907f596e29f67
MD5 5adb39cc9a64593b2f353e641694c8d7
BLAKE2b-256 5782bb16a68e4a1a858bb3768c2c8f1ff8d8978014e16598f001ea29a25bf1d1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.27.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.1

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 cca63613e90d001b9f2f9a9ceb276c308bfa2a43fafb75c8031c4f66039e8c6e
MD5 2247f03124dbd5039d67fc690e0b6e05
BLAKE2b-256 98614f784608cc9e98f70839187117ce840480f768fed5d386f924074bf6213c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5e4f4bb20d75e9325cc9696c6802657b58bc1dbbe3022f32cc2b2b632c3fbb96
MD5 60c241e65eafab8f482b1b6262b21e67
BLAKE2b-256 c2aeaa38bb8dd3d89c2f1d8362dd890ee8f3b967330821d03bbe08fa01ce3766

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4e0b4220ba5b40d727c7f879eac379b822eee5d8fff418e9d3381ee45b3b0362
MD5 329f2bd3f016654bafadfb354dab3a52
BLAKE2b-256 535f23a5a3e7b8403f8dd8fc8a6f8b49f6b55c7d715b77dcf1f8ae919eeb5628

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 044a50963a614ecfae59bb1eaf7ea7efc4bc62f49ed594e18fa1e5d953c40e9f
MD5 aac29b351535bca8df0de76f557ba10b
BLAKE2b-256 2dbb2db4ad1762e1c5699d9b857eeb41959191980de6feb054e70f93085e1bcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d1e85068e818c73e048fe28cfc769040bb1f475524f4745a5dc621f75ac7630
MD5 f7e3114e8ab239921b1a8df7c22dc16f
BLAKE2b-256 8b1f3dc6e769d5b7461040778816aab2b00422427bcaa4b56cc89e9c653b2605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 57762139821c31847cfb2df63c12f725788bd9f04bc2fb392790959b8f70f118
MD5 ced8879016bb06d4bd5861069c5c8051
BLAKE2b-256 01d7ced164e376f6747e9158c89988c293cd524ab8d215ae4e185e9929655d5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4c9775e339e42e79ec99c441d9730fccf07414af63eac2f0e48e08fd38a64d76
MD5 10737d0b4b5025e3bf7ef8b37a3b5c1f
BLAKE2b-256 ee3313983426df09a36d22c15980008f8d9c77674fc319351813b5a2739b70f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42c5f762659e47fdb7b16956c71598292f60a03aa92f8b6351504359dbdba6cf
MD5 ca7758658adb46ff6cb6a69c767ccb65
BLAKE2b-256 1c901160d7ac700102effe11616e8119e268770f2a2aa5afb935f3ee6832987d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c61709a844acc6bf0b7dce7daae75195a10aac96a596ea1b776996414791ede4
MD5 0334abdc30e75c2b91beb3bb0bd8409f
BLAKE2b-256 8a9ee44b8cb0edf04a2f0a1f6425a65ee089c1d6f9c4c2dcab0209127b6fdfc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 097830ed52fd9e427942ff3b9bc17fab52913b2f50f2880dc4a5611446606a54
MD5 87f8d44365ef484bc2deca1926e964df
BLAKE2b-256 07d7a0bd09bc39283530b3f7c27033a814ef254ba3bd0b5cfd040b7abf1fe5da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef592d4bad47296fb11f96cd7dc898b92e795032b4894dfb4076cfccd43a9308
MD5 2ee838ca6648ccfaa8bb067b90f29141
BLAKE2b-256 add35668da70e373c9904ed2f372cb52c0b996426f302e0dee2e65634c92007d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c10eb4f1659290b523af58fa7cffb452a61ad6ae5613404519aee4bfbf1df993
MD5 375a12b7fd85cf7e1e83738b5e803627
BLAKE2b-256 27973aef1ddb65c5ccd6eda9050036c956ff6ecbfe66cb7eb40f280f121a5bb0

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 fd1aea04935a508f62e0d0ef1f5ae968774a32afc306fb8545e06f5ff5cdf3ad
MD5 95c5d543111bc5c7fd583a3178496e06
BLAKE2b-256 aa6ddf49c17f024dfc58db0bacc7b03610058018dd2ea2eaf748ccbada4c3d06

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-win32.whl.

File metadata

  • Download URL: pydantic_core-2.27.2-cp38-cp38-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.13.1

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 f6f8e111843bbb0dee4cb6594cdc73e79b3329b526037ec242a3e49012495b3b
MD5 772fa58406800ecd966ac27cf654d8c9
BLAKE2b-256 8a2be1059506795104349712fbca647b18b3f4a7fd541c099e6259717441e1e0

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bca101c00bff0adb45a833f8451b9105d9df18accb8743b08107d7ada14bd7da
MD5 89933f82ff279271da350bf4331ad20d
BLAKE2b-256 a0f0a6ab0681f6e95260c7fbf552874af7302f2ea37b459f9b7f00698f875492

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d2d63f1215638d28221f664596b1ccb3944f6e25dd18cd3b86b0a4c408d5ebb9
MD5 910846f7ce5a2d774fb2083c6807d28d
BLAKE2b-256 e39fb779ed2480ba355c054e6d7ea77792467631d674b13d8257085a4bc7dcda

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cabb9bcb7e0d97f74df8646f34fc76fbf793b7f6dc2438517d7a9e50eee4f14d
MD5 7a9b2e9eebb5428c5a3b4b82c35183d7
BLAKE2b-256 fba34be70845b555bd80aaee9f9812a7cf3df81550bce6dadb3cfee9c5d8421d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fdbe7629b996647b99c01b37f11170a57ae675375b14b8c13b8518b8320ced5
MD5 49ac3c0fc3c458255cef73fe3ad00d3e
BLAKE2b-256 f7a35f19bc495793546825ab160e530330c2afcee2281c02b5ffafd0b32ac05e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 669e193c1c576a58f132e3158f9dfa9662969edb1a250c54d8fa52590045f046
MD5 2b74fa414529e0021f0bf37208030651
BLAKE2b-256 9c0005197ce1614f5c08d7a06e1d39d5d8e704dc81971b2719af134b844e2eaf

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f66d89ba397d92f840f8654756196d93804278457b5fbede59598a1f9f90b228
MD5 cd05ce833b443e8b37c1b5dccfc4ff37
BLAKE2b-256 d55281cf4071dca654d485c277c581db368b0c95b2b883f4d7b736ab54f72ddf

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d716e2e30c6f140d7560ef1538953a5cd1a87264c737643d481f2779fc247fe1
MD5 730e8621ceb558f069fb82e443afab3f
BLAKE2b-256 8fdf59f915c8b929d5f61e5a46accf748a87110ba145156f9326d1a7d28912b2

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85210c4d99a0114f5a9481b44560d7d1e35e32cc5634c656bc48e590b669b145
MD5 8eb2bd374ef979aba97e4de57ee61615
BLAKE2b-256 35eb8234e05452d92d2b102ffa1b56d801c3567e628fdc63f02080fdfc68fd5e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d262606bf386a5ba0b0af3b97f37c83d7011439e3dc1a9298f21efb292e42f1a
MD5 4535563e76d30f595000ee36dd268c1f
BLAKE2b-256 ede8e0102c2ec153dc3eed88aea03990e1b06cfbca532916b8a48173245afe60

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 521eb9b7f036c9b6187f0b47318ab0d7ca14bd87f776240b90b21c1f4f149320
MD5 e7c36111aede3b9d093ee85b7c0a0772
BLAKE2b-256 f42026c549249769ed84877f862f7bb93f89a6ee08b4bee1ed8781616b7fbb5e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.27.2-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.27.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d3e8d504bdd3f10835468f29008d72fc8359d95c9c415ce6e767203db6127506
MD5 95ec7c511e97a1e32cf40f100b10856f
BLAKE2b-256 435313e9917fc69c0a4aea06fd63ed6a8d6cda9cf140ca9584d49c1650b0ef5e

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