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.

The package is currently a work in progress and subject to significant change.

There is, as yet, no integration with pydantic, so schemas can only be defined via dictionaries.

The plan is for pydantic to adopt pydantic-core in v2 and to generate the schema definition from type hints in pydantic, then create a SchemaValidator upon model creation.

pydantic-core will be a separate package, required by pydantic.

The public interface to pydantic shouldn't change too much as a result of this switch (though I intend to clean up quite a lot in the public API in v2 as well).

Example of usage:

from pydantic_core import SchemaValidator, ValidationError

v = SchemaValidator({
    'type': 'typed-dict',
    'fields': {
        'name': {
            'schema': {
                'type': 'str',
            },
        },
        'age': {
            'schema': {
                'type': 'int',
                'ge': 18,
            },
        },
        'is_developer': {
            '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]
    """

Pydantic-core is currently around 17x faster than pydantic standard. See tests/benchmarks/ for details.

This relative performance will be less impressive for small models but could be significantly move impressive for deeply nested models.

The improvement will decrease slightly when we have to create a class instance after validation, but shouldn't change more.

The aim is to remain 10x faster than current pydantic for common use cases.

Getting Started

While pydantic-core is not yet released and not designed for direct use, you can still try it.

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 pydantic_core/_pydantic_core.pyi and 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

Why not JSONSchema?

Looking at the above schema passed to SchemaValidator it would seem reasonable to ask "why not use JSONSchema?".

And if we could use JSONSchema, why not use an existing rust library to do validation?

In fact, in the very early commits to pydantic-core, I did try to use JSONSchema, however I quickly realized it wouldn't work.

JSONSchema does not match the schema for pydantic that closely:

  • there are lots of extra checks which pydantic wants to do and aren't covered by JSONSchema
  • there are configurations which are possible in JSONSchema but are hard or impossible to imagine in pydantic
  • pydantic has the concept of parsing or coercion at it's core, JSONSchema doesn't - it assumes you either accept or reject the input, never change it
  • There are whole classes of problem pydantic has to deal with (like python class instance validation) which JSONSchema has no idea about since it's dedicated to JSON

Even if we could use JSONSchema, it wouldn't help much since rust JSONSchema validators expect to know the schema at compile time, pydantic-core has no knowledge of the schema until SchemaValidator is initialised.

Still, it wouldn't be that hard to implement a conversion layer (either in python or rust) to convert JSONSchema to "pydantic schema" and thereby achieve partial JSONSchema validation.

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-0.15.2.tar.gz (248.2 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-0.15.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.15.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.15.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.15.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.15.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.15.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.15.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.15.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.15.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.15.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.15.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.15.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.15.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.15.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.15.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.15.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.15.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.15.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.15.2-cp311-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-0.15.2-cp311-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-0.15.2-cp311-cp311-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-0.15.2-cp311-cp311-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.15.2-cp311-cp311-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

pydantic_core-0.15.2-cp311-cp311-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

pydantic_core-0.15.2-cp311-cp311-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-0.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-0.15.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-0.15.2-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.15.2-cp311-cp311-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

pydantic_core-0.15.2-cp310-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.15.2-cp310-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-0.15.2-cp310-cp310-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-0.15.2-cp310-cp310-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.15.2-cp310-cp310-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

pydantic_core-0.15.2-cp310-cp310-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

pydantic_core-0.15.2-cp310-cp310-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-0.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-0.15.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-0.15.2-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.15.2-cp310-cp310-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.15.2-cp39-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.15.2-cp39-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-0.15.2-cp39-cp39-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-0.15.2-cp39-cp39-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.15.2-cp39-cp39-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

pydantic_core-0.15.2-cp39-cp39-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

pydantic_core-0.15.2-cp39-cp39-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.15.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-0.15.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-0.15.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-0.15.2-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.15.2-cp39-cp39-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.15.2-cp38-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.15.2-cp38-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-0.15.2-cp38-cp38-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-0.15.2-cp38-cp38-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-0.15.2-cp38-cp38-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

pydantic_core-0.15.2-cp38-cp38-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

pydantic_core-0.15.2-cp38-cp38-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.15.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-0.15.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-0.15.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-0.15.2-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.15.2-cp38-cp38-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.15.2-cp37-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.15.2-cp37-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.7Windows x86

pydantic_core-0.15.2-cp37-cp37m-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-0.15.2-cp37-cp37m-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-0.15.2-cp37-cp37m-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

pydantic_core-0.15.2-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

pydantic_core-0.15.2-cp37-cp37m-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.15.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-0.15.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-0.15.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pydantic_core-0.15.2-cp37-cp37m-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.15.2-cp37-cp37m-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.15.2.tar.gz
Algorithm Hash digest
SHA256 4720e155d7046edf1ba95da3e9edb75caf2096c8c067d39914a97b246ac3c7ce
MD5 101c5534282f036834a636c887ffc771
BLAKE2b-256 a1adaad2a9977316a97093550fef54dbf921b7f4f2d74c0fab14b2c0c2b38716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3722e553627d58639cdcee66b49f74deffdb224f910107ce3ab14fe7b0266574
MD5 6e5f0f51d5426442fcfe39acf5008981
BLAKE2b-256 751d91a3fa278cfed1d56a0ef8653c1fd1b492de7db5a27179afd44c1dd16c8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ceb82a49781ad9e8883f359fe8527e1805e828b67dc46836a3fe2538e7b05d6
MD5 28894af1cb9e19d11893022e8ef8a9ad
BLAKE2b-256 f8400db40a400581d2a8ed78fed06b773f391b337e657aacd34ffafb5ae88145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41ef745f8c3df4d5c4f0db59cbb53a147bd74a56d74c9b6a526b05770770477a
MD5 4528c4b50c14085a00dde195bf012799
BLAKE2b-256 76c8e7bfa26d9de3d2bbb30dfe20bd0c1c951d972c7f656dbcb119301d331d1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00f4f9358428fe7dce4a87a01877cea02cc6beb839fa8a671514fc81f7013dc3
MD5 bb3a6c93d4717619d52eec60bde4af0c
BLAKE2b-256 a84c7911329964a759612326c4f5c102058e65df13e7c40b6d30194674134c50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3c5565c4c2c96fbfc65ec689041119f18f2f0ba6f9d1ba141229f7dad48f199d
MD5 51f457d88c95d77e7555edda0f1d9273
BLAKE2b-256 60d328bffb3e0e8d75761634a7c069926f25b047e801cacdf2a0d59c35b7a5f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 708714fc7745b496c2a9351f351a4b9f5d179e56d4151045398068a8c50bc07d
MD5 e616d88110da80196c8c769cd520d0c3
BLAKE2b-256 2e16715ba273a77c1ba8b2ff418632cf311729f270300e0aaef588b87c1d490a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6e497fb2f61bcfeb312969f8bdd84159b4167d70090d382417b46835b729763d
MD5 149a5d2cd8fcb1c043da863b6dac150d
BLAKE2b-256 0df102dc27c7a49b12f4ab07bad836fa35d1c65c2e707b627d19a58e28d18c60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a4fd0e94a85d15170afbff3267bea43a181b69eee996aaf08e61cc08adf6db79
MD5 774c98974ace924b6cc1b894a5e79e1e
BLAKE2b-256 881a722d32d648fdf881d5d340d06f467c47cba7b4baf1239cd9572262e51f92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53f1bfde05ac8eebf355ac82e31cbc167c42606845a5fc72f4fd52b10768a7fc
MD5 6b59bac6fb60086e2613279a4276140f
BLAKE2b-256 922d1b202a3baf6ea96081130d0267fbf6c3d07d33350a4068726f8ac7491ef2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2cc05899074a3ee0a0527937de05f6c12c20c9f093a472ce0505b6e1e171b33b
MD5 75117e80369c9eb847c33b0b34c8042b
BLAKE2b-256 a37ccefb802095eeebabf833c108baa3ff51e57110d8f204018020e418388453

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f630f68450abb7ae575fd4eb6a0674dcb99fad77ba1469f5e3c6434a630018db
MD5 391185b8d16c451f4f62349cde248d4d
BLAKE2b-256 9a0769ed3eb4723001463a65383fc4f32dcd9e68c6240fb0fdb137e9eb5fa899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a45a65d2f9e50f6e069c6e9326a13f6f6a85a2a02a99d344106bd54cc84ea948
MD5 0074a22ac753e1f29c1e90f4f0c20b7d
BLAKE2b-256 52404341d6402182709e8f870bc193d5e9fe2bb5050d4957cbb3d24e5413c1a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e65a22f36ca4537e05a5d2464475df29c2e0ef4c8a6b4454fe300bd70fb4c9b5
MD5 358aedc08cd6c58db31ba35c8f5f7842
BLAKE2b-256 e9e083f95ec5242d8cceb9f5b553e6f1113c3c00c95c094182211b62f18ee506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b47806db1143d14ddf071f430921893cb9b8960ef731481c6bc494cfb30e0286
MD5 93a916280222915b7cc3fd6a43a85255
BLAKE2b-256 da7da336dce8b3d006e2e8d71558aa6bdf52d4966cf4e541416ef91e9b132d15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b2bedab7dabbcc0fbe6d17006d7230f2d4b68ed72e728d83e08b16fe72b4e6b6
MD5 ca21b2a32bc731513c609943ac4a96c1
BLAKE2b-256 580c0db90226eda94168e7d0602dd3c957e74093a5b102056cf58f06e2c88eae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4841186b5e1c623fc89fe1b5daab63a894c20c0c964125a6cee0732f1c5a0ad5
MD5 8f413806bdb8743bc9144e3e422ce402
BLAKE2b-256 3843ee2b7f993c9f9a3edfcf98276c1b647a1e159a2627b515a5908507626498

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac472ff48586d04545132f7490462feabfa114f9debfe73a562802bd2927de73
MD5 7643f61000586c23f827e5ca19b8ad9b
BLAKE2b-256 08359b9502c67727bf2080134905d2c22283513ed0e2860e713b24a22c25e3b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c40485a593fccbad11434a8ab4c0443727bc58bb6eb5fda3b83c84363ae57214
MD5 ebfbeb6a1d6915b25263384d8c6a28de
BLAKE2b-256 adf8a2b4a3b7cbf18c840910d51132b38c95b6ab5f82cdb12c38f4775389b973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 057e6b33ce175c2cd90105459e30fd9065c871b6da5dabb2b50b1624f4f63425
MD5 a429d597bcc5bc309b1816a7fb441127
BLAKE2b-256 0708b30b5052689ef676e6c265f0ac26a101ca3ebb9b512d1a2c250caeefc897

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.15.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 c255f4436243e92a92c11496d4850a0b9d3003de8cf61397842651e46ac0b327
MD5 bffb74d36e3398498fcf841022deca8e
BLAKE2b-256 12509823ac0c75c41284a9e33cf85e0c143ae7f0600295a13653b2868b6acdf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d7b67a7b759a5dac879c285e411d17d0385a692d6b92e3191250afc53c7e718e
MD5 dfb164a4788ebdf8e876d8eb88fd390c
BLAKE2b-256 876d6d1fb4d4fddedd0b8e9c312182696c184136fc3ad99c10ecc8bb5a562f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8fd821dd42f7ab726420dffa4438281476a15573ff7436fff6a791320556e77f
MD5 cb4282ca387f3132466ec3f8b2176cff
BLAKE2b-256 80387a6403d8f1c23ca8df2908f3817c1a23d9a73c67b5ecfb5fe72c0e35a618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 365ed464dc1d672909abb3390684b027bb4be03190ffe3bfdc4eeb22c56c1864
MD5 20d3190fbb5e5039b013962d51877cbc
BLAKE2b-256 d9feb7d7903e8f9ce1c43c486e158171ddb64499b05f645f13cc30361ee4773d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 f48ec5b4603d4150aa22930bf58eb01c228e00e6c02cb0948ffe99bacad0efcb
MD5 a433b6a2413b4df2706ddd633166ce11
BLAKE2b-256 0b75fb6806c273bd9295919030d1138e4b290798c8d1a0f9b2242f018fbaff3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8ee01a0d7c9112b3579da2bf2d13dbeaea31cf73a59180d20b08c66f6a9c8bbc
MD5 9d35bbaceab7c63ae0f5f9d62ed3c7bf
BLAKE2b-256 fa8cbb6807846112cd70165fc1b806dfa26e6310ed23f302198b4133a4218adb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57f27276c7817f69e954ab2ed7923027a21a61b6dee0521b93f6b7a4f0733506
MD5 22167804a7cc5ad53bc4a06eec3de085
BLAKE2b-256 e74fb713aa7d56250c3d4f2c22abd7f1f11d76b8f1fcf0be51a0ed1dc62eb5b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1743d310c52a4ff5b9a0eb8e58929b925d3ec890d6dfd7fd6b5b22e93696cdc3
MD5 af1ed97d76782b91f175269f0f39c734
BLAKE2b-256 7caa9c6c6d855332da813aa5fa45385354a54e12a9df01fd0a8155c488fe3e98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c2f1c7344e5c3f2e8ea941b4d55e696f1f755a60daf7e77ab13120fa7b9792d1
MD5 f4d778687bea4fe2f122f999931453e1
BLAKE2b-256 5568afafffec059628ed0affb92bac475670a677eb3b97b82a74ee76fb52b26b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2df70b6e2a554c1fb484c8484317d01940d0461b948e06ca6a21581eb2318f05
MD5 4e7d0c45a68517e3a09c5a38de64d4ad
BLAKE2b-256 f0be653b38bf4d9d45111ea19b16026daa46884eb4e8f81a19a53ba2eedee841

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 40323caab030b3a8e94c7b1ee4a05dd9f8706596760746e522d1f23a714ec4d6
MD5 11dcb978c6cbc2d6ce1f9d08b7f5cae0
BLAKE2b-256 0c299482d7a3df4c539cc1b6d49dcda3e424ac7903b0ae8c9d275b4aede9f431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d1d602ab753729fb09246145296d1071ced7a62d4b0bdfad0a94dfe4e8802dce
MD5 54203f370676119adfdd8b210630d545
BLAKE2b-256 ca933769bb6f5831a34c64a41dd84dbaeb69885332073e194a725b68f1cfdc97

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.15.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 b5c3a5e8a03b71261101b252beff7cb3521dc96f9771ffaa78d175ed0c7f0411
MD5 2da9cbc81837732b68a5bb71d9706c65
BLAKE2b-256 258d03b94171ee239089d891efb8f8ff5655ed86fb3972789545901e8d2ce95b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 64cbcde815d6ac4a9b5a46bac193aa0a3652f07ac67358c7e3d3f65cd584988f
MD5 d4408639c36446b44bcd523bbef8a0ab
BLAKE2b-256 394177f7b35ce9ef69f1e39706c00d8fa8a4dbb35038c84492d5686759fcfd22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 831eb8193fc742c14906f5862ee501eeba49a2f2605c1b9b43a53e041d76c715
MD5 f91f4e595f177ac7d9f596f21628c82f
BLAKE2b-256 5b746e8f69adaba39912cd2982fdf5c9394482d75750e5d19f6bd9e92486be5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 3bdd968c302dfe0e0c016ad7e4fd296d4042ae6be38213597fd7c17383887300
MD5 0aac54b532e8cb091eac910eef207d60
BLAKE2b-256 0f5a5c6ae2b9f5af46118ab21927104dc3e19868ee8ec3af76294b0a270ceeac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 446612583d045dc12cdff0b62dfacb19dcd0a2be3ca41df3514ceeabb0b8adab
MD5 f7cc986ae963f581cf5c2483b6b89ed2
BLAKE2b-256 04140e104d567a8ec53401424f720fa7d1b2f2b89fb5f0193622df6ed997c5ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 15a1a5287145c694121a260c12b6890453ed7eb9e903ee45df7b853476b92ec2
MD5 6802ac77f330a8f79b54d276f9acc6cb
BLAKE2b-256 1d2fa91ef47bc0fd0db44776cd101f9ace3efa3c40e902d97b444d7a0be3e537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1fc759d45866770427e95733ff29a36fef71e60e1f6d3246cdc20179ef49912
MD5 d3353618a453f52ce01f9b28c042fae1
BLAKE2b-256 57b16b7cbdd6a268f4d25658d9e560ca03df5704904efffdc4603be35433e382

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80618b2b00e80052db42c1cdb15dbdad7eed724475260bb5a4260dbbf0db7763
MD5 e9d33c3deb0ce425fa3b99f1f7c6362d
BLAKE2b-256 de687da252ca322b60fd27ff9610834026e35ea03a58626e4a4eaef83f67cfed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 60d31459ed7ca11a196ff5161b585fc360dacd44e254cc417c0858a108591a20
MD5 17f7ee55550b8c9402a28085a5bd3c58
BLAKE2b-256 c6cdd072c52d44366287979282a2baab2f10ecdad8d64cd2893ec13ab988a81a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dfc80a52f0b986cb74c0b45bf4e9255d427407c414e49be140d6defe1900a8c0
MD5 78962840cdfbc355db0a0c6aa2231eca
BLAKE2b-256 5ca90d7cf3c8f87b5a7e76c623187db7c713c8ce00776fc8ebd4905683a51580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 fe7abea4242baad8b6ec2c9dcf1536c3b15c964b607ca0f54a19b66f6ed7ab5c
MD5 3f68b195cd9605d7aa5e7817b158a904
BLAKE2b-256 329cbb42a860627fbba656c6e818a964e3153ca942131909abedfa5801928ca6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7035ebaf7aca36c27f3ce97ee56b83a609bab4b003396154e349c22f160e417a
MD5 8a00964b71d14fb6ce93f4d366291626
BLAKE2b-256 3649afb04034fcabc139e44ed09bc05585882f08eb9c6688e274d7ef4ca6f839

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.15.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c1581a5b6e5dd9461a9d57da086a3cb29e3a3b67553c3a758ae3b39ec8b2fe3a
MD5 5a1e7b4603cac9e0c80b000493e98570
BLAKE2b-256 f61b07f3d1861c02f6c296803ef0890aee4bdaf09c953a5d9c1d5dec2ee09927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 acc8167317afbedb4973f493fa1e5dd11886cc5aaeb58ecc64c6a97c75ef70bb
MD5 6200d2fce9a5e8232ea00fc69ad99a02
BLAKE2b-256 d8859391f9a54e24b2280d5cb0ce1d4cdc479f641662062e843d9fec605ca179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 68c91026ea12f8d35f6e6a73fce0fc1cca5f9fe454e4703dc492545f6caf1e8d
MD5 58cea41e7fab0f1fa799c450543ede77
BLAKE2b-256 025c0dcce3a79683f3b8252b1897aa525e884ce01e25ad0db14be36fc7f8cf12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 3b3ba25b7d668bbcc1200cb93436293a481f0680646cacbc94406dd2e8c6223b
MD5 fa499cf1f1dedf7eee2df46f038f9a43
BLAKE2b-256 a6f8804223841d063fef7bc9177d92c2743278a2addbef77d9d8c0449771b0d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 9cf571c6a4e703ba4496a8c7318bbedca3789e10651ad0a95761bfaf69c204bb
MD5 179cf60f61c9a8060f6652246d07e6c6
BLAKE2b-256 3d71a967d761473c9643b244c7d81f70e8b6b8e6c9d0c0f8cd9e60feb647b99d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 1a746af0b1674bb27fa3768f240f6c150c88ecf098fc77abc432d41d439d404e
MD5 965d40ea3f7d9bfe99c290636382a320
BLAKE2b-256 40777427f1bb90ae00c62e7ee626c4dd7ca5a5500ee909b902b14ec31b4492b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95b95c19dcfc1e19292fdde5f4f709333f818d47357ce6751d629202b432ed75
MD5 7e2666adec532137f9d654f724a17439
BLAKE2b-256 fd2e4b8a2fd2a60ddc47daecbab1e9c7cb2b94f12ea3cb717d15abcd491b372d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f61c190b58cf38085f5e70144e476384a6b747749dc5c6c45e668e5a75ccee71
MD5 f12184d5c5eca692e50921485e42a39a
BLAKE2b-256 e835ba77f1a23bfb1aa4e9758af01b8ff806d7529a0cc567bc5a75d0e9491807

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f28c0bebcdd11d98f4158b30155ff2d79ffd2ecad6aae8b255e8996f85768359
MD5 19a2db6cb84fcd79632b13bbf85b5027
BLAKE2b-256 5aeff356457b53302af5bc7ce7250f6cad932158d5ff63708b2040d43b9b6bd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c485c31209e99396ee2a10b3d0ecac74f97b3466828cab326d37fe0e8e4bba17
MD5 d9709f1a41f51faa992985eb149697f3
BLAKE2b-256 53a6164d2a08ecdb3a4fb3c7e9be91179652bd726afd69cf35fa1f20d7d76d4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c2b2fc3d6649e35c31c0c9f49d82e3edf13c34a175a00016f9804bfcc9c28581
MD5 7243975845aa0d1c90f9adffe207d71e
BLAKE2b-256 56831edf7ce0866cd50459b60cab719453d132aefa2b8e488c89168658046356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 8247e48ef0383efe7596f3c2edc6f2e015bf8f123b79e6d2a4bcf2907c819381
MD5 904f19c5d3956eabd5443f23374f24ce
BLAKE2b-256 d939cdcb50a5d6b1e181c002190b4f4c9e24e8deb1429ef237a3d3ab081fa823

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.15.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 22310dc54dc7db58d7c4babbe1e541fd80bb909febaa986edcbad5f9add3922b
MD5 f4ad7fd25efbc7d8cb0a30b250af144d
BLAKE2b-256 1aaef8917c0033d12bffb77840bb0d6a3000e1e8eee69899ed6092bce0159218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5b13138f7e1efbc2d251a2facd3c2c71f5a9008c21f88ab1c0528ee69ab43a4b
MD5 9410e6aeac1ba5c794ab61fc455d4af8
BLAKE2b-256 877b7d6378a4c1e771f2c6ea0fc9ea4bd04c8bfd060ea1ecb0cbed4c8b22b10d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 51a4bbb5b7fe36e0a3403796751ac4a8712356f6b9f7cdb1e75d3e8dd9cd6a72
MD5 89ce1810e5736ee96c14c01d3122e5ae
BLAKE2b-256 dbba454d1534cce6d79b627a8e21ea660470a50723b2da011edd2ecea8850375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 07e456a0712f0d903806ee70c5701bf5a65827130c64eec47b07f45b42f66606
MD5 1f94acb9ad8906a91aff12c2b5727814
BLAKE2b-256 8b50dbd5fbe78977043424d4ea18dc4754e3196766c8aeb1152e67b51906c4ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 02b63c01219e8e5191edb5f226296fb9a650d295f769d461bb12a8f5f4900dbb
MD5 f214d78f7303d904296b0bc2128f0639
BLAKE2b-256 f34d350e5f98524a34083cf1687add5cb3aa0a4b570dbc1f8322c05492c3d99e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 115d1266af8c67f75ad2dc8d094dc21e6848527d6426fc741a0d22e7a86a7ac5
MD5 bff6a94fab52196be3c85b2ca09ca7b1
BLAKE2b-256 0fc0e1ec47187f1b72955812847d7c68c18466a67eb493bd4eb659658172e2fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae98f4fa784b36749896ddd646142e898b39a63a372cc3481677ed3392f5368c
MD5 8c733be6285d6c147ca92aa4cc124470
BLAKE2b-256 f80cd7a643df1c4abb689c62cd7aee5167738017a8b3792cbd72bef6b0ec5a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e09c78d703eee585446fb14e8fc7ceeec6c7060d0855ca22bba021642cab6d3
MD5 f949dceb92ee3990d7751a2fa7ba3300
BLAKE2b-256 3d2292203cd410e38539582c2d8908b303c86c079522a77122252014d725437c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5f1c3e65006cd551d3f6df0fa741a875e5361485269034b70b6fd839839a49aa
MD5 8f21f1fc256067aadfa65b181a425cc0
BLAKE2b-256 3c2d90880c5e9e7ba2d6c0c0c513b6d0c8e88a5e2e0efdc35dd84a5d6595d721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb3a843741d18a218b6f21e2ec2ed7d134d0727b9b35d358d34292342faca9f2
MD5 ae8c49138e7e045ac8f73d3f03055d0a
BLAKE2b-256 13b1ff2cc56b2bb5f18faefff200cc1d092d8f730396a5b4eaf4941594ce40c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bb1ba2c885561eaabf3ed97f6998212d2773421802a3bd366c2629c6c6d5e35e
MD5 b2c70ec6c3ccc0cb06ac60b62698b6e3
BLAKE2b-256 bb8abaa874d8a904b766795c31584f7987c0db81e3ae1a10df4eb7f7e22b7686

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 badebb3a1fd9d7b91e4d475626b095ee1eef14796efb0b6dba469afac17863a7
MD5 07c296eab30814f99c6e857fc548324d
BLAKE2b-256 859d7f90fd5170e2220456eb2ae91cb5f4729ce1701c9af3be41d779fb84f383

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.15.2-cp37-none-win32.whl
Algorithm Hash digest
SHA256 f37116df478a99ca0edfe5273e1dfe5bec3a7119757377d8ad1e0f04683511c7
MD5 ec067d5dc806c882378cd604a1ec9862
BLAKE2b-256 6dcffb152e0879751b19797be523c329bccea21b7cdf9ae7ab767fa380199232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9848292c86173678941f6b37869bc35251457d7dd956238f2ea63426e4c6be49
MD5 6f37713e14b113d6fbbe1fdcc69296a5
BLAKE2b-256 676ed66c396f534ec82c9fde42387b32ad1140d308c1026451d61511e397cfbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ea4d0daad7df5a818523453b48fbd9020672ddcf4a5cfcf53e7f957001db3f8
MD5 781fba2734f59f9fbbecddefdd2f3628
BLAKE2b-256 96dfd7e1e35917b2a9b927d35929498c9984aa83b96a784ed71b88fe5e47c47e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 bdfa86ed0e724902202a4080850bcfb036618314f2cd73ba64905d0ca478b8da
MD5 4aecefdd6d9a44b9e3c685662c40caff
BLAKE2b-256 051df12014cf7d8feb5431a523e24dbecd5527b15909ad86fbd361a2d005fc3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 eedf1838918c80d898486c92fd614edcdb8678eacbb68854476fd8e7a30ade36
MD5 04f101e3db9d1fc7ab27c33764353bd1
BLAKE2b-256 b78bd900e8059ecb495622609fb4536427f90d9e7bb3453bd54f580faae6f44b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 22a9ce62bbdd4b2f81ccf5d2ef1adde682c6801ac68ddaa330cfac43beb1b429
MD5 504f04f1c9d28d9f34bbe0b64437b9b0
BLAKE2b-256 7353ff8dbd64e79939d64de6a0d77e4ede7e08dd45b65e771cff42a55a4efbe2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9bb659d93d8166d5cc7535575ddfc72a1a54cdeea599f0fdcd37b57c35bef09
MD5 5bd825fea8bf2ec89fe6e0d6d110ab25
BLAKE2b-256 08bba55d5d0adf2098b41af5bd1cc228fbf25739b2d898ff3ae5b65d9eef1d73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48fe28b5aea7b1eab908115963abdfd431f5e47e67df23e7ad0335ff0486a532
MD5 f5a26af6a7e087e1b02f48d6797177be
BLAKE2b-256 ee346e12ccaa8c2fa0e7fba8ec6dbd858bb829c37a63f5b73cddecc4017fa7d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3a687cd4502a2f3fc407c42a2b5157407509dad3e8a1304741b3a1fdd1c3b40
MD5 b6c5e2ff1126b073e8f4a1991d495e46
BLAKE2b-256 dd4a98d3d44e688402a30b995038ecc3375d86cdf1add74e2529ba0f5b15695e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9aac430897d593029823345035caed67d202fc5b36537731bffd0decfc908e1e
MD5 f0fd0c3203ebf38cf2d02561501794a6
BLAKE2b-256 5e875d2defc86f73e837282f91e6339e2151f68527d4a3528a57616457dd80ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.15.2-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e9e90a2e639575492be8a9683ee1399a6f6f15fa8de16c34896b93f3923cf032
MD5 86ad0dcb7d44b2a84631bbad4d246cb1
BLAKE2b-256 e86a6deed9645d5610900400150072129d67ee856a80debc15ae80ff4d3bdfeb

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