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

Uploaded Source

Built Distributions

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

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.40.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-0.40.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.40.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-0.40.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.40.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-0.40.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.7+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.7+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.7+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.7+ x86-64

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

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.40.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-0.40.0.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-0.40.0.tar.gz
Algorithm Hash digest
SHA256 7fe0c7ec77e0180fb015521a154056119ec087902b02c3bb1ad34c29461a0f74
MD5 1c2b68e09e24b8bb52fe2d3a2df49c75
BLAKE2b-256 8fe474a5d50c62d6191495b1493f9f327267d13765a7f7a71705ee30ab039fec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1611a5e71c1a51a2438ef98f1b436d043235bb077f54fe425b78eb2254dfc575
MD5 bae64fec11d33daed02131ed69f54037
BLAKE2b-256 29bbecc6d568ed95d281537cee4c5adc2eb07db32981afa2f99d7c859bb21e16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3fc067e8c1e4ed97af5b9253a6652a93dd61cb84594b80e1ef308cd0510e9411
MD5 a0a80a2511e324ca96bca5da61d6217b
BLAKE2b-256 c7db00840ff12002efc4f6987623b2ea2f9ef4a3e44032928545481d5baca446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 da276c1ad9a2d91eb90c043482ef2e34c0faf8ff9336f06bc6a81ca2fa09c3c1
MD5 92829342c620b23226e0d64dc6b05ff2
BLAKE2b-256 952baad6789436519e0c9fda38242bcbd777130363c2115df01676f8318552b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 832f8fc47d38b74c409e857cca010f7e39e1d78853f142d3d051393085b0d3cd
MD5 d551d0de6908a9ed0cc7e430e29532b7
BLAKE2b-256 759baf00dfac6b0abb1973af022e44fc8d541d2ea8ac1771149ccb6007455efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48d879fdf07856e9d4df84f754e280e8eae6ef9be4b9509c6a0a474b34ea3f17
MD5 4ef83b27c61bebc4a4297b734cf301a0
BLAKE2b-256 45f966a9c12b42444ff5fd380c9c3c579b33cab3e374c2a8e76f1530b8df9b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 63e640d031e80560a4160cd44ca36c533f0c742e12acd94ef5c42966a55304af
MD5 677f2e676d4d16c9df08d168fa225a0a
BLAKE2b-256 21ef54bccff5623ce5f2088c08d25ec19fe7197eb528d42d75db39b27dea2e24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7ab01dad0ca0c8257b6698c73786bc6d408d1d24f8182c8eccb7da28bc6b7fb4
MD5 32fff8edf28017398d577b9f4d631ba8
BLAKE2b-256 66bc50785a3dbbc9517cd1a5754962ac9121a9be99817a0db51ca1a561a3cd9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 af311f969c8a08a3435962ec7d422c2cb26413c3a7911a29769bbdb859dc6459
MD5 7ddf92d6c6971d72d58f7fed8e69603b
BLAKE2b-256 d3a90cbe064d504a7e74bfaea4071bb67302e6940863f0fad48574e8e8eb6854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ab70f766231111fbf38c88d00fbab0aba3241067524525a2c7c1cf4397a5e518
MD5 72c4ced0f607676034b59a260bd5fef1
BLAKE2b-256 165ae3736adf4b25de6a77636cb34208db306108ea24b148431bf1f195e097a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5733357794797643c8099b2c1d74d2393605796eca1426184196a7c4e419da69
MD5 781fd405108d753d82bf2d33129ab0e2
BLAKE2b-256 031eced4074753262a811e2aec33c25d4063e0e48dd1b6e2a81917b471eb3c90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 686d0eabbdbf6cbf57fe804102c6c3e47ed676067c8e96874aa468018cab4bfe
MD5 cee7dcf58725a43a10566c0d2e082dec
BLAKE2b-256 11d7bb2805061f9c2478c8e03e0b2f33c685b956ade73fdbacdd05575ba15892

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d68a13d75ffec4cb00aa191adefeeb029dca5fe59c85b735e7357ba99d51bdc
MD5 47296d8d2673138643c7f5e1af2d6a99
BLAKE2b-256 99f60ce0e621d1c1143365519031e9dcccbbe1bb1a1fd7443e12523568554f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c4b0725504bd5b0caff5e02b85bfb30c5a99855c045e5515ccb585bdbe7341d
MD5 a696b61c292f2b859f6405f3c91855b5
BLAKE2b-256 f554e3546bae97e12431535a0e82125e03b5006a50b431ba143c7442da9c2f5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8f33317c5e8e6109952657f03ce4f8a330f08fdad2febbdfe03b2b6eac073a2c
MD5 d5e7c751299d3ba79d232ef11dd23b7e
BLAKE2b-256 5a8d8d2970ffa8799736a2ba51587cc3d59a55cca98020efe1542b3b01b993d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7afd79a903b8e8dc96260f90ee48b50aebf7378ca209c63c7f2ee6066865b519
MD5 08615137dd9de1b42ac4ed7922ef6a30
BLAKE2b-256 58d909d62a92bed8ae918386ec5cc944613b2e7f34fc008dd83033637e6a196d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bac44f4e3fcd15152b34909e2e827640adfcce4f47b72fa2c9c6cfa0c18d668e
MD5 95f86ac7ee6a880a6cd19d9c2248bec9
BLAKE2b-256 1986a5f800a61723847725dc6b9150373a88270694d2f22b0248f380c3764da1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ec5eebcd28b0afe44c3028f0b1772707432281375608492a6378bb71250f2887
MD5 d5c9f71568da043d4783f67b28235bd6
BLAKE2b-256 48c3c5246fead478e67780b10759960d2a9811a77ac61a92bbc86f1dca1d9800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 965788aaa13c1471a3699ac891e7a0e11845ef394b49471fe6758fa2ff0da384
MD5 4f3affb349765cd9112d875d782ad331
BLAKE2b-256 2bb1dede47237cc7a974f9edbd274c5ad0042fc2e70f34660853d1d666af4039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5f4c3286881de3b11e13835cb9a2a8d76512df644867b2bce697cfae66368934
MD5 980ad69a972360e3c829db8e0fde4df4
BLAKE2b-256 3efa873c5df1aa27adbba31f086a93cfe27d21f8f9a416b096a37c4cf74b1199

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 adfa1bb11dd57a3820f385eb5a61e673a8153399f77a1494e952e0758682c1fe
MD5 79a6f1040a880b9cd0ccbbe08c85205c
BLAKE2b-256 75246478094211405d25260a1aedb1775bf6c010d89a19b7247f2336238849eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 93216c141fc6300d812ff01bc5c26537044b0ae287f9d8f9b1d5c00f5e16423c
MD5 b6d921fbd47ab176d360bb096202fefd
BLAKE2b-256 146d95adafc71a960c5a121cb3828ad0de0055b1e0a0277cbba1c6711d834b29

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.40.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.11

