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': {
            'schema': {
                'type': 'str',
            },
        },
        'age': {
            'schema': {
                'type': 'int',
                'ge': 18,
            },
        },
        'is_developer': {
            '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.8.1.tar.gz (224.4 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.8.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.8.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.8.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.8.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.8.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.8.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.8.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.8.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.8.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.8.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.8.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.8.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.8.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.8.1-cp311-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-0.8.1-cp311-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-0.8.1-cp311-cp311-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-0.8.1-cp311-cp311-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.8.1-cp311-cp311-manylinux_2_24_s390x.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

pydantic_core-0.8.1-cp311-cp311-manylinux_2_24_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

pydantic_core-0.8.1-cp311-cp311-manylinux_2_24_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-0.8.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-0.8.1-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.7+ x86-64

pydantic_core-0.8.1-cp310-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.8.1-cp310-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-0.8.1-cp310-cp310-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-0.8.1-cp310-cp310-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.8.1-cp310-cp310-manylinux_2_24_s390x.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

pydantic_core-0.8.1-cp310-cp310-manylinux_2_24_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

pydantic_core-0.8.1-cp310-cp310-manylinux_2_24_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-0.8.1-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.8.1-cp39-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.8.1-cp39-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-0.8.1-cp39-cp39-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-0.8.1-cp39-cp39-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.8.1-cp39-cp39-manylinux_2_24_s390x.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

pydantic_core-0.8.1-cp39-cp39-manylinux_2_24_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

pydantic_core-0.8.1-cp39-cp39-manylinux_2_24_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-0.8.1-cp39-cp39-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.8.1-cp38-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.8.1-cp38-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-0.8.1-cp38-cp38-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-0.8.1-cp38-cp38-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-0.8.1-cp38-cp38-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

pydantic_core-0.8.1-cp38-cp38-manylinux_2_24_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

pydantic_core-0.8.1-cp38-cp38-manylinux_2_24_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-0.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-0.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-0.8.1-cp38-cp38-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.8.1-cp37-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.8.1-cp37-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.7Windows x86

pydantic_core-0.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-0.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-0.8.1-cp37-cp37m-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

pydantic_core-0.8.1-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

pydantic_core-0.8.1-cp37-cp37m-manylinux_2_24_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-0.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-0.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pydantic_core-0.8.1-cp37-cp37m-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.8.1-cp37-cp37m-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.8.1.tar.gz
Algorithm Hash digest
SHA256 024d31a81e1c34236467024a59dbea5ff1594b40b49920662210cb2fea78d02f
MD5 4be6f988946a0b85cb84edbdc3e0fe3c
BLAKE2b-256 66a943373f57c23711ea1e76d81602607d058c34fe7f5f7f01d0afc1cd8f38e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5fe76cfd096a82ebbc48a4839ca84637b7adbfabb737e5741bb3c3efab82bec9
MD5 0b28bc8f4befd200c32cc014559a4165
BLAKE2b-256 977cb27b3fb133add6e9c491e3588daec019513bed16b052987b6f7b2a08c5d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6af2e9af17f10ac34af84df4d8af02795277b4940222155d18b3f0da3246129b
MD5 11e8ed1c23c0e82e8163c5c3fc6428d9
BLAKE2b-256 9a2010aa8a54e5404fcbabcd1fdf7d5e5fef7185ab1963820e517e0af03c709f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2ef73611eb4c7221e8d0ecb07a3524752422afcf3a59aa205f09bf0b3523d6f
MD5 5700525394826c0bf4c349d75fc5455f
BLAKE2b-256 be58df9b6f85bb21de4006c3e5d3cdab5c6e233c1f65fb5af4fcd24daed62296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4aa407e80b65714d93c6f6b5093fbe66c3092ab2d5012c3ec71690a122ea91db
MD5 f4f2130fadc5acff81d6c3d217bb7d34
BLAKE2b-256 35f898c71f0d9380b0e0c5c937ef221e74ad08fb436ee15fe1d8bead35a9ecc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d3def839f8918c173e0defc912c22cdf14f6295b725e4c7fe92e5b2de61e58f
MD5 699f2404e67610731d62690c24826d7f
BLAKE2b-256 469a315f9dfe0b82ad2e52f6c48e77093b87022cd96f0cf10bdfd5e2e32ef169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 90dbe16b181f9e296cf0c4297c060f0ecf323095ba785c6dcd087ed1cce5178c
MD5 191e7424c0a1e01328e63c7db7362b92
BLAKE2b-256 28dbe1144e16ba6ca677548dc2807b69af99b6b3bf2eb003cc9d2b3038aad5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e35e829503655856add0ae5f1dd5a40c933f0f32a21800c08627fa26cb1e9ef9
MD5 8f95cf6639ba7084fe563ba982d476b2
BLAKE2b-256 fab94243d3893847170012a9de396642bdd5958f004eadfebcba0a321dea9013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ed084c7b2a2d79399634b7bd85e35a946243f798fe943667953ba807647ebae7
MD5 c098e703ace3681675314f57693158b7
BLAKE2b-256 d83a26cfcb0380a92a64dc1862786afa857c67f1f0d332b825b83bc7d376a026

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4149bff9bb659457072c03f3d7b25ddb2ccaf86d78ee0e2a4e32af554ee11b2c
MD5 e06de6746f88fdabf17a8af285642ee1
BLAKE2b-256 ea525b263fefd5f3c914a5d4639d9b9bd5f63030152da2da7c138453254811ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cb30f82de54ce40f4641a26cb32fa5ae39ae111aa8221e77179a760dc018d13
MD5 b72b70a30c65135633cc0798cc49068d
BLAKE2b-256 50f27fabe75b47f8eef1be52f03deb895dcb1d03a2604c7fb2402169a78174db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b36c861c45d51357c3b305dc3bf0bf60ff69c43eebf12a7541c467288d2edac3
MD5 d5376a1a38844c28804cf133275a6296
BLAKE2b-256 826902fcdaf08ba3894a94ca7d9a2277896cafb03f7533f543800e7f24678754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 45c87c56032d8086c82f3abb9bc5b08613c5eef3ef701a9858efcd6d4065f03a
MD5 7529608b4a728e28035fcf31063a8c77
BLAKE2b-256 05a915cc63e8b6334c8055bc4b0dc6ee6c977790801c694e3ac927aed44f6499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 81546204b2f3fec33085925ae84edc1f701979a01dd3895496c3659f24f3347f
MD5 262bb19739b6426678cdc621c4986025
BLAKE2b-256 389fa58b5703e2e1c3ff75d2fda14722ac4669eaa64dc2d52045f88fbff96b9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 755873fddb5a002a55c09687185eb85d3a9697e7741c6eeb0ff03c11d5cfd819
MD5 fed3d6c37cfae56cb06a5318df184ba5
BLAKE2b-256 af57875f8bfc14f7ae351af4380f8eca3ff65c3606ea79895c4d93d924109cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c0ed99aa1212d8b40dd9131bdf70c9557838cd7ce3bd77612285bd95d8b0a85
MD5 d015230b6a5c3eadef9b6e3b948ac1b7
BLAKE2b-256 80eb971b8199e012727cd310648595e26b841a17c58c65e3bf936403009e8c39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ad434192b533b3f9fff6260d4612f0860850e47181a94ddf10c9a4fb03922c1
MD5 de33814824cf39601925969a2025153a
BLAKE2b-256 98900fbbbdc2a9970c4e1055ba4b1d7fd1b3ca6fd2162ca2520a2507d2f7db6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17d2ac6dfe780b3b9e3b4ff853dae46df1be5e4022a5cbfbd67a1e0cc15d2153
MD5 61cd38a7756188918365a096d299247f
BLAKE2b-256 8eea72afbb234ef171032f0b0dd5df6d0fedc8b15d21d92d55e270e80f7e81f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 60e493cbb7bc2f4eeb651fa5c04af4bfd5f079a8ada57d20b2ec15400094e418
MD5 5ab5362988883ad34195ddd239343e76
BLAKE2b-256 450f67f4e1436af7bb75412d2f89d4360aab0c9c8bd71c7d797ea6813572e6c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 989d54292dd9f861b10f9661e383b639241c7eaf66395ca58d269b45daca49be
MD5 83ee67a82598596c4b7433bb7b498b75
BLAKE2b-256 c1b0dc13e9d297eca0cde5152f6206ee957fc1487041c16bc5d0662405a2ae74

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.8.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 0677876d074b2cbf07c03ae8c11ea99252156263525fca446ab385e4f18e8886
MD5 a79c633508f133ba70d25eb4ea3e8f2d
BLAKE2b-256 3daa1f709f538d1b59cefa3638f4bcf75aa93ce1c6ec4ca0a1f8c332d1a28f21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 24d544dc65fe34bbc6f3275c1ae3aa8e26bee2691c126be402ea75d1f2e9eebb
MD5 3d82d991a9100dd47d791c1c3833a5ee
BLAKE2b-256 1998c6d461359f428626322abfe581b04e6e7e81f5caf251e72e92d995699762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0d5c9b3aa77705a471e8a1e56d8c3e3233b0dafa344b176752811c7ff4de6332
MD5 f4132a44be69a227bd838916b36a998c
BLAKE2b-256 6d369653bcd13a8ba1847f342e30bd6e9486a492d88260df711e406f623ad4aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 ccc0e0c7cf704b28ee9fc3732a4b981af5483dbd91a92c914a2768e82f47e605
MD5 955202b5731f9f1c4da42ad070640265
BLAKE2b-256 8aea57cd1c7084bd5651f017db29aa4ffd455be394cb968c24cf42b30f2ec9e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 121e348fdc49dbcd5d79a5291b0a154d3c18ebe1ed91b857ad24264ea36629fd
MD5 908f2a1a746f9a7358ecef9f45b562d5
BLAKE2b-256 a32173b87be5383a919c27b389d5e4b24a4ad39515006458f8859ff3ef548cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 09f0f59785107d2ce33f5a9b4ae9754e686cc58c935e2f076482284a13b6f503
MD5 8f29bfb8aa351408697233cff86075bd
BLAKE2b-256 fc1ac01243bcc7a58c3eba3f9d7a35746a0e30765f6a5be5f68c4e969704e3c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2971cc59cf9ce3d99bcb66b04e90a817c228cfdb78c3d99d96aa3a0cc25dd6d3
MD5 0918f5259fd76ea0a509580cbe0fff2c
BLAKE2b-256 ab95ab1f7b0806cadd1fa5cc9feddf154b5d6961b5c0c3f0f4c705bcd24c5ea0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 260675d66981502e6eb6fe2ab0d70289867951259841e11936a2edfd519dad48
MD5 c015ea0b78661d2f387a01410c3fa2d7
BLAKE2b-256 4cd26ef1c0bb81285dd00f5bcc4cc3c1661dca03bdefdf9f0a1cd69526657863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d527cadf3d18ef71d3d7173067134f890d7bd64f68d2a0c8c12e61d3d6ee4dff
MD5 b02734f15cf84a77b81201890641e003
BLAKE2b-256 70b00284c9f27a77f774065260f09a4ae494a55903ae1d4a2e102335926a564e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd0562198b9f7b213c6b15b0a7d2b3e28f11940f90e9251a30f80e83efa0630c
MD5 f323709abdc687d711fd439626754729
BLAKE2b-256 87e7dcd11f719ca7476d44bbcc9d23b1a714c6e5591c76f21373649b3e8545fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 28c872d64c34ec4cc11f59a8469bed7eeb4181b5406c28f75ff142f295fa7771
MD5 fb0655894d3ed56b47d7138dc6a85098
BLAKE2b-256 0071d0afe0c247e86f5e5c952a8d826055ab7435aed88bb0d60ed54c37765d75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 18b0b155e075394d12831bd477fadfbfd7badb41332dae7c6f6db95574d71c3d
MD5 6c8f3fca47395c92e5b787db0ddeb2d2
BLAKE2b-256 1d313d7f87173584b485e8deafa483d71a7d76745d3dc359523a591e246322cc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.8.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 10cd35a0db61c3c31b308617bf16d325a14efa4450ba2ac8fb7e3f8d9d8c500a
MD5 bbb03980d188beb1fc2d724f5cea60cb
BLAKE2b-256 dc235496cfda59b86c8f2792aff851f18c9a542459ca60b51eb8beaa5736d283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9277daa4871d143f8670acc8d1afb0f0118ef344a85f299d34f71c12477caf19
MD5 55baf5ed025cf8c997fed712a4e03edc
BLAKE2b-256 bd3d5f67ecccf4fb094c3c1c8ffbc4b7ce266a5ef305d1a86dfa27045410ba7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 63bf67f1403ef686c42c9f04d67b6279583baad815d9d43da6eef0fa42622a45
MD5 cbf19b5b45c9f2ae48b1c7af06b50d10
BLAKE2b-256 c9c6b58ffcb52a4640b37f03454a5f9e88211adedcfc8761230af87ddfaea75d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 d8b6f7d942bca48405582dc815dc25c2d8f3fa4dce1f84f57473b643f854ce73
MD5 fd9a789a3058cf911f9e9cf2e4a90981
BLAKE2b-256 4d19d7c2ae7f949be14210cd9f15c1882a751d71eefdc9d53852a6fe6b803908

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c8fa0bd614ac8b52fe0638f998a599227a8b823e5dff41947c5259ddee142314
MD5 914dcf2f8d1c5f9fa5a2c023bae2ccd0
BLAKE2b-256 9601be78cc37cac3cc654a6f3e9c10c102a6b5d5c1c7faa39eda0e92de380df4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 e11a84cf688d8dc1dac03cfd0a6dc18b18d01915685c7731c2bac0cada03b4ba
MD5 ba934605957615d2e9bce3686d0ef8eb
BLAKE2b-256 fb84c72a097d1727e8792ddfa3a7c136cc0c33b6997dd0eb7e8d2b735703945a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 422c9ad217db8e8861b3f2efc6171268da40bd6c02045ac7aa1d25947a3f66fc
MD5 52310d39c6cb58739c286b5dcc4cbeba
BLAKE2b-256 814427ad17cbef471b4e635ace75f7af0bbb87fbc99cc819ad6e28c184c7197c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8503e58e1442e8af0d7201e050ed917f745c28e28b49cb0f27625dfa48e62c5
MD5 50642507548de980c6670c024b7c1bfd
BLAKE2b-256 c3cdb8fdfc9bcc95f1b8e003e86bbc7f5442e5c96abce501a5d11d0dd169fb9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a4195fb658d4bb61d4387568bdaab6dc459ca7223706a157a1198bddf2cc846
MD5 f64310abcc95d510de17750d23319808
BLAKE2b-256 58ca16b541058b6fd010c32eee783173eb202519004113b11d892a90154ed370

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c5456897443c36c3adbd657a39263174c0a4907969875b1a32c703509955119
MD5 f3b69173092efea4133bbe4b129f2a2f
BLAKE2b-256 ca8ae08fda838700ed894a04fb134898fabc95581ee2c78a74c6540c316cd3bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cab3b9f709b650bf7e7a3dde8e95ce7f2a20b64ba3951b38ab52ba995d55c51b
MD5 967a4362b0da85dff9f507be28be7a1b
BLAKE2b-256 27e525d5e1c08f36919db9dda6489ea1ac49c26db8198826fb545d80c53fb044

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 b10f506577f47b73ef37c935b99a5aaa72b50771e7e0247f68bb41efdd55f688
MD5 f5ef4391790b2f43b4d257abf5a4a7f1
BLAKE2b-256 6699bac8060149227b3486ea01bd2aa238581c5a5bb972c631dad388b9fb7d63

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.8.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 14698751c895012c24a4ea37c55b4f7283ce49a7b009f071c88e6e5519699f8b
MD5 7d71733a2d6fd5e29632009049aabe65
BLAKE2b-256 4827e2edba43ca8042ce9e6a73b447756b9dd05587f7404145ba9bf2000a9163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5d7c559de93876dad1e010eeb98da681533aacad440ffbc6b228aefb9ad6a721
MD5 312f8828120a9506a906709b3b929baa
BLAKE2b-256 f4629e84f0277ad274b555087d6b9d09321aef292c3be57529baf4e9820c5fab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8f19215c792073ae753c1436966f389f4af7fd87631b15aea484e9beee034f8d
MD5 0b0308415c78b2afda129ba064a132b6
BLAKE2b-256 8aee5fcce9f37fc829be5b8cfdbb645097decc7d340f93b40daddfd06bb602e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 ba7e18122f22cfc8c120a50a2d5319bf0f0f4a6c882cc844227f75bc71b3fc2a
MD5 7b70d1fcd54a7c3f2b573b0a88c3cd4e
BLAKE2b-256 35ac5202ab7c9232373300d4aa71f8ce273ae5bd2e27605f81fbe2e9bd565521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 b34af17c17dcf638c1e9c647f7f1deb71012a1641a3a9f09d15e078d7923dbbe
MD5 5a4d5b4d6790790946a0f3e1c66c6638
BLAKE2b-256 28da09c859a6456d4264bd77ceb991d2b674078ad4d32b407a12ad5a490f7c8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c4f1234527c2a8aa0ac8dfbfd688599206ec1daca3695a64e1d3ab52d69fe297
MD5 4fe80e85bc4d322477f58c054366fc7b
BLAKE2b-256 8ed761f862fd757e0243703adcded254699bb5580d16fd7a89955ba8506beb1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db4d4108d9d4b345807914555ac6b36fa9d943de071c240409e1530b64219c15
MD5 a3c796a3fa1d2d8ee44c50bf84f520e2
BLAKE2b-256 834a8c06b3460aec595702a16cb40b7b56563973b2b9164a84d5900ad344f008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fb2ec64cd9bcbd2bf67258c9deda881315e0c97bfcdfaa92997b9c042491b596
MD5 535da4c975e3eecad9c1e0239f98ca2b
BLAKE2b-256 c95e788576b09480828cc1ebd25f959de06de7b392d3af6920db3e640c897acb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 946c47fce284630187ff51ba04eb673603a843db53c03a8ef006e077a5f24909
MD5 ad33cba537304928cbf82b0e4ef6b630
BLAKE2b-256 b3015025f668d40c5255d5a98e9d09f812fd0a929a36ff4d842b2dbfbcd8d2d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f2f709b938722705c76a8cf58132cd34f92a8b25ebb3b5bc31083f63927debe
MD5 5b1ad046b708c4871537c915c3e49c24
BLAKE2b-256 21cb11ca54bc78b79e78730229b75525d4a32f773915a1b2b32279b177128f7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9a30466865d7b0cbfb7d67df614b5e2a2ee6d893e90bc92e5e33dfc3244ccedc
MD5 271ba99d253acd3fb75ead2c38757d27
BLAKE2b-256 f92bca1ef7c7323e16870470d9f838070a8d588a844579f54f891da647bc4fb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 37ace9239e69edc981164fecbb8268ad8000344e388c1e99bdcd0cdbd53706e4
MD5 33f8b38c2561c4f284935be8884e4ffb
BLAKE2b-256 a7eae932530891b6218a4b04de6799ae09801ad369ca0a78adf9b2e5aab79c39

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.8.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 02fa8b06f6401af5b8eb9bce0dc4051f13f21a87d2d5957f010a10f41dafe17b
MD5 7dce2a76933896b3a2d6a79db7342bfa
BLAKE2b-256 7c6f6f1148970dd6ac44fbe431603a4ef6439c4a472e1c649e6b5e28f790d115

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dc76f165489d48789fe533e5e2202a0796b899bc431ab60ba9bf0a8e1e2ff176
MD5 545d127e657cb8f0af594a75d53ee91a
BLAKE2b-256 e77aca29416a871c602ca028ad4d38df048c076251dd515380ceb278a5bf09f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 11de35c5d6835b75b19178b09723a91f60939343948648b7a436f19e1b300311
MD5 6da52fbfedf3bec5e3321968d493486d
BLAKE2b-256 d973e3da33a42d8f21ef8edc33b17942db667f9c1148739d2c00e2b99f6a8708

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 11c61184a45a375b41e2758d3fad68b0c4de01cab27f5f217cca074bc8794de9
MD5 d27e7cbb5fa9e476b58d9ec2f79163be
BLAKE2b-256 a1cb5011265fdb0ab47095b4150d17113fedec7c5854fdd2c9ebea2278f410bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 d5347ba3a424de014f29105e68406354c1405439eff7214c0c2060839cd6ecef
MD5 891189f735d9750d424d9767b53d1ec6
BLAKE2b-256 66b11713a77e22379d0a48d322562401a2c85191be974f51cbefbcf24551fb40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 4904d945c6b70709793bccda691e6abb2f0bc64c701cd2d3dfaccbf39b7489da
MD5 4d68d6386336b65933d5fa41ef9718a4
BLAKE2b-256 f6ff7c7980b507c7b17c2f449329688c34875cd8a6ad7cfae21530adb593306d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7700885bdc7d725c30cc224589378358ecceddb6dc7c72bbbe0d4afa01d824aa
MD5 a9c54d83d7505baf1daebf20b4668aa0
BLAKE2b-256 acb5914a6a9ce7283c8328c899f3f750119be1dc1522a83322da1ac2f5e0e062

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5d41f8828358c463ad068e7fe98737c202f9a0d34f171b94a76996728f28415
MD5 9cc528579b13498c0fc5a3e93c2df286
BLAKE2b-256 e335b4633c32799c5f11cc976f18045348d20d96fa215f1f93a15beb937669ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 77e5dadc5b835e306b4240753141349bf6695b17a77239a2a02435c91d138f14
MD5 0b62edc09e28170f93d087d0d5fcfd72
BLAKE2b-256 cd80b792b53918e7a8babe27f4471201aea564eea948d23e6e6feb013c62632e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 40dc6038cffe5da6f181f8ff180d8ede6c89b44b77463ba47a8d0d8f45f7beee
MD5 4a94c5c28dc882875fb42a30fec15d76
BLAKE2b-256 b3f697a154585f27b0322ace2bab80d7e5ae4ce16356267b177c7e0a26804e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cfbcf2c6d876724b3b7aa2e6679267606550726bd452af2d8f656dfa000df2fc
MD5 2485276ccfa54113a10ad6279b5eb146
BLAKE2b-256 fd9ac38b315669f4aadb339bb20bcfa34afc8046fbd4d479ac9536de13ec9f0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 9accf7a56b18a2b9df8a1c8a3b978e4a3412e594c292317c3ffeeae7d184d99d
MD5 e250af20e6998695fc7de8b7f1b4d33e
BLAKE2b-256 0036d27c49b5c6cb97064b1917ed2b7c4d1d8322346d9704be8d2a428047f2df

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.8.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 b9dc589f6a832654414a1bda5c9a8b9e2a2b0dd223e750c68f8627313737ab79
MD5 ac356bdcab14e6ea845712d54acfcee0
BLAKE2b-256 c2ffa64ba3c6a8392be4db58d37e085219465292a77df8ea2e1f7f4493d045d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8fd7b34028dada7d581ca5743c0308d2f611491558344bac49a255256cd214b
MD5 59d2c54b373167d615a4be76c8f5bff1
BLAKE2b-256 22f09651e5ecd65b61da89beabdb891dbc913dfc7f9686baca16f06999ba1562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 afc7d84479b165ab26c9cc4591fd548f6fe24ed70079037f4f339197f8bbd174
MD5 783fd0484bd11701535aa74ea2591ee4
BLAKE2b-256 c007266b3330d36419e18db4e2e833308096e25984ed5517b27c5097f9d5f39d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 db3766227bbf5d13ebaa8abd34380df5ddbb66ccea21f76ea3e1fa5fa9945b6f
MD5 862b95d258417b0458412649b12200df
BLAKE2b-256 e44e8ee6c865642820a6b57066e10a74c911115d6a8ae4f33024d192b3b286f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 a6314b86d6dde6de50f7667d66e9124167778d7e5a81464f3a65a80c5e89af3d
MD5 511493852631ceb154068cf0cac998d8
BLAKE2b-256 6495310fedc3ea66befc8bad45b710913f81040df2e425e49cda5f43139b319f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 506de14f491b92238cd5927fccad1c8d1ff018adba7a19b97bc53b7661c921ce
MD5 2d5a1423a8f6130041864977a61d973e
BLAKE2b-256 c2748d7019dcb5ef4f3456da89755b4629b9787b8a5cc3a1d064ccc1f3c4964c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b3c94abbecb44b69cb2d970161dfaa3c306377abeb18b7ac3bc82323ff1a240
MD5 d8b000c167f8eaae31d31c84460a6d07
BLAKE2b-256 067a81280acac4b52f1f0f3d7a1b2a180942295e828080321b2943e326b79db7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae37f713db9912881c5ab8b1226b3e4be9b21ef53865295428669ac86f0ebcc8
MD5 ba0cbe0401bbac2eb207e335039efb5c
BLAKE2b-256 31e13767badcd8a76f18244da7c55304843249120934cfc75ce0efc2ff0ccba4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d36568bf6927ca0627e312cd153f8b9ae235273a74d083ef4f764fc1ae7c4e7b
MD5 5fc08e1897245bffa17d4287b9939ddb
BLAKE2b-256 3d2b79a70a6898673a25d0e53d7d437a6c16af308a9a3f26d8fd2a3b0db407a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 54e0aa75c3f86d18b9e1a9a3ec1c66746abb8c609fe5745ef937b5c6a7204824
MD5 0bbe48931009592cb82409f205c536b0
BLAKE2b-256 e8fbac6f5c79dbe27be3b100d5ec1480c24f822972e16dad96792a5f860ff216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 510598888554f6ce958235f46e4d21a8cafea32777078cb9072722bbc5b9aa7c
MD5 f34eaa88770d46047a5c63738e512497
BLAKE2b-256 f5c5ddafda383509961c157bf3a37dd752a090f7950d9b28747121007aab9a1a

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