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

Uploaded Source

Built Distributions

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

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

Uploaded PyPyWindows x86-64

pydantic_core-0.37.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.37.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.37.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.37.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.37.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.37.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-0.37.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.37.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.37.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.37.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.37.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.37.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.37.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.37.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.37.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.37.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.37.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.37.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

pydantic_core-0.37.0-cp311-cp311-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.37.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.37.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.37.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.37.0-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.37.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.37.0-cp310-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

pydantic_core-0.37.0-cp310-cp310-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.37.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.37.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.37.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.37.0-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.37.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.37.0-cp39-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

pydantic_core-0.37.0-cp39-cp39-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.37.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.37.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.37.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.37.0-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.37.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.37.0-cp38-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

pydantic_core-0.37.0-cp38-cp38-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.37.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.37.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.37.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.37.0-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.37.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.37.0-cp37-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

pydantic_core-0.37.0-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.37.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.37.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.37.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.37.0-cp37-cp37m-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.37.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.37.0.tar.gz.

File metadata

  • Download URL: pydantic_core-0.37.0.tar.gz
  • Upload date:
  • Size: 301.9 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.37.0.tar.gz
Algorithm Hash digest
SHA256 8cd26cc0fb31035f8404e530967c346e6686e5053a29715ae7b60f5d083f0c9c
MD5 b8025fbbdb0849526b1c39285912d2e2
BLAKE2b-256 7fd2c81277f46283ff3849889df59cf9c1d695ce18291570f34d5cbdf4c4d27b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 72f1c4273d63c3dd16189ce4b7b856b0d8885ca0b546ed1e6ce3df91dda13282
MD5 2c979b5428ea8f33b05e2c67409a0e98
BLAKE2b-256 49fa9e8776b79c01dd150db6f009aeb00e5795b7312ac5f6e7fb7c42907ed248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a758ec9437bc4bdfb6df00971400406d4d07c0a30b9f5181e59fbacbbdcc0cb2
MD5 c1ef72e50a3db4eb5147272e3242cdef
BLAKE2b-256 45a9a390ced091f0e737f3dd2f34be3b8a317b3fa74203683e40cb8cd1c7e5db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b32a45c499b688afc22605ec3dc04f5ba7b6ea0747c6f971d6c21ed20efa9144
MD5 79bbbae6332c931f80f91fa86de77afd
BLAKE2b-256 580ae5bce7c2088ab7d62a16492c27791a0b460a6a3513663c8f2947aa38c39e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32947685311fabba9a81c635ce713d679a74d3907ba9a7ab690135fd9729aafd
MD5 65db17d6fccde12118a281608c2e4446
BLAKE2b-256 2a3fd78669c1f5b0a5318aee03940431612e8900a3818617fcd14ef41e785c44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0107c9315e15b9b08b055de0c317a53d50be853789643a3498c5dd746bb05cf0
MD5 05ead347cd97ab4741ace1bda1f7fc95
BLAKE2b-256 52284ba75250b02b976f93312aa6fe7e7c2da3f663cc188c56b99381e41035d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9c8c488452a27e552342c31e4ad65ca874c28edbf6b4b0241d2d82f23af1cf48
MD5 bca6742250d5899fac3d5056a4b7419a
BLAKE2b-256 f4a7e05ab764e6a50ca5b0682fcc90ed6fddf2b55aaa548b1f3459cc84fd696b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d4e687b7a4d81502d0f8505bd0874c77b7b428f06ebc8abcd5988a04dcd6a235
MD5 b95f8256f2e9ebb6b52f944dc6c12274
BLAKE2b-256 d416a7586e197ec935c2798fb6ba9bffbcc37d359b2e96f0a01f2c1e4013fbc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 4e5cc6c71fd7bbc71970358cb25e48a8569b7e7dcccefa1d91f0ae24bb8fefa4
MD5 cadbcf06cc3ec6f26be8f98cda166986
BLAKE2b-256 62d927c908cbac7461bf64c1bda4b354b5aa1b4c0c6c6fd903769af55b31a2ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f9f7f2981acff9d7222fcbd9c0e1e65fac97eebb075606c89ddf6fc6aaca337a
MD5 ebae73603bb46d18e98bc69fcf17d474
BLAKE2b-256 0cc20060513042fc00c9b833afe7b4c7c03c0c9da73aa0d3a3c2eda2411dfe79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b8022be9ec93cea3bebdab3d1fb5bb755ebe0ffb46f038a3e0453a0aabb63821
MD5 93b3e1f5bb93579ecf5c3623379a0638
BLAKE2b-256 88d19ad0d14bec18d64859ab5e851163d5218aea608d3d228d580295793aeaa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9b5e6fc952a1e3681bc7da7fd0ee20e8488e8f266476e6243b111c2213c0ee9
MD5 515f2b6392440e862cd8f364a833a402
BLAKE2b-256 46d032bc4ad745123c614aa1b59190d57fcaf6cbf87d1d82e32463fb923056cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 369f7531c8ad485b047c41dba4568196a5ee0df7030694d32fddc398b9b243e3
MD5 8a3c5242d6656a744230851524fc131e
BLAKE2b-256 b508741943bda9ce574420e37be4ea380cf71b45642517a388ef2fbb41791655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f76001fdf6168ac819a3e626bf2143c8fddcd6613e5a3a6ea15bfc02853a516e
MD5 b6b6eb6602ed61171e0b5fecdcaf836a
BLAKE2b-256 18429afd3b04919ecb52848d91fbf83e7d07fe4a1ac0bd7c6126941c77d3c8b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ebacbf8ecc983c97648e93772078f06100b7364e42c6d733ba5f75bec30ea4cd
MD5 e32fe798279e05151f37c8fb50416351
BLAKE2b-256 5b8a55f9c8907e617fcc950b60441812eab570976bd696f896d7622f38665f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 faffb8a6573555c01c6b64daf805aca0d776dfed7ad4c103cf5b1434b09f6894
MD5 7d3407e38c7079f7b524bff7aa0210ba
BLAKE2b-256 5a6a8a5c64fd07aaae306e833a801467526173fdb4d9e2d1e02328e92be205f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 396714dd9b52ef68b422dd1798f2d931171a66dff10d1168031fa256fae6d917
MD5 875fc2479900f936deae02550a969a6c
BLAKE2b-256 83764e71138e1ad2bff1f98c9e2ae84773ebf6cd1d325860feb05d62b8f700b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 12c8922b99c247602699f83cdee8c48e74515ff154edd07e1e05f854ed63ed1f
MD5 25c04c139a45140e807a80dc4203490a
BLAKE2b-256 310518fde159a3bb6244358b33551df0a9811daa0952ad9cc500323a42ae9873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fdd2aeb0fced192b4881083cabba4b149217321799db48a6d6e0afe25e70d12
MD5 906427606d1723d2263bd3562991d5d7
BLAKE2b-256 08590aa810730096cbeb4633446c5331754e58b4526fb3380f68978dbb43f202

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33550c8b91bbc80ff7cd14da8d6a2961e869daf4af2669ee9ed86349e7951d78
MD5 d4839eff9819b4f81c2ca32217cdb4af
BLAKE2b-256 5ecb2002355e0b32075f1727475d8f2f35e456b97e95b7cee6a58bb2f9767ef0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 292dcda1d35640f255ee40e3b58a5b22ac1858bccaabc0c3c81c55c9d55a304f
MD5 e717d9eb25a83f5e48d29660c429427e
BLAKE2b-256 2b31f256ce5c1296ae8ac6eb571ec8b3fb8faacd720b259ae2a3d728eb9ad27e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b3bf0283657beacbecb9f3d8958f78965b5fbc9ca25e79cf41db38aac692cd49
MD5 5bc54176933fd7d0d3b593cff1da9120
BLAKE2b-256 ae25ded2eb0d7060ffc882645037be3b448dd044aa65567348ed7e207cf5dd12

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.37.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.37.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 7782d50ce4280423982837aa9419c66ee08d1ec3624a956b855e181133c62f3d
MD5 dd9d3ee89115ae32c7bd9d44035b8691
BLAKE2b-256 ed71d00f2ae28a818f2f047ffab283e23282545ebbe656a4105d785faba46898

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f0a7a6790936969af62264c4b81d5d3665e0ebc647ba9b9fffa2a2e0e1a7f075
MD5 c95e5ec3058c3ceff7c76abea2f37757
BLAKE2b-256 52f47b9f540e0251c3e25a1b07977d63972540170c6ee111b3690c643773753d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 83456dbf053039f97c902ffbd9443387ff8529faccae70aa979c45fd5eca3c8c
MD5 5bfbc8b21455cb4259b2ec5d887cb202
BLAKE2b-256 2aed3afc7ba51fadf3b4844f9348d7a528e191c923da817ea06dd4fcaadf2615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 123e0e9371b9fe2afd032c65cf4732cdfecf99eacdb16d31181e7cfc607b74dd
MD5 575f95ff2f0841b91e320f187d414a32
BLAKE2b-256 00052072d7f8d580ef54a9cd0dc21a1b1d599d7b188f1099b464994177b7981b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 46831e6480d7d6d331d79aed0308cb97f45311bdb1446d0345426b42ebc77ab0
MD5 98a695d75bdbe28ea2bf85ebb1752fad
BLAKE2b-256 791a30563208ed60bb55d5b6e6b0c8c99ad5ca3f2740f916cc6cf04ffce1cd6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 97ae9ca2f0c8a2dc0865151a15fc1f8b6375501eba3c261adfdcbe3aedf78691
MD5 64522a3ed87be035730a7210c8a35600
BLAKE2b-256 81417aea2f98f463afd93a2b047427f6159c76ae439f1a10ef5af588ff566dec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 901be44d538594b69e503992b7b5f4d7e6a4a3be4447178d5a46c28673078384
MD5 48cd9f1cdd260b4f6309db2641faac93
BLAKE2b-256 3026e5d31b157abb1a882732fbb492c260f7f66918dd64833ea4ab326187041e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c4b2eb29bd4e2e881321aae973d65789ed1f07f5002ea12a92110ff4370fefa9
MD5 6cc7d6e569ebe21d701510e9a1eae3b4
BLAKE2b-256 94a9092ffc0b67966307bfd19cc576bfd6ebebd8363f98170c4c8e0650500f8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4966baf45c2e946b39b348a00f9ea53744b5f5b0b2b69f85e7cf76f30a95ee94
MD5 29e9d905c53a719444bd802489e8d702
BLAKE2b-256 ff885701e3fa602e6fa3234578af3685fbe4ea185fe45ca9c0653cea05cf6097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e3192c4f2e4e0cc1eebf1852c6b04c810bee8f9d0088abf383583f2516568e47
MD5 6ca4aa80aca31af6d2c3d0b4b5931f94
BLAKE2b-256 783b6b60d8770caa91fdb27c2f932072bc9e38fc27763f9727ba4f5324e85397

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c1f58812f75f217f8f66846725df166c6766401e207b826d8e8d9ca06a9e80ee
MD5 9d1a70e52a1737cad3499e1a58712c5a
BLAKE2b-256 7fff44f6954ff3edabe5285f678833aebe776f2e12593072462c5305b3be7ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f67bc355d066f5f708dfdbd890a97bbefdfb2a4f14484c087c06f3af2c7e53e6
MD5 89237f6501165a4f1492d5c62a853e79
BLAKE2b-256 71648c02246e1991ed30e0168688ccdfb898d623dc5c643ae405443bb1d913e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.37.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.37.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e07bca47c52ba05ae1282c013b127338a91f16e8a0ad2959d616c9b38653674a
MD5 fcdf4dea53a64de2bfbd51a71d0b3d18
BLAKE2b-256 27931073e7cd046c54baf62c732a755828cc413a9ab3014fcc7dcac2cba5708c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0990fcf02b6f553fff6ee233d859ac25b60ebe983c82017812d20b22586b923b
MD5 ac34b119d6a52b7391a7a9ddc937485c
BLAKE2b-256 da2d983611e88ac7b0be160b9ffa08bbbf6b6c65e2ea0270fc1e55526380af11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 35f6f2cc628ba627d71bc40b44e6fc41c9ea92d5b3602e9c39598c6e3b935680
MD5 71a89c85e55a092233337b568ddb5294
BLAKE2b-256 dfbf5b6f655b1e8348e9ee42fba8287e2da1004d1b6b4a5c451b84ecb922bab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 854f86e621bcc52e568de99607b4c71cb2be0e1c71ff96358f9c41e1fadaf531
MD5 d6b524a1d42d2f01c2f449c269dd60dd
BLAKE2b-256 a6cbd1bc3bb21273142d128d32a138e5349c77d2a470f8285ab9957248d0913d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 855dd5c34c82cd2b2a914d3ebf714354c1428c5f05ed4c8fd906f2779c1df791
MD5 c90f202a772c8f2ad70ebbddd8bbef9d
BLAKE2b-256 d6612f02002dd860438842fed8a0067e81a33fc425d62eeb9b7694f2fad2015c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 521cdb1949bc021f5fd87637b020c7b0babe590ba8e358603cb4798410930f7d
MD5 77b521be9a812253b735741d67002fc9
BLAKE2b-256 1cb8f94232a3ff95041975879847ece5974c3e18c6685ab85547747c494e9bc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0756b0a99b7b848fa05dfc34152fc34d599d1c02573af2aa17ba41e94546e287
MD5 fdea4aff9f3bc73a68f96406de36009a
BLAKE2b-256 c08bdf46898e47a501f0c04bd17d8fc95b06b218e99610419e4f209628f62a5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48c78c452e74388e42bd7b75339df38b7e3ca8d110368f1748642faf6d141480
MD5 22bee039fafd63973a28f0ad1947bb62
BLAKE2b-256 15bfc574d0f5f4aacf7b50783307ab7d982b50b928169aa51318eeb1cc61908b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f8e73d1db78d7151637bd2b55dade7364b798b74ca9621d7d24b7f71ee69929
MD5 9fae93df3a2997450deb2805ea45daac
BLAKE2b-256 a6d5bc0761dc7d915c64b0168aec274058d333b7e67f0ac0ab1247ce52a58f33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a253402e7e89a6d8541cbc12f0b0c0dd110aba15d6983d0d69edeb052306d049
MD5 47b162fe193a611b77a81dab47f7a486
BLAKE2b-256 ab63482a601552d010701ff61cf74cc14e7d851dc5aca97c7b4a6e4489c25aa9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ca9ab11634798abc3aeb9c588074ae335ddec16f384a397d54c49574cc65d21a
MD5 4ccd94d2fa25a88562ff0ae9d90a68ca
BLAKE2b-256 1fc8050d143fcbfadae4aca536f1dcd2f9d3aca6ba33ab363ce5e8e0b366ad02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 11459a8c33198f524b796fcbe7106445c1daca262d5f89a1583ada985a166f80
MD5 86ef16518e67854b91e6e0a21106753a
BLAKE2b-256 d5db2b77f442315090be37fbdf6d5ec4ea221c5dbbec9eaec6b6b6f364e026f6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.37.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.37.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 d3fb34385135d9852271764e8f73595b4390f6fa6351798fac8d409d28e55294
MD5 96a2e881c6c1775e926e45bbb3a4294d
BLAKE2b-256 97455cb738a9f2d2150c65040589c21f2f80e91f5fedf04d6fdd4595342e332b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5b6c5103166b4bb749c0ec055361eec857c8b2787c2655b8c3482e2c8c7cbaea
MD5 721ba5eb354397c08ec2d524e29b90be
BLAKE2b-256 16b1f58d9798cb2f608f62d888e801f5f9c85c0ea04a9dcd71feb9cae8e38116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 166bbb3b15da19b356cadc8950b713b687d42b6380b9b3436d4a62bc7a0bd531
MD5 18dcaf19ed17a4da9f27eba784a3ff41
BLAKE2b-256 1e39b8888b30f760dc8b5783f240ae4bc70d62dc9d1686b33c6426b0d35d01af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 2d4f9799141cf2112b7e2d6bcc7d80e7cd334905bee136fe7fbf4055edc6abd0
MD5 4f117468236fbbb5e20fcd9af4964b41
BLAKE2b-256 749d59a107cc2f8b2f6d9ffbe61c606475f6740f0b32d156301b31d3ca90cfca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 5a647ccf0f5e25c43288a7b080a44305695fa66a4168fc630edeee704c8b5fcb
MD5 fcd044a73ced99d4585b1621ade79756
BLAKE2b-256 63710f7a9137d64f9ad801a6e9dadd39e834c7adf26c3746961026b5a8b64c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 017e1fb9fc00c6087940bef386f12453e2fbe3bd0aaf759cc5aeed2a815545a9
MD5 2814af42286e7e4c39d007745eea2b71
BLAKE2b-256 f11c2dc9f8e39f520136304721485e3bf84835742578e99eb18ec2f3908ad9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63a81a17f85944e8ae7dc1c76538fcb26c49a7acf8cbf782724a362fe429c247
MD5 2f7a456cd26f6de629c6c5bedcd49d96
BLAKE2b-256 0ba3daf1dc58503f34e56e84fb95b29e1415faf0eea98478a8c1e4cab28cd60b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1fd7f2aaea87cf1018e082cf5b26fdae27944be41ec9ab6a59dbff278b16124
MD5 dc72a9b8c30167ef0e07dbcca42d7233
BLAKE2b-256 f3a6a953ae0595656594049660d96c84be6c15fe1f4903db58f611d6f6212652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e12ac58b0268bf7737ad191d847a9b6fe056a1ddddb33de2a45f5d3c947f406d
MD5 e56026380b07f9547503715603521b94
BLAKE2b-256 749d12b680b0e7c6610856a9a3b6169ffe085e67637c1898496737a5df06eac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 441258392445ad3188982dab52b958af531f927dac2421515855515f143e2199
MD5 ec5b94fd9c2b6ca0c9094dfa7bfcd814
BLAKE2b-256 eb808fd23e9200e559fc23ec514ef26ee9964ea8cb52fe7e2215b44a5a0cab2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 05616cfedd2d880d5fcc3c8b2e3d34f2d2751e4d55df5572c8431a9e2a418534
MD5 deff6d2b63b45070a63f1f1c0b30b7d2
BLAKE2b-256 29e495a1ea9424baebb6dd77584893879dec6db040c1138726a84d6c2eeb3fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 1301e69915ed05970ef0129f5aa3642cf88a7dbfaa76f284ffdb3b6ebc900f4b
MD5 6c6e3fb13c07061134da75c67f873e0d
BLAKE2b-256 0701bddbd05b00dfc7262ed2eb895a54759ef29875f7608e1e0bddf895b4cbc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.37.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.37.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 20ae496760ee5f59d1cf91bc22b29a0c4ec80e8edf68e91152da57976f6d0cb5
MD5 0dc406ee838ef8a389345434d8749108
BLAKE2b-256 8191cc71c2622eaef4cce6e6b40ef8301a0662d48a63365f0230cc7f8bb2340d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b2bc0e90cb4426d7d08bd4004fa6a02ebe531215a658b7d9b21f93b12035433a
MD5 ae2df137672a10aa339101256bc42a40
BLAKE2b-256 616747eae9663c354bac7c35c15b7f763e8a8afb42968572422ea33782f77ea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ee164aefd070df1bc1cb274979951c7f61b6f7d306d951c03fe7d8cb005789c0
MD5 666065940d99ee1d1203ccf3dedb832b
BLAKE2b-256 5a8b161397242f789ad621ab9b362f9c6558cc3cb5ca0dcecd1f8527303ae6d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 c84641518b3df737a43a640a1dc0fa01c292e1a3c529879396c02ac5352f9b04
MD5 46e6f18ff4cc5bad077448f23162e1a9
BLAKE2b-256 cf710d30915f4318745f5164b3bb347dfa5e006cd8afb63d0ecdf571633b0fad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 3822749e7d24f2cfe6bb9238ac84f5fe2be438bde5d9e839fa2557fd528b4db9
MD5 2e139cc1af4f49a9870394d73a2db26f
BLAKE2b-256 c2f9da7feb14daf03ec124b1e467cbca23c2a192cf0234f993c288cac839f2be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 5b4e38dcec1d47e034702c21392afe5beee00c7eed743986d04999ed841305d1
MD5 b671f03f42bdea47e5e651c3328ab61b
BLAKE2b-256 15031c42f59a2ced4d9b52de4fa17acafb5792a87175d88cb34aba9d7724eece

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0501bbece0e177a27ec2b9f4861504c6ab365d320e5d2a90f362fc08d982e2ca
MD5 51a9aa4649e471071105cc5b083ebf94
BLAKE2b-256 78b62cd51e0ada3087285f4cac3f4e1d2d22ace1fe81b2ffd62192dfb5306142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8fda3b6879d5a2e14adbcc8181bdded2fc96a3abccfe5505a70695c23ca87f6e
MD5 5c493fb99f27ed173d47f95460cbba63
BLAKE2b-256 2f5ba61fd65f3e4dde861ebdb6f618c59b643a72c99e5bcc94d007d82363f15f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5f55a46bcff8a2c3dbe077a16faf6030f9b8655696e152127d8eafd7f0ae4449
MD5 f95f67cfaafb70e2230d1a317a9ace11
BLAKE2b-256 4bdee9f6550094e960c148053cd6192e03721750153e69d6a9cccd2278abfee4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a6f295dcfca2908cba8ca91377bcd319eb896d7331a0328066590432d05e327c
MD5 51131fd3fdb62adc67a71990ec3c239c
BLAKE2b-256 2e64acd221e97976c67fa57889508fd73d48a23992e3b22660f29ee881185f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c2e26ee89a6c9add015b661769d8bf88382499b1c9430a15ca75ebfa6244727d
MD5 a22a5d88228c17cc6674ed367e47a369
BLAKE2b-256 764a832849db8317d3fb61a4cf532af010fae57cf7c622c2c9a6f8eea72531bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 b09da8c3e5307aa8cd71d786836ad708c9dde7ad1a21de6c229864db004f7998
MD5 6bafc2353d3631c3e75d2c670ee3df77
BLAKE2b-256 4361c61c3ae9bcd456e250d9a2a536675ad5a0f2ba85589b311235a6db812996

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.37.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.37.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 9d71416cd435bfafe3241e75456609a04051b29912ebc44bb6262a293635e490
MD5 ddf9e10a43f1be7e366b944e0e49b26c
BLAKE2b-256 0920e3eac850d10f343ea9d90761643b0aaaa6d38850c4499ae53bc347e0a958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3d89923192955b3ed521f714920616ffec72366c87e0bfb9060f19213180deff
MD5 77e78cd6288701a04eee3e66eb4626b6
BLAKE2b-256 9d377b3534bb0f55fc59029f1f770d8bf9f25c68b698390bed080f987c98bf47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 faa6de7d1c3fd3047d9f2c9a3bd460253f5b3301cdd00337e90725be840f0f05
MD5 87bcd617026f6126202360214b4c07de
BLAKE2b-256 a6826d3175a0c71f00bc0520ba6ec626296a3cf7261c4bddd4cc05411b1ff306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 c2129c364627edffb09bf11337351032e40b1e00249e62bfa0037d25fefad3fa
MD5 0183e67af9eae824d6810ce0c6d8074d
BLAKE2b-256 d0cb0560aa96068a2cd585bbc7676d0d5600830dbe995a1e553925848cbe8ed8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 b52e2b01b2ddb8da586eb22760c3a510221a8ed917a0d94ab14711026fe2f1ba
MD5 51b135d95e9bdbc32ce4645a90dfa84f
BLAKE2b-256 4054acc43eb031543c02d32a62366a8bce5acb2ac51c874e7f9f9f573930f8c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 f45b42c4175dadb72fef5c2cf0c2c8084416f1ec0d5d24b995ea7ec96a40b577
MD5 3571934e47d655146d6897e695ffe7a2
BLAKE2b-256 b0e95a948f766e9d101010dca52e42525262af64e3f972d7abbb0b661073d4fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 79b6d4f384d03134ca3d4934904123fa7a8d121e543cc0e1d7f3c5704aa666b8
MD5 670d5a70bda185cb826624cd10bcb2a8
BLAKE2b-256 13fbed433d199e9ec0e5ca2ba103ea557f0677e243bb3d20a913ea31fd2d7d92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d505c03476274a01b9830a5f90b937456d1876b3da8b617709a76d00a2c2adaa
MD5 8b92ce98bb38eb5cabf1344a7b6a106f
BLAKE2b-256 3441c4dfd12f1edd5e90629d4d90a03a89adeedf085fac2d297a2b8269bd27ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b12579867505227994501305638ab2521a9d6d8544901679e3143123c385cb3b
MD5 a3ca444aa77a006e4f4d54d9a6ebc0ae
BLAKE2b-256 d379d77bea3f93530cfb4f1385a25d6a393ca0edba983fe6aeb1e6989a730211

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c1de83c698019d7de7967c64068aabe79a0794e85b43976b8bbb1529e400bc9
MD5 834d038890d86fcf1b66caf571102fec
BLAKE2b-256 1931c41d536ee9ac40579d23164bbe58596efeefafffc9849b3867a3007f4237

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.37.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5f5b74543a6c4437a4c041c03feda322acbbdbc04a5a8820283f7d7a6ee3abfe
MD5 d8d279ceecc4d8356b8921135e921093
BLAKE2b-256 5388efbd12a338e06b742cf2e27aca47e7b65bd68aa846085488b73613902436

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