File hashes

Hashes for pydantic_core-0.40.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 218609aa5bd1e081f16890e3fed88dda3f89dd8ecf99ecb153b48d6e3f04e5db
MD5 43d28cfe56cafd8b0aba2b6e41035d89
BLAKE2b-256 dd996bee6558a132cdbff7c2b568796c43d3f266ad6a339c0b263fc757a0cdf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 632dc9b3c26c1f1cbf97b958ff08271f69fae5013ec7a69f1a494624d4abc931
MD5 b3e85f641375cc6606e835be03dbd62d
BLAKE2b-256 8493b44755ce28d2243e682313c866fddd07a256f6d849128ca6215c98e26cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 73c8b5c6fd2d6e314d52a202a55e78032723f08c7e6bf5526971926e668fbaa0
MD5 5f5f5f406531e6878e1f157e063330ac
BLAKE2b-256 369dac97496fc06e725ab827148fec87ec9140e1b164ef7216c0d9e48a90c3e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 9b8bf040cca548d5c3cd0a211082bc6dc270b06c164907fa445fbc98cf5efb28
MD5 0d96b21dd2896e9b01f950f6ee7b7f9f
BLAKE2b-256 18ebbb3fb4f60fe7a67679f80abffa1927561293b6014be805ddc9e56efaec2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 8a70740306ae27e880df1a741de62b297beb184f48f0ca49e291359c127c89e9
MD5 a3b4524706e6b982be1b74db5ea01c2e
BLAKE2b-256 173102f40cf9198fae278fc9a3af51049db93fe3a3f280731fd2717a2ccc739d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 5358682ed27c70324de6ac9f3b88fbef8aa2b46e97aedad642f914eacffc421d
MD5 ddb0be7923de1a31d2dda5a7c36cf945
BLAKE2b-256 be47ddc857703776fa0031059ecf5a67fecdbba0a78befd88bf6ae8dcc87bd16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3e37e473e33ac97215ba3d7488771e7aba866caee520d40a3bb9663e9977ab32
MD5 a1658afb0a323569572d2e7b3b7d7db5
BLAKE2b-256 87e7b91cb320fc63ce0bca81ec019d40343803e4cfc9467b6ab7bf0142a755cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e63c6edece71e1af107f3e123991eb902ca78c5e30e8be5f56f8be5c6f917b4b
MD5 18fe14c5412bee0e68b826be5bd605b0
BLAKE2b-256 bafaad3872dc6f5604fc5e649641d1d7f15fd456ba27f052abf76704d510d9d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 87557ef5adb7173a55e314e3af0589407184d2170869b2e22ee210e4eec6ff6c
MD5 7aa578140c27303080223b3d39670f39
BLAKE2b-256 7d19d58a6217af31ab7c140f049dbe4b2617b57b53bf86d74bcaed83245bbd7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c30b25e9483d198b2aadeaccd3721bd2a19a40622d3f3cab75daeeb71945a69a
MD5 aaad5590bc01170c7d26d8c1f6de8338
BLAKE2b-256 b0c41cceb134237c68a433abab08e2c1e53b30e53a87f9b736cded2836ed90f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 06516687d9bd25cdc5c10d480a9bbb0659de15478f28ba7d06abe5c380261061
MD5 b0ac23e9152e743644e8b77c1e75615a
BLAKE2b-256 c7cfef61471573ec9fde014348c77ef3f785e0881456c3e03603a8aa863ab3e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 c4378e9b43dc909685a79cdf6b0db37f452399dbd34bbbdfa58974b6e8c73e10
MD5 9eb47bcada7aad611db763cae9352a1d
BLAKE2b-256 9a8e8be04edbc53a42830f7b84d74459aa06c584840aecb9b2fda1bece345dc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.40.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.11

