Skip to main content

No project description provided

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 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.7+ 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

Project details


Release history Release notifications | RSS feed

This version

2.1.2

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.1.2.tar.gz (306.0 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.1.2-pp310-pypy310_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.1.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.1.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.1.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.1.2-pp39-pypy39_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.1.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.1.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.1.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.1.2-pp38-pypy38_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.1.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.1.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.1.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.1.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.1.2-pp37-pypy37_pp73-win_amd64.whl (1.8 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.1.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.1.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.1.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.1.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.1.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.1.2-cp312-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.1.2-cp312-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_core-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_core-2.1.2-cp312-cp312-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.1.2-cp312-cp312-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ s390x

pydantic_core-2.1.2-cp312-cp312-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ppc64le

pydantic_core-2.1.2-cp312-cp312-manylinux_2_24_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_core-2.1.2-cp312-cp312-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.1.2-cp312-cp312-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.12macOS 10.7+ x86-64

pydantic_core-2.1.2-cp311-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-2.1.2-cp311-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-2.1.2-cp311-cp311-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.1.2-cp311-cp311-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

pydantic_core-2.1.2-cp311-cp311-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

pydantic_core-2.1.2-cp311-cp311-manylinux_2_24_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-2.1.2-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.1.2-cp311-cp311-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

pydantic_core-2.1.2-cp310-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-2.1.2-cp310-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-2.1.2-cp310-cp310-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.1.2-cp310-cp310-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

pydantic_core-2.1.2-cp310-cp310-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

pydantic_core-2.1.2-cp310-cp310-manylinux_2_24_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-2.1.2-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.1.2-cp310-cp310-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-2.1.2-cp39-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-2.1.2-cp39-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-2.1.2-cp39-cp39-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-2.1.2-cp39-cp39-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.1.2-cp39-cp39-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

pydantic_core-2.1.2-cp39-cp39-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

pydantic_core-2.1.2-cp39-cp39-manylinux_2_24_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-2.1.2-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.1.2-cp39-cp39-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-2.1.2-cp38-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-2.1.2-cp38-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-2.1.2-cp38-cp38-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-2.1.2-cp38-cp38-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-2.1.2-cp38-cp38-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

pydantic_core-2.1.2-cp38-cp38-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

pydantic_core-2.1.2-cp38-cp38-manylinux_2_24_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-2.1.2-cp38-cp38-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.1.2-cp38-cp38-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-2.1.2-cp37-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-2.1.2-cp37-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.7Windows x86

pydantic_core-2.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-2.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-2.1.2-cp37-cp37m-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

pydantic_core-2.1.2-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

pydantic_core-2.1.2-cp37-cp37m-manylinux_2_24_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pydantic_core-2.1.2-cp37-cp37m-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-2.1.2-cp37-cp37m-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.1.2.tar.gz
  • Upload date:
  • Size: 306.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.1.2.tar.gz
Algorithm Hash digest
SHA256 d2c790f0d928b672484eac4f5696dd0b78f3d6d148a641ea196eb49c0875e30a
MD5 83124fb7f6b695a573e7abf9d1047cb7
BLAKE2b-256 66689703e44f0bcc29eeaacb1c063675687524646a1bbe3c4527d45475cf120e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7648e48ba263ca0a8a2dc55a60a219c9133fb101ba52c89a14a29fb3d4322ca3
MD5 e1db532d7e390884bef80eb7ddd84651
BLAKE2b-256 823ac169e10b023ad15bf1e92fd4889c71bfe203778a06a566cc2169fdc7afa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 840238c845b0f80777151fef0003088ab91c6f7b3467edaff4932b425c4e3c3f
MD5 88ab5303965d44299c09e0ce4598a6b9
BLAKE2b-256 78275983cde04207c6214ecfab13348b9a284cb5f038cb57afc4d5fdcffac21e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ef71e73a81a4cd7e87c93e8ff0170140fd93ba33b0f61e83da3f55f6e0a84fb4
MD5 99776908057e4dd22fb743e946f8cd80
BLAKE2b-256 5da19e04723ccd479b654b762c902b302292b4958c0ffa392d347d402e43682f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0f481aaf0119f77b200e5a5e2799b3e14c015a317eaa948f42263908735cc9f
MD5 a827aace3d646b4ceedaa889af3b0753
BLAKE2b-256 813446b72d608e02680036a52ef3d97f3173c303e8b04adb6c5e6aff19220927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c0213891898fa5b404cf3edf4797e3ac7819a0708ea5473fc6432a2aa27c189
MD5 59038b594a551955f8629c79cf97a0b8
BLAKE2b-256 c5ffdea9646f5885fa9efc07af91aff6086ac0282f83e66de0424ae523889566

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 15eb4cb543ed36f6a4f16e3bee7aa7ed1c3757be95a3f3bbb2b82b9887131e0f
MD5 c9ce77da1f036ba03ca143aa8cdb478e
BLAKE2b-256 c219a374868e93361b10637626507bc8cfd319c2e4b30b82f7de53cba24d8906

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 047e782b9918f35ef534ced36f1fd2064f5581229b7a15e4d3177387a6b53134
MD5 cc1f0bcf06a60299af44184d675f07bc
BLAKE2b-256 4098af05b98e7b81b1750f4445363ecc92c46dd144c208ded86c7ea37bdc13a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f7bcdf70c8b6e70be11c78d3c00b80a24cccfb408128f23e91ec3019bed1ecc1
MD5 0ea42474b2b7efd953857f96b6d204cd
BLAKE2b-256 b87a8d5430bf246a5905e7d9ee7c07384feb2bffceb725f2fad6a72814a713a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a8b9c2cc4c5f8169b943d24be4bd1548fe81c016d704126e3a3124a2fc164885
MD5 99c49ad20809860aac88a7a18dbc7194
BLAKE2b-256 c3abd536d95b62724f0079666772cf620741bbf8250088ebaf3f07cad082c3ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f2de65752fff248319bcd3b29da24e205fa505607539fcd4acc4037355175b63
MD5 ec89402b6d8e6e06d5e548d64e8b268f
BLAKE2b-256 af1f9a656eedec17bc100f0362d700b4de2b7bb4427132014228c7ae48f1700f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 817681d111cb65f07d46496eafec815f48e1aff37713b73135a0a9eb4d3610ab
MD5 4ea359723445560f36156b3a295e2d8f
BLAKE2b-256 16adf3e582f18b33be4064a229af21f86e3f97344f6c5bb151820168d1ef9ad6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b9a5fc4058d64c9c826684dcdb43891c1b474a4a88dcf8dfc3e1fb5889496f8
MD5 28122c01a4386fdf7935306edcb4778e
BLAKE2b-256 cd3932041d9ff711b6972342d1dee1de802b17d76c08dc29e9b0f1f8f515ea25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b5d37aedea5963f2097bddbcdb255483191646a52d40d8bb66d61c190fcac91
MD5 9fc2963f865e0b78275391760b99dc44
BLAKE2b-256 94dd41463c95cc8eb98003af4f92be321e92a7a049421b484042245389a9c3df

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 aa54902fa51f7d921ba80923cf1c7ff3dce796a7903300bd8824deb90e357744
MD5 05164d9c43ffb426bbd18e74dc4d38f4
BLAKE2b-256 03cbf89e2a31bd2a88eb35611ef42830cdeb87c8daa5e8b19dd76a48ef8d590d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 82e09f27edab289187dd924d4d93f2a35f21aa969699b2504aa643da7fbfeff9
MD5 731ea7bac7afaf6adc415ecbee48397f
BLAKE2b-256 2b24a1fd45909761fdd99159cdde3d4e2e87707726f018a7421f06b11ec9c19b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d281a10837d98db997c0247f45d138522c91ce30cf3ae7a6afdb5e709707d360
MD5 74c9746255de4c936eb493235fbacf03
BLAKE2b-256 f64b43b8fd58dca53286e5e96ead82bb3a4becb90c91e7081eb0ddc0690d1100

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0855cf8b760fb40f97f0226cb527c8a94a2ab9d8179628beae20d6939aaeacb0
MD5 d8e93deabec60e47a82d13df79654b93
BLAKE2b-256 089be728677175f911b3af5f171b060a6530b1ca652903f9f236756f93e5d889

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7fd334b40c5e13a97becfcaba314de0dcc6f7fe21ec8f992139bcc64700e9dc
MD5 3a93c568bca3a7a393c5956cd1f35810
BLAKE2b-256 790ead517daa1640ce098c68f1de64ce161dfb83a428358dc2cae5cea93315ed

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0681472245ef182554208a25d16884c84f1c5a69f14e6169b88932e5da739a1c
MD5 4d9cbd2f11a4b31b2782663ab97a81d9
BLAKE2b-256 278a651cca4755894caadf6c081f0e4781dbc390411f7d787fea3c6b0db4d240

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7345b1741bf66a9d8ed0ec291c3eabd534444e139e1ea6db5742ac9fd3be2530
MD5 8630f413196da6f127c45f791ff513b3
BLAKE2b-256 4ce1d3e5c5da056bf2e33aeb9536cc318705dcd21900fec3e5c36e230cf9f1d9

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1a5c4475510d1a9cc1458a26cfc21442223e52ce9adb640775c38739315d03c7
MD5 5d2d4301f77f2c3093843db0c72334de
BLAKE2b-256 5e7cec92937185491b9cd92009627d4dc3af51e7bbf4b1ec04e14000e3b92e9d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e68a404fad8493989d6f07b7b9e066f1d2524d7cb64db2d4e9a84c920032c67f
MD5 59d5393a4b74eb529ff1902200bd5271
BLAKE2b-256 66c4c4196fe0a5cc7863ce6cc3670260d5020617b5847a3483092b6cea969d0c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9a5fba9168fc27805553760fa8198db46eef83bf52b4e87ebbe1333b823d0e70
MD5 23a77c419fac4c736d4477ebc14cc483
BLAKE2b-256 d1bd3566d5e3f9aca01a418c22798baed893ecd66321607e020861de44c50a3e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f5de2d4167fd4bc5ad205fb7297e25867b8e335ca08d64ed7a561d2955a2c32d
MD5 3f83e00544ada9178f226f8fd52583ec
BLAKE2b-256 1055307805ec7d0917e9e986807d6e46f9ea510596378c929ee973a8a65b476c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46cd323371aa7e4053010ccdb94063a4273aa9e5dbe97f8a1147faa769de8d8d
MD5 996b43af4dff0f1085c41532435bfd73
BLAKE2b-256 c695e4c8947b57f1a35eacb175cf5717c372197dd837c91296969c782e7d4bad

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5056afea59651c4e47ec6dadbb77ccae4742c059a3d12bc1c0e393d189d2970d
MD5 12c168ebb412cd3321fd66543fa38042
BLAKE2b-256 40fa9b929c6f6db950ee67d61c106b85052609a4cf05ff11f78f3d4956639b45

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa39499625239da4ec960cf4fc66b023929b24cc77fb8520289cfdb3c1986428
MD5 1d1c28ae0b65784927c1c470f86e3c4c
BLAKE2b-256 91254af41902e316d607e1d2df6143b95145cf7d095377fdfce3ca3d15bbb616

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8eb4e2b71562375609c66a79f89acd4fe95c5cba23473d04952c8b14b6f908f5
MD5 e52829b8fd387fd7473c3ef6c7c3939a
BLAKE2b-256 3d235482e5112329d60b9e3b1b2832405d937d4a5ff40d31ca159c2c640e6e0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 51968887d6bd1eaa7fc7759701ea8ccb470c04654beaa8ede6835b0533f206a9
MD5 a8dafcf357bfec2bc1a0ccbcf1043dd6
BLAKE2b-256 3fa0ef28c4a6233cabd054ae11795af8a09f0d9a6a99352b20e0d2f5e8006428

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.1.2-cp312-none-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.1.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 cd62f73830d4715bc643ae39de0bd4fb9c81d6d743530074da91e77a2cccfe67
MD5 fbb1ea727d4aa1ad2144cf38e99ffd13
BLAKE2b-256 18b715900b0ec1cf0d0c52ad42c52dca43b62e0ad8ce7d55aa30b049ee4758c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bd95d223de5162811a7b36c73d48eac4fee03b075132f3a1b73c132ce157a60c
MD5 42926e0870e3d1afa0d189a8ed8e8e49
BLAKE2b-256 a5c5476b1fff3b5886ef0282344e1f7c3c1d3d9e6e65e7a1074863dddb840608

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 94d368af9e6563de6e7170a74710a2cbace7a1e9c8e507d9e3ac34c7065d7ae3
MD5 269c30105f17608ee25777fcbc87464e
BLAKE2b-256 1de6d344f65bc117cf40faa6e40f9c2d6607951515ee5c97139a87fa1ab05ecc

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp312-cp312-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp312-cp312-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 bb471ea8650796060afc99909d9b75da583d317e52f660faf64c45f70b3bf1e2
MD5 06cef573dfc1ee2313e74491a079396b
BLAKE2b-256 21e817e028d8f81219f4014ed7a2703ec0d90b2f4c439bd307323484a2f58669

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp312-cp312-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp312-cp312-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 dc737506b4a0ba2922a2626fc6d620ce50a46aebd0fe2fbcad1b93bbdd8c7e78
MD5 57e50ec2f1fdafc7edb9ccb64cb66c4f
BLAKE2b-256 017753917e943ab939802f0f88d2e0c03f9bee4c167979af3ce2c49f1847073a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp312-cp312-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp312-cp312-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8125152b03dd91deca5afe5b933a1994b39405adf6be2fe8dce3632319283f85
MD5 ca78031b21336ae88eccfc17aecdac8c
BLAKE2b-256 9dda0c8818e8d832f8d042600c25ef37822a4a0494ce5d81953175ff94466e68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5a014ee88980013d192a718cbb88e8cea20acd3afad69bc6d15672d05a49cdb6
MD5 196b346809209592cca640dcec302264
BLAKE2b-256 8b9b32057ba1c32555598b70d0de4b80077fda64ea0ec0710c027be966f69883

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b9f8bf1d7008a58fbb6eb334dc6e2f2905400cced8dadb46c4ca28f005a8562
MD5 1a454ad8473881ed83d80994c48f4aa5
BLAKE2b-256 859afbc2afa8bfac8b525bddc5da24ee3b670c9d59f974c367328178c211f738

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1fad38db1744d27061df516e59c5025b09b0a50a337c04e6eebdbddc18951bc
MD5 9e1b87941ef8f6ec21bd90d9e2d94abb
BLAKE2b-256 472f013a4176a16b34f072a3f4b5c5f87d068cdfb55db92a28ac7bae74a02a6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e5761ce986ec709897b1b965fad9743f301500434bea3cbab2b6e662571580f
MD5 abe1af7d2c501829624b3c10264d8c5b
BLAKE2b-256 8e23123fabb1b80234356f3d31153532884a45ced41788622a6006d5c4c492bb

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 90b06bb47e60173d24c7cb79670aa8dd6081797290353b9d3c66d3a23e88eb34
MD5 3a7f812f94c59a458ce6d6f9f8a197e0
BLAKE2b-256 ae289c03825b73440e9e31de861a5b59ff18db6ff9a4badaab031d325dd21e8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 ebf583f4d9b52abd15cc59e5f6eeca7e3e9741c6ea62d8711c00ac3acb067875
MD5 1849c7e355ff14438cff413705bb6e7b
BLAKE2b-256 1de84b036ce2bab9a26293ff14c044c726ee74e889342e1421106d66b2f28252

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.1.2-cp311-none-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.1.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 eb4301f009a44bb5db5edfe4e51a8175a4112b566baec07f4af8b1f8cb4649a2
MD5 2e60d0b1efc30796eb15d87ea1a8d0bf
BLAKE2b-256 b5f41728e5c344758b671832dea83b01c6d34318a0fd68db3b0f6fda5aa875a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1635a37137fafbc6ee0a8c879857e05b30b1aabaa927e653872b71f1501b1502
MD5 10d2b6f546f8eef2d980b6f131625fd7
BLAKE2b-256 4173fc0f94144f9a1268828d9147a3cc17ce08410f0f5bb74014fdf2e4cd775c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bad7029fb2251c1ac7d3acdd607e540d40d137a7d43a5e5acdcfdbd38db3fc0a
MD5 73281e7a8002d341ae53f7d3627a0b73
BLAKE2b-256 5be09a55b27e30151f8088a17c0ac1a43b70d4e81b1b538ed8104482ad68473b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp311-cp311-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 7c7ad8958aadfbcd664078002246796ecd5566b64b22f6af4fd1bbcec6bf8f60
MD5 d920390fc75edbe7ff59796e3c3b82f2
BLAKE2b-256 618b914248c1a29cb3cdb4f2bd7aa0b00be76f3636947942d8fd41b63a50ce8e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp311-cp311-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 2ca2d2d5ab65fb40dd05259965006edcc62a9d9b30102737c0a6f45bcbd254e8
MD5 3b12589a8a1a580ece06000ad708bbd4
BLAKE2b-256 9d2e33d7d56a438adbcc987c147201b9385d044eb49b2b13140379e0ac2ac258

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp311-cp311-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 db4564aea8b3cb6cf1e5f3fd80f1ced73a255d492396d1bd8abd688795b34d63
MD5 76bbc440ddf07b30ec0bc215bf5cdc7e
BLAKE2b-256 c4e5597f228da2ce3e24c8ad619b2083723e727c13c27d2bb2fac45d14d6872e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 818f5cb1b209ab1295087c45717178f4bbbd2bd7eda421f7a119e7b9b736a3cb
MD5 5f38e6e2f9f595e4970d96a6d56d8b12
BLAKE2b-256 47014c5cafda95fc9f4d2eec38b9a22b2498de5befdbb83c96a96191243255dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ac140d54da366672f6b91f9a1e8e2d4e7e72720143353501ae886d3fca03272
MD5 f2c1a8d9156fd6ff5dbc0b5b0a5cbc58
BLAKE2b-256 a2643756d93790eced2a352ef1f66ce280852153ef4d710f7269e995deebe011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 080a7af828388284a68ad7d3d3eac3bcfff6a580292849aff087e7d556ec42d4
MD5 088574f495278cc5d5eefb621f644662
BLAKE2b-256 32eda7051647101c80e0978ecc3519c6e90b32cdefcbdbafa21b5325dfc2f304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb854ec52e6e2e05b83d647695f4d913452fdd45a3dfa8233d7dab5967b3908f
MD5 65a0b2cc08a1e2d449fe5cefdb2e2ee6
BLAKE2b-256 0bf2f18a3d48981957f2aa6ab336135ce73a7db92271b6ddab1b2b10554c96e6

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 76c9c55462740d728b344e3a087775846516c3fee31ec56e2075faa7cfcafcbf
MD5 63e0756192ecfc7f479dcfada5558ae8
BLAKE2b-256 5e8bfb9c24488d196f1a340b12c058b08a8c24790bb1501d5661b384759552a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b4673d1f29487608d613ebcc5caa99ba15eb58450a7449fb6d800f29d90bebc1
MD5 36d80461d3c4ad4c5d626c5e2b10e778
BLAKE2b-256 8ac9af266da519ecc56b7527df0df744e237462f521fc83e3a81c5b9342fd22a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.1.2-cp310-none-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.1.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a772c652603855d7180015849d483a1f539351a263bb9b81bfe85193a33ce124
MD5 8638a027817d830b601b74e7655a5316
BLAKE2b-256 f4d9e0f6d427aa8056c8d04d3339da40303b782d0dafac64efcdf0774cd8604c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa38a76e832743866aed6b715869757074b06357d1a260163ec26d84974245fe
MD5 c8f5a73275f3b2e11a612d2ae1f931fd
BLAKE2b-256 a2303a4086459ed2c684bff589e7457cd23c96da2f46000e1d7ace5c36e3e365

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 88a56f0f6d020b4d17641f4b4d1f9540a536d4146768d059c430e97bdb485fc1
MD5 bce9423116a2747f5185126de0f75242
BLAKE2b-256 cfecbb7ab23fa6fc75ffd0dff866c2814e7066554ca11bb08cb5af80b74dc4e4

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp310-cp310-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 2575664f0a559a7b951a518f6f34c23cab7190f34f8220b8c8218c4f403147ee
MD5 e7bb124e753f728dd89440297be656d1
BLAKE2b-256 ad933cd7a73ca32b946c99a73b6fbb76e4b1114b949ec425f89c27f8088be9b4

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp310-cp310-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c2d00a96fdf26295c6f25eaf9e4a233f353146a73713cd97a5f5dc6090c3aef2
MD5 e1c0a77d054a3ed43950936dcc02636c
BLAKE2b-256 e2314438c763c76798afd1d5ea019c3fe6fff54f5d95d7ddcb734d2ad618ec44

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp310-cp310-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 017700236ea2e7afbef5d3803559c80bd8720306778ebd49268de7ce9972e83e
MD5 051e14cdc276fc60ea765e3598177ab5
BLAKE2b-256 9e53b477aec118bf87a35d271ce520989a4cde7072c8c0b8a6cb483d8a8c27bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af832edd384755826e494ffdcf1fdda86e4babc42a0b18d342943fb18181040e
MD5 ca2c4e6e0a16b6d53adbe183ee0ffc54
BLAKE2b-256 cc92e6bb8c9a9cf0d25f7dad6457a194f0c602d13029fab0fa252ecd6f917980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74a33aa69d476773230396396afb8e11908f8dafdcfd422e746770599a3f889d
MD5 1a04bbf0e58a4ccb97130f3f0573688b
BLAKE2b-256 bafb3aa41c4ee6e5456355267b6f0b60bb0c9d8e41556bc130e3ee4b50bbba7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 24c3c9180a2d19d640bacc2d00f497a9a1f2abadb2a9ee201b56bb03bc5343bd
MD5 e92e117563a863b770d9ae3a96e829ed
BLAKE2b-256 d70b3750ebbd83496a6d3c8b8bafc1d81763749b8f302d7a1ffbee615be798e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8884a1dbfc5cb8c54b48446ca916d4577c1f4d901126091e4ab25d00194e065f
MD5 1061fc69cba607ae81fe7fbe5644d417
BLAKE2b-256 e9425facc2d3aca9a21c90f3f3fa9b7a7975951704b47d0eb040fc70b66900e7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b4815720c266e832b20e27a7a5f3772bb09fdedb31a9a34bab7b49d98967ef5a
MD5 eaf2dfe600a8b5f1ec51282541d40cba
BLAKE2b-256 612fb81db8668fa1f0e069cf086be1983f22bb5faacfef9dc00ce47688390bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ac462a28218ea7d592c7ad51b517558f4ac6565a4e53db7a4811eeaf9c9660b0
MD5 d268cf168e333b8a092d960af957503f
BLAKE2b-256 f1b91e17aa51d549b74fa37f7641b202b9310b2e242a083e85c4dd738becad5e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.1.2-cp39-none-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.1.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 6bf00f56a4468f5b03dadb672a5f1d24aea303d4ccffe8a0f548c9e36017edd3
MD5 aa3d48e65cedd5efa9daa33bdc232dbb
BLAKE2b-256 1b8655872c1c449357531d3ea71d3f7bc672e62edc89a17ddb3e35f285ae7aac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cbba32fb14e199d0493c6b9c44870dab0a9c37af9f0f729068459d1849279ffd
MD5 91100f09a3f964ca87f729cfba9daf94
BLAKE2b-256 f5c528f8b327c228f0ce8c609e3f474e72764be1cd72096bc65c16a37b87f01e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 804cf8f6a859620f8eb754c02f7770f61c3e9c519f8338c331d555b3d6976e3c
MD5 9deee733f9898134f38a944ae07fe6ee
BLAKE2b-256 2344b15e08895bdc5e9ee7b1afdd1b543dd0a0bfd1af81523059a98232b98153

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp39-cp39-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 60b7239206a2f61ad89c7518adfacb3ccd6662eaa07c5e437317aea2615a1f18
MD5 b4400b4958988f5597953511e128d454
BLAKE2b-256 963a890fd045c074b3f1999380ca139d58383eeaa8435bb3864a983cd233f32e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp39-cp39-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 b74906e01c7fc938ac889588ef438de812989817095c3c4904721f647d64a4d1
MD5 2740a2344533b87cb800d0cdb9aab78c
BLAKE2b-256 1f1b7879dcd099983b8a04d8cfc13cbcf2756384736381ea82651095c831d37d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp39-cp39-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 087ddbb754575618a8832ee4ab52fe7eb332f502e2a56088b53dbeb5c4efdf9f
MD5 b6735713c18fe1fcf04cc706b1b6473b
BLAKE2b-256 a91fc7e6c593e79343091e2a4862a9a6d92a9dca585fffac0c2680191a698d04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0eb54b11cd4fe0c6404611eef77086ade03eb1457e92910bbb4f3479efa3f79
MD5 53f03bd79bdf873be69d59ee62280c3a
BLAKE2b-256 fe8345780d6424dbf64800497ce694b9b09d588f6c50de9c9c6c189169adbb61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0be2e2812a43205728a06c9d0fd090432cd76a9bb5bff2bfcfdf8b0e27d51851
MD5 f6ecd2648aafa285d41f68c68d41ff65
BLAKE2b-256 fcddad4af88dc902e227bde43878487c0deafbb5d72fa6b8bb6480ee0a3e37ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 be3419204952bbe9b72b90008977379c52f99ae1c6e640488de4be783c345d71
MD5 fe8026d97a42167ee493d8b42a797a22
BLAKE2b-256 cc036cf597afecaba9ca3f6227cec94e049c760b7ce3ec1577cdb16ca34bb260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d35d634d9d1ed280c87bc2a7a6217b8787eedc86f368fc2fa1c0c8c78f7d3c93
MD5 30f6762274239f6c81d0820c8e547854
BLAKE2b-256 f69adbbdc5f3b9590cd0273d96b7e0a8ce609038558bd894de1c06d643460203

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8e6ce261ccb9a986953c4dce070327e4954f9dd4cd214746dfc70efbc713b6a1
MD5 f7f683debd74d1a3d4e19b4ced0edb5d
BLAKE2b-256 bc3e671527f32e7847d7ed1f982f3ea4307848f5b0c8a50f150e4529c1954599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 5948af62f323252d56acaec8ebfca5f15933f6b72f8dbe3bf21ee97b2d10e3f0
MD5 f9f5ab3d5e3a89ea327ff1254d4c7d67
BLAKE2b-256 7e9ae8aa44326d8ec02b940072e07ab5bb58ff40dc5c47abb47f796c40cd654b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.1.2-cp38-none-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.1.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 b4038869ba1d8fa33863b4b1286ab07e6075a641ae269b865f94d7e10b3e800e
MD5 b836673f0849c27955bcf2054708d81a
BLAKE2b-256 a2e427d2e2307c4f516bbe53c2b11e35bb0669bf3ec24878e5c383ee5679f396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fc909f62325a631e1401dd07dfc386986dbcac15f98c9ff2145d930678a9d25a
MD5 aa6f9117f1c6cff407e87a4be35c6358
BLAKE2b-256 5eb5dfd46e35f937564b3d57cd4282e3ca5462bbc03c3d5006294612f79ed4c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a4ae46769d9a7138d58cd190441cac14ce954010a0081f28462ed916c8e55a4f
MD5 a2b8190ce4f7799b46a8b2a119f1d7bd
BLAKE2b-256 25e820c7161daa0849603220443e47d81f77781090d5d02fff9272754b75f3c3

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp38-cp38-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 b59a64c367f350873c40a126ffe9184d903d2126c701380b4b55753484df5948
MD5 8faeab2ab2ee7a2557052aaa06706a86
BLAKE2b-256 8b8548bf25e95aa349ccefe383eeaaeda9fcc254fe75d8343fbb8ab625d1b2b1

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp38-cp38-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c720e55cef609d50418bdfdfb5c44a76efc020ae7455505788d0113c54c7df55
MD5 33ccb00a49926b8d151f0f863fe4b0f7
BLAKE2b-256 dc74805d5f1423aa1a1dacaf24239c0b30994795f6f7fd268006aae1d03b3da3

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp38-cp38-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 e17056390068afd4583d88dcf4d4495764e4e2c7d756464468e0d21abcb8931e
MD5 adfc41c03cb710ce52f7126f4bec2c54
BLAKE2b-256 0e66bfe9935eb0ec55d44a02fde2e6de3a801d8af023a14ac826b3a04c19a829

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3747a4178139ebf3f19541285b2eb7c886890ca4eb7eec851578c02a13cc1385
MD5 942a4a120acb25da8cf690f1a53eba18
BLAKE2b-256 abdae56cea39c24c4fff1b761e30396b8d0e1062206a067452f09fd71aca7c8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7684b5fb906b37e940c5df3f57118f32e033af5e4770e5ae2ae56fbd2fe1a30a
MD5 969750f4688b078c117c8de40df53010
BLAKE2b-256 059414fd8f4f94b8e1a97676746c2fbfb9954d3ca98bb2a0ba1842b90e55daf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 68a2a767953c707d9575dcf14d8edee7930527ee0141a8bb612c22d1f1059f9a
MD5 8992793a2dd40d23753b309ddbfcd4a5
BLAKE2b-256 02f0f27685a4d0b9596487f4cb552d791e7760e844ecf3f49c861db5534c7678

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 87cff210af3258ca0c829e3ebc849d7981bfde23a99d6cb7a3c17a163b3dbad2
MD5 05f3130b8edf0df04778a4404e64ab8e
BLAKE2b-256 f6ce29732ae567ec070ac2a56ff05684fb09a8189d8929ab589f3545e4dcfd41

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2278ca0b0dfbcfb1e12fa58570916dc260dc72bee5e6e342debf5329d8204688
MD5 95a0d8848de7573b08d42a6854db3d5e
BLAKE2b-256 a5ae1b4d8ca308006a6f894c6aa9a04727fe5f2cdccc949e100206ee60e9dffa

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 6e3bcb4a9bc209a61ea2aceb7433ce2ece32c7e670b0c06848bf870c9b3e7d87
MD5 83ff021b0a425242908c15995fa6abcc
BLAKE2b-256 971f59a620470bb021779cda8c2a0b9b8237159476446c6a3cdcc973062be66f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp37-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.1.2-cp37-none-win32.whl
  • Upload date:
  • Size: 1.4 MB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.1.2-cp37-none-win32.whl
Algorithm Hash digest
SHA256 682ff9228c838018c47dfa89b3d84cca45f88cacde28807ab8296ec221862af4
MD5 b175cabfbd5c35be7d06f7b995bd0599
BLAKE2b-256 b65e29240f4e534163ec2e7670ae6e790509a38af8bc06ce17500d5910ee6777

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4938b32c09dbcecbeb652327cb4a449b1ef1a1bf6c8fc2c8241aa6b8f6d63b54
MD5 e311df93eff7c41702b88f52a22b57a8
BLAKE2b-256 ba7b3438042a95ab0c9b957abeb86e1ee68a2171c6e24277eeec0e7558351302

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 06ae67547251135a1b3f8dd465797b13146295a3866bc12ddd73f7512787bb7c
MD5 aa7bae7687615e058b3c5d0034bd19db
BLAKE2b-256 52b92aed9a4dc4f865be11062cb3bc8213d24451512d3d3b152d3a5152d7edc2

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp37-cp37m-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 4663293a36a851a860b1299c50837914269fca127434911297dd39fea9667a01
MD5 55f5d6c864b67c38ae8c4a41b888b4b5
BLAKE2b-256 2719eb3fb40c32fc484ebc89e510cbd07335fa8b281da5fe5c8178d357483dd7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp37-cp37m-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 cf92dccca8f66e987f6c4378700447f82b79e86407912ab1ee06b16b82f05120
MD5 fa5e4d38a3299e8882c5681ef54f2eb8
BLAKE2b-256 6c1e5760a9a73c99eb50a96642cdbbc4202f62ce5e9bc8afd865c446b7349bf2

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp37-cp37m-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 2ee3ae58f271851362f6c9b33e4c9f9e866557ec7d8c03dc091e9b5aa5566cec
MD5 cb2f217bffe2ff8a7139806fcfd0f618
BLAKE2b-256 ba9c261309df290f1aaf76f642e44d80af816198272363950891f2a26ca256d6

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4aff436c23c68449601b3fba7075b4f37ef8fbb893c8c1ed3ef898f090332b1e
MD5 900e7c8323bb227d3eba9ccdf53246b4
BLAKE2b-256 f169f210945a81631b83f679c4ce084db7d444e19273db2ab54707c39e4004a0

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b815a769b019dd96be6571096f246b74f63330547e9b30244c51b4a2eb0277fc
MD5 bd882c9a66e94498e881458d23e1ac1c
BLAKE2b-256 c3f5616bfa321206b45eb5307d5fc0d673d5f4a71f14637d24e3e4f6507b061d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1c917f7a41d9d09b8b024a5d65cf37e5588ccdb6e610d2df565fb7186b1f3b1c
MD5 04db9869d90a2004a744e6c7cad9f713
BLAKE2b-256 ab8d31a057ef6460752d948342d64130a20de64a17e8a3bf33c34a2f4939aeb9

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp37-cp37m-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e67f9b9dfda2e42b39459cbf99d319ccb90da151e35cead3521975b2afbf673
MD5 012bd7790e4d2defbe79bb0a3016b4e7
BLAKE2b-256 8da61a3d9c154aa33364e9e5a59dde7310d7b3ee72f0d6680189df5e32c5b3ad

See more details on using hashes here.

File details

Details for the file pydantic_core-2.1.2-cp37-cp37m-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.1.2-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7ff6bfe63f447a509ed4d368a7f4ba6a7abc03bc4744fc3fb30f2ffab73f3821
MD5 ac0b333520f1ee44715080fd8372dcbd
BLAKE2b-256 b7460854a766c4f39f32b7f32dd6af1a486ebeb578d78a60a249149f7b46e032

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