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

This version

0.8.2

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.2.tar.gz (229.5 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.2-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.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.8.2-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.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.8.2-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.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-0.8.2-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.2-cp311-cp311-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.8.2-cp311-cp311-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.8.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.8.2-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.2-cp310-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-0.8.2-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.2-cp310-cp310-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.8.2-cp310-cp310-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.8.2-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.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.8.2-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.2-cp39-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-0.8.2-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.2-cp39-cp39-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.8.2-cp39-cp39-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.8.2-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.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.8.2-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.2-cp38-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-0.8.2-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.2-cp38-cp38-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.8.2-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.2-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.2-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.2-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.8.2-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.2-cp37-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-0.8.2-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.2-cp37-cp37m-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.8.2-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.2.tar.gz.

File metadata

  • Download URL: pydantic_core-0.8.2.tar.gz
  • Upload date:
  • Size: 229.5 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.2.tar.gz
Algorithm Hash digest
SHA256 7a1dd6983a1e25e13a77c67a95844ce7768b363fc54cf2d5da10f3ccb76fdf6d
MD5 6ed7deba5e4691d4d5810f0ed43fccd7
BLAKE2b-256 ec21c8889a7018bc7a93463884087ac6e4cc1af5a54f974b442c9b7a8f26829f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 27ceb065acd7616a90fb4bd2ca990b1356f313f597ba9c60d5c8d2f0a91e33ef
MD5 9086b432f21393abaf8a9b76f73e0f65
BLAKE2b-256 9fa4d76c5cae860145ae282f6e211c2f77cd146415bf57eae2476bed7fcb4a81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c5a3d12bfdd0864100b5d0ead9fe2bf86d2f192509fb1a440d080bd1f823f9cd
MD5 f7d4947d0829beffca1729c1699e486d
BLAKE2b-256 faa9c4146b8eff443f04b59846bf0ee0304d5dc56c8444e00dc6b708a593aa04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b3521c7ae07b64a97f0329b2f17de4c58fa1c8ca0841578fe4160aa7ab59edc
MD5 8c755a3aec762b5bfbaab5d85d3654dd
BLAKE2b-256 edc3849357f3552be38c6352af1b3ab2bcdcf586d20f53d1244545dc674a521f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bd115fd2e8675d34b03d35903bca8c0dc17e00eee20c7d876681c19abd5050b
MD5 f48d364099ae7cc6e6531a1c6a7fed12
BLAKE2b-256 bb0f8ebcb8888ff440d073c4f10b65137d112da3d977f290733c8adf1d430d3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d9badada2e79ef0a9e1aca2fc0e985259f9b88d1098289224158bad5dbc4832
MD5 339f9d4603a31782806972702ba0fae3
BLAKE2b-256 3136f821de61d0faae65089eaf7374f2f9e0182be198a1b4e7bc0f9b9eed82bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2ee8633b003315dfc0f1acfc62dc080c64df6fb0df6ab697872c3be096462c6e
MD5 373415460eadedf2423caa205b162d6e
BLAKE2b-256 5f21ff4c3365c59b894d270aa53265e8d618f47f3aeca95a6e4f03295cbaf9b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1442cd0031e312bb0aa12112d0f3e34067e80741e207b297ca37266b2947c4b
MD5 7126288243a4e65213edfffe32a3761c
BLAKE2b-256 af0bb48eb2e9198022aaa3468aa2160c806bc4cc085abbe03fe6a5eadff3e535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ae8a2b4b8bb2f9585dfbc8851f98c95f5dafdbe04b94a11fa4630d7f2ee60277
MD5 008afc7c4579370122e24f9873c17d51
BLAKE2b-256 7018dbc8e4d7b5c84f5e94eea1a4343b0396adfa06a476fa822157cd1300e792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63ac823b10f1b61a04385a8d3f92e0501a3ad1f1b59b161b87aeb085f06359af
MD5 4e2bacdca18f607b3eb485b489eadd84
BLAKE2b-256 059a6846b672adcf1d518ab6b8288c8739cffd43e506748167bea201ddacaca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b5f34ada60ebdeff304e867a3d489da4ce3e75d9b619704107bdf6e661af25a
MD5 cfd10261c66f391ecbc5a73d50f28c28
BLAKE2b-256 149dc62df9252f686f6e6c4064e24437143d56439a21610ae1eca8b2d9f2b741

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c7e620bc2d62780c10d884ac1158c1b8224b233eb14ef5fae547039748e84f96
MD5 51ad2f6ce5aabb7ddedbc909c22cfd42
BLAKE2b-256 c078b841c0aa6801c7aeb0b6514b0c56065dc54c891cca7aafc407dae1890065

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 fc60baef7e854045a8c0bb319a6c5b42120e2ead642b66548f891f4ab445bf52
MD5 6a4b66eb6b2d7ac337b8c6649344d98b
BLAKE2b-256 2b6e524ffcec1950e78526b9d4991b95d19c48ab4a5ebee9f2f6bcb726405d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 687bbae6937db423c235ba29b87580791fa20d95b51718ed1246ae30bbb269b6
MD5 1579c534e4ea7037344ea33be47265a4
BLAKE2b-256 c2dd53067b3b6956638e26b47e6ce2aa424c4fbc1a8d6d50261dcb2ef099e4e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2a0e5c7040f235ed066f684623c8557f1e4b2b8b2ba0c3bb50f3a2608b21eea3
MD5 4687568f0374279691457905b4f63bad
BLAKE2b-256 7d3d33f4c2885e71ff15b565dd9b0ce65557801cb282b0359a645c712b43d20a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b32c51ca554a1b96f96267fa74021c87eb0944fcf5b6118b2392c494a4c90337
MD5 e428603f9d846dd22ca25a60145ffd39
BLAKE2b-256 1e7d4f93b1e29e0bcbb659e1144746dc83aa70683bb29e8c02d36a0e8e5d719c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f4a13875bd368abb7f07cd60a96700bd95bb8f5ad844ecd3fedb1ffbb91ce43
MD5 9826fd0229173dd0573e2467e669bf46
BLAKE2b-256 d96eddc9d65125cb1f4a081c7dfa66dc27e29abf2c697ce250edf34bce52981a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 535744de950613b0347fdd9222591d57e4ca99c463b74cb6be7d66f3b1e756fc
MD5 518e5571ff1eeef5312f18f9d42c4f99
BLAKE2b-256 6c9a0064c4e8c7cd70ba6c4fc0a6ae41f30ec10ccd73ba816c72109e4df01cbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2d41ee95283e600f90cd967f7f4972a164683de3f40722ca21b513a4089780b8
MD5 ce609dee81693db17abd3aa2bd207394
BLAKE2b-256 31bad8922ac35a3eed3abbbf4b67d0334fc1bfedabdec247806f489b2ef65be7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b5196199fcae872a1e4f620d574ead07ba97284787452b3cdaa94e17117e47d3
MD5 4ac02059451e4db9689ebe03bd52241b
BLAKE2b-256 2b29ecb677d78c3edd9b1bcee87af7e7ef54637ef0f721c935c8b43938140af1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.8.2-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.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d8eb7a26fe153e3a6bc8b0aea6250899a9411c2761568cc35698639777859e1c
MD5 cae5015707b500388e0290b28aed1791
BLAKE2b-256 e3305856d768d1128718bc323894c05731db8f50a4d331ea3b8bc0927f76c630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 14cccc75eea5e7ceb47d933d99d58d510fad5e5a00238c99b729dd7baa9dc481
MD5 b763c4dfe83a54a4760e5b534fb8a2b9
BLAKE2b-256 143ffb1ebc183ceda0355a09fe05efb8661618de775fc354f6d0fc969960d4d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2d3750dee5c717bb9a51275bc4dfba12242c9bbc5fead3d27a238e7eb1cdbde2
MD5 bdb0ba78151545bc4fda6c2966169e9a
BLAKE2b-256 dbd84b004fa58dafaf11f3c5deced75ce9452b9f84b4d1dd45cb53a985c3e95c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 3aea2013c58af4cec9c87d1e7cd0d057b7d9550010b156b26abb45bd0cf01193
MD5 bffd5439a22aa820cc381ed4e1531c08
BLAKE2b-256 638b848f981c2476df7e9c1a8c0d1b33414db52802aa79fb03c94211bdb4b187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 6fde12a64739dae6cd824e6af6ecc003a18d9b475bcbeef5aba8efa566c901f8
MD5 e02227c8e7a597a9ea4e66cdff9f7a1e
BLAKE2b-256 8f271716fa8f1a2806441098a05085a90c3c65bd5e69a1643767b26628311ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 effaf2b2a75c2184aec1c747fde718b427f16018f8778d68d7007516772176e3
MD5 f1613f9a953b8a94e07240b7847a611d
BLAKE2b-256 ac0c0763e2540c5bdb489f684a8cdd13e01c76f0b74bc7ca879dfef4f5834d6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2c37d3d4a92c0f5bf84f4c525be58c43e1afdb4915b240450e55faf1fc524af0
MD5 9c6fe06ae62ad085076aeb9580a94603
BLAKE2b-256 96224ae2043879b01708c3178ceace6e21cfba18bc77bcc2c7709e4b72ee28ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0d44ceaef4c3514e47edb04b4d134c8947c6ced1905596b25be0c97d6c1aeb9
MD5 401c31a46f0738be7c48876b2a90b882
BLAKE2b-256 cd51cf80d31b297b76bde3ed2c4ee8fe68337ddc5a561a6259e972de8a5487d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fad875968ed850549c149c18adf64e70584f69d76e1ebb25cb228686a55591e2
MD5 3780af36c19f0345fcc45177a62188b1
BLAKE2b-256 1a7a3fea32577b4efb1fd64a1770b62b8eaff0d89a111da2cd43a3c11d008cc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0e08ef218d25e4ad0611c164c910970762244ae2fd782b34d2e960ea043835a
MD5 d01932d68b3d3754d7fcc8e14064164d
BLAKE2b-256 e7988ccf5f7360180fadce4c6770b7b53016138c9c068a34bc70e408dcf4335f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 746e68e2947c58f486fde60f78d76f312d45983942477cfa00e164cee48719b7
MD5 167d4f441d22b8df9389f9d30745aac1
BLAKE2b-256 7942a4f6c4963278c8d1eb657b79bb50e58888052a99342dc6f700d5a807b83c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 6bf51ae44c7e66eee313b69086324f8b4baa4b283db5b5cf47d34528ffe23412
MD5 b0a71df1de3800e8e9710d7504f27dbb
BLAKE2b-256 da7f4f3af881264d55a0c4392fd75f997c86e41c27945d163ecc4b158aa3c179

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.8.2-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.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 80c77a9440b1b3bfc8439c4d22b5aa2514ac85a1db8eead65309e446e7b45589
MD5 cb2e2852caad3a003eb1c9ffe4c8538c
BLAKE2b-256 ebaf720d3eff44028724536250aad98c60327762763b6bcef875252e69a7ac66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 76341b57b8a00185e9effa74b1827c011f6992e2078e9b93892d6dc526554035
MD5 35d3e561c04d9a6b82f70bc7dfd1449c
BLAKE2b-256 2ab9556df1964c10f20df63855eb8ef349208c5747e0279798f6417f3d8986a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b5807e21f66912512b13c2a58e3216256e1ebb9adaee1035b79be39664f34640
MD5 46ea7ccf607e82cbcab822e4f9733d5f
BLAKE2b-256 aabbb55e1860f73f8af7070ab307687a235f8c16f214f89a777d04ac16341a08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 fc8296164b158a36811af3f1f971356ec142b12b1cd98cab9b68212962d25d65
MD5 5096d3677be7cecf6e501852df95cd81
BLAKE2b-256 6d9387a3bd17c88e1f8978cbf4d7b42dd4fb3453b04b51d7cddaf6118cfa05d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 9c71afb318ea759ed3251a24a8363aad449d9a0afe07f590439bdcb7dcf38d5e
MD5 ae2f93bf0e74565f07cbd671610d0be5
BLAKE2b-256 ab190cfa5e5797f80f0c10f2d599415ab760092871005e77e639f056d7362129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 596bc1206858092e4c62b48cf1c8a0aa9ba4da3c3678ac3780c0844cd768ba65
MD5 53995323d3ec09bd4161d32f6b676414
BLAKE2b-256 74b38fc1bc9b5e64ce90e87c43e8b6c5ed38d6aa63f9822b2414e46ee48c5bf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f56b3ff30d34cc3f7d2fe88f5f8864728d0b2a5e9d415a5624f1ae29e91c8553
MD5 eac1ad7ae69cefa4b22ddc2c81dfadcf
BLAKE2b-256 b6fbbc6e2ac528eadf44e260c74e1c9ad9a842f890dcb3a657e6bd59728dab12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e02a37e3f272343d9a7bcfe74a54b684bdb11dca52dccc3fd669f64e0d027eed
MD5 420ca3e4fa86521bb54747bf5706ce6e
BLAKE2b-256 685b07182d0346de84b8e1050f90f7c30c9f2c845bdb98d3bd14408371ffbf30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f0f24ef62fce861aa5b187936810e995c838c62f4b01bfb0c8b1df385ae4a349
MD5 b2b61dd7bf77a9e4ea18dff53e6f1ae3
BLAKE2b-256 5884c6986154eacfac3bfffff0e4e202291ce36093001c171f9ff03a02ded8c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0aa35537ece9d1b1c9d141f7e78d0417f2a2af215a8c4401f252019e4e1a46ef
MD5 dad70f0c4123e539af296bf05c5becf1
BLAKE2b-256 80b76ec3a8821ffeb54e39429df0808e2f08af0048598e4a0bc269c0c301ca33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9c0f32bcf3567a1c6e7c9b8e2f815ba87b6d6c68fec4f22d23676740686f7105
MD5 62653341ca823ddaf4684254237f19d3
BLAKE2b-256 65c4afd71be598d01112e8f6803eec162f69ffccc9b3f1c55cf24ac898950434

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c7b8a86d9bdd09dfd048bf757c1da235b481752c6588c31f0b74998de24483a1
MD5 5146ae6dc72e27c963749bad4b88f8e8
BLAKE2b-256 af59851cdbaecabae6f34bb7fbce1623dbebf8a2aa41910e43a087d8f2f799ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.8.2-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.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 0827aed5c1c1dcb8651f09c86978c0e946033a9304820652cc59574f209de231
MD5 1c70119aab6cd2fbc799b1fe42237401
BLAKE2b-256 7f3a11d566dc8a5bc34bffbf4624d82d4eef77bc02b02758a541949789840610

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 992ecc9c324873511ab725b2cc297b0c9b40ec1c5d3261d4bd4121539d337c66
MD5 7db345b41e20d3e1efbf01828d43832a
BLAKE2b-256 31eb0b79073f045158f82b70087f1a32ec8b5c3b5f27f466ff90306d108f5d32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 032214f4bf4e7de289252d47a6f0ad8ff82fb36f0ed0fa091ac6221724693b14
MD5 f74d02d3b30af9807427f603a39f0a21
BLAKE2b-256 15593b03960f7637ad9f88698cf888d1a961291366a35dcca5b424384b181074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 e593e4f460c86ae5e2a68b7533673a61521a62bb2c84d5a18b3f310f5b4badee
MD5 eb882ec799a48a44846bdd599acfa06b
BLAKE2b-256 6f1d9f93a27d374c4dc775436bffcaa212a057b281440bd1af45295d85fdad57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 77769d86c5823bc5e26a71b062de7b3659321629c58b210c603876096c8623c5
MD5 4468a17f202b58de4f6e7f07c24e74d0
BLAKE2b-256 cb00ff514558f7160b5e6128dd5040da181a25758173315503440d0e1527e7bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c9b2cab2443ff7f63a84aff5f9dc3af6331d8cef6bd71459450a7dcd8cf516bb
MD5 3ad18f3069bdf312c04cb857d3f259f6
BLAKE2b-256 c5ecda106c891cdc6bbd0596ffaa887e2728057146f1c3a3a8632b3f82ea7dcb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ae276994e14d40d9170960d458e72aa57932a1fce8d82050a683624115187b39
MD5 a6e2e747692565482fd74ad296cfc621
BLAKE2b-256 89fd80cb4b9ab8a069848ec13f126f8e9969487ae4fda11e122ec1c735dc5f2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b926501e4e288fc1b285240f45995a8df77995cd3a2481a6cc682b9c5c3ae14f
MD5 666806c884b99d663fba9224997813a1
BLAKE2b-256 732db47f97bfccd721219c3ab8b2926b5dd0ec2b9afae88bff77146a682a13a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6600a025ceec434acc9b7cab798c593f49526f933523c49e2626ac375f59e011
MD5 c65244a7b5581a933fc793f52014419b
BLAKE2b-256 0bbc390f3820140a4b8f6d5be95df72ad24ef96ec6c22817e6c52670260e1ee0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6948b7a28765e859695a3e3c0b295f69dd405fc309b377114280f7a024903a71
MD5 08f8afd0e8438715c113913673bef47b
BLAKE2b-256 2865758c2e5038510961048988d9c71e737052445678bdc871f7522614782d62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6888ad9d2b92fd10326ee554732168ac0e3871e2c25287a7a78df67208cae6f6
MD5 a271a402cd305fe8fdf16e604c40f124
BLAKE2b-256 cadc2b6d59734cccfcde52ed38de6d8bdcf61b1060f73c8d089b3ecd3e67feb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 3db675c6f14800e780dbdccb091da833f9c40404472930334f0315d7680f0fd5
MD5 317671bd40be1e7eebc2e2b82099298b
BLAKE2b-256 bc380ec56933dc32f862ef015b1390eb75a69732a342c7b534c8b813cc34479e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.8.2-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.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 5f19986e9494762eaa174e18ae59af1719284ddf093dd65a46d754ab75870caf
MD5 d9b7b2f0a5fec8e2ac4ab0432b4df147
BLAKE2b-256 ce260edc06473cd9329e688940fe6177b3ea42e9a7827549903041bbca9ba4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2212de13695e748ec62225b22e23e3f5569ce4348f13384044a22aeac6159377
MD5 98d346d919bd28dc8c2dac5477802749
BLAKE2b-256 2c90c5758fd75d7d6135aecb56827e9083bea2010fc3b05fda2ed3ee6c638fa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4857ebc5f0d3cf40653eb20da3f64cd52a7d7393c75f263d2ea6e13e804c9a93
MD5 1ba7f2c5a26bb5123a8304abe7403ca4
BLAKE2b-256 daebe3d9d2145af83c44401aad5cff13b3e9a84b467e6807d85fff69e047fabe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 fed38eaac6df831906dca3a96d2cbea7bc5dfc8920d07da0d4090b79e8eaca9c
MD5 a751bd088400f54aec7864e39f16e791
BLAKE2b-256 beade2eb2436d4887755610090c8db947763480cd950bcd2029ff8fb5b410531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 4d912efaf9535c940e6d7162c4c0d6c2beb04ef7a8804b50a196e0d8d6e0f19d
MD5 7c19d01087011966c7d658b5818f1629
BLAKE2b-256 33b168b0fa18bc2991f1bdea627eaac3f71ce816aabcad927bbe99bf7fd9f67d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 aa606d60b895cbd8491f4fe2c183ae50e7624bc38622b64cf76c01a5d28552ae
MD5 328b032981f7dd037092e10daafe9ca9
BLAKE2b-256 9f9a0f8a5dd45d98f9d79e4532ab9ba8f3963e1ca819fc041b1178297e9af5e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aae45ad775869397e34df8bbf0f53d94cd5e79193e2881becc9e5b8baf75d82a
MD5 cc544fde3b3067b6e345e8b638810b93
BLAKE2b-256 41572d6d30a674754374292d38c004d8b78117da8ed94921f2d83163071a8be0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80374a218a84305ffd5a76f6167eea7e30d768882d5e5ece56c34744d8cd670c
MD5 fbf51a5493b864adae8795ad9e747132
BLAKE2b-256 a651ccb168b5a2d71de096e449bcab66fcbc104ecd09cdacae809c6b7efcbdf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3700d6e2bb76cc99a87abccbc8ef7419b8f983596c4ab337bb4d391ef64f37ef
MD5 355f083e0cf25f87555c4cb4855e52c4
BLAKE2b-256 64473d732afdd053a34717cbeee635584a8af831fa6975c182e38c85cde57574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e3e8a95d0f616f2ac2f78d70c155f7a3dc687833a89d2fe9a8f7ec35dabfcbc
MD5 8215e68a9de4b221a788f700fe1edf08
BLAKE2b-256 ae0b4e7b630a21d96ccc1661221439e64abc982b1b492956ca1ea1c91a2d869d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8ca10a2a414bbd56fb25f92407b8b5a3fb20a424c825ae1dfb82ba93f210852e
MD5 83eb6bfe929b8bf22440089a072de18d
BLAKE2b-256 d43d66c0e0bf390204ea802d2dc7009ca1aecac38e58122a3357fd0d51a389d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 554ba8b62dad1fd64335ba91a2b55a92b135bdccc7225815adbd108baf58a1b2
MD5 8d253f54083dd36c11430580d14dbdd3
BLAKE2b-256 6da270b1df8e980217656d13f963428598d764fafacbc8dfb80171e4670e81cf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.8.2-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.2-cp37-none-win32.whl
Algorithm Hash digest
SHA256 f4488416d2dd8fb579693a7660a07904331580f23976cc6821f2c68ecff7081a
MD5 125af380ac6bba8d51d99e977639560d
BLAKE2b-256 b1dea150d0beaac8a956c463473815bd6d21e6b13a11b479cf5e2bc96479c696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6271d5c74839cf98547c9b13640459e9e58219ca7970e88e3a9932dc5dbd8a41
MD5 5daa6b0cac33d509a3669bba281321e7
BLAKE2b-256 ef3a210bfb3b78cca307bd6186a0070476e9d2ad25001c0e7d05a2c2896d9293

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c9f19e600e9f88b38f27f5e9807113bd7aa4fe7f3ade40a7e0f89dbd94e25fac
MD5 a6a6a7209b411c6e1cca4b5a7aa256ca
BLAKE2b-256 ebb910264b1af19c84c10949079a04264636e3d5a798a88e787f88b90e61c847

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 4a142b306611fb0555b5b138f7c59bbf60b620817e9f1071c5681e727ead182a
MD5 4f7b1db442554ba71aa726b5df6cd3fd
BLAKE2b-256 340d8deefea3d4b0ad09e4f999a251bba08f8303a86d33cf81013578af119f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 1b21b6bfb312e0731c621b4a87b4fde8194d4bb0838cef78e047a0bd3e151ae6
MD5 18c90c1247b0ae24ef762420d9625198
BLAKE2b-256 a06c65219a8e51fd595574a5b80ada31e029ec3fac0b0c865a0559b2ddb5ab31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 20580bff5b185d346b3fad0bfa3e5e25beedb922dbe38ed5fc87f255c48ee6b5
MD5 8d99ef8c674664293908b234489be703
BLAKE2b-256 d8ef03521b5206afb4be380dc0a911f60228c2b825f0d05aed1773fec12d8a4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e10f9ebeae3d0e83df6d68cbbcd0122d905ac1c8d85c42a173c8e519302edc82
MD5 3361a4ad7f8e652748183735ba56c3ce
BLAKE2b-256 f6a529067ecd5e3dd21913bf37ab309c24d29e95b9cbec8505bfbfc6d1726f39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 861acd4ec420ef3ee6143ee6d00f2340675f628388759fba7366ea49926b1dbc
MD5 9a00c754a427928cf13976ae3cc8ee2b
BLAKE2b-256 0613a24cd056c18c747cb45ce229d2a574e39ebbb3c3f955dd108406cb6c13b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a545fb59e1f6cc0d5e6c0a3533eb069e68cc4758db2ebbbdc0634562ea5b99d
MD5 2023643e054231ad6cf7b4edec580203
BLAKE2b-256 cc98db45a364de1d1d8c74e4aa0d0e1615664089dd54c19dd5291a52ea89f268

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b77bbe0647a418a6799f3e325c4c3f04aa56d4d97435d9a3cf441fc7cd74449d
MD5 e9a2ffbad4704dfd3dee4cf390dd02d6
BLAKE2b-256 4c31f358db7d6ddef54f8cc1877c188d0c8ad8e0e7d4bdb5f1d1ca08314ee5de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.8.2-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 66587eb036d2ce3905aec7b953234697327923979b2d3609b304452adaeb8856
MD5 b098d75cd6740faac0dffc0177cbac6f
BLAKE2b-256 95d121865944555f58aac4060f870991d222d423fb77d894789b6f2bc1d73f12

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