File hashes

Hashes for pydantic_core-0.40.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 85467e7471263c05213f79cb75ed43d8c6597ab9a604a80ccdf1c8630fa47c7e
MD5 3c596d1cfad0606e6f21a656f5a7f067
BLAKE2b-256 b7f78805934476d73ee68b3284bf9345cbfc22cd8a53cf55bbb3b71736fbf4b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 089d4097323f3394f07e8d755fd9f4bb4dbf76178f0463efcc1e20ea2b3e6586
MD5 ff8d541806d62798791ca94dd1ea4943
BLAKE2b-256 27d38405c02bca9a00171a0aa077a3ceb9703ea90e16081e978d75f9c00b06a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9e00043b943f14f83e0bc703ab14842416c920829e75c5e942395d6b7cbdef95
MD5 3fcd1132c1d8f222681b5afebbe5c99e
BLAKE2b-256 2ae504e465cb478b1577e4ab08e9c35763b09b8ba5536d55d0c18996edcf30a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 c2f68dd23b67e03c0c4ebbe2978a8ce1809c4d436de795bdf6d520638afb8b48
MD5 e292b9c3eb631b9df563d38967110dad
BLAKE2b-256 05a6b11f474dccbac3f93944ab8ed1034a0fe0b332e8f043fdf566f80790e18c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 8bd0589903c5f9883e9a7f5be83278bf956b9a1622f9316488041b53a2c7ab09
MD5 3dfe089c6b9fef7b0660554c5e6407a0
BLAKE2b-256 090ebc3379f2f3a239322e4340d31cd99e29e9139589e2488d468a3961b7ee3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 eda130a113e5c6f6c8f1346a35b6df63bc3139945afa1a22e473b921858c9ae7
MD5 3d8e3f66631b8fb7352f056927ddbdf8
BLAKE2b-256 c507fbbbb5289b55ba5d254097e295fe398fc74bbcd59dc25200bbd80913a1e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78c51470be9c8b5f953d3be8fb622c36cefeabaff26e1da4c3144a93c811b6f1
MD5 fe332e1d85d332a4a856715717aa50a2
BLAKE2b-256 5c1ab4738fb5812e915659823af5476dd9386fe89dc76eff033038280769b1c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d000b743fd031d1fec3a7360160b3b3cdb36042b6a8b7302fdfef153e9c54c7f
MD5 1e47649d6fd81d3e61049967eb1fb266
BLAKE2b-256 f8c772ba589d41a770ea3cd18241175482c8aa871e5c3cf54bf61227393998a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1d60f2aa1cf1ec22d392a4c39f06c0676dd0fe6b2b98a5f701e36ded2bcb459
MD5 b83604aafd8744cd0a19ec71ee734282
BLAKE2b-256 0f5a964dd1d234d657b1fae9878ea08f30d53dcb3520b179946d7b47c91a155e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a84d2d9b6472ba3ef9060d0faff2d2b85f765253b7ee0e5c5dff3856af13b71d
MD5 c342ab81638e7e6bb245d33e32cdab05
BLAKE2b-256 62917f37449412514ad92189856fef1356f14e34c456e066c60438b79178c89c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a0c44722fd3567e265451ec8625c91daf86bd6dc3d093d26db74f5d400e4cdf9
MD5 d9add1d9338539b35987eedd7fdaea50
BLAKE2b-256 159964978bf53c92b402553f61368d06184d3190d3d5d28d48e99259ace990ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 639b7dfd06142a78049c767241bc666d5ebe12bf74b67408ff3b6c8f9dd5ad20
MD5 8ed10cfdd552f06fc7ceced65a0f5b54
BLAKE2b-256 21753ffc59d2af42b1a29130cf1292670129d7330da6f245048a45bc850330e1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.40.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.11

