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.23.1.tar.gz (399.3 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.23.1-pp310-pypy310_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.23.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.23.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.23.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.23.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.23.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.23.1-pp39-pypy39_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.23.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.23.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.23.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.23.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.23.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.23.1-cp313-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

pydantic_core-2.23.1-cp313-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_core-2.23.1-cp313-cp313-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.23.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_core-2.23.1-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.23.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.23.1-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.23.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.23.1-cp313-cp313-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_core-2.23.1-cp312-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.23.1-cp312-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_core-2.23.1-cp312-cp312-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.23.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.23.1-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.23.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.23.1-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.23.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.23.1-cp312-cp312-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_core-2.23.1-cp311-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-2.23.1-cp311-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-2.23.1-cp311-cp311-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.23.1-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.23.1-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.23.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.23.1-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.23.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.23.1-cp311-cp311-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_core-2.23.1-cp310-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-2.23.1-cp310-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-2.23.1-cp310-cp310-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.23.1-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.23.1-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.23.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.23.1-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.23.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.23.1-cp310-cp310-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pydantic_core-2.23.1-cp39-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-2.23.1-cp39-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-2.23.1-cp39-cp39-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.23.1-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.23.1-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.23.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.23.1-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.23.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-2.23.1-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.23.1-cp39-cp39-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

pydantic_core-2.23.1-cp38-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-2.23.1-cp38-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-2.23.1-cp38-cp38-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-2.23.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.23.1-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.23.1-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.23.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.23.1-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.23.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-2.23.1-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.23.1-cp38-cp38-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.23.1.tar.gz
  • Upload date:
  • Size: 399.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.23.1.tar.gz
Algorithm Hash digest
SHA256 12543919dbf3021e17b9e2cd5cd1b570c6585794fa487339b5b95564b9689452
MD5 dcd8c064362cb11d64a03e0278a29860
BLAKE2b-256 60a9a64afaeecc30a42142f5e60bb61a1ec4817e90c2d1c0c7b242082f61ed00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 29363ba693c0ca24f6094b21e174d2353dfe5747c0b8f55dcd4b1ae5b392332c
MD5 5c8fdb8f6f6df7e1524a00f1a0044b58
BLAKE2b-256 274d5ac1e971ea4d837ffb61d4626aa86028dccc45575d25cfc50c8ab7fb7ce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 265e50d461022b5f1c23fd6cf3d4e899ab5ecb36450488e3f9c464f07ff3834e
MD5 fc01c4d5a3687dfad762fc3640239813
BLAKE2b-256 18529ea53615dab1a2794865afbaa6313a097885131747cf442dd085ea06a60b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2c85a302402b0400dcc1dfab6bf21b4ad6bacb5dfda273b227d7e90ee56f6490
MD5 5475e735a67511815e0bc07382ec2023
BLAKE2b-256 e5461621d8f79de8ae93c56ba6c2cbbdd591e2c13ae1274a6270c6ef8df293d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3aa1e807f455cbcfea6cff6d567dd9483924691e9b24e68f52fefd04b56486b4
MD5 4f5d95be350f852a4d6a65e3f943e288
BLAKE2b-256 120d8645e6e274bee90cfcb58ed536fb3ff2908042744ed4aa98b4e868386e06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9ed8f911c595b731c80c3744f393ed0ac8625d3c5bce83859513d509ada60ec
MD5 bb03b1bec3edf2f3400708ce1215ec5b
BLAKE2b-256 c2d7c605826534f27428dbdb7b4162d4970442b949c9ab7d6673a305e8af3b86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f21cfb7a8b102ec641d6de8636850fc62971e11f85569448de7ebfe27dd6b129
MD5 cf25529695f411c7bd45d3d9a43d344c
BLAKE2b-256 2d909ba2edd9cd802c69871ef7b9303085da894c4a4ccb84fa8d808fccc92f30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b078d67accfe0b8b00dfea6c86826f95568ed0fa363881701145bd04b64c13ab
MD5 3b26f00710404438b3448317af9bf7c3
BLAKE2b-256 a4d2d7cca63c597fed6707cbc4963ea473fa50e4e1209698f62c2f473e72367c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c9581fb2dee020c7fbfef4ec5e5ddbed47f42a7f29f3e99f628caf815498502
MD5 a99c3cc020983121d4c2d036ab4e7a64
BLAKE2b-256 120e7b617be9aaa337e94d3fd29949a2acc18799ba822d2322772b23966702d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 29232456ca7fba105740a3eea460e2d7c96cd907727ea54f515f978f6064967d
MD5 b663faa2add37c5ab4cd26246b7703d5
BLAKE2b-256 c693f30dcfef3100a7bbd48a264e4c55713d4bd05ea74d99562325556f87858e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 16fe8b72776c3f99c0f61c76312c2aedf270bf2edd9893e074bb39e477cd7fa5
MD5 c9e9b01f9af81d95ce90d969ba24e263
BLAKE2b-256 550cb79512943845737e0b0bfcf6b6224dbfc88c3546543086b962304f78c130

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4fd499a82ee3dabb5e5f346de7c73144e0486e8bc9bc62318cd8561695e6244c
MD5 4732928a21e559843d64766828fd9db0
BLAKE2b-256 da985455222eebce559f32a65339ec011dfc3c82a7c42c7d4798280b48056085

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a3fb2116337bcb4a75c4d4ead1944ee433e9bd3265c1505416d939005f4a5fc
MD5 769523dde17126ccaae0217ac4a0a352
BLAKE2b-256 b0c70211167ea321d4c5668890712e8c299ac60ec6b4e20c0e850449354a1d33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 373d9b63b22436d53b383bf96239d4ac14c8469ccfa8b5b75d698140a87d2f2f
MD5 2bb15088e8e028b444dfb08172ed97d9
BLAKE2b-256 1410db971ca8e3a3da4092436cd01f602ecb289d36775465c764ad0af97bd3fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ce5528e81bdae0b8ba707121a3bd59325686c377aaa65db7f7d99333c2f98b4e
MD5 6bbcc348a00ced9ccc412259038050e6
BLAKE2b-256 e15c375d2ac60e56ac5515672d2e978431f68b7321a6d84e42502ba5cbe301c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3571a95cd4ebca483752c32aadc422e3b81e5998ae0505a2af3e563f93a67a2b
MD5 2fe47091fe0fc0de04d277a8eafc01d7
BLAKE2b-256 467342a773a8f02e5bbaf19b57e3353944111fd26d63d62f1bd4dbf476ed6bb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8be3009cd73964ae56a23f7e09248ff0cb2d153a7ad11ecd5e1fff5b03935b47
MD5 1248eb3319b9afff12abc2a71fdb3746
BLAKE2b-256 778607a043091fb015db0f6834e4b66b0ad841be95f2167d07e79ce2e95706c2

See more details on using hashes here.

File details

Details for the file pydantic_core-2.23.1-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 3c647805e383bc9eca36b96de935a6f3b9368b90ab773faccdb8438ef598fa41
MD5 9a7df949e761df9ceacc0176013ffc12
BLAKE2b-256 c311c4dd2e2e2d9110791c96b1ccf95d0b75c60473c594a60bbeb7282c4eea5f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.23.1-cp313-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.23.1-cp313-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.23.1-cp313-none-win32.whl
Algorithm Hash digest
SHA256 401a184c7c8e8d90b3077d25ce99f012b9d093f1f57b9390f52737c42f8ed3d4
MD5 dbc877e93a0d421dbce21977ffa3bc9a
BLAKE2b-256 a071143f1ffab8526b8ad4288f694abccd9dab6a69bd17f0c70120f2bea3c067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c275847f4afb48e84db2b486caa03ac6859fd1a434750e426ca7a3386d36a215
MD5 0b429d84e0126891b032ceb612130f08
BLAKE2b-256 80ed4eb0a025e3fa18e7a07003ab6eeb4d11f3c2150a5d83b450ece7b1e6d724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 19f3ac00336113ef10bd4ed6c3d5d2d2c309d5f8f195273b246fa9af00e81cb3
MD5 ecdc392eacb5175f1436ae8cce05aa49
BLAKE2b-256 33ab5447556c1a6351501ead91f6347373d0d8addb17236ed13e87a6dff5f12b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ef5ba921e4b680291a2d72b5233769d2e507452e10a9ff6e83dbb2315c8f01c
MD5 6e42efb6693bee958420478bd0703844
BLAKE2b-256 965ac65512fd295612bf1ac9244a9d3794f82d8ff81153b9d99e2870ec7d8ed8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 35e2a6c66c6528576ac9563c6db509fd0a3c4364f3aefc5834fd43ab74091dad
MD5 f3d9443225b36013d5e0bba3ff34e358
BLAKE2b-256 aca22a208b2fa8bb036536b6299cefe25986abf463e40058c173ef8a58f35eb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94efbb3e3026bace137e289a2ed7ebd0b1fd483a891c3bbcf6f7e4f8b8862a7b
MD5 894b5dd27ec39a30d28b0cdadaf83ec7
BLAKE2b-256 0fa9f79aebc0b0d7365ec601b8a32c39a9959c1f352950b63708894282c8573b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3273aa949243f1a4bfb09ade15eec133806a8e73dabf8ecdaae6eb46301fbca8
MD5 bd52811bc348359182bae8b42d474562
BLAKE2b-256 7f114c31c334a5b9a55f7b1e29958c1d7386ea175799856dc7af5b232183fba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a544f13fbcf3a7eb8398a2d0db13b4d640ddb8e511b2fc890c6c4c4968b7ccb
MD5 6ded17dd0c66ac2f1caf5de0a54e142b
BLAKE2b-256 d50198a1850b496f9afae5326b6311466dc4ebc15d9ed928d2739cd2a044cf4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 19200fb17d5e44b7ccda36ee848643cb65d23973b889e24269084377988dee25
MD5 3a460df2100a53aa6b2548dc52650dfe
BLAKE2b-256 c24ce712c3be2e1da89539a2bcdf7812fd019e24b760905c49e5bd499795486d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 178b1e6ad1290cba831d2b3c846e302928ba6da9a87ae0d6614d8a56ef1f2285
MD5 3a1ba9a7a9a686e8fdcc4c8ab90fee2a
BLAKE2b-256 19610ad0dc423424a4b00e04989ae0f5feaebc5e45588a40fbe3e15d89f3eca0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8219764ec8df466ec5f541cdfa1857fca0bfe373281a35fa96ec37a1684a612b
MD5 7f68246892115b3e059b5c0192b533f4
BLAKE2b-256 fbc2e7ba3d2d3535bfbebc8989e7b832a44bf187610e0d707e99c399fdd63e4f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.23.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 5523edfe13aeeaf507fb809794572bb62247be264ad9197281b0bccb7eb5a0ae
MD5 b8df4d15948f479b8552504dcc9b51c8
BLAKE2b-256 a6574f28f6c91472a81be6a06ed4234594d9ee7a7f02195f1d1d242f5fda94cb

See more details on using hashes here.

File details

Details for the file pydantic_core-2.23.1-cp312-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.23.1-cp312-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.23.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 4718b13ae5cf243b1df1f818e5c908338706be7bf1bd6c54c508643ac4596933
MD5 2d0f71794d2b7b8e9f73132c5b05c2c8
BLAKE2b-256 35f9154941026947e0e66272ff7df11f5a691b8d4e58ddfd590750c92aae72ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4dd5c1a6078841a80ef04e337983c6df830a8434aace1f61c9d44554fd619502
MD5 446e486d746bd6d147e23ea2682fcc52
BLAKE2b-256 b1f5b3859d5499eb330e34ed0a904139b3afd304cb505a9fa33a7dccfe5fdfb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cd5435d5bd43505f9801de0ff42a29e2bf540b3b73c528ceb56c176f5c56a2e2
MD5 f3b82bd5dbf0c3bdab7b38efdbba70fc
BLAKE2b-256 ed10089752d13bc44e8dcd025cb36a805202998cdfd9afc6657f747237bcc6fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2435fe50a40a016627188a690e297e11a10285d72a3051a02de13efe6f3792fb
MD5 ea45e9ce57ea01403c90b29ed5b0463e
BLAKE2b-256 80084a639278d066bc51bbb5673e1e4b2085bf7d347a760ef6ef94b4cc67e6a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cfacd9ae0f361c343a94267a0fabf31b4f02dd38bf9ffdd37a44f913f4804662
MD5 1f0dabd2f9113d5d631713578c53d63f
BLAKE2b-256 cd4a7e19e66681e83c317c654c704ad5f7427b0f029f6a36871967642b96fb46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d3a3683ffeee0116e57846fab3621b4d5c5b35f9407a88d57287dc1d04db0765
MD5 a26ce104cc553073f275d38b24a03c48
BLAKE2b-256 eecfb37efeb00705b50d52c1aebd2d2fd907978b86361f78cad45e21204df492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3e2444fd5599457671a569e4ccc0158beeba8222a5f38a4468e15f3c7d0d66fc
MD5 ef3cdece50ecfc9cd9945da6d697befe
BLAKE2b-256 f486fc56c572d889f82277c7dd977eecbd687c4828041111333017801a9a34a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c10cc5b42d5df0d3e5ca1b6f8ed477405a1f3992c42f0e937fed0b94b6d51470
MD5 9736ec1ba959b98a9f13a5acdb7c287a
BLAKE2b-256 596d94c85a9b109f4e00d56823e59aaf4372e42131d81403662f896a3ce658c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8966c9acfb8d0604d8f0cfba48f56a5d307502c9d5287cb2d473b71ae7da11cb
MD5 002f39744b2129d7e539d88fc29a5c08
BLAKE2b-256 32c7431fca900e99ed72f69bcf9ee997c11080cfd6fba05714fc54b013098b87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b032223071564a10551a97fa4196b50b6c2c1564335f71b2a950b82e02ccf951
MD5 9ebf3f8bd631be36f2dabde965cd450e
BLAKE2b-256 d91b574214d53fda19d4ecbbd6e067e848edc2e1fec5037d72e95339a6de70bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ab49d80a018e34d5e79478185c38924ff2339d3104a3cb3226c2557ec277f8a2
MD5 035be465505f49b5b86425c0129d9d87
BLAKE2b-256 4a35764aebb82009c0d49cbabd020c14adfb84ee91e249fc2341c55df21916da

See more details on using hashes here.

File details

Details for the file pydantic_core-2.23.1-cp311-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 d123373421f2e810659d0d08da08bf2039282e7bdf16459d0a2bba105b0fd2fe
MD5 7941586c6c56ab03166fbd26d28a9289
BLAKE2b-256 56d21934293db46b7cb099442d234f7d39d8d247db500cf5e2194dc3542ea0bc

See more details on using hashes here.

File details

Details for the file pydantic_core-2.23.1-cp311-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.23.1-cp311-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.23.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 a6b253b770fa1b3a616c1f2ead901bb80f502ea635a1e7c53984664330c2ec12
MD5 6d1aa2061823f96a3ef2ec4cb5881548
BLAKE2b-256 45e68765b43dc12087bec3b68161be9d0589875be70cdb94e6626306affb1605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bf1f38bf5a9bd32b6a3bf92a3a29e2a64984db326c83eea17e2423076e1b2cbb
MD5 867c4a4371c0103ba919567fe1d3d86b
BLAKE2b-256 a24e595c958101b48e623ffc9c4c9da5023695db89754c7844bcde931c87f5b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d4100639ef7c7f137521edba8bd0ede2c5abe0ddc202348dd020b8dee971ee41
MD5 bf62da0ace69b2b34da859a60fdb98a0
BLAKE2b-256 59234ae957d77e06d58c1d3e8f9f24474e2c62c85e711033d88df16c04b1a10b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e459f22aabc08630a77e578bea4114a057a49c6e080585ce4639378690b888d9
MD5 cdecd32d36c9b7800e1860b3c08b04e2
BLAKE2b-256 bd16ab41189357dcee066b5db867539550807095800dc3d49e7944359716d837

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3fcbafb95bf28133c165569c5f8b532ab39e04a9056f5faed19a529138ceef33
MD5 2007dcf002d10c607dd6ae2eeee6d9f6
BLAKE2b-256 ba98e5c7effeed84fec08faea33d3e3f04fd0f0267783ba48eaa799d8e65ebc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 83cd436d0cde245a6b91c5e184e5838bff98ed2ad6c79e55a04a749f3ac2cfe6
MD5 981726b87adabce22649715d389bb307
BLAKE2b-256 cb2ccef633315e65953d06a04be220937f494ae38666ca310e82523f79a38bad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5709b0c54340c6982120f9839654db6b0b0009a84e9c1fec4d8f82d5929ca264
MD5 47eee4198a3eae3b0d90134094e8f06e
BLAKE2b-256 16774f14c72c6c9a35efd482f2d6fc368c4398306505aa2011a481ae4720c52f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6da375565d5ea446dc59e7360926daca18fd6dc2fcdb8eb3f7e3cc084b43b1cf
MD5 aefd8e2bf1f9bda7942e88093bb07a41
BLAKE2b-256 8ace79d0af1c598d9bced65845b0def52b38bc44b6d7a2f4f79bdffd591ce1d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c977c8ff0d1a675c264b69c9dee30fea10476b84957c47687aeaceefbaf9eba0
MD5 2d9cbaae9ea79d973386c91e48dfc613
BLAKE2b-256 20d90b2f8b8115d9bc83cdf747be18849bad9edc94505c2d407a38153a7917f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a1bfa416b6abed69db08d3ef7c51074c893feb870ffdb8f5b1f207fe53731b8
MD5 c9099493c8d8abf1db6c6c1b652af2ba
BLAKE2b-256 2fc3c543807dbfdc037ce070e019d5addf407baddc5339127fc8f63959e81977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0bed69450e904ef4e71a4f6b7d7efd8186b33863d685eaf6110a8015f0c9c027
MD5 a1e82ddea3a2827a23a5679b3d1fa0da
BLAKE2b-256 1c16e8ce9d8126ab138a959de1f416acb8f4b48886f02c02451a66dcf6ef981a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.23.1-cp310-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 648707577e921b77d00252801fa07a65db076da25195e642fc11683d5ba4c6f6
MD5 fc08761aeecb5b9496decf8037a6f44b
BLAKE2b-256 e1286feb7ca620982f04f95a95a7123c9c69c4d3e3ae777779d148495d2a25d9

See more details on using hashes here.

File details

Details for the file pydantic_core-2.23.1-cp310-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.23.1-cp310-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.23.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a303360a0840c11582abd940018890c78496fa04dd2667322a1416c87265c3d4
MD5 1f3826eb18220914d3c1ff32a7a75d23
BLAKE2b-256 94935ca02c0f12cdb4f3bd1b549bd4dffeab9d227d6216f582a2f64d8c3207ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9c71ccf9d306047452f803b65f229c02bccaab0c2cbd477f99774eb121df1c5f
MD5 040034da7c9b7ee63cd72e4303633bcc
BLAKE2b-256 e096f942a34d46be306318bb945f8fd7a11db7f0c7af6a77b5a5412438fa7523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bbaa71734f9324903127c0409ba7947d0594bb0d4598fc25f05e4fb747350f7e
MD5 5f631d9dbc4963005295a7d2475efbef
BLAKE2b-256 ecbb8d2698cab9c22c74550c9365a44206fbe93c945572bf745c6749183186d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7742c1874b15d89f44dc287f9562b6447cd9cbfc858fdce00cfdb7d97cd53ec
MD5 8a27525ccfca152020892a8d0079c929
BLAKE2b-256 7db51c92fa664c1fffc6a29a3ddabeb1f6d0fd1938bf578cfa79ae52d2c4fdc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9a67a959919b4e28969c240a68f1000bfa11cf6f892eb31a236e4d1a696edef3
MD5 e7cb67b220fe9e1466d1d7b946f4d6b5
BLAKE2b-256 a725c0fd98d18e6971becdfc02aa0b834f3360b35376e373d9d21b41b2574da5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 189008f80d1de57b659b37287cac704deecaca152e9f435281b505b101febc23
MD5 d2d217dc97f2b52ef651b13bae61c640
BLAKE2b-256 14177222f966a4fc9e1b0118553f31a9fe13d9c2e82d0775c2327fa962804dec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88a17eefe87873329086ec6c89295a3eb3eef7e54ebd307417a89d9b1fc5c02f
MD5 bb6f10f9cb5ef5244b3ee44a25385e9a
BLAKE2b-256 946e5e6fcf3414636c9c341ebbd231ba45aaa86f0cfbb575a06214d04796cea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56cbb7ee53d2759b0c962595f33de36f63d31c45f88a94ef238e9e86a03bd42c
MD5 a26cd416be94de1d3a23981ac058662d
BLAKE2b-256 7dbd9db5f9dc2a6ede002562afbda58b923d104714c9798e249f9d1811ff7692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a89295e3a7b66267d4eefcaba054bee732821c4c5ef8d7a70e9cffd81fc6e31
MD5 6573f6ef942eca0952e19e9c48b85c98
BLAKE2b-256 2ebf4283ebe27b685c4730fac9c28a00dc83fa1ce55a6c85bbf6600496f0cdae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9fb8e75b67c05c2c7f0c0850b6fc7fc4e8ac101b1dd8d756a5f86cce42719ba1
MD5 0be1502124ec2df75857bdde6693b383
BLAKE2b-256 0579c8692251ca07d4e27097a2590cb8fed327982fe474cfd7c8159782f67352

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 78b02f84640a019e6047c92b4fb2c11c30c9c6ccd8d2966875d29d7650924bd8
MD5 3b08f4522ae913ca557041344f608855
BLAKE2b-256 379a5a3fa6ffdee36cff1ee110f52f7b88e5bbff1a4333abc23a774f8ce61850

See more details on using hashes here.

File details

Details for the file pydantic_core-2.23.1-cp39-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 6c8a21cfaacb38ff5478f72e634a2a4ad178662ca57f32279ad743708b1aa36b
MD5 f99bfe32b2851a5b5fc7318467e11d26
BLAKE2b-256 dd65918d6ad4a4857ecd56076e04e59e3961fe9a878551d94a5c7d1e3baa7a02

See more details on using hashes here.

File details

Details for the file pydantic_core-2.23.1-cp39-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.23.1-cp39-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.23.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 dd3eeee9e81c4bef82460d86a01e67249c715a41797e14cca286eb2006260c41
MD5 391636e1946d4de4eb11eb75c8048d6e
BLAKE2b-256 01aaad7d9141ac749e3afb16cdab5449043925774daae35453fb664e057554da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9ed6f1f62d8e209a8d78bc1c8cee1e73642bb5985a6bc4a18fc0d9e59fd926f1
MD5 54f84590e7bbd9cf7cb6b10558e929fd
BLAKE2b-256 4b75fc83c493a16b02c87f4f28bb97d0deb8d7e3f32940e9539ee4dcd5295509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1c115d0d965a0dc36ab7afb2e48af493d3a72ae40e12c2de6aaf7295a919f0d9
MD5 bd079a457dfefac270f9e5119e51a7c0
BLAKE2b-256 c3b480fae6580d247f694eac5f7137237da5ccc963199fdc3e0dd70ec0914304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ddc182839d40f2f3bd63b606da9f135c9a03dd09bb3b42a3cfaff47f2145547a
MD5 d6c961bc25ca7396b73aeb665a38a5b8
BLAKE2b-256 a1c0600d18a332a3e35c27c570f0663bd28556957e0fefe4b5b217d319b155a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b869f48d46ee9e77a25ea4ee479c2d463322e799aec41c284f6e9c9e0c1d2a7
MD5 77d5b0cc8285e8199418eda7f60f55b6
BLAKE2b-256 a2c483f158e6099d4fd3801213c801bb3d4b2c912a046fdf3f923ff54ae4272e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b4de2710e8acd4ce38265f62a71b47fdd132a324145ab3d41cb0ca5f52b7401f
MD5 f4381cfac06c9aba7d98ccbd349060ad
BLAKE2b-256 db8e703ec38a877164ce1298f99f05a7299fdfa9b91fbaed5c33ebe8f7328d47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 073bf07ce7626e4472df9428cebb0f692ed15b3128f83eb559ed9df81b8223c7
MD5 b4e71953662f22a48bfd612026703d27
BLAKE2b-256 671ec70678ee19d34328888369437f89e4e2014773224737c7db8f86cc75abbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 214e2128e0e4a19d390d83054c347f9d15f6dab4ab8ba377abec00d95138052d
MD5 c91aa4fe11d7c821aa36b2aff686f50a
BLAKE2b-256 87c21e5b4041440c4dd57b4db384a672d366ea68f9711ea955c8f1f8551e9a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ebc1067e85c3785c4b170da816629ea5247bbdbd403b94d795c572828441a8ef
MD5 89475f0f21fe4a43264ee755e56ed995
BLAKE2b-256 dd19f477bf5f3724fac9c7afc6a622abbc2a9cfbfa0f83a1838e20e8d46bd677

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a04ec6de11e186e223de1e53a40b9c666aea2ef0108da22f899c2c45eaa9080d
MD5 24250ff3d11204c607ef58491501b33f
BLAKE2b-256 1af10ee96bad113789df203be4c8a06b461a80ead305a376ce3a847fa90d8fae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e3216ab36b4e41d40aecd13f0ee7724d8e7239b2c9de9c1ec36a83466f4ad55
MD5 abb0fc9c391413810a8a07bda666b955
BLAKE2b-256 829dbd78d7f774e60651fe3766547e9bf49e160d771c1732a903ad03fb93590f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.23.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 3cb4cf38f41a7b80635debc23dcc5854bbc16cb41f64e2afb8e5cfe493fe9e46
MD5 58e7ab289983bb5ad0c2962b9abbf51e
BLAKE2b-256 b9b0da6be3ca5192aecd1c3ee290d641a4ebfc82b3da3dea21ccfb634ee3f62b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.23.1-cp38-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.23.1-cp38-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.23.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 20d459252542e1300694902b960e49503dd092a79a008ca50624c0b3d1bc94f7
MD5 59d6861af963447529bbb52a13bdd095
BLAKE2b-256 ab5302fc5925f87a2644872376f469dc67be0e4fbad0ef8ad0b4e6bff25341e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c777bf800b6b5387e3ca10b4500245bb129c2c9703b1c81f64c4b303d30d2db5
MD5 38104eb67a53987cdefda980b19249f0
BLAKE2b-256 e6be316603ddbc30e87f084e470f2f2836232ac34bf9ca7b7cc11ef79c6388f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1e3113b02fd26b665d096cbbd9d3e903fe61889ec15eaebdbd903816143073a0
MD5 9fd31b62f16913ce3d1240b95bfdfbfa
BLAKE2b-256 ac6c4264182d0176dcd1c6956a06da86442d527c3fdad305cbf0437f8d35fa7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3604a23b8050d18389967626b2f5597e6e5f5b1da07c9105465b61c5c3b43907
MD5 b114ff15cfd16b2ba4907e9139246b26
BLAKE2b-256 4bab3af4f8432d8bf7f275507aebd898126f0e25ffb31c26c8b6570637555a68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 82f6f20cd78d61008b32e38328041a5f63dc693a4be3be70239e877adb63b991
MD5 09764457890c83f51e2224a3e2cae3b1
BLAKE2b-256 28820a64541d598b3f9c93e60d5d15b37d295a2578274a8446bbe4dfb74cf2cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6b76a492eee676871702d883f0b09c6aef3e045bd4350d565bdf13b7aebcb29a
MD5 39cd16d1e3bc37e7f5b3234a243d5472
BLAKE2b-256 e1a64ded6dc97b8f4ee90806938eba0fd0685bb9ffc356c37b6fcd3ffb843e6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b716a29a18da9e87f92d674688e200ef96fe5cab2c2283d2425eeb7d38cd6e8b
MD5 f2954edf0747a9a90a81a881850c5a77
BLAKE2b-256 486bb856a8066f6fd6ba0c12e99a883c5633b4680101fa751006ab9a221fc370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 508bc9533fc3c3a7f6bcb542ce291c7641acd7e9c6c7eca8a2c5097fad1abf03
MD5 4c0f00c3d5ca4bc9156dfd69c276ba87
BLAKE2b-256 32bb7c1c8075662ea36405a571e93c49b665c9c68be6daaf574b0461cda07ac2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd401a7e1e38590fe0427328efca287b85ab528955f8d3636c886ad24d0681cd
MD5 a06bf5243b3466e19aa903e685b3fbe9
BLAKE2b-256 007fcd0d2c9a620c2db05c5d57e1653c6a634311d8dacbdb73a69957e39bd8f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2538d5496cbbb34afef558b2bdaf74e1e5348b0f9f29472a24f923d6e4e0eda1
MD5 8990286425bc5fd2f9fa0f927a3ab1ea
BLAKE2b-256 479db933bd5f2bd35b251a965e84b7341890a397f8d8fb4f7db4ec362035bea4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.23.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 73fee718bc43963fd87f820f987bfbd9b45517e77e9c30e2c9ed5c6dee13dfe3
MD5 97c848a96397eec6aa65e7cde0791c1b
BLAKE2b-256 250253d27535982f60e5c2127d5ee5ce010f73d6ec0d5aec59aac497ea3559dd

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