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': {
                '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]
    """

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.22.0.tar.gz (267.9 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.22.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.22.0-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.22.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.22.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.22.0-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.22.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.22.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.22.0-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.22.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.22.0-cp311-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-0.22.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-0.22.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.22.0-cp311-cp311-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.22.0-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.22.0-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.22.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.7+ x86-64

pydantic_core-0.22.0-cp310-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-0.22.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-0.22.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.22.0-cp310-cp310-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.22.0-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.22.0-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.22.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.22.0-cp39-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-0.22.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-0.22.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.22.0-cp39-cp39-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.22.0-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.22.0-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.22.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.22.0-cp38-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-0.22.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-0.22.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.22.0-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.22.0-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.22.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.22.0-cp37-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-0.22.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-0.22.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.22.0-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.22.0-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.22.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.22.0-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.22.0.tar.gz.

File metadata

  • Download URL: pydantic_core-0.22.0.tar.gz
  • Upload date:
  • Size: 267.9 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.22.0.tar.gz
Algorithm Hash digest
SHA256 ed031dd0652e41b775c679d423cac5eeefaf836b8338321426926f2162df5dd3
MD5 c529c9eb8a46ea2a42b392419e89e843
BLAKE2b-256 7bdce28659ec84600e5c97e97d0f6fcec4e19811a73727163c352880db9355e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d4fb02a1a00d9ba5f0656b7e97417fde958116052a6ad0b4a62598fbcbb88d41
MD5 b9b8ec10cbc4bf8ecd1acb056a924ea9
BLAKE2b-256 d4063ae09382f83080ad67253f57cff44742d0a885a00d341900ac81372bfb4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a519a7c2556a152defa80fce7a809a14f5c87b6b0269a48d199507d8b2c15c3f
MD5 b9501b1a9806f17433c7f84c95953106
BLAKE2b-256 26300a14c0b6dc61056d97007c1ce9a037242e2f610753bc1f15b13d64e316de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 931b4f2ed762a8e1c1420c822597d54491e7340e2f20403592347d1b3796c7ec
MD5 464dd2488ae7e430131c99966c7d5e36
BLAKE2b-256 2480d02fa7db8ecef8b8471d33286fe04a7f6c0b52bd8d17f65548c5fadac410

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb7a8dbc1af995ae3f0838d7ba286241e166301acf7825ff53d9dd31505e359a
MD5 05c40b8f44f9ac0729ebc9fdb7426ccd
BLAKE2b-256 07fedb5057b4732bf4f3cc08c46d19a7be08490d825c2a9081a4567efaa12b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b511cabad3186dab8276fe93bdad1875fd086c29b82a71506c865448266383dc
MD5 cfb6ee81658106769358508ee0d713a1
BLAKE2b-256 d5c3efabf668ccfb1ffdb99a458eee1ecd3db43b28e119d6a62d1e898d3f2eee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f1e24244d35c7bcf6bcd4a5e2d3e18fc9895fc60c5856d66dc0db2e99ebd008b
MD5 7db1e0e28e40988c8bb4d189b16adc70
BLAKE2b-256 a89d12177203dc7715871efaaf7cd35824b2cd710b129b1954240b0c2080fd6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a375deeab4e89028fd80a84a3c50d76ee328101075ffa722e7ca01859d76579
MD5 e3d5d37fd26a3da39cc3d413efeae9e2
BLAKE2b-256 52a28bde46a349a4e78b91872a28ef55afa7f8fbefb138843497af567c525d63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 736fa3234a2538c547167dd42f07cf97593233baed4a24ad6592a3938d7820b6
MD5 49d56faffe3c286a93ba3be542b996ec
BLAKE2b-256 aed284c8b91f3cea1ae26cb23fc171915a641db50e63a665398ce6f79aca9a07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d95f22e6f4c5ce38c9509a7508a94f8f26d5fb8a70f5f28182792ea0812b81d
MD5 02b4a87fe18814e155c3c8d677010508
BLAKE2b-256 5a939faf5ba0842d10d67c77cb748891de1a763231fd6bc29ca6db17088bca1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 167f2d473e7ca1f3f81bc08aa85563c1fac8e59a1e64f2ef39db3a3ed44f19ed
MD5 e252f9b06189cf7fcdd86f936c553fee
BLAKE2b-256 e964ab9ecad90258d1372c59908661d1521d4af7a2e07cb8c2928018bb2f85a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 67cbf9e6faa971cbb202f31935ee89a13eb96a8f48d3ee4ad9ea163d01e032ad
MD5 6ffc7dc11cdfc1937ecac080cfee335c
BLAKE2b-256 13401f672b3491d4f908f880786e726506368d0427fc24d73a754b2a2423cfa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 37686563c975a8311eabc799a91285d42e71f37651943f7c0410d7afbb3d0e10
MD5 299ecf1b7267301f525395b1fccc08a8
BLAKE2b-256 4b0cd3d53207f7eec96182b6f48e4f1ab2009ef7526fd0747056689ce5c630d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a07a21c33423d55f74ed7b7558504dcd70e8e6fdabacf9e2a1e36806767c56c2
MD5 3efd30a58ff83c34ec961db4994c2ba0
BLAKE2b-256 1c3cfb9530a0c8eeac4ca489211d0000da31579e6c9e294dd99861767bf93e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1d208b5dae492c70bf4fd396f56b767edd5d8dfd505a973d24bd6eba291698b6
MD5 770abffba33a5e5704d479f462b8361c
BLAKE2b-256 925eadc44cb9b2ae90a8c8f36643b56ec0f9ac37266f9a0a4c45d057b1686af0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 216e37fa8268602abc26e76eb1542adf7fb6fc48b01a27d470d1856558575835
MD5 349ccb780b77c345a4bf1371a711c2b0
BLAKE2b-256 f32f450a7a8dec2bc05d50dd2416f1e7d1665233db082e0d8b0cb4de9f0bb72e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa941b648b21ce9ca6d342aae74f03468fe6dbefabf43088c945cbe567513a80
MD5 999c2c479c1d005e1cc5975f13b1a339
BLAKE2b-256 756e7c8ae25f94613dc48fd6db6ba5d2b84382feaaf9207807c2bbe6b21b7ea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 97fd64cca8564b2a4d783d07ac128a501793abe1876ed585f4a0225bf92c1630
MD5 8b84dd3479b7e23ffd9d67f7fd5b6e66
BLAKE2b-256 66e7e44657acc21a0ec4fe485c4c94ef2e85b741a6db167387cdce8a73be1d07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3a41240f6409016fe51c8d3b06ba371364d9cdc1bbd9da79840011cdd0ac8381
MD5 7d931874926df65558c2e1877c392c3f
BLAKE2b-256 4162cc87111f46feb5814b57cba95232f77b29fe332e23ab5f3a4b95352d478f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5172ba0ba55e5e436cdfdbd1d5be6d069e808f16c55b84c18180ee528cd828fa
MD5 c8be0032d3ffa97aa71d4c169ccae7e6
BLAKE2b-256 c0ac0ca85147ff8858f87293ba8766a2de80d741f0024ba21240069d92fa3538

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.22.0-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.22.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 3e9f8128fc4a4a1d50fc5a3ec54a6def5bd0e1e0993ae536896beadd64e3d523
MD5 1f68c3b25f530694945ff66b2595fa9e
BLAKE2b-256 96ea77dd9f330b19565f114aefd49aeac8a32fe4087a0e0c298ead9076992e92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bde33a0bafbef4b86a79540e406409133a3f63b751a1679f2373b28aabfac067
MD5 a1190a76b726e88b962bd300015995a0
BLAKE2b-256 8802d4406d6d01fd8436a9d5e2d82195b2e0f62d25c12a13652f9e1ec7d5aac8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d031c7f5d49869986886ff68d0c9c9966a2623e30546ec65b90da618a9d8cc1d
MD5 a1a973d10cef032b9a6576f0668a2e57
BLAKE2b-256 78e299fcdfe14136802ff30542e95f39ad24950151eeebebe56f115ace4a3708

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 895ce0ba00df44f8bc91aac942ba4e080288dd96c0568a0453b2bd650fc0642f
MD5 b7f246378eb8d57ce211cd7e3c076def
BLAKE2b-256 fc78f7ff2962f8cdde0cd36b0c45543ba246b98393b3f154fd9a4680e58bb7fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 8adf32b8f7e4738de4488a2ff44865533ddbd88b374eb0838235a67cdbdeddee
MD5 ee7bfb690b6ab480a4f2ae61fce4205f
BLAKE2b-256 e6923d780ec4fc026acebdcb655430f1c2e720a3003a39b2fca0c26509cf66d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 557aa96ff1599805bb7e2971b8090533a04db316812714a1519d22c67cd8a190
MD5 24161ed959c91b5dfa3149241990e128
BLAKE2b-256 7bdac450bc6baf6726579d25f6341dfa3c3d495124f8ed646b58f14c52117207

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 74fd88c558f09d3ab197e251feb0a1d19c31a5b00d0408cb1992cf6ac95d5a5a
MD5 686eb11324407e41c712574ea8333a91
BLAKE2b-256 d602a19ac12290979199affa2aaecc5dad941ec1317b62bc5cf09de6ece8fd9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56390330488287be5847df50f3fe1ff16120c1ccf6949c247e5db47110f5c176
MD5 3942acb8c5e5209cb151ecdc0edadf0d
BLAKE2b-256 77677ca032886762946a24721f2124554c274b75c976b12a4ee1895cff8952e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 83b3a22382bdafcdb5bfe3c883cc4ff00a1d22c7ec940f9ee7e8c5442a0d4cdb
MD5 22d78314ade3c6d57c03f7c338c56ceb
BLAKE2b-256 fa6e9340fdeaca3aa6e2b174989eb85b6de5a44b26745e0c0d499d791e40a340

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebbcd53100a546c52261a58949d283231590a470a62862d26a556b35995cc4af
MD5 17eb1791b599018b2faa128cb1591b25
BLAKE2b-256 e66981888876dbe69b3f06f205a67c31d89e910f696ad74a58334cfe87366d16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e4f60501c5202ae04180616b97f6d8f4ba6ef1896ad375cf77dd975c3f634613
MD5 edece1ad9f12de5941b2038ba51d18a9
BLAKE2b-256 480ec13c4fd4ebcee084e8861d9ad201b4cc4d8ee1f7f35dd50a7099b6e0df68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 8f8111342c20f8453078ee75602d9442f13604acc86bd32bce09ffa3d8ab878a
MD5 9a9da4b45a26e1f737ebe442762e1df2
BLAKE2b-256 622c625df3a210a00c58db0ec93498bb99125db0b32bf8d51f71db6121f9b4a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.22.0-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.22.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 7285327c32865bd4ce00125fc058865fc18757c9bcdd1a2dfb60d838a0ea63f9
MD5 a9dd4860f3ffde3cb3b03105a836361f
BLAKE2b-256 06688ac49b91089d481bb913caf4d26c69626c3b108c060eaf81f8de35552300

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a5455c26fb8fd69bdf5e0066f3963a730e5c4a121c69dd5813ba4361a7e82972
MD5 0d1afd03490e7e04fb57580f2e7b25f9
BLAKE2b-256 874d82cdebe75cc90095bbd98c1a02ae0e385a37290eeab1df97d55eb9434cfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8da061f650cb42284ac7b2e777e3a0f43508700dffdfdb4d746aaa2f30162c6f
MD5 05eb575bafe22f326c6561bdad8ab61a
BLAKE2b-256 ff408835dc8df92810c71fb4972441ec5f597dc82e14c1e0e47f819d2ae99178

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 6f536091020fbfac0b1c590e39f1ad6529705ccbf3d845bb40f6fa2a51314ac5
MD5 8b58f2f8baf785ef4cf2716d04849699
BLAKE2b-256 c1b6a7822d6015c1f4aa2b934467e2f712e8451aa9d661b2f80ca9cd194948c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 61b9092740ca4f259088d5bfb8f20483bb28dd971076db7566f86d6ce56d6d55
MD5 159d616f7d9f8c67a7d9ab4a7b516cc8
BLAKE2b-256 9f80bdb10048807131495a933afc7a5da6ea0f537f84af638d35586a3019e288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c6f25343e4a3243fa190cd36912213403c8442dd9aa7aa6eaf8cef0c42278ca1
MD5 ecad2a2cb66f7a88ba1825b00b0cf5fd
BLAKE2b-256 8f090120eefa9e25c65c706a0c40a584e980ff252c6b14cfc8c8e5fde8993d81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ec4993ee91e5aec7b69c53164f30dc89a9c1516018262cdf1b1ac292a3d7b02
MD5 1d2253aa5442241b84028cea2d88f16d
BLAKE2b-256 8ff15d70db8f2e7bdf412afac335d26295ecdef587fa7808070624d8bef13586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81e51548900c66617138daf1d0d1293fa8d633f0416ccaa8864789f2671b1416
MD5 911ab865b088326919e76a487b641d4b
BLAKE2b-256 d8df794f509484e63951f6004af3db4507cdff1f3b6a5f91c14a56d5d3d2675b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e0244df68cf61c6ca7ec0e08e2c1fdcae8b9a04e74e7675170edd2b03726c78e
MD5 28f9d9b863ae0faf59a2da42db9b9a30
BLAKE2b-256 759b2452917c6d26cf11027f54705a6e48bfb10ba4cf5706545175241f4da934

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c45978916832ee7907c45dd06bb5875b849ad60ab5d7427a6c2c838d0f79abaa
MD5 549e69f7f47a2338f024bbc6ae56d7d0
BLAKE2b-256 3d0c0cfc26bb87ddc778750166519a86b47af679fee88ecc42c77a488703e28e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c98cc4c6b8ec978a9e70695b0c19287f4a76fd3c3f15d510a1831361c47b18cc
MD5 44b5122c265cb67386c13e596f02a132
BLAKE2b-256 8f9dea4466004dbed79148a455879fc50cf6324999ab47c44ec0e2376fe817ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 b2f9415adae8448b8f55422c6c3c5b3307beff970c82e5f18a54758249e3a0e8
MD5 a00cae80428f848b8d19f9386351cbdd
BLAKE2b-256 b2b32ff4534c19a131299eb49740c8b18f2fd76aebf1bac4f76d0357b7023fc8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.22.0-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.22.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 7a5b3223d0c7991db8399b41e6577de431ff6888e93bbe603ccbaa0361e0be1e
MD5 6b9aeee40957b30b11072e59946241d7
BLAKE2b-256 09766015db7302fa11a3b790d3f48722850fa9c303414f03d70a5e4bc99ff53d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 91d3d64b7aca137f06cdff4abafbb2321c71352397b7fd97ebb8ad98e7d6a54e
MD5 ffac7c13893cff07a1abc183dd2d9bda
BLAKE2b-256 1ff98d6871825fe3b58d5a4735455efac644985785074b12469f14c4de4bc5f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e8449c2ee32ecf729e4f97bcb43abc3dd3c79edf129104800d0f084aad482fca
MD5 82062f38c93a165224130f3b996f0172
BLAKE2b-256 2d1a50bb98a12ef4fdf09c6aa15192db897a3e3e06b9ec082babb60a9d728572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 17dc695043f80adccffb84c7632bf2b5966bf4053250b757f4197c4ac19d9681
MD5 f0c3fb11bb621a470feb586995eefb1a
BLAKE2b-256 7cb44a681dc004280ee895424f2695089f3bf37070bb2ae36b3ac309668375b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 60cc5590d8c88ac0721869d84c2aae2d95918327c0c7fb48c9c06fc4947beea0
MD5 7ce750612ad260979d63c111f77939ec
BLAKE2b-256 7cc8cd6755f6359530bf9ab3d589b2bc0cb72d87c95b605eab0b33fcadfc4eab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 03240d33ec47a236f649794958afd20ee8ef048e5509ecac4a017ee7db30f54e
MD5 40d0115403d906d06c7f87039fc093ab
BLAKE2b-256 01b85fb52f31d33b806ee80e7ea83010a05c042b98b1d2e05e6307c424972cca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ce5b69c61d2f759bd88d5f271f528b41e43233043f19a0fee6c8a51e61a568b
MD5 f8bb420b8613724039a0ec153438ac11
BLAKE2b-256 0dc302ec82e802806023852da7bc4572d584a0ec15f2f12c46f4f1803e2bd1dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7da8c7ec9df63de9839c6a582d93f18e24f1cd0c5614942ee1540712845f9e09
MD5 369d2a2e0bf71a67dfe1ec86b376d51c
BLAKE2b-256 b7556eefb1872d721ddbd0fe452376294886422d80fe012745413a1afc7adcef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 640b819be1a8a529e2b386df993a673cc9bf6e160cf3b4700a03d81bae0efecc
MD5 74ef16f49dfa1c4f3147eadab1915b52
BLAKE2b-256 8a69ab0b8e4d2d812cfca5a0422d305f4c19aca694b9485bfd3132b72e3ffda1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb3689a80a29770246f0c0e81794f0a33cf948a655ee0dc1ba7206d1c7cc17a1
MD5 a0f4e3720ceb79ed7e5a60e62ac40f8d
BLAKE2b-256 637b0198737e4a810d5a8e4d38e12429330d09ae19be815880c613627f44622a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0ae4e7af5444ad6a30a2fb4177c2cd09802f7c572490a7cd25f50cfb74573607
MD5 880783834ecb3b60c23034476aff59b6
BLAKE2b-256 62a20dc125927e0286afb4a29418a0743cba0f0e0df82021fa97e72c07c584f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 1ed289681d560c724e8b013ec275c7287f5c532907a3d0857ae188f2b3e066d7
MD5 0c1835094b7ec1a0396614b9ce954211
BLAKE2b-256 d7b75e6bc3d46f620c7ef3e31676ed2375f5ca15b94f242a3184e2a38867509b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.22.0-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.22.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 920598148924776e22b90dd78abe020c35fc3846a27f883c67dca077e5e30800
MD5 0d3c783fd4e143a40b799ace3f00641b
BLAKE2b-256 c0db2b5bc4da7fe8fa95e9a9c92b66417da70fd85f7490fa3659c1f9b6df41a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eb93b85ffeba5b75c6db2cb340c387f51c9450623bbc2f0752788165b12df877
MD5 17834b9b9fa08be7db0c3640674dde7f
BLAKE2b-256 ade07772f7447c8ff7861d1025bc3708cd10e8241c0fa3f37bed16f58e96f852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0a3428ae7721ec835cf3ecfd4d6f7805de8ef542bbe089444607ef4029b0371d
MD5 310f7682793fc74606649333f3e10e89
BLAKE2b-256 baf00d40284e8d8764bb6d2154a5cadac1455d5e38939fabbcb159d7c7fbb47a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 7ddfc131e99f455d0ea177b1d211c4cfc05dc15e8f6d1233d0916b79d198c6ae
MD5 22af6e180b7441acc44d8349711306c9
BLAKE2b-256 e2c2182216953edf94f28b9a40e77dce1a0751b3755c4b257806c2ec226f43e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 188eabcd0caa4e152e11a9220b9e5d8e9cf18eecf06888b3073e8e936b522a07
MD5 65e4edaef0fc2a35882c4cd616524009
BLAKE2b-256 100e232f55c4fb702bf6f446e6881ad04a6a1d893f8f37e548d85db592673c97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 0782239a61381df646a770f62b04bedea0a6618e825c3904c82f9bce35e432bd
MD5 b560f292d502fe67bef7a4174bf379f1
BLAKE2b-256 a92a511ea836f3289657a44a7938d8bc792408a21f9fd3bcdbcb1dc0a6d375d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 908b32cc507ed2b1508177aa21c98efd9b0a720bb7d9f54e71c6fabe6102b146
MD5 9f12970232b5a37ddb2a7a8215f8fc46
BLAKE2b-256 88117ebdaee09402600ed74bdaa5d9f17422a3c068685dec1fb745c5f5db48b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9638543ccabd34c65451baede20dcf8d3c6b6badb286d32287ef330f6a284d22
MD5 54831fd3b6d6c1a6670fd9364cc399b2
BLAKE2b-256 e3958f141d4d11669a73f6dc9cdaa8c847b99742efd20a30517ab8eb9b3f54cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4517b0277c315501f03d72dc14b485ebb20152c81f07bbd894ca393f747cd3c1
MD5 76ca85c4f0713d914b8751304df24e97
BLAKE2b-256 4af9176435a5d06132df9fa2ff5acb6832f4b2bd90e14d2fc7a7d109fb1d55d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d60d67db2b2ca22d2119e2a1b80ae3f6833c4e5835adfd81ca5958113083523
MD5 984d855bbfeb45e196ed2767cbd31378
BLAKE2b-256 bf904f2b0dbfac6e69f0f681c6f4dc3cddbfa3d691701009a462a03961f3bb3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4172dafe7afed22fdcbd4663793e826358e8f0ac7ba72ed0b5b1c15fce4388f0
MD5 2f5f3c1fb63fc25a80b3ff496f89483c
BLAKE2b-256 044384e81862c627347c92052cb24a19294d4b10b54b2b445fabb90af46e5515

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 9c8475a8468ee41fc215cd1dafebb1195a30cd58899d783819d137777d30cbf8
MD5 f10a3ba7a9b6d399eb2459e1b596d161
BLAKE2b-256 05d27d67233d3ed998919a0e3584c61bdf96225f558e5b4a2c410e9ec40fe047

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.22.0-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.22.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 5ebc66e9ff4402751b22f169091406166d637920b830069e5939ba3613327d0e
MD5 a11c296d7f2ec47fff32973782199b42
BLAKE2b-256 94c87f3b54dcd759d0ef15d5dbaef4e626edcfcb3312c90b148160003027211b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 68ebbda47c66178b4f03ae02b63fd7e1e64126895a95088944e0170b5b8c602e
MD5 d17b11f971233fa25353b6a45b19c3a0
BLAKE2b-256 b4355f3ec1e9c8e23364b1b55a283dc5a2759a1e5e9e3b5c0e97cb48c3b492dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 70c86ff216be27a2e5c81ded396344c936c23b4359ada8a20e95f66a0ad120bf
MD5 8ddcf57a19d7cbcff886270b19abe5ab
BLAKE2b-256 6a91e5b38f959dc83b0a10a547652e6c88592565f503df84bac408bd73bc2b92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 119e560fb81738d4be95f3cc85fa6f700b327fe2d3f66cac722edbffb33fe18e
MD5 c211caa1eabad185d78f6dcc5ec07de8
BLAKE2b-256 e4cdde5e8abccd58139e168073540941965bf6eaf3961b07ae118e09ed52c09b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 4b8cb536d856f17ed4cffd10189b242f402c76da5ea342fa7e1b852c5d05367b
MD5 fcfd9ccb3c66cab7b709f28171dfe64f
BLAKE2b-256 087dc9e9a8aea8c4af0ab982dc9fbfc313886d1e3e01bac9cc24f0f2775477f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 b5731a851bfac83012c9076019d33c573a183f092f800f99f45abb8f6a7d0d85
MD5 ba2c17eb5a80542d8dd226d35f5077ed
BLAKE2b-256 6759cb51bdee088dfe04a149d42ec3c0d44cad6fc2fcfefbf062441786633da7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51431dc795fb42c27b6e4fb5fdf298a8b8b58bf908ab8e02b940a23675450d3f
MD5 19ccc0fc3c7cdc1cd0d3adbb9736a623
BLAKE2b-256 b50e1f48ccde8229cc04092b33c9dbc09f54fecfefd3e635294bf5e2d123ccde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 927b7fb89582441ef2edcc70916dba4d838d8987ca9577d30b8135ba6230592f
MD5 d94d90270216863f569567caeccff759
BLAKE2b-256 32905a5f59f7230502dcaf214898c13cf4e051f0147186ff3a3dd195111a0e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c50dd5a32c2bd0d7a2dc043566d093adc41282112321512aa1e2a7f055e8ec5
MD5 91f1a294a4e7fe16144e3011f75a9cfb
BLAKE2b-256 3174abaf02a0d232a4912ebf8d9a31eea409e920d422f3a88aacdda948748b4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72cc7b7b517341e35eedf655b5ac8e5b8519e21c5baac6623a72a222b0e8598c
MD5 8ba1730c95ad761dfe5afedb8e129bd5
BLAKE2b-256 087f725fc87e38230e2fc990a0570236c2e99cf7800fd4c48e909a3418549c6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.22.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 31368a95440c73c8cc9b0ceaee4b095ff80993f8db37e71504d9da27d2041b19
MD5 9a32a318940755ae31e3bafea0a94525
BLAKE2b-256 05a9a3afb06f66dad11787a091f98ef5c9a482a439cc15e7e2cd9522be35e98d

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