File hashes

Hashes for pydantic_core-0.40.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 69a1598c30057c6b2cda82b894312d4e86a19f3028435feff19e8d75f3a65790
MD5 05db6e9321814e6e9a823e11e8676fc3
BLAKE2b-256 82b2327e27d6daced95af04e2205cf21f75653b82598ffd0006c83a3760142cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f226fec6c276f31096dc3d31e9cf9b13bb20b9ea52930eca37d72605bf069161
MD5 39489cb6d0f0d518f5685270f230e3ef
BLAKE2b-256 234b5ce1b78681fa1d3c94af4ef080cfc9254069f976e07abb4ac33dfa50a93f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1b2df6db3d69967319f584d8f0fd1a057705b32e5fab124cbd200f6b8a28bdc9
MD5 e8b70ae3e1173ed9697cff0a51327806
BLAKE2b-256 a1ba8cbe45b7ddb22181fd9c738765f7914d6680fd4e30f64e50745003138475

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 4823fa92e019ae7c69e3cfcf295f145e0fd641583c9fc4dd218690027316f884
MD5 3b9b00ebfbe1141aacbb33f8166e97e2
BLAKE2b-256 fa550dd4f1fe8f9aec093f486924dd1eb6688e5750ccbeb89a5d1fae91672664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 34aa3c974bfb7d22fbcc9bbfac6b979cca335199fb4e92205ad78e52ce0b42c8
MD5 82662477c8086887d0568a435d130a87
BLAKE2b-256 7570c314f5c1eb5d4a0f0fbdd3a22f018aed6075d4ea0ec5ef599bab2dbe3fc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 0af746ee6b21eecfc5e429283fda9c05b1962ca5d0adba3de661eae00bc21927
MD5 0ef33adc87ba4e43bb07e427a8867b79
BLAKE2b-256 10959cb68d7c4d07032659887710d3e785a3614f521796130956db533d1a26be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbb193302fe31ee47e06bdf3969fe61fb4ec2f1df149d7feddf2d546ebe05c78
MD5 72def2f55ab716a5f2ab44c62b0f994d
BLAKE2b-256 aa2a97c05a10c61ddeef34149eed50d194537b4e753ed4f91d1576274c1cf133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c74db3dd7e7151543e0eee5270e74c5553e739b094df014c6ef2b5e73a84f753
MD5 1dff87d96e04022fcf8fad076f70125f
BLAKE2b-256 64c4b68e98f8a500530ab0ab23f2a05bd38af1e704dc915cc9a447ff5666272e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8825e11c094370767cbf520192d29a465324eb45c18e8787a8eaaa0ac4df5b4f
MD5 0999338c95e1ed9ad4a6a989a2d41029
BLAKE2b-256 e529d8b7224707ed8aecfc6676c5b55d37e53b5f8d2147e9af6579050778b06a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e102c7663a09085072c7117ffa52c4b2d32a43218de8349531b7133f7be58b70
MD5 b1e29ad44c77243b2f1b848f49e00c15
BLAKE2b-256 f3a80a15d7b34ed5e3e07993851c6ee1ec4aa52dce7538a991b5d38534c3b5dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a60f72b56f0d2d58eaa1153559b3908873e92deba4ebadca9d86cb35f09e6ee6
MD5 9045a8abe0949a16a4027f07dc259835
BLAKE2b-256 f2d70c2cc8b0774977e1a69c313a670499e493c73fa6c8e339712a8854a777ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 a1fbb55bc74d28b5cdffc476f757d567fd37ed57c7984a7203c9d4fd912597b3
MD5 6feeef16dd462e3b3c88f52800c6e5fe
BLAKE2b-256 16d78126a73a277716ef465d14d44b05de3cda5beee3213c2e229ff73ec57676

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.40.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.11

