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.21.0.tar.gz (265.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.21.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.21.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.21.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.21.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.21.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.21.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.21.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.21.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.21.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.21.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.21.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.21.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.21.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.21.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.21.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.21.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.21.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.21.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-0.21.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.21.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.21.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.21.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.21.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.21.0-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.21.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.21.0-cp310-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-0.21.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.21.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.21.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.21.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.21.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.21.0-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.21.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.21.0-cp39-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-0.21.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.21.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.21.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.21.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.21.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.21.0-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.21.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.21.0-cp38-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-0.21.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.21.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.21.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.21.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.21.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.21.0-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.21.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.21.0-cp37-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-0.21.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.21.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.21.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.21.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.21.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.21.0-cp37-cp37m-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.21.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.21.0.tar.gz.

File metadata

  • Download URL: pydantic_core-0.21.0.tar.gz
  • Upload date:
  • Size: 265.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.21.0.tar.gz
Algorithm Hash digest
SHA256 5afae4d35d30b085439ff20121512d7e871a4f2e46fcbf7c2b4d39fc3e01cdff
MD5 7b33533c529c7f03c2102b7a30220a85
BLAKE2b-256 a1211483fc84d11641412f80d0d78ebf66161fe1877d8579a65ded4423847dba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5e1f66435b054fbc63ee14678830149041dce67ae3d267ffcc15ea9a8b012c0e
MD5 b546a6e27533a63898fa7cc45c63e365
BLAKE2b-256 c73220f3cd1ee658d7012638f3c961f38243922b66f4806de7871819dbad62a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7524839cb687371ce6009ebcbbfc23e373fae0d2e2dfcd0d13ee551203488fb9
MD5 27c9cbf962b25b6dcf064665d8d141b5
BLAKE2b-256 9286416c072fc1a4af8b98d57c4ea69ddfc234611a194760d8e8dceeef3e8fb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5e28d9fb003d740aed13837aaa7690d6b806056c2c833f9d7ad1b48c03636e5
MD5 558c45d7a820195b0c131d124be1fa71
BLAKE2b-256 f4c74ac92d4ec84d121865d4090b4bad8661d87764274ba023578367b27b7d79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e894904a8359301c66d7463ca70050440e1fe5aabbb6afda0521e38a96078623
MD5 656da21a567635a93088b27632a091f1
BLAKE2b-256 7d3835617ffc2e14f809858cef0d4b216868ee17b2c7bbe6c0b20b73a066318e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5416b26ef2204de25dadd7e6c221c5e602c85e91228a02c1ce47161faf35fcb4
MD5 b16f8b3f4a9af584f3c661af9383e6b9
BLAKE2b-256 8d2f5fb48cbe10afdae161d2b8b1ac4054b4b1763d02c750ffb893202180a1bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0747c4165050008a20837023622271467de50ea4c517c56dd020460fb42f07a5
MD5 ecdd8b695663bd9fa00025363ff957ac
BLAKE2b-256 7b24508e16e98b8dc22c91517509ba262a10916815a70fc8d3dd512572404229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 685708c4f159979b914eb05b6f346aaa8e44bdd8049802ff07b03ffe744106c6
MD5 56e1319568fddd3eafc10a2d6ceb9152
BLAKE2b-256 0057b46bba2723cb7d3c1bc97e29dd14c1c3b654ac823a9cbcbf0fa2b9210985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 99eb53e521c05d1fcc0a9e749ab6f4e180d4341f61bc3bf3314c886f8ad6ad79
MD5 2e22003b6339d75c8881e21f1439ee58
BLAKE2b-256 c70eed46dc51e67131aefa7e56f703201328bd19d10e00981117361cd424a895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b631c4babe44918550471b97aa0e8837231199fe934db45c54066c8eeaa3481
MD5 fbe19bf09a6def62137524ee6ddb4db9
BLAKE2b-256 731cdc661cb4a4feb2667e83f9636bf03a9da0a1bf79c85ad4f8ca657787900b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 669ac43f0d4433d7aab565bf82bf10e3449c1698516654bf0ae253c61e1d678e
MD5 164c14ac9751cc3cb97b73eaaac95d7c
BLAKE2b-256 4c662317192f628a7d18df815df3da0540a0b63580fc6643f6e63173bdff1a9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fe2565e446363cba099b9b38bfd383db31ec3209719758f1f750620f0fccfbb7
MD5 cfd7513812ccaa8da79653d96454fe74
BLAKE2b-256 cda485f57a740dba26779e575077925848528fc0f73d0f0f0208ab945086f183

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b40928ecc61511ba97b39dea65d6002de5816b40735997e71d94ffdbc054fd52
MD5 a06c61c71f057167a428d2a881855e50
BLAKE2b-256 acf72feccb2a240ccef277235ce354768deea9847fea039aceab881d6712f90e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 040ca8dd7afed1d176aeed2f1bbe0fc68c56849cd779b7be184295de74af3a79
MD5 ae1d321e7b6b9c92e5521d9923040d67
BLAKE2b-256 9d9c8eea60b25da36315a35c87a85d818a314c2bccf52b08116a07dd6ef52c92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b1ec0cdc3bf16add520ff6635cceec350f994b0b42d11e4d46d882b1c2f21e1e
MD5 492e85352c7257fe4a3a7645530f0145
BLAKE2b-256 56b1f5718004671536d2fe6baeb29c337a6f356445da2fd89e48395c2328439c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dc64763a03d55de24e204cc3a37fe169cc0ab6e798db768986831e9e6198120
MD5 0cefda6150d629e389e5db5bb5f1ba64
BLAKE2b-256 e327baae738bbc06ce8aa4e8254954988b2e4b8cf9188af011430b90d8cea53f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d49b75e69b5605443675e8ccfc0f2fad2648e9f577029ed60b12a1778f347c00
MD5 900bc8b65eb714eeb127f9882d375bd2
BLAKE2b-256 196ebb91d5f6c69ca248497be66d2c853c38a2c5ceee07e82f7c5e0a7266b86e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 75f10cdbef9ed6573bc369c88bd62e44b1c341de3f3c1456704d274e23ab932b
MD5 9d2721a613a627522079583526a91d75
BLAKE2b-256 f49757f4f6688084b68d6b0308e71878b4c9b3ec039199a258a35495dd677cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 217a99fe6640c4bbd4793dbaff1864aa8db0b64d5cc43d0fb79fc03e22f70656
MD5 48f2d10b2ec7caa8a00a3a74d29d5d14
BLAKE2b-256 0212f0e1aacc5e8f8465f8cfff6f997992228a2423849bcfced063672291687b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 820d089ca6c59a78833d8b226e376896d00c00003f82803843d5d30b0ba421fd
MD5 51bc322e7825157c7c233a2b716d633b
BLAKE2b-256 b0f0bdda4c9c634ac32e48130f72f69761c0e68924580ba1ff62ae76c8742237

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.21.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.21.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e9826db93080d8a29f2a31bc5e2e99cd604516f35f3742be81a6261939011d03
MD5 2f6b9adb74a59d407dd7e57a1b279ed8
BLAKE2b-256 57547c7fdc182083e643bcfaa98206cf9b7ba23c74ffa040ebb5943bebd28f98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 222b95c23fd39db70f0829bea760108d33dda76189e52bba4f0ff78c9332c8f1
MD5 289b6bdebdedf36f09cd6946bde19bf9
BLAKE2b-256 172fbde0a282b4e9f103598893c57f90014ed319afdfba784c79f73f8bb979f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 50cceca62db9e1df707f27413c93f48c6caf3b16f2ec8b797bded7e196c59d3a
MD5 098083d3292cabf19fe37c6e5ef51456
BLAKE2b-256 031a5e0e0c3dd9d2cb05256e0e2debe66491de2a9a4761127ed773d4be0fffb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 9694800b87bef92a2d90c46609352a1e5ee28d55f4e531badc8ffa14a47279a2
MD5 8e405046de1fc81e9f84282e6a4f5c2d
BLAKE2b-256 1e316068f6b5f4c85ea34baff8e5dd81746a179fa23858f7e1b04e6c024b039e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 58365668917e9005df9c7afce5d5232912d7c3e677125246c36480198530e964
MD5 216fb4cfdf77616b8e4752157072ebd9
BLAKE2b-256 96228a6a1c2cd122ad456c348b2a49fa3c0768cfc16c22bf340b3b05d9141099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 22c07af3ecbf514de5ea654e3664244f8c2c5c461be8c68e53e08ca1b24728ea
MD5 7cb28ac553e6faf97fb8c7e58486404c
BLAKE2b-256 63d384431102e240c2632edaee6db062fa166a9634a2fe060367a108ab8b4e37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4b15cf9dc73bd509d7aeec9a26dd9e4f952f026ece985ae9e49156c250423417
MD5 329ef5e44a934abb480881e16c14d61a
BLAKE2b-256 774f159e732645b8244ba47277c14e89af6e29ace15b40ff06480275e5af7a8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e5090fb07212fce2f422cc914cca662e85cd00e30129c59821a6bfc470e9d28
MD5 5f65170eb2b0307427618802e0519d17
BLAKE2b-256 e9290fc0d56efa18783a4225230efd13dffe7f1ca4ebaf78f06f969231e02393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 809903d318fb42a80ffaee071c86c10b189308631895800329626de16b1ef045
MD5 1a21ae550f5c820f4e342e62671a9742
BLAKE2b-256 a4c6ea203c047b489f281bff6cf3620518700831a2307b293fa84dfe829deed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90f7d72a4ee1094cd2a1c451231aaf3dae327cde2805a9ac94bb71c0324177e0
MD5 f610367628645982c4e3f3067b55af6b
BLAKE2b-256 094180fb21ba53a2350a50cbca28bda87bb03b45dfd9146250f2fbde7bba9660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e9305d78513fdb740cd7ff54fdcb2ecb1600cfebd9f7e65eef8cedc2c8d413c4
MD5 5c719973a681739b9864e740c7448ca6
BLAKE2b-256 27324ec941e778b2b47ad5af4d83fff07283dccb3728dcfb19917d935313d07b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 969fd3a078e7e373af4a3c678a881687a47a0ac7b79c19aa40e39f6fc9e4edd7
MD5 93f694c7e3f113adff1c13c1d5a97e94
BLAKE2b-256 460e558dc7f5c17c75c45ac0ac4fa6415b2af15aacb52283463db97c60143a74

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.21.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.21.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 d2d65e746ba1600e109aa69d023a8a5fb62c0a6fcd652b8d54504846a6faa461
MD5 7be4a3fe70da700339ee063e292ee11a
BLAKE2b-256 261c5c651dbc770e8ea5caba44ee0d9cf2dcfc9ff8a6d71a836c4b19588682a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1f076311c5f6b67dc01dc72bf21e2bc95b6ebda3a0ef801fe67d666fb0ef2f02
MD5 7b529f995da47e2524f36f81361809ab
BLAKE2b-256 ae43413c4a35b89ce319e56164c3c469925f9774089041574d0ccc9957bce888

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d3e05d3653e968799c2d8f4f4051392f80a5b58dc1adc278239ce7285057dd68
MD5 515577845b8de73526706526010b2d3d
BLAKE2b-256 e7452a4d957df3038915201c22da49efb6d96b5eccbf20f8d4be364da781a137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 d231e2f809cd65c531fdb56c97a245f8a5d0dd8d5807f0c90c6a05b902b4eb87
MD5 a503c053ccdd33880ac5dd00f3c89d17
BLAKE2b-256 8e3f0031cde0acc3f239ccfa9da8b2b783e2a04515ca67636811b2f63f5e611c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 665be815c1d8ecba0ac39f92cd5ac8ae3ecd022e45c9460861f1bad28c9b885d
MD5 db006ed4d52eed1ec843621710d22e5e
BLAKE2b-256 5ea1f293649d047da7fd678ffef4838a74c3f3c49f0a918cef4119771129ad70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 6f2e69147d137f742bcaa3938e4f0e6abf79388a055e0d7b57b254d7efe18281
MD5 c1c3cade3264ae0f79b4bd4c34e6faf0
BLAKE2b-256 5ab20e6c05ce0b3b40cfd35b5f3789c529f090c47dc1272b124c05b0b751b179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d794daf30687676fe859c17eb258fcfabc3b5ac51fc40fd05c48ea8a4bc3bfc
MD5 f00b6d1d1ab29d5c2a36ff08a89ccb79
BLAKE2b-256 96e35b1da963a0498f50618a3f5763cb17c05afc6582fa35481c0641de5a69aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e19561367f6611be9e80da47823a9b5037c75c5c036d2fee549ea2acef374ea4
MD5 1746170d584bde6e25fb9d74de0fe69b
BLAKE2b-256 5f9c3fd5b6b01098c21c0bcb06238dcded3ab4d1515ac4ccfb211160b04a2568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8ccd131a2609ce66b82f371cf5d590712e2b7e66da82bed7de6299fa65eeb2dc
MD5 713b516c908f7a5083064862a52933ae
BLAKE2b-256 4222bcc6db3d981e3f6de91ffafa42faa3ab7acacdac89bed98adad43abfdaae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d025c3721518704a93e81eea69ea42187b9d1be7b9f838f4e9af3806aab953dc
MD5 638324856dd11e7620d34fd566072ed7
BLAKE2b-256 e1ffb12921fb636b715b510ef1e2c385d0c66e14d77b35742772df7ca2303449

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1cc4c222c76d24c1ae1bcd60dbd2efc05f3dbbd81cd06ddce60197229009a966
MD5 4fdc8a46f60da4bd3395dffd754d0ea6
BLAKE2b-256 c7fe444d7df73c83b94804ca0a9acce0c4b2e08d79aae19e11f53ced1b21d46b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3dbe42d465ca35e1bd14ac394807e7c3c0a9837e0b9b92742a4d3110adc1cb44
MD5 23a54b8dee7c296f658e7f41cb8ba503
BLAKE2b-256 ea59c1c94412f53e140595936c1efa8769c42e858b9439071549b15bce277e4f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.21.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.21.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 eb7935667c455a982becfcb3a356769989959f2d599014528355f13e2c1edcc4
MD5 ac606f77e78dfbcf77894dbf8331a183
BLAKE2b-256 51bebc5a07e747be241cb095602995c5e2b71e6278ba9fb4223052100efd8508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0072ab477387a983395d7cbc69c897aab3ee8983c2459ced1b152430cbb714a1
MD5 00be0fcc99aa6aa1a12ee32b28b22a36
BLAKE2b-256 001c43cf037a951032546bc8139d3bea45833c1feef3abe6d39fde21905cfa5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8b2ee7d1b9064442a498e1be8169062c01d76c45648c6551e4009accda8aacd7
MD5 7221220a740ebfb460535a2d019bb9f4
BLAKE2b-256 65d60d0dc815ea74cea9ee96e4e9dc0e8fb7910d89928ccac417fce3c6323bbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 dbe236891749479c67a59053d1fde57efc83dcf2e97940a3850bf36e379b2c6e
MD5 68b3d00ab2a141b5fed31c7b396b466b
BLAKE2b-256 44d617880e87d13acb98d180f21b9d3f6eb62c3cef77d12392ec99fa96c88b7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 bd1d34f3c400d14a26476331b1207e24c96f1d5cc933c1df31de35ef06d405c7
MD5 c9b3c921e9938bfece7aa994e464de30
BLAKE2b-256 8922469b9fb7e372089f455d8e3472701139a70f8c9c7aceada9b7f5fe769769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 a7b57c6275b25a68444cfb6c7116eef1bfc9ed5160b83d21f66f8b09b62685c8
MD5 0f92cf7458dbc1df2d209a2696a61285
BLAKE2b-256 7877e3f2be186bcb8d47edbb43dd50c2b2feb894e14af2da948250e1d7ddbdf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce585cd0cc86018c85028d0e809b0ee3ea8e44cafcc6f63c21d473203e5aa633
MD5 012e6ff5d6add78e8a19a59ad8b3ca0f
BLAKE2b-256 c221a6a0b27d5625c77724b38bfdddbb9f0018abf83a6f62c9205cdbae0d1f37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01be14020b1f1902eb68fe05c2a0b1c826d5a37225cffbdf151d7e228d5dd265
MD5 d3f6d2a47e2f35fa20f4b44d7552dd1e
BLAKE2b-256 682907b5ac260b6827804fedf4cb7a8adecd7f1eae763480a3c01a156d19e89a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 74fe86abe59179616024904140f47d2c0e8eca8f19f96038a109f0c868640de8
MD5 0aada195ed5a48239bb2992609ee1cac
BLAKE2b-256 ca6393b69c6c4f47b4645e6fe7e2672d27958c308bfad88aabd755abbbc6f239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6b457252d11708175ffc001fe5c39cea5654e64a5f9bdd4384dbf83d6451acb
MD5 7062b4b7ab4cc1ad45b4c864c490b7b2
BLAKE2b-256 38bac0e45ab6c0b0de66ef5f3ad7d4d11509e668eacfd91325e9308b2a6dad8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0ad9d8c062b34f683ac24cc84a5c31921095184aa5e85b941da14bf1398998dd
MD5 13daa2878169350f65622bfd39856311
BLAKE2b-256 8b627e8488688b0ce948ff599682c4c22b34e42e4edf0c44b1edbf34500f11ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 3ab2eba99cf16d308ab934bb3467861faf3888859c347dac74bb5c06bd0ac63c
MD5 b98ce05e16275bff86fc5b467b8ac750
BLAKE2b-256 6ada07df6e96208d50c05fcfa7b3c2ae33cca57eb3c21353244a29c6581264fb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.21.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.21.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c75c4eff702d00d6b31b1e998576409715f2fc92b2ec7b63b28125c8e4992a1d
MD5 f03d9f1ad6b1e1095eca517c3806cc67
BLAKE2b-256 611be926922629d78c0d22c2198dcc018fc158ba4c19caaadea595beca7ffb6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d5f55931a9585cc5878e4be128b766b684965a3bd3d58a4041f2213eb629aadc
MD5 20191398aa7ef33c8a7fe30597d64f60
BLAKE2b-256 0a5932b10d6c04794dfde4b0aae866f69e64fc72d1a726fc781f499b12521c39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bc46d22614d3bcdb0acce870300698d171efcaf8e53db2b60b668c4e6939c2cc
MD5 5bf7d782cbe8ef60f791d1f2d3cfcc88
BLAKE2b-256 2dcba97b93a56adfce92ee2272f2f5167168697de5ebb54df75bf3916d277ca8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 96a7cf0c78753d2bc8bc6dcd06c1462b280d2c697ba1125efc19e261ef42a425
MD5 4e0d7f778c5c6aa2ec022e858c8388d8
BLAKE2b-256 5211d3c5d04ca08d6782a620c3e01041a7d8187bdc91e30e421379c77419dc38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 ff9077ac43567094ac67e7d5853cee5dd8b77b1d77cf7a15693964648b5f80f4
MD5 10d8203b1d9eeb0e233413eff9bede86
BLAKE2b-256 61d3ab9d469a25e50973865f7caf4078d6f7f41423da363779cd35495e0388af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 0fcc33f37fa94810d6f6502ccb0a13ff63427b0d4188bc0214056fa49ca620d3
MD5 a29fa7efdf62d1f9c21065c1127484e8
BLAKE2b-256 df320f3520421b443cd3afeb1ccacffaa53c10b715910763735a28b39395d60a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9918fbb830c968367604d2c50aa32fa365fb9d945e16b4adf4f0e525c038bbea
MD5 8cd4966cf4d3d248babb2f5e0e93ca9c
BLAKE2b-256 17688a424904a756d4cd037efda01a65823a01d7bff562bbbcb3a727dd717a94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 770a3a36fac650d81f6aa0a3e4a14d3cf111297a724af83c494dd709b8234e6a
MD5 fdc24d057f731206ccbe93a362931360
BLAKE2b-256 88f8a3a7df703d9dc0c6c6c9c375d9b292deedfb44ada95f35224188d2e21c26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac059286ff8226ac9b4dfb15e7ad7b3b325fecef41438310e5649e33822c80ff
MD5 9188504810133ae0a9fc665243a58117
BLAKE2b-256 7bdd3ad4273971cb3e245534c05b61756a6e5fbd344b724e56c990e49ec29ff0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69bcd49fd2f989056ed4e7cfad684d82b62db8c02f74ba705254e693a2c37581
MD5 c399c36216102f0dd9ce7b33cbfd4197
BLAKE2b-256 7886cadbf61a1db65e79dcec4e68e594170b8956f46083808431952376fc2621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 264514d582a1f35141a2466416ae2867589d351fc2096a9b1a1c344a86dd167d
MD5 857d8edf1cce818e628a7d704f944c9a
BLAKE2b-256 1d1f78c81906a13d07c6de086e9321d6f65517568e51440570dad9d095094df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 b6c7e30afde0bc3a9949ef1301fcf3350fdb569e132c566af6d95267b54d9f50
MD5 16ff7394c265efffd6ece52c902e288c
BLAKE2b-256 f17a170e234f57243fabc7853e16c743288071702183a547f8eca4a6c331e98a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.21.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.21.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 862c644ebb2ab9928a07179214425801050af27ce396750582facf1091ee047c
MD5 68083c5ac979b6bb6d12cff50306c92b
BLAKE2b-256 308b73ecc8cc0df0e3ff816ce0e85aa11a988185a4cfd59adf8c21cad7357de2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f142adb993d6c14f88f637ee01be6e2e06ba55c75c710e068c00ea00b9f2c299
MD5 c713d496860faf32903abf4c540f4e1f
BLAKE2b-256 d403129ed36b388527e0291baeac9897d673400f37f58e8a687698f0281e3b4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0a5d709dcb03ad67dd71eb502c9ac9bbcadc01bd28136ff5cc35526d1c07b865
MD5 4d0b4a75e2349fecc2a501738bf448b2
BLAKE2b-256 3eedb4958975810a5062dc541e7522a895b55fb7df661da34685b91bd7bfe371

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f0e58925a11e8284acfd8a3c69bbbaa0b6565d9556812ea5987fb1b235c84047
MD5 07ad1c3131c8e9cf54ae4d5d297ab060
BLAKE2b-256 31efa0dde83bc854300b51fb8d869155b5bedb1b54e93567eb507a931c8e2efc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 236c7be899bc5eaf4f76119e14e7670088a6d021cb8a3a21b4a02943f84f49e6
MD5 3b92654b72050e263083f8a3abd5fd09
BLAKE2b-256 28363830e896117c185eb53cef6332af5e87f6dd1c5736e63332ef1f06ff753a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c0c719e60941d23cc5a5a80ec41f5f5dc8c1b02f969a883c45ec451531238945
MD5 67cb969786524631b79b652c1375eaa2
BLAKE2b-256 627c4d3f472e590c9eda20c1ca4649503a305c98eb6b5d785ac7732453f7bb8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca44cc65b53b105d817fec8f681b09d83062dc5bedb576cd945e46f828870031
MD5 f598933a7c419ec0f0d5b614e80c467a
BLAKE2b-256 865e78c222b44398ec5fe9671f16228a732a736b3202b06422c9ef2e812fd2cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f424b5c765ea3bb0b05343c72b4687c9a671dce0b3df652a4be91ac07dfb4e6c
MD5 87763749eb9a45bf25acc42d073c98d9
BLAKE2b-256 5c7a3bfdfafb84782f4d09693ce252b8d8ad552108012ef881c91b93ad5fbf1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7679c98492310ebe72fce055366d0f9d81d3c21711dd1b70e8b69a199aeac0e4
MD5 537238232618cc43c5642c27ff4e3e36
BLAKE2b-256 cd0d2b3f8a2c559824d6d336f237e2c2a4f3184b9dcce87d7f988052e532754f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4280fc4d95f862b3c46309581ed20931ccfb169bbe3614418c8619dc5152fe93
MD5 29b0052ed1935d65f95facc01ab69c19
BLAKE2b-256 da426e160e4e8d6f06a391f49c56f383969341833d6ccd2bf2e678ba626cc8c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.21.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8fbaee27e14caa6a022e6a579000aeefc1f726106a3845b58aadf615d6d582c2
MD5 86c0b4cd55eea59c06092617590c64cd
BLAKE2b-256 c1ce3cd428f4d9f34ce12580226dd6659cd5fb5bbc262fbf7b8ab867fffa0e2d

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