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

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.3.tar.gz (303.6 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pydantic_core-2.1.3-pp310-pypy310_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.1.3-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.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.1.3-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.3-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.3-pp310-pypy310_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-2.1.3-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.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.1.3-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.3-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.3-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-2.1.3-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.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.1.3-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.3-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.3-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.1.3-pp37-pypy37_pp73-win_amd64.whl (1.6 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.1.3-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.3-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.1.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.1.3-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.3-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.3-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_core-2.1.3-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.3-cp312-cp312-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.1.3-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.3-cp311-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-2.1.3-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.3-cp311-cp311-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.1.3-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.3-cp310-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-2.1.3-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.3-cp310-cp310-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.1.3-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.3-cp39-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-2.1.3-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.3-cp39-cp39-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.1.3-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.3-cp38-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-2.1.3-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.3-cp38-cp38-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.1.3-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.3-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.3-cp38-cp38-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.1.3-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.3-cp37-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-2.1.3-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.3-cp37-cp37m-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-2.1.3-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.3-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.3-cp37-cp37m-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

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

File metadata

  • Download URL: pydantic_core-2.1.3.tar.gz
  • Upload date:
  • Size: 303.6 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.3.tar.gz
Algorithm Hash digest
SHA256 afffb41556da46e20619a0378f93e9ec06d6cd950b43997b3ae5c48e70a5e917
MD5 ea37d0a666e611382f2ae636a7ac87bc
BLAKE2b-256 88b952f38826a9913a1d483209ad1abf6f1b2046362d55a2df59d729b8a7c51c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e71d3b161a27b7b3f65121880ce7f11d444994e420d419c085d8179a6b2fcf8f
MD5 09531d8cf419fbb9fd2c9a03427aff1e
BLAKE2b-256 65ffcb9c2e9ece5d74d352a1bc6c7ced8c5179b2774cb214c2234ccbc1818858

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 804e65db61371acbc191c1937a2a97712be94948de69a592026be148b8da5873
MD5 f041140df7868532de01eace473f170c
BLAKE2b-256 fd840aaba4720b7f6d7dbf023b9018fc12523b2ac268d39525ceefb915ae4027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 49e29aae832246828b0c2aebbb8d1c1da46eda2bc8e83fd9b587c2483aeb15d2
MD5 6796f19e6ee4f06d75c7e4560a06ae6d
BLAKE2b-256 44bc5ffb51225c1dca7761b6b4339abc6e7242befeacfe16b1b709a63ff14ddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdd3e5bf9b5c6dd91d61836a0d7ff31087037393c78adc42f0a4f4d9325ccf54
MD5 cfecfacc81e06622a6819d3f158d0d7f
BLAKE2b-256 2155206273c56ade05d4e26cd37fbc3d9d67dade85cb95c1f96c0b07f2378e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bf4c713b2cd84f0ae94b56e647a6b4ff5a2b054f533c79cacb8de1e2b89c7c47
MD5 c12d6f86e6f03f312e07d9986e28ae30
BLAKE2b-256 0af6702a0f6e926a037961c1635d3f5458ef29453e5cc1040f66bef81350c445

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd8dc1102dc59d311c61a2f42dd5dc41bb709a998dc51812dc5fe21071eb62f4
MD5 e00324b6a664bbafdc8e38dd268e1d7e
BLAKE2b-256 59f7fd19eefcbffe5cc75bd36dffda3d3ef033e1d5ed24764695e069a11d15bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4d5ad7f8896fcd2d67aca6d517c90ea5870b18fede2f1b42e6a936c3d3638812
MD5 2e8ce5030d5e6708a85534d64609d69b
BLAKE2b-256 6e607b61ce18da6d424eb06d149890b89d64d75e9e87a36e0c09f8b213a623cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e5e3c12ada567d144d95314e6e9835a09e13fc245447f41192ab22160419e8a9
MD5 9cb0c9b195243a0e22bc9562ce11a84f
BLAKE2b-256 668d3ca91237c098c4ead5a562008a715567fe048f1eec2a188342eb4661ef83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1442660b024b1f19885b6caf618665aeb659379ac659ed0cba56d69e4afd744f
MD5 fb65592690835427113092a5bf5fe491
BLAKE2b-256 5f5b6be33821127b97b19acb3fe44f606f38c490edba61da3a1e283dfa1cf123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d54d4555fe108c372765aa3033e36783e5ecce4099cc90116b505ec7096d96d8
MD5 87a68dc497da2b62882700f144b71571
BLAKE2b-256 14951884212b8cd126ebe558eeaea09f33cd8adc8cb912b286272a3638241dfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0061fc06f4e74c204ac14c5096fd5a54f65c0be179739034eb2f2b22fecfad93
MD5 499614e8728aee64191172e1f1bf488b
BLAKE2b-256 fca63922565b560e543f02aa65958915fba62f872053a26d9d3238375a387a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aba6968feccb427279bf39c8b8b592f47984f5fba5de6cc592db9e837c23440b
MD5 ece574d9a264475c6cda0f43a643e156
BLAKE2b-256 0120733bc68c4bb39859d946c956c408e5361739e35a556a01dc00454d4e4cee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb3ed2f62e214610ea5a393bb733a44a44d60ecb97f95c1a297b64c037bd012c
MD5 edd7d389e8852e4e2ccf0b0222ac3f43
BLAKE2b-256 c8ff2a7f3e730e042bda17ff3e1e8dd4bea8235fa9156bdd206a022f359243d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2a3ecfdff8fdce01d72e1caf01bcedd9f8bb997ee535b3e0a3fe5159ca4fbeea
MD5 f5fb09c3e18404f421e3041c15c2a38f
BLAKE2b-256 b8ef7d28ba3ab5e1c05bce0b1920f989640c41cd5eced41471e4003d2ea5602d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d1350148aaad0d97e003c84dd70d36f7b213a19c3374a9c8ebd76669012a4d2e
MD5 be2a9de12a52968c4db5b1114b1e0285
BLAKE2b-256 f794494ba9ac70550cde9e7a8bb27d9786676f616d4c3027468e6ff7152715ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 66bbe919d5f44c1f3f7466bc9a883f6ab2af5f73adf313b59b04fcdbb279c8f0
MD5 af2c81cabdd3a481264220b758fa439e
BLAKE2b-256 742606c25648c195eb4c521ea114402001f0243428833cbddff2f4874cecdc94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6626e8e2bace4db7605a9c42c53d40ae2b76caa03a116f1b9f61617513efd5bc
MD5 ce9eb4f94cdef5b62b937aa13f88f3d2
BLAKE2b-256 d42c8de8a443716c53a17a5f7346abe1c112e051af1c07b2fce1622d2ffcedee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51ce252e410e08f086935b2c0863bbca4997f9f7eb78ada3a53052467de87237
MD5 3c335610fe0ea385776884cc1b33d4ac
BLAKE2b-256 b4108cace58b72dda6163799fb3084f8ac16009b2969398f982f65c3e3679141

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 646644aa593a4600e804d8745c6c0cef86921346115c240c61bb7cea9a177b77
MD5 0f4168766336f7d11922dbbfc7b52a90
BLAKE2b-256 bd964d7f77eef38da5e6ef6eeefabaa5c176bad9a216a10aa268b4c87dd7ebf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 29670dcb8f6f34d6685f314054ddfe548fce402607afcd1d3f30389186061ca7
MD5 a9247124defdd0571e0e70387512a99f
BLAKE2b-256 2053cacca51a36505ef391bf1308e5679824c85b6231d77707bccc2d5a857f3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 204b5756162033436a2717d0bda315dfb081f52ccaa591ab0c20a5a5fb4f3c51
MD5 cf48df2958e4bf8e9c171397deb9f87c
BLAKE2b-256 ae1299005d435c61a6327ad388819978d63fd6043f3bcd5adbb04b49e32ae562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c9821d052edde85ba80aad76e396a4ea3c75868d993ab7e79dae153e7dd22a5d
MD5 b4a8f8d818959f381d03191ff7120473
BLAKE2b-256 6880ec57c131c152f4257fe48d9a46b1d4c1fabc0ee3f407e81bfcfcae1c2615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ee1d715244c2a7df6b8ae3e57f1730e5a21e271ba765ae5b7eed074f43d7efd6
MD5 f2d3b33c2c2d420ad7fe3c1b1eba6dd5
BLAKE2b-256 e342e8c49e1c875be5b6f93ff19cacb505a71020bfe982e9d37ddd7615917a1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f453d37b36373573e0644be57279150d6c6d6e596f146b71bfa85219c9a02413
MD5 14767010f8cff80d6fe794795c6d7c9b
BLAKE2b-256 aeccf0cd051dbef5f06340f4a5382643c2037580c51c6f7633d0f41fe5aa046c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76767a3b5870b81b1097b8115e2b14e227d29615d7fbe52badba735a5922b820
MD5 7017acae7096332709c27a758f9f8eff
BLAKE2b-256 a25bfe17f43797cf69d318852aee63c256ffc799dd78d82b50d376a9430ee163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04ffa4452472f884f73fd8215b8195b74fc4fb25509edcf045bfd3ac9f9c7e02
MD5 19d203405d923dca4dbbc1a1381ab129
BLAKE2b-256 bcb8cd9b65b3c455b412896e76705aece03be9a0fcbc0db6167fb97c19a652d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9278c04ff60e7bce2f385101a6a83faa7743815710f34cf1ceef99c399e623ff
MD5 8cda7e941f40e05a10103aedd16e1346
BLAKE2b-256 45c5b4db3be8bcff476fc5e97f0f67a006e7e221b1632e1cd7b5b3d6ba02d2ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 020cb77f2fa6428b09b48c84a02be374a36b91fb71a8224c02c5c59e184689ef
MD5 474403420c3226ed3630c23559e77472
BLAKE2b-256 d2f9cd1d767ff2016a67d971c00806d17784fe579029ec2af2ed62ccfedb182d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 7572a3ac0d9ec47dd23cf627c72cf2b18687b8800d70d0564c8478f2a419bcb2
MD5 4adfdc3ab3781c26e2c51e7174c49bb9
BLAKE2b-256 c60772dbd97c06452668fa807cc8ca0b601a571f573e3a6dd5f4621bc5981575

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.1.3-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.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 6ce03d8ef5640945d4d95b53b3e3ab6aadc60e0823a9bcdf9b76f537d6bd0bb1
MD5 e7eed192d95cfb29113b362443c258a3
BLAKE2b-256 832582f0a379c7013bb52b7ff0ae8544db2e181ee93bedf06b17a913cc202157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 729dc1b5f35ae3f407d53c008a811ef4a38b521c76a17b6595bb423d2e6fcc24
MD5 aa9fd464ae1d9cf1e8239d04439f92f7
BLAKE2b-256 e7a46c4d5225291c616508f8f1c64d20db2e699113b63ad115e5053684d14205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 481a5479a20f6f8430d319109ef1e27c5e349108987a09ce05a795ee720794ac
MD5 f9023d0695809bf20437447e3191bc46
BLAKE2b-256 34689ce90105ae592ab1ead2f80f76242db6d04afe1d72451dd05c8686f0fe8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp312-cp312-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 9abebd428f894faafe4926294fb1daac078904400e63d9899acbb13add7f60fa
MD5 e00cefcac050101c56d3a5a0df530e87
BLAKE2b-256 011c152656ca532666cce19ca16a19e06074be2cc6392f7f919a8b8435101e08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp312-cp312-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 f5c5639a2f5bd9b2df7bd6ab4c9a094742500412032d58f5f66f156bcbe1c01e
MD5 c9767b0e96977e386cd6549596296ed1
BLAKE2b-256 d67d7b18c589d70f933eb3427379e0d570c58fdcd314e395ece0dc5417cf304c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp312-cp312-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 83d1560ae451b04d24a5082c9dc4b402ecd31f90d235feea55f4615c049d4136
MD5 1033693c2b16c20b769aaa52a1c35c03
BLAKE2b-256 7e8f2f53c5e9c5fb919f4b90f46ee3cbf2c7cbd6db0d375b6a52f0b4e0e1bf0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ba46d2aac944210c1e9f4b51b9bfa83f8cd7092295a2a8a884089336cce2c80
MD5 8db2fa776cdaedf79ae3151f7079d735
BLAKE2b-256 3588fe4edfea2e089bdf1b9110cd7dec86dcd7a66a0cae2c97e97d4068d03b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9e3042f578d57e42faf984e15c38e7618e7451f2b920370e18e9920c392ebc8
MD5 f58a191c4de46b9b3039450e62947a5c
BLAKE2b-256 ec7765ad864033b6bb0ef29acfa52999f920979ae678dc2526b42871f87effee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 baec41c4ba8e999e963ebedc7b3696fb39deb028817af9a67d63e598f8f85aa3
MD5 5010b03f66906934ae4d72e23a6d9437
BLAKE2b-256 ba808b35034a8503dff88eff256895e5068c7737ef388789a3a4245f3a1bbe23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4580a15c7a5c3bfed2ccb76871a9c7815fa6df6bb1ab5db6a5ce1dda6e24c20
MD5 5cc60d943e006ff0b086d56748199af5
BLAKE2b-256 f936283fdf58c9c9fd56a8633adc4dbf2ee6b3895ddfd9553a9cf68cf3be8de4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e2847e2daf4aa8f7d96ceb65995921f1a14fd0bbf1a9d69ad185675b7273de88
MD5 8ef8ddbe3d11c1f4c4b4e011bf17206a
BLAKE2b-256 a907617ad9e3c7fa468c596a0f567a52e333a5f61ee6e99ced064b4918faf333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 79fdbfc0237fabcc062fa876dbc043960ece1dfb14a755c1611d275551a3d329
MD5 8ddac5ce6a1a2864380730ce7c351327
BLAKE2b-256 74569ca314138ff038e338dfae28251ba10a6f8c4bd388481188341f42415fae

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.1.3-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.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b37c3190dde6f4aaf232686619ff1de4e455f63b9197c1323e3f9e6ca221cff8
MD5 80d20e857d73545c99879f5378c6348d
BLAKE2b-256 fa9b1dd53a083fe42ec6df7c217e90dcdc596c8d14b7b368c9c812a84404f89f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1c2bec650da0b5c3abc00678f047a6e1fe0a2695d4e9b1645c70c548910680ee
MD5 41685f42e4e29e424ba6c4279897c924
BLAKE2b-256 7a96321ea9c296b1c1a318753b46d5fbc9ab322399349678cc7b56b92a59712c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b981736cc3529bccdba5bb0f5bc6db3023cbb36ad1f47a05d0d3ed8db40edf2f
MD5 b9fa5d2d117248cf05208651c51bfb35
BLAKE2b-256 adabc467c15b416ce9b05c9555343f49f390d3464a0955209beb62ec57367808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 dd4fe269ee49bcd76ffaad001191f7bac4c0d7ae009760ccc0e2a91638fb063f
MD5 a455176b1eedf88d3a7d193521de581b
BLAKE2b-256 a9498a3592ea79f4e5b86b1d2d9506fc8eafd80a6e5f85532ec9b367a28254ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 221faacd03af687b2f054b4bd5f8795f1710da30f24823a18306f395ecff8102
MD5 a4e685934289aeaa0fe6844fbc98a109
BLAKE2b-256 e0c3aa4eff72df5e8cd5a42642d83b421b6777a1aeb14bf0b48667a38f89415d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8d11d1792bf480c4c1baa0195513c033b619e4b39628db9d3218ef877129175d
MD5 9147ffb85b063c181a91422415c799d2
BLAKE2b-256 16b6dee5c5b56649fd408453daad45e26c842fbf3103846aac1b48b7747e042c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d618d410c71b135b47b1f7bea690c7cae9f00b5bbd6edf057a8e33df1df25ee
MD5 df03b065ace400b14ad2f4a07cf577cb
BLAKE2b-256 da7c2dfc9c7f700c16aa1710210efea94cc5477d792853f2a421107a9b93c270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d33e57453b8675d8c9cdd8a6dc511e77187a3b7cc6d05240cb3dd5d40e15f84c
MD5 f8c15f81338d147a701db5d3a103d703
BLAKE2b-256 13ca5b4dee86229b1c408b35b26f23c454295e1d65b200c246718ae02339ed02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9053cae132467f139f21b1bbec56ea54ac906610a58959b0e98b4f0566c86608
MD5 a11cd4451b437458f1bc3e2b393a3567
BLAKE2b-256 7a881867d1528be9d827cb2603c4fba2c45cbe214e4dfa8c4410d0116cdacdfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c71b33b8cc2bcabb53264588a6782ade16c7e0c544ca3b6242efc2fa40e43dc9
MD5 361f721dedb836d148c2b5d976399aad
BLAKE2b-256 640368713daca2aac1b70eb0c8642c1940b1928034a0b0b43f9d80bba52aa05e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 076eb9604b24c0abce0905ba1626a0100b4e7111567520054068405331b549fc
MD5 c3e8b65fa79ff5d40b03c6f49b9f7c06
BLAKE2b-256 26697866425ae26ff80ee85d00d82c08e75ceb410aa963e75088547464591140

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 bde9c7d062b54f0398a71b09bbb5b7a0aa7329c22cc9889a696c45bdc36624c7
MD5 ec14cf3748a250996c67af3e52a8376e
BLAKE2b-256 9373fd3d57004e102032c44a111682bf705c7370c6152c7a151f255e7291efc6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.1.3-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.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 d13b15c9bdaa2b00061e3a2a6109b4c42a154541c443e0794c52f4e88af1f526
MD5 426ba949a8e02f44b1c22fc012206b42
BLAKE2b-256 f883ed3629ff5771e03f7b23fd64ebf5021a81a8dff9476669a73c1ee12d837b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 07e4276a28c1af61a5abcba34e3ddf06b8da1cb9dbbfd9181b104f7239b85ffe
MD5 78c8ebf0d5f2dddc1825e5372f5c84ef
BLAKE2b-256 d12ee09febe50069677a3740e4a036af6b10cb4095613f7bbb4dd336d28712ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cf1f40e026696a45ae143fd2c446b7bea58fcbb166a2691f83c6945939bf9ac5
MD5 38562d9200b2849f9519045313778ab2
BLAKE2b-256 10072020257af470f1292fd7911b075b09f163efa8620c58a2b1861468eafa29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 d88aefeb9b06240218567b15f172654f27721daf7dd87fa170fa6614d3d016af
MD5 80277f8fc3bbf8d5f27855624918c9bc
BLAKE2b-256 eaaf375df7db92e9e979960a793298bc91b06f71d108198063e335a947800e32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 b25238ca685b15559db2a86af7faad39f2cc608670c1a9be71f2eb00ecedb87c
MD5 b30e5b883cb350415baced4516bf37ff
BLAKE2b-256 01c901bf37aa9197be5dd603201e30abeaf13939c4aa9b071d6fad5a7fa41231

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 4877310fe72272df269248b6334d59e8b241d3a1b18822309a1a67ebb9818313
MD5 6a43338ed7c5219eebbe973afb783b71
BLAKE2b-256 6f9e10fa000a48a679ffd16ac73b77772a51a2d0e6a612ddc94505f9b2760f9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4c0bc03cf5a3b6532d88298078560cedca407a63308ce48c8b35ae61e460aae0
MD5 f08976b9d8f3ac77e2be65e02d585a7d
BLAKE2b-256 493a5346a9da77401dd21d20717e0e31a5fd032b8a2770de5d1a682b748c1ad9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ac24ae670c494a474ac82d656dff9265128d4a872161e12a0d7acbe88a6e5d66
MD5 94d9e8120a99a00b5a366707fc0e2acb
BLAKE2b-256 64feb0310d416072e97200a944a621c2cc8a70f40ff9f6ec7c373a8281e44a4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b03b1a99765f38ce0217ff475418483da825196e81dc302bf19c47bf0575de16
MD5 068fc44ac8254fce75ee71176f15e3b6
BLAKE2b-256 eb0154278704a4704e9a97b48947e66db7984ecf0db08d7ec3674bba5c102361

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e4355d6beb8347523539000eb670af23abf94db1906d61c50721c586dda3712
MD5 7c4cddfd890a58e1f43bad8b6f66a0da
BLAKE2b-256 4afd0aa56e102df8c9c5514d33b08614e8768947c5550941e38dcd57ba8f23f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 29e9e94f5a9778d162a0a45ecbf3b5b4db115806fdbd725dcb2ef57a46308bf3
MD5 03bed114754067bca0b7ea1f3a7dda4b
BLAKE2b-256 00900ec257d089fa4ae5fa322144176f7ef955e094e7a98321f972c49a3f98f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 13bc441d1f58835de576990a6416d71f0e86b2289e139654c189f57c9ea869be
MD5 8d9cbb29dccb0558eff399739928ef62
BLAKE2b-256 92c3deb9d39bf91736e4e8fa94e90fb94ef66189f85a9ccbed329d064dd28b13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.1.3-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.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 2cd77b0e105a69a697e904f3034670b8153757be78e2b207c3f24eee16791e7e
MD5 940f340173963d01890ecf86629afbaa
BLAKE2b-256 e5cce6fe9c2f7edec9046e488ea3654bdc9621b07502d97e289012c526bf1387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d59f303dfa683d14bfe2fcd9b8418fcee2fbf0e262ee3c73635eb9b2acdded2b
MD5 96e1b3b0d05c6a6dfccbac5c5eee0965
BLAKE2b-256 f37d3bf11b9c24a7866ae70354495332b3eeb2c825f8780254de7d7d41718f74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4e918fd7b96501a626c5bd4a24008ca819758898072b785d63c9164e15cdd86c
MD5 24aec6dd218649715e6f9318930b8c24
BLAKE2b-256 18dba21215dfda491f8b6b3862639f39d1a277d1e3a6b5805b931f295097b6e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 c88337620c8d74df2732900427878323faeafad71d87d1dad76153dea6ff414c
MD5 ed174929e20f7fe14bb02d51673e0167
BLAKE2b-256 b2e21337d17175769f2f6a105ac7f3018114fcab64059d6bbd6ca28b33f7b6fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 0c3b31b5ea0c65080c321862c453f9e2b58b210a190028d27b821d90d417e4c2
MD5 10bf65745f879a96e1b6e534d0323d84
BLAKE2b-256 4f2ac1492c6785a6103e3e30877d0455d27b6150a9c48d0ac7ea33c379050f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 a43adedb9d1b291be1d2504fb54d313c24b9efcfcc5a0840ca92327e9ca50289
MD5 d844e266e7e0f30607ad65857b6536e6
BLAKE2b-256 ef1e3cfa7c1b42309b871d96bc1e17b713a5d77112aa5a32b0564b12431c43b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 875f196647a258dcf3a198a5599beabb88f3c04dafbcf0b75a7c76be0af07922
MD5 f26cd7cc120dbcb57cb99f43dfc518f2
BLAKE2b-256 e68d712c2487148017558b40ddd13ab1116b8f00477e3dd5e9af76824d085494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1b12b29acc597b8c09f5feb2a1bdeac134f58f91ad4b2bd16fce7814c3e4b94
MD5 92ed0d314521635a331cebd6506989c3
BLAKE2b-256 a22d046dd0b05265739dc44f136ca8f0360d4900b670e9006d592c2d954fe7db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 161ba0d1398e0046170c9a6ff3251f14b27b928aa30757911b1efbb94f2a1661
MD5 aacfed2a81e3b532192c0eab6cbe35e7
BLAKE2b-256 f08759edadbb12e32eaf9b1f6e5daf2e5eb6ad0e55dcea32d1fdb810fc70730e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 296279c66963462ee23ba81a578f818fc1593aba8f45536e00abcaf7fd9d3343
MD5 96dbfcb38452d38a4c646f505142351f
BLAKE2b-256 59cbb63f5a559a7ad7544043af4d8e667ac82069d772d04d6ba34a6f3629c61e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 03aca7774824306b389b551ac523f272520076a7132cca471f9700243231ca94
MD5 69acac84c99797c5aa6ebd5f95e77a22
BLAKE2b-256 8f35a713e7502414a5df94ca564b7c4a8aa6e257aee217ddb52c2234e6f8493d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 b935162a1db09516298b3cba154dcebfb83e67dc453e55126fb11458716a1e5f
MD5 aa8fe9a17e604bbcc6c10d58bb9e2442
BLAKE2b-256 458486a3d5a43c9f300920a6dbedd1a3e00d3558d8db89d2c80df066227a4f5b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.1.3-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.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0c806955086a7706f4c09c6a0b356c7851dda29c7f1e25bf5dc56c2d8ea1d2cd
MD5 f4c56b3498a8f016ba504d6d4114e86f
BLAKE2b-256 7ba2295e2aa21d6c475a561bc8cf9966f6cad69bd1288ee0de35007caf6427b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 52eacf22258624fab62f0a860958212d47af62921146dcddfcabfd62776673ef
MD5 1b20340076ff4cac03259e7186f408ba
BLAKE2b-256 2c6a154f129751c4cec99b73bf3360a15c475ff3ff1d66c68e35473e67b1fa7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 65802cba10d7f85218e1139ad17542aebdc39ff7b51e849ea5a5a2e88a9f7453
MD5 7f59495648c22ee18ed64464f3c278b3
BLAKE2b-256 3bea32249fae7512676e8e70c320eda1517e9dd342db996f552bc55b6ba99aa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 57cec41833875ee84df818d8b9c14d88690c8cb19a861b4da0c7411d84736418
MD5 27ada16ecb5bd72b8eab4c5724f5596e
BLAKE2b-256 98350b96196d2a95ff768ed814fdeb7e64cc91c13f1721a7b69c833a050d8c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 d82b0a700d35cc9f5f6f4349d06521f0669ecbabaeddb3c5ef68f152af30e4a4
MD5 c52df613db332716d36b863e2c969ba3
BLAKE2b-256 278e439762c99397e7db4fce838d539aa4f6fcc4aa66649ea100239aa2b5a73b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 1f8f51b31507da269fa1150e77c8e00173bb4afaea41387a5d55d5a0d097d6fb
MD5 b14ca040d50e23e1d6ab408f2bc9bc12
BLAKE2b-256 2f24d80fa1c15ae8b2f9f3551741c2292b6b36a4b0230ddc2ec95085fe0904c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08289f63f3214cc180c9e53bba78c581d23488085e96e3db9b25e55ea833ad74
MD5 bea3f3450e30f9e1c4813acca1f27200
BLAKE2b-256 967dd1125d463c7c7006b109a32d43abff1515c6c5e0da577cdc6c31f211ca80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c81dbbeac6e48f3277affecdb2de3330b12cc64f0e035cfc35f6ffaed285d7c8
MD5 1c3c00741760854a6c20a26ac6892610
BLAKE2b-256 5f25ada260379b8efe733c702fe7d6f5142f23eb8f0aa5d6869947db59e85beb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1cb767abb3fae692278c95adbc366930e5d41f6469cb1c4fd93c57fec976ba9c
MD5 9b75e42621b17242caafa1d211d4cd5c
BLAKE2b-256 fffea64f14d3281dfa0a64542a9ef887f86f706d9899711bc09ea940f1e5f0ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa307f01774f801bc70b3b60dc963e8deefe44b3eab6cba6be8e5e47fe02d394
MD5 094cdd952a046fc92cad5f6930f00f15
BLAKE2b-256 30e915a5b09dd1c73f0e0364fc2633da974b739888c4e4706bbbd8bbe5893796

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 eb06af342ed3e941a6ee899b0df10f7a351936953e12a494fa6ae64b7df00b8f
MD5 7dc0d6f8e501edea4c6e499ae17d398e
BLAKE2b-256 cadb345856e22c597d35509314938ef9495f935676701e92bfc68aca3daea209

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 f4d10e0a7b9e44e57490d0d745e0de71b05669917ddf6f63806f1a03bc85993b
MD5 09d99a5dff921d19b8bf96aa85c74bdc
BLAKE2b-256 7dfe309a46e8fc6e0660d171a6c2028deb1db68839dfeaa0fed25df71d614df0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.1.3-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.3-cp37-none-win32.whl
Algorithm Hash digest
SHA256 d0665400f1a1bebc766fc4ef53b9014daeda970677e61bee73d297fd22e41f25
MD5 55bff9d1fb7eeab4636d733cd6bb8bc6
BLAKE2b-256 5727fccdddcfe4d17164982cc2052311cb81a5d973850710a94334951d9eceee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b3bc1705840738093f15f8b712b1fcb4a00ae0f41c9b0c11354653b7853be8a5
MD5 e85493e3a5383ae61dc55ad3627605b7
BLAKE2b-256 162f70ee477c247c803b399e81036b710472438a9b0cf6df2266e06703c1b49d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1f6eefa623a2ef6e4da6cf825d9800374e9f096fa99613749546be4c60adddce
MD5 a07a9e34f09dfd3207dae3ef4b3a1822
BLAKE2b-256 26a1ecbf59f417ecd5cbb4e0a5cb9c407734ccc4b458b04c00ee118fd28d5f51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f00da1c6d5410db9723fa2ef674ccd7d4d16f4d1bd5487c4a18075b2936e5932
MD5 673cae2bc06a3bb30881816652ff3f19
BLAKE2b-256 cea3ad8ca3cb2af6298c123a8acc69fe512932d709dc3b594d8d554602803464

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 667de37af39505cf41e68de5ea2a04a56be84c2af07363b532b09e1cb30e1ea9
MD5 27e90dfd926e931cb644b0e7925c8b25
BLAKE2b-256 5b9a64756c267ec461f33534ee7c0199b9da7b74d646d18a50491f134b1ab72a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 98970935db8c18bc5fd901fcbdda112bbb2bc172c1987429f51697fe360e2ecd
MD5 884606805f9a73defa5f882b7409b11e
BLAKE2b-256 456052c3b2ebeaf01cc64ef77bf98618b2faaf7fb2475ade99483a14f1c1161d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 30b35460c34df51c10cb62a8debc4a4d405e808b634be39a9e7b7539438ea4a4
MD5 c6b93361e291d70ce0b91898a6761d0b
BLAKE2b-256 f517cd89859263090e066eb88b0cf8a2882e5af90a1d5ee7acdffac214458e5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 417b355d1e12c1a6ab0565299d04c220bbdcd65c4148f97414d248a6d4b63136
MD5 15f023ba14c1c8de02ab943a615245c3
BLAKE2b-256 22996bb6319f03d123cdc9c12203a4b98427c9c974eeb7c4626efbfa59300e9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2836c9a79b53b0e33167ddc4ea913b7cf7ef822de5946540d4517f83c6c7c33c
MD5 b8702e7366747d2c84acd003719d8173
BLAKE2b-256 7694fbb303c7d4e8bcc7746f91928f5eaca7b482191d52cb90997646cc8b5180

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ed16a1955d8e4dfc09c6ccd6dd2b246c935e0f4c3a0ed036a9bc471aedb8339
MD5 ef7efb89c0c1c17aff3dd3a4c996e07b
BLAKE2b-256 805e03db1a2ea00d71445f6fbc6b70bcfbadd4fc67c8f965f7e6a9bbc15f972c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.1.3-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0951224fff65d144440393011e30bf98faadddfcef1e94d57acaaefcad0193e0
MD5 4f697ec544b6d0d84f9d108bc947ec56
BLAKE2b-256 3388f8535bdf4d3deb3f1871215d17be5f022b75d5314b19ebbbf3a57576076c

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