File hashes

Hashes for pydantic_core-0.40.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 3a903b1d6ccd187ed939f61264a4b91f659658e7c588e22692db5dd98e782e42
MD5 cbdc59da84db0f0059aab236d692ced9
BLAKE2b-256 a756ad4948e17e2504b9a05f4d9ec35a48f08a741569be37df66fd1276fbbb38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 17c3c25e22ab022faff26914f58a33aebcbb073fa8751bc5545b06ef7ac06a26
MD5 34767fa26e43e6508b4138c5d444de94
BLAKE2b-256 600e4f995e2d67cc05ea0cb9efa5f52529523660a3c4acec0ed6ce52e80f0cb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 71a6fb43943b18edf5e95a24a4c6f94bb9813d23769888ed3e071db0ac24283c
MD5 06781b6b2abd1bec21547fc952f53e9a
BLAKE2b-256 8ad3e70ca0cd7448ba0b5ab18ade257da00d77178a29b346e7083e65db422173

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 77937190533511cb28f25f8cf141d6dea7bcd65977858efb294cb271edec3c42
MD5 f876b5c6787dde239812b63311fd61c6
BLAKE2b-256 e11ca2eb2cd3ba182b709e091846069ef529f6ca132c5b43e7588fe497fb8f6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 e5dcb2b11befbc060726bafff9a2e3dfd5ddf0d8064568b39c4658a2c30a499d
MD5 14c31ac3b9208ff042e8c6a94b534e08
BLAKE2b-256 87ad4fb08353334853cfdbad126170fb9ff16e47d14038ec3ae44153c34ebc14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 2ef34c0f4e5cc7b86b0511441492fde92e710df0e150f957a32578eb96cdcaf4
MD5 77ef4823737c91a6c6642fe89551d000
BLAKE2b-256 b15390a5ae2a71b8b1334f095f35335361852c22c1d3a7859c1edc8389bd200c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 adfbf6660e222cae7d0ed8e8e9813a5f405495a6508c96fd2766285917a3460b
MD5 d84fc4e1093c99573a0a3fa3347bbf62
BLAKE2b-256 b799693c38749eb65c2f8cd29af58c6fe5da317c97d6a7af8b62a0186fda0d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 812c424caf36b53a7232e74af96a0033c25b24be0fb724f851211da50f3280c2
MD5 3765530d11bb0fd8845ad7fa3885f4fb
BLAKE2b-256 f702adc60b15c59d57dd9a0b400dad0f700db9eb83eca6375cac19817392ce4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 301beb0076ab85258e2b09843f60dcc430c54c250651a8d09695d7a90c56ce88
MD5 bce1ed534eb89e3e07693fd6cdeac761
BLAKE2b-256 e1b942bde50bedb8d4c1c7c25adcd27fc1d3a06bcebf6b7c7ee5b5aab3a3bbb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ec1e622ae15233c9488e2c10177e95b2349e93f1fc8afe0fdc69126fcd2e1dfa
MD5 26c6e2497ca6980578489936b2c6c433
BLAKE2b-256 bab4ae22d415b559aff4e6acd8de1efa713cb9c33f8a1e4165b3cd7263d053a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 78b8109ee2630c795640d9edd6753d53b207eb7cd375f6bbc6be8be87a2beb79
MD5 229b8ed0fd1583bb9dde0cf4f2d2d8b9
BLAKE2b-256 19ac281fc39d71cb246e29e4838da5cc0cd2876c02fc3c3730c79a250a91287f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 fbf5d36c54677395c5b7dcc6c0fe39dfec1f62853a8067a1e46ccd16b8689887
MD5 66c65a7ebaacb301c341a7a7fd4768d3
BLAKE2b-256 e3052d55309a6e3aaca56aa865013b17b232c786f0cccdd4feb2d80784b7af73

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.40.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.11

