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

Uploaded Source

Built Distributions

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

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.7+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.7+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.7+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.7+ x86-64

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

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

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

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.0.0.tar.gz
Algorithm Hash digest
SHA256 e0bed83d3911130115d2f2b6708a3baa0f79ca07ed62992e6b96c3de360c337b
MD5 0f11575cd12875547db77cc712cc8de0
BLAKE2b-256 893ae5f58959e3a6204eed24b37e8b675e8b9eae9fb811371f027e7cbd1b3874

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3468b3d2e9c353060e3747d19338da5c38fdd7c34f5270bf7492cce89117219b
MD5 4da6e4b5a76a5f6ea504f1279bcb3d21
BLAKE2b-256 743bdee2c7c3fc07af7ef3e4699828d960e3b8398c10d51aa6420bb7c4a3b239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b611ec2d97e8ac4ea13203325d139464178aad477571938f2edc99e89130d860
MD5 ec844dc40e8089d26ad9d0f6986134fc
BLAKE2b-256 2fd99410b813b1ac2c672d4244af7e9a006b5adaa8803c900ec5a23a00995eeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ae60a596bf530aa9f55e06aa0d28c99b32fb3f8536c3b97838d8ac0d673288f5
MD5 294f948725e451a416a897462c688275
BLAKE2b-256 fe9436f53cb782020964f215a11de2c46b770348331f6ff3521eeebf8036c96a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2568713c2f36c7961873b877e4ae3628e0e0c1851adf25a854222d5ea65f1134
MD5 4d62dfc7164edd458f447c5f83613388
BLAKE2b-256 1af31432f9f406c4a8d18c06e47b00aac471084d2b7183eead3ee77863cdd237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf40ce7822d79d75a3c87532407ca6f433240a6ce082cfe82a531025badf1531
MD5 6929ffb2740f0dcfa2342ecc6831f2d8
BLAKE2b-256 3a4c580fce43e12136a3109da3eb7d8e8af4a93a4de143d204dd4282d6c580ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e01d9998f05d46fe1708d381e26b88c377bbf2ce6a3be0c268495dac2714b743
MD5 3ccefa0a7769d3bc95c77dcc0ae105ff
BLAKE2b-256 3a7b7fd22bae5ba0b1b7dea040fc7f67e03232b3769f4da7772df907c82ec8c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 40f888ea852593393cfe03dcb8970d68c83c962998ac83924c253a1670c0fe04
MD5 7baf7c782afabd9c83f7773062b09084
BLAKE2b-256 cc4cb12aec72295faa07aa61ff026b05e7c47e28416b64ea0020b46e1059758e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 588c76add98c994086fa4d4601b2e4842e97689ce07094b1f98dab793a66d48a
MD5 5fa9f5fde982ae43c21a26da5877d586
BLAKE2b-256 9e3866faa43699fc5061370f7d32fd4f335212c430196b52680074074de0da54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7e1906e9603e1035e984c9577eefbf2bb995fd50115719a8383ca9dd5362d553
MD5 a566f1e0295b4e706b44b6a839556efd
BLAKE2b-256 8c3294096c6f3a6bb94da4bc53be10011ba6d5fbea6f39eadd52f571a01cdd78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ec9b3fe37a2f7103a74183e0a6067ece38a16b050afa4a24e16cdd7cb7155ca6
MD5 038bca9c230955d007d6eb27565b45f1
BLAKE2b-256 c85304b9cca9277ccf0db2a0bc31bc12d5bade32030f96f4a5e2ab56eeabda51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0662bfaeefcc769cef2d5a66147251ef56a2a7d6da65d85b9253edbf70ca6725
MD5 1216636d2624e1f0519b9103ff22f3ad
BLAKE2b-256 43b4c0bc3fd8cd2afa798ef265c2687ff962ade8e2229c45b0b8990a4cc8bede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 617a66340060696b97c01002024404c18a835d1236424bb7c245d3ad37011ab6
MD5 81f3d53486a048dbdb0040e3d74a3e63
BLAKE2b-256 4d704c8497a0dcc9a0c86d413941ad00f4b2e7be79d796c98345e03dd77b8900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 80e696f2401ae0fbb4a811e52b8ba23f77896042d5a02b61d8d298e6d65d8b49
MD5 507d3be109dab2367730efb94c4f19ce
BLAKE2b-256 bd2f511a96481e3e28331554dad9022860552232cd92e7b4a8be51156020b5b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 56efa42c9527a6f3787f1013b036b1a7f6c5eb3f4aaf43aaf73a8c4688fbcb70
MD5 68f2c4acea59bafa0401dea862925db5
BLAKE2b-256 9e5c0a1489ba9fffcae6afb62a1ad51ed023d6730900aa333b36ae1d934b3927

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 490769dc3d70f0879fc8cc8a3cc4b9d79d323ce525b9a8a134a8c5a8ac0d7193
MD5 f894baa028f1b238660de1348d1794ef
BLAKE2b-256 38edea10132061ca0ed2f73591c7d4d259dc7202075e381ad2d4f7ff51622018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b12a8f84503e0a85b8101c64817cc8ab99a0ce3c2c60b4bb7eab20b7c86de969
MD5 5c86a47af2ac741f5c7e6612fdc1525e
BLAKE2b-256 d90bb5a72c3c749ddd609441322463700e3481340127087e4af32b2db17534bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0546c9cf1460660de57238df008fb36319de19c708c8a3a972254cc1e7afa43
MD5 7ac045312c73b2471dc907e259d86bae
BLAKE2b-256 5529bd9bd1c98f8357e185439b23edb44b1f120c14081a1d39872e057ad84264

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1028f75c3a128145b5b4c6a51e84580200db9a4b95fa8878427374fb0759e53
MD5 046bc365b2d4e4018d7c7cd4f9ea5e22
BLAKE2b-256 38a0b590d7a08c5c271b1bd4cd2d2c9d22a8031d89cade348adde9b0a80d19ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f10eb23b4a836b12d7c0e7e2e9b91c4ff5ad77fb44ed886ca9f214df7d997b2
MD5 895a71528493d4763b7ed838a64a0690
BLAKE2b-256 f47b36361408be7ae1cc049231658a20520e7a66c4418d116d20a87ef93bfad1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d3623954b6a84e73cf3a9449db95205f0a0d6ec866725c941fb2ecd472c1b4ce
MD5 96ea879f61e0bd23651b626b3e6935e1
BLAKE2b-256 70d4309cb84600a5d32fa006baa0faa45a8ebd578eb2152c305008e3afe7626c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 cf5f4b043bc5eb2ce93e8897d3354ab2bd1252dea440f1280d48c77bf70f1a57
MD5 2291ab5467d7e069378f1225546b0496
BLAKE2b-256 a87b9987659998650285ea25d08a366b712c85135feafe8ee62e84d00056ee74

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.0.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 37f8f1044ee6c49363e7aaa741dc7ec05328e5563e04e0a537c29e8a92e5ac8c
MD5 2ed6bc6c896cc24fe81381dc1bf5ebf5
BLAKE2b-256 d78abcc0c73c29b6cf081e526caf81249bdd84b874dfaf48af8e33671bad18fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3b063510b13b52625fae8fa7a3dde154741bd42deaacaa7f466d4e847ad35129
MD5 a415f204940b74be6d77c834f3243deb
BLAKE2b-256 e8479473b38feaf20de0972759450b1a74e1547a07684810fa936e19d8f778a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cf1663e269d1d1c1bbbefe4f1614eef2eb3673396e7b0c82e8eb305526bcbc2d
MD5 c455c522de8be7661999e947af2eb041
BLAKE2b-256 9f6f681a96db94743b09ce258b5c9a796043700a3364e8b12175bbf3e90a95ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 06d0e3d1643ef33c4312e47969c6ba1e4097a9ab60d11a93e5f1da9c9e7f8129
MD5 d95c9213ac56755da991819a1703d3df
BLAKE2b-256 17952d21ca6115a8588c0297b91cc1618fe706ee9fecb28e68ecb05745c9d7a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 dd7d4720629639d957f8c9f2ef066d60696835065e5b54d1aae50bbb9faad34f
MD5 3e07f876a34f00f2436dc117108a90a2
BLAKE2b-256 effcf2c261258aaf0ba427e9f07280b039db599c1c450276e8ed3f5c3587235c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 ace4c4de0cd4ea461a07f582d84fb46de178f69670595f56d9059e0dc28cf9b5
MD5 d6e5299a2616277039a3714bc385eea6
BLAKE2b-256 cbc17422542352e9ac6765a61757ee0ea2367e1d51c2cada003c4e494fe29b32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4825fd8b8e49ea5e52f401e245dc20f74707f27989dd2c42d315f28a03d4044a
MD5 951166a49c4dd5cdfb27f4a68e3ba541
BLAKE2b-256 d15663b6abce2c7d6a6caef019142c6daa8f2c05dc4effc093ecf49b1b90e633

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f6e720e844b2b05e5d0166c7095dc18c979e899c2c6e94505ef0cb43fb19c6c
MD5 8de980968fb64005d7249c59bae7bfed
BLAKE2b-256 6dfc012af8e9448b123a405d727b7c72f522fb31e6d0b753ce60dd63115d3cd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f1ecd4368ea3a55de8ae4b6fedefbb9fe0ca39f8c27d452ce1f20d4f9ce1d869
MD5 6df5704019c5802f29f9d688cf3bc9c6
BLAKE2b-256 b179e2a116b1efb573a18c0f355372ea8b97c9b6e15fb7b2672556da785ddb75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f68f35aa4d064c1700416fca74e2987b8e93ad84831a92bc7792eb0efb860af
MD5 4bbcee87eee1b530334c70adde726337
BLAKE2b-256 7ea082403c246f6d25721674ee6a9e3c5cb5c3b8ffd5f8c926cc4d7c28f32952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 082d358b1348331d4de60727c464381c2419071a2c51c0bd922518111361ee96
MD5 0bda203a6d09d3ec0e06466a1bac6b98
BLAKE2b-256 3e7fa73fd0da2d5ac8a027ef273515c7541d7fe8a9df004c136a3c1ebdf8ee95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d17e5088a8233802f96c9a1a4e05cfe9d9e24eb95b622d616396375b5f94b65e
MD5 d395df27fbbbf25dcc6c98da6420fde1
BLAKE2b-256 9c49f8187d7624ff349ea76df0b15ae74e3df512f86ed72653a2074b4cac9561

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.0.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 9816641356cdf2d6fec896ecc18577fe2893b74be2dda1bedaebdd52ebbad06c
MD5 11a6fdf021f84d137f46d187a531d066
BLAKE2b-256 869de727acc0afb3b28a94835800e52fac7bdc282f9cb5c489a83c4c6eb6b5cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4ecd44738c223bd6e6654b11aa527d33cdea1bc851448eb816e9c61859a9e5d8
MD5 f5efae52c2d393832d317b12956441aa
BLAKE2b-256 8a0c4dcd679cbe6e66b1a372a281d6e49b46c5107351c7c35a238498969c6896

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6912f914db62bed899083661fd42cb38a667ce745212bd023da147fcf1ba2a20
MD5 7cb8f8122950a988c2c2e2fe13684890
BLAKE2b-256 267bf559590a09e28bbf3a4fcceeb50215c5895bd289fa8ad4f6f271f01fb3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f1e2128abd9746d56becd4ea09aeeb46c464deebd2cf1fef0921fca8ef87b4be
MD5 c5506df74353afa926768ffb4bacd204
BLAKE2b-256 7b8fa9520ad783ff3c8546bb0f93f4fbaf4b80caf778dde8f53f196a0849338b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c275480fce7b10656f7fe5c39ca17925a66f731ef0c24db1ccb27ddec16ed52a
MD5 3d27bb404ab6da3d6bb737c50e1197ed
BLAKE2b-256 64711c972a90c6af09dd1e3cfb5e8929bc045b9530895299c4d4213546626e67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 a8b74c05b8ea4056919fc47a955b1054f59f01cafeb598dd48a022e58b766323
MD5 01346a119d0b5a9c35f5b2774efeb2d3
BLAKE2b-256 439331b991445d307a5f37322dc43b5f9cc7423df9ac007b65b4a8299bd67784

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d4e24817658fc4f935f0869d26861b5e1e200038b5fef1fd71f7e5ec0dd3399
MD5 2d947ded76d18ce319e8bfe05df3eb08
BLAKE2b-256 1df735129ccadfd20494ebb0fdf2e61fd29404f2f79f502ee756c5aa7737b02d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a8501769bcedab5e0ce4d4b66ad580dfdd895868d8b4b6cefae9206e94a1ea5
MD5 cb1b8a3f15d05866547499dcd60fbbc9
BLAKE2b-256 845c6d37d01f36aac60e03f9ccf2feda0980e0b70901ad1047b6b3f9dd0e1552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6cb087083a53a604b58625e532d8eff604f4992302606e75d6a3b8a354e59c8b
MD5 eecd8db4ee6ecf8530f5fcfa7f16ae31
BLAKE2b-256 6e736913c61cf525a5d088036bfb88f239e85f1b290bd92d6873f9109db0c31b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00c05bdd71ca304dfebc5d681c770b2adaad04d878dc2102ffa2f5e66ea5c2e2
MD5 7166fc467c1ebd4811db971a522926e0
BLAKE2b-256 feb56d55311e728c8b8c581b2ac8ac9a473d5c081b7b11ba6cbe9947aa965b9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bc8c0aa7b5390dc43d1e48ef369839b59b02f03a58f4efb2e73a79a6be0b8119
MD5 3a3bd35f3e09afa3e5347e4ed488b3c3
BLAKE2b-256 2cf42e8cb357e42ea421ffcb0df569a6e68719f0da8382de72b032027741901a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7e5486c9c97e53f3b6b35b5e1160a17349cd79ce11ea31a3f972de84f96a799f
MD5 2ed13f02d833a424d3d0886f16e2ca3b
BLAKE2b-256 92882825e5eb6338e27cf57dcb9e21766470fa5dd808710fe402aec2a9269306

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.0.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 560ea945807f2eeccb2560e4ee859e6647ea0763040023913d4ce134cc09639c
MD5 aef554948565ca58f41fffb1deba6c9d
BLAKE2b-256 e12ee82aa9eb8ad9390a08abb7d0ad4a054a81c01c5c4d4b3959c2fa541416a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 630583cb88a22d52b94f25095f409a9e7204c7249cacda2b12e86e2751883518
MD5 08894fed910365bdad6863e20aa2e0ee
BLAKE2b-256 f092af6f541ef30196d5bdc8b6e69e1ee264dedca853ca62ecd1881e866b9044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b0a08350e116ef2d423b156b7bd673df4e1f05ea36d9065b71125f8ed9c47fd6
MD5 872c750eafad431d09183f58366db6c2
BLAKE2b-256 b52999fc36aaad26ae2fa983a97e279f49fc7b5019c20d469e8bec2dc5bb72c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 8ec917c54b1de48bafed950d91361606c229c895cfe2bb827a90b6562d7d8983
MD5 f209d39379588156cd20bf76188d07bd
BLAKE2b-256 73a64953ed8d66e026c4e12af68ad5376c86d1a12f4ccafee7d6ce8f1c214ab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 967c718447556d5d30c8ef7bcba842e59036afbac69c066d30d659da0ba14ee0
MD5 a9de0188f7aca8aa45bfc77b3a79523c
BLAKE2b-256 a135a349a33f576f2594aca1a5d2b19f8644e858bfaa7496c70aa839476acd93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 6ff0b94c74554b0fd0acb389e0b5d6ecc27ceaace985abd49260a85535ab960b
MD5 db68df737e98326acc2565466dd21a6e
BLAKE2b-256 f41efa934c705442e0ea56978fb3a824be046062b076e71051ce8f264396b2cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a3615b8c74abb30b17c7cbdd7b9ad16be88bafb2c525ef902225c6296ca27d86
MD5 289d0b881870f66d7dac4df3fb9c38e0
BLAKE2b-256 0497c1091e2d71fca52c4ffeb506a56f72cf46eda3c113fe725c8b94c26a64ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8090c49b2864ae57b8b5a8971f7da329af416662423111d492938ad3c0673f9
MD5 2e2baf3bcf67bc77248bddd2e2e2688d
BLAKE2b-256 3af947499672c7334918229cd2f1d251605cd1c9488a19af801526092082f35d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f7c8beb246725d4cfb858ffbe3677f0073e596aece0f16f91932dc7d3f1954e5
MD5 b5e85117b6222fb5c7c78d76a60ab201
BLAKE2b-256 b0661050499f171b68d421a5a52341fb49dacd7354b7269a2e73ae9fb3f51bd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 15c9f9b882eac3629d26f9476a8cccd87cf0a3c4834b39390b0f24c40e638da3
MD5 e31d6277b2f23eeb5a42127ebea69c63
BLAKE2b-256 bd0f98821abe80eecc8de7888ec1e541330f5acadc36141730eaa5623fe40cd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 53a0d1bf7dfe65d63fe052a71bb1542caeca66b951b37fcc0c44d61b4015e0b1
MD5 8b3a747c7b647d4cacbf90359154d275
BLAKE2b-256 dcf42e090a0d90d47888a2bbb6686f6640e4d5cdd48543eb445731b775e8a97c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 acea8d80020250a225661d5bfba32a25e8e64b50b36578626bd5ec10b11a1b63
MD5 cfecf43b9418aead5b742a2476d8126d
BLAKE2b-256 29dcf049e8cda3eb7ea6783e43db77906bfb74efa51787fd08def3ba72e42b29

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.0.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a5a531e60bca0595e70d1a8626f82eaece57ef57a8d0c82c65e8befbe7a7fe57
MD5 dcb25b444db12bd988d0160938b49171
BLAKE2b-256 41d1167bd413c12d4e55fdb0722075a61df6dccf86120ed67706d40b0fe12a7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2619df0c0534fabe032ff5ae2e4a476f6256d6e357778cff3d9ac31cc87cf2c2
MD5 db557086183102eab448c30aa8350661
BLAKE2b-256 6b3a8545f47b764e2473236017748545275acbf8ee48a2cb1072c12bc4a9da9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 13aa6a55049342484ff18d91c285ca5565cbacb261e966026031c6c1c9bb5668
MD5 9dd010ef3bf1de1c9aebbb39bced9c36
BLAKE2b-256 f699362b5b8cc6299a2925a1b117cf09033c4c9114d17cbf7280fc2948018333

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 34e0df907da53986d8f537741e716a43fe0ad021508351d332feafcc04765ee5
MD5 e23952166124d8822c98efb17c45f251
BLAKE2b-256 d1a7a1b980eb2c8b5996eed4d61be52d8650cc65f3736327c49d99a36f22df27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 a5247f69d07a7b0bf37325831f6a73d4dec3cd04220aa219254d279b5b3ef301
MD5 7cff561f9fc6772f821e4e704d5b99c0
BLAKE2b-256 b08f6bec81c6aeee9a6c4bee4aa6701901411f5c87da8d5f1a5ce805c1b91c88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 4e48cf1666bef4d6f70a532b693a947607238d625e881420725c19b1e479c617
MD5 b4ceba9b5bea55aa3cf289e11b86d082
BLAKE2b-256 f142709cf51638e1605dc299a6b0aea757bf9e37f1aada35dd9e4baea14e9b81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7b9bdb3440f0eaa86adf17693c0225c9beb544861792c06658f887147463a852
MD5 f6daddf074b1bbaaa637e22621156167
BLAKE2b-256 db7161e663cb91f3f26361b16c31eb5352b5240d39290bc1b8f234a0373e2d70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d41a2ce281383d482517b22642bcafa64cb524a76666ea80b900cf4682c1ea9f
MD5 93fe506eed0628930cbffb870ef57651
BLAKE2b-256 d782a0da10ac2e9801c04e130f16f46c9af4df426ab84dab8b3e97e2aa791e03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3249c59ed78375ea8be260ccd99063e64525c9c76ad7f22e51d320886643cbdb
MD5 376da50e439a19280fcbec7d38b5b479
BLAKE2b-256 1caa1de2be0313ea0ff5d3645470b5559b081c5543ba62619af0741d2708d813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3826840c95cdec081d6bfb36bc6aae68eb809de9bcacb29a99a08b8a412656bd
MD5 f13978e2c74a1a75fff390dd3b7c06c4
BLAKE2b-256 d16f0fac0df692bdbb6d7fe198dd183f247844d04fc3adfbf3bb6c24736e3402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9b6a79d5d1c28385cc998bf685b82d34f79a688b368bb2d72a95b3864daa7fd8
MD5 6708f76b3644466119d2122012fa3cbb
BLAKE2b-256 f8e4927e74a4405d135b616f44bdecccb7ca04884be2af21486ae7c250a28552

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 748256bace621b660003b912410b0e1a7586fdd451936894a9e75c7e280c40de
MD5 f8c73929ddc75d614140d462252807bf
BLAKE2b-256 b8afd59045e816508c118e9ab18b88d4c69858ecea8e80e30fa68fd97c5fff86

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.0.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 d8ef739e93b91d648c9cc45e21ecca71adcb520b362e121607fd91a1cbffc063
MD5 b82f8f361df509a22fdfb698077b0fae
BLAKE2b-256 394b99dac3e30cd6ff02ffecd42966e137f15f753548651e27e91564187d996a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c2a3e12a2e7fbc8cda5b00b42d9b20dfae59d3e7da708c6842ae2933e06f2986
MD5 97680c7f159b3345d24b433086ed5475
BLAKE2b-256 578db2f9da4e307f7eade62ddf3ce463378ebc777b079959e3eb87553a7b8641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 465467ba71183c62964af957d23f24fc5d70244aab18749814d3c49817ade1af
MD5 d4f414af9e5b0fd86b16d159a4565c26
BLAKE2b-256 5ede247f8b6372ba5fea66ecf98f6d30102b63fd058d1a25445906fcc05a16af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 384ce9193416ddef249164e6a1f13261085cd08a41f882a709426252e9f00860
MD5 e2d6db2a260dbfc377bd3be05b0a4f58
BLAKE2b-256 e8798c0211ae10e4fa8bd6c1ed1e9d2cbf6f5360ba436dec96b5d825dd3f768f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 65f9bc4cfcfb01247f94ba969231caa3c326cb2d01f19e0ee7f086ee2f67af8f
MD5 e37d753395dc308f331901cadcc905c3
BLAKE2b-256 0a15eb7f456ac3ef90711a4d82499bfeff2488ba9ee9b2801a72bea1c44b0670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 5a30a1aca715b10642254b5b24929c0f57c4af0b129d1c3c829c906e0bcdd0ce
MD5 7d1c5918ee47c28de55069d93dfa1ea1
BLAKE2b-256 ea2d28d5007c99087177f07ccdb53e959e16264b034b4648e916fb97be5f1215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04882673785345a47ad5c76f2216e5f0b6742c9795b0865534ff2c543be56ff1
MD5 f0d8d8f86f684cb5fc7a59f583e9c287
BLAKE2b-256 ba67c96fcc911d7395d6d001d362ac86edfdbb223ed9810654df53a2d06350a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 191fc6e8c805ac39f8e67bf1a0317207eebe068b5c079095bd59c23f012952b4
MD5 4f9dd9e5cafcd94782d5a0de05caf2ea
BLAKE2b-256 363a2cd73b4c6054df7462ad450fa0373557c1003839d636b286b46d1443e794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1b5634910bcee4b08ac6102e492414560d0f97395e6ea5673094c0926f313d4
MD5 7a16e117ce4881874248445c48e292a8
BLAKE2b-256 91a51d67a139e843a0bab6b854a9bd14fdbd5d26efc2bd3753cd4df06020de4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7582039bf6a3c282610657fdc881c8ccaf655ebaa91b7f4d5e6656500663bd8
MD5 3fed8339b6b83582e8828fd49e24c092
BLAKE2b-256 4d796d2194a6927b9998f030ccc20e425cf9c734512a2a7fbfb0049afe3f0621

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.0.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 179be044fef05b06efe41e9cbba497c85fc7a25e962ef677c881e04065d912ea
MD5 e3cc9971611f71944ab3a9c69efb607a
BLAKE2b-256 34c7fb170aae175edd1535f8c696d7b995813f845d15f7ecebc58f0b6f875f37

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