File hashes

Hashes for pydantic_core-0.40.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 445c10f9ea5ebfa4d92e17bd5ce934c58e01ee6f85665a66f89b642b4d70ca7b
MD5 130be03f226ebb856d189db60fa54eb9
BLAKE2b-256 9248bd2835da56a6adbbd4251c8df93aed3a6219ca8332ae417a7b29956c0249

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1be1ae99b96e65e12af44da1a1a96e6ff67343acdf52381f91d575c058853c2
MD5 05dc3fc95dc3c91997036ea29e0e474e
BLAKE2b-256 df249a36c3a690603c78b184c2db91f12784baa3ca710da1fda3bf58912df860

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4d3c4661ae5c46b5e8d3b0bb718a50e558c439ffa23ea9745faf4b9fd015878c
MD5 e2b64e5a00c021d7e7593d1de7bf309c
BLAKE2b-256 e28b33086f08221c6a5cddf996deee73abcd78802ba2086c119dde2b3705c3c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 7e02793289d157bde11de90e1926f5ca38e3200cd2dc5afb0689feaa481f15b5
MD5 125ae3221f2d8693ddb03c69fccef773
BLAKE2b-256 65fec1d3fffecc9cce153c651c07dd9c70f49ebc96d65692db0bd5e4cb365e73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c97ebf68c427b0c80b13951264180225f16f3cae25b393d90d71e09663696f64
MD5 ad1bc7caef44d61bd88188d16b5169e0
BLAKE2b-256 e5e9d79a181d0b9dc24b107a6388b09e42e9bd964c013e7c70b9540b76f6c93b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 9f75a68a7c5c72d7e0bb13704903f848239f6d8ee9e35759a3051a8000dfa852
MD5 7da0dc49fc8813530993e00ac64c2faf
BLAKE2b-256 f373e24a05f95179d792ab978a588bcde578bb65b02e1a495ddd21d319b640c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b348786fdbb7b1a28c2251ac8b8314032884c1774cd28bd8341da21fc8534aaa
MD5 19592e6d9d03636ad07ccb23df377fd6
BLAKE2b-256 9a9016cc20b85c687ccb01525cd10658e1ffc6fb975695c6f29f45d1d81db05b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4020e07819237c762f9613e378dcac72ecf43a4da60fe0962907f27772cc2bf7
MD5 b14c957547d5a1b4e0ffb0a39a7e6a7c
BLAKE2b-256 86de368215b90f837704fb4c872e84f6b631199ab9c822ec53fb1aa542a86af7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1e9faffeb652790e8be63cfb4867f03de8cf39ec03f2f0b7bf9293d9c2c249b5
MD5 4dae00bd0003d75eacd5d81b3ca8cf3e
BLAKE2b-256 e3e8aa9c3fc4eafdf6b6a0cf75a5a4f8cf95bf06aae4f0ddae428c63f9042b34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4feeea5df74000290ba5ac175306203605a60e1869d172940140dafdbce0022d
MD5 5a052453eaa353f9e81c591044772d27
BLAKE2b-256 9663f6cc098074b6e035eec9efd686b99d2e41c74a5c0ffe3f1d54e5065d891c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.40.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3e1810b82fb790e60358e00f29cb4842c8620dd49604bc3f91d0b4254f23564d
MD5 0a50bcf2fcf4bb5c53864a498747196b
BLAKE2b-256 09c7bad2d648a3c96eba8ca21a62736e70b2ce307fd4e84679d190de791a2ad8

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