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.16.0.tar.gz (252.7 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.16.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.16.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.16.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.16.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.16.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.16.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.16.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.16.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.16.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.16.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.16.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.16.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.16.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.16.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.16.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pydantic_core-0.16.0-cp311-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-0.16.0-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.16.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

pydantic_core-0.16.0-cp311-cp311-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

pydantic_core-0.16.0-cp311-cp311-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-0.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-0.16.0-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.7+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.16.0-cp310-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-0.16.0-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.16.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

pydantic_core-0.16.0-cp310-cp310-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

pydantic_core-0.16.0-cp310-cp310-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-0.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-0.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-0.16.0-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.7+ x86-64

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

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.16.0-cp39-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-0.16.0-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.16.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

pydantic_core-0.16.0-cp39-cp39-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

pydantic_core-0.16.0-cp39-cp39-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-0.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-0.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-0.16.0-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.7+ x86-64

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

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.16.0-cp38-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-0.16.0-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.16.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-0.16.0-cp38-cp38-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

pydantic_core-0.16.0-cp38-cp38-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

pydantic_core-0.16.0-cp38-cp38-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-0.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-0.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-0.16.0-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.7+ x86-64

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

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.16.0-cp37-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.7Windows x86

pydantic_core-0.16.0-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.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-0.16.0-cp37-cp37m-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

pydantic_core-0.16.0-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

pydantic_core-0.16.0-cp37-cp37m-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.16.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-0.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-0.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pydantic_core-0.16.0-cp37-cp37m-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.16.0-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.16.0.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-0.16.0.tar.gz
Algorithm Hash digest
SHA256 b471d8fa01ddcb0255480479609432ae4b29e7000f37a02311c430e17d63a93b
MD5 17902b36810f199faf317aa499921f86
BLAKE2b-256 5b238fe8cbfee45ad8564dd2c8a2a7f19763976299105941dbff924980202c8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b1b7e932111ecb619d422ec137633a307ef0a7173be0a40cb0461164f72379fa
MD5 56a27be4827d67ca8d32decbd50b6a2e
BLAKE2b-256 0ff66d4c34ab64bba0358fa0826023562de6897ac8db49caf62a27212f9540c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 86a18a5eeacbd1bb24043156319fe10b5fb2dee2dad1993c782b2049d6f5d631
MD5 913e0b789e01566e351b54b5a96bb380
BLAKE2b-256 3af546ac894c7039697b2d26ead3bbc3775c41c4402daac7d698c3ba602180c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 153d1e1a6f1fa8d6957b7f128d93b2ad0a602090565a2798ce15e836efb9c7b2
MD5 2fa55fceccb89dc7da0b29ac2b6aeba3
BLAKE2b-256 cb72a6592aee2f10d55034d72a345a1e84bb93673236c424064f06b66e1d3ac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e6875b27389785941b60bf6059c1c859834807d746a2be809b672f563c9e50c0
MD5 1632bcf245a0e923a5ba2a14629df862
BLAKE2b-256 54064386ae8cc1c0081af3c72eb1fcbb154afd03a9f9aaf2fad33984c2bd5d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e5ed15f7596eb7a928f197ec7804b533f2096b886aad82743d625a7a2961867e
MD5 e5d6377a42de8187519f57fc795bf4eb
BLAKE2b-256 c54265936dad07e17e4d0b376ef04af8f06e95492246a48812de6a7be8737057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ae609675a64349f8bdee07802782b97631b15ea03239392b4749e9c42ada06d0
MD5 aa1a04a2bf4c9c74977ceb724270764e
BLAKE2b-256 e8d6ac2faa50cc8f782e691c21b7e239eb595b0fbabc4cf70b7cebd515001a56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e832c377bd55a1b62a28fa0ab2552e61e4932effea91b72931891caa15c1a0bb
MD5 d56ec080a7c15d9c5077f7ed1a63c3d0
BLAKE2b-256 ac38d58439647dd184e1eae9c2d0cd725579d66570e6d5e48449d94a084a78c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5ad86708c51aaa1d834e199374a811ffdc882b8ff4a37d821a9c82b9a99f7836
MD5 6ecf52c27473dc384b4099a7a5c38259
BLAKE2b-256 819810e4a3e8cfa9fb65260e8dba7e87d261610d8ce09c03156e5c8a1dbaa16d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b25a79fc4ec2398142eb628eefb779704e5b31284dce6edbe8e5df9109a7b5c
MD5 d15327dbd145e23897dc16c9d60c95c2
BLAKE2b-256 dbb0301f090fbff47edecee26f81e29f15e2830e659e3ab7889fac1a39c96576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5ab094e4d409a96437312302b4b59f52bc65b2a55d97683437a90032a7374af
MD5 009f56f194ae8aff9cfbf7696050a28b
BLAKE2b-256 0aa5a45c9393922d07b90766766c932d2af6bff9ad891191d4570a3d50fc15de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 31976fab3dd859fcbeb65161748d692330f5d9ea53164c2a7054e46158891b9a
MD5 4f169bb069546b40bb1c594371e2a6b1
BLAKE2b-256 5f3110418078c45641bc27fd2286f515a831f5ecef0ef1f9bc1c233ab1f34638

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3c6295a2dcf3db9e2f1e688b5c413bb6ba97df17e4487ef46274fcf60a6ec540
MD5 375dedab595a047a7abcdb306a801b85
BLAKE2b-256 fafb3be1ff4e83ab57a17ff610784dbdb16fc85a5fe9974748b3647c7e20c51a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 81392d3afb352f2383a8cb08757cc8147f9563058697da86a21ad7723559872c
MD5 e36b991cdf5043f8c3eca18477f380b6
BLAKE2b-256 011ece3c33bc8f95603c973b2b6e8903a78878a51eba87ea815b454a4c288ec3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4353ce03d48d990e3f06e0db2a367857546b606d01c438be94232b78d1a205e9
MD5 5e8ee21bea83da63908c49669c7843d6
BLAKE2b-256 e5f0d8ba5dca0b55b664133ed96d827125e8056a56afa92573fa8838c2581274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85435dc24cf336b417d2761d3b8cdcc81a49fa2418141479bb599bbb95b98219
MD5 9151de6c29c9bbe42de4ac69b7509d34
BLAKE2b-256 97cf22c516d6ecd9d25d4ceef842ead48da6f4a3e16962c302faa6fc772b9ac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b86421b48102a1d539e94fb105cf795d6d44a63c19d2afa963c4979d46594ad3
MD5 c8a6535937b1f6b00d56787875af9a9e
BLAKE2b-256 643540084ef69d39ada7299ee3331b70a67163c3f3eb952e490c25f936cd0557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a4ab016bf958db3457cacfa6d2d6f30a266eda16a653153adf5914e0e4664cb
MD5 b1c89f9b7a34fde1a1f06fb605765952
BLAKE2b-256 250752dc92f853fca0b0af159b8a9af1aaa776a2471044daae9d11991963f5f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2cfa37522892e433a7a24aa65e55a2bb2c8969d7d838314df4c45dfdae53e614
MD5 8117c8ee91b19a753c404d2f70182dfa
BLAKE2b-256 1e8796afad45356eecc25c251a6a121fb041ff2b98028876443819ac2187c939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 66a0c6b666dfdea6a35fff7e26e3e22b63603964e4e70c472280d0bafc647557
MD5 d8dad59f35e22d16033ffcc7c70110f6
BLAKE2b-256 2291eea93dc3cc326fe43def5f855076ebaea21e83d7925b2d295c11ac3c2321

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.16.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b8559d6f8a03f32c18ea71b8795624660d5f729dafa750dbb884ac32fc9d5508
MD5 379f67c8078dcadc33400868d743118a
BLAKE2b-256 3f7a76ca3205a697a28bc8a4b491fb141788381196e675a7ad9c188656fc0eb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6940a56057c7244ba44377b19bb554a08a715cf0aa20cfc121387cf55ac8e6fd
MD5 1296e523eb0ac50e2f9957ba9dadaa15
BLAKE2b-256 4a02ff74890a59b55c40443c5daaa9f59aef641776c06668c58a07820c5378f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b3d031a55cdd5253088d97d6e230c5103f725c71693d71ace40a60e72572d8e0
MD5 b188673c66c39ac87c96d76d604dbe7e
BLAKE2b-256 63134e98001d5b87d5de1feab5188c17c54bbb901bc256d25bef8da00d3d7fce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f1f1f5d6f44a3eec365f2f2fc97ab71aecfd6671653e1504ffe98c1bcff8663e
MD5 41343c0f33e2d097ee4a98023a30b275
BLAKE2b-256 9ccb8fa9a3b2942f81e491fd62fb42b49468af881b51693fc01fe562cfacdde6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 e773e5b62a6a9e05b34216842c973ba304c6a90ea2a1a72841199af34314c7dc
MD5 4416c08bcf9af6823efb6e806a18b7b3
BLAKE2b-256 c01ba9b5144d38b95a84e67eac3711c97877969926838db66a995da5c6f87f86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 d86367991e4e7e2b914d64ef598625d3aadb58a4fb342832f6e0d720a2e06978
MD5 525e92a3960134f1df72ca873cf02643
BLAKE2b-256 b341e80e4fe64b2984ef5ce9b1fb44602f2896c6f38764acb4b8122917bb8389

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f68604de88225e74784d13952db085118bde1ca2ee535075dc3a7361c87ee797
MD5 b5cc186a4f4b7637a6ceeff1e1e373d7
BLAKE2b-256 0f53e69aab1b361717055642f0cde600c4cbd8a4d6b4567c228dbe40540bf064

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 983d5952c89aa70e8d866b915885787b94dbdba8acf74e4672f968501a4f4db8
MD5 c0504f904b597a3858ca1164ce66bcf8
BLAKE2b-256 ca8c130bbb3f91c50b05ff64759f29bbad63a7dad1f10c417cb2add78b927251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e61e3e3b5aa42b73203c4d298113d6909e49fc5f3d8b86fce006be891f0d9c24
MD5 36c2bdfb26447237befc552e9d3b6558
BLAKE2b-256 47c90d1ecd566aa87fe1256b641f7a85d020f4b9b066b07ab931a1c0ea343a11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce7f113c731ebb4fec747f98fa3037ed5dbaf4466a0655bab5df4919fb384887
MD5 3ba43bf09202c916344a77990b968ebf
BLAKE2b-256 a332de78812cbca619b980674b01d14be759f7f5e963e57f0c1b589ff0e8a08f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 eea1ae6bf35a29e5a647062b9ba4bb697bd1b2c054b121a7bb9672360d565e7d
MD5 1e9f8292631f663a0a7a53be0969155a
BLAKE2b-256 d9486d519e9f0a46ef76fcb5255ef4190bcb5672f35fa7fba9a3bccd80059517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 aee03dae2dd59cd205cf2a26ea3831a19293fb770d5669f97ff42754c726316a
MD5 8130e0a7e28a73eae44718f6b4a9831b
BLAKE2b-256 9a9eba9cbdcd618dc75997b83e3b57d12d150975d93ce7ac91ca52bdac1c182c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.16.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0c074713924f2cc425f20e959d909f98dd51d5adace1111b38a61a72bccc98fb
MD5 e797b521242145bb39d2f537396a3e8b
BLAKE2b-256 7d5831cc9ee9dbf1e79f01488de310336e74d8abbb1a0b8df128b3f5e540b843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 78be19cd7c56db55ff289895d0f3d5848b280ffb750e40813ba6d213192d5e8a
MD5 03b9ced0f31d653e1fec72f85d6a720a
BLAKE2b-256 c8f69dfcd5253b08f8a911f031e23502bfb2a721b59f59aab899033344866943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b203617f224193b41222a82ba991b9756c5a26ebdce9538891936e259dbbe0ac
MD5 db9350276f2cb4290868bc7432e6b6cf
BLAKE2b-256 e560c01ec402790bb5a37d28a2c0530ffc6746fd99c475ba724606d6e881b43d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 b9e2c1df6c7478a3aabece0cd3575c3fc44dff411bcf2f7863e7878b60a1238d
MD5 052d7d08b14999845ee0403653d08cb9
BLAKE2b-256 d20e45dd09c7c59b18b2e198eb49d14e9f9390f960b4a76048fad74bcb25a131

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 8941e2f18c88dae25c899832566229aa416b80a2939049f55051c960cb6466bc
MD5 e603c94a1eade0bebbae5e8cf53deb45
BLAKE2b-256 891d1b87c4b2d1a11aacbfe2f5e1e59de9d5009f0cab43a70b28773a31c02c30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 37c204bb1eb15def86a616bd7b3014fee31e269fbdc754434187de2ca20ea732
MD5 8edd71c2e22535e90ff948179c3939f5
BLAKE2b-256 0198423cab837491fc8de8bbcfd699e98c7f7b2494acd0af16e89dd09a481889

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59baac05898e33ada52f005455ccd4432e0ab1256ab3d995196797cb0b83fb4f
MD5 847434191758d4364598c3a222edb304
BLAKE2b-256 14f8bb17cdf8e33df226be5c64a66d5e327bf7da0f91c94356f570bcc7eb76f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 706b39cb20c0215b8608d9b87ae8a525d69304300159a2cb7f9176d7ecaa1906
MD5 de710aebb62c546518e22a94c3644f5b
BLAKE2b-256 4361f4a433c2a09bfd7354d5bed40d8b4cf760fe8b9662a1179345ee32a7c332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 649e5cfb01cf3d40a5f330a0758c6b055a6cf532f01e124f4905f38d7438f74b
MD5 5242468cebd5018ed194e51efbcb5471
BLAKE2b-256 c714e037aeaab81a60cfdfa77738c3357ebc66ea9b50659a485f8d937983b87a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4659f05072716ac28a240ae23627f4e648ed58edb991e0a6fa1d795ec710b94
MD5 0c1893070736ea73f466f6e2bb558ea2
BLAKE2b-256 279f5094e39a889264bdfdf95024983f0eb709141e1840f5ee788130f8f6f618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7e39a2578f18de05ebea99d87fe49974340f7c0ee6f6f1f8033261f50d863382
MD5 460517f4ed1b615be5745b1442771b97
BLAKE2b-256 90c8cf4c4446ef1d5fe123b6524a5c7f9cca93e623fda7f0a359bfe9bd542644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 a049606cf69cc66e9293f8c59784b2df02701c771cfd578d8f956c816dc5296c
MD5 c5bf150a585f0a7bc92ac7956d011cd3
BLAKE2b-256 b611b32555d505df7b56d8ac0963c58e8923335d79d9a24754731e5af1e496f8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.16.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 48a0513f3255c1cdb37afcb2e88c21b4b220869eb8cb20d13c1b9bfab782e569
MD5 b66971a1e7fe3bc5d99b7190fb8d1566
BLAKE2b-256 ff1bc000eaedba2f51df7c927c183985594f8467ca970f3f0d68b55183446faf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1b321a7fb4e99e5d946a8cb9a0c49d2b03c5d17ba2beca5b0a9273bd657bfdd9
MD5 e0da694dbe04abd3cf609e2efa4653d2
BLAKE2b-256 df663a43e2a3e736864920bc0ebfe9872d9eaef13446370ed78adfa16a9d2f4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 70cf240904dd9d05705cd0fd25118ed6d017f7dd2d967012296fda74cd52325e
MD5 17fca8a7f26d5d728e2335dd09d40542
BLAKE2b-256 fb5059448ffb3013cc0ff41f3c6af3de02f2a4c0710b1e2ce413d099af8513bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 5bf6e264c8cb0b5740c0706570a7a67efabdb57dcaf893051a088b2d3bea4742
MD5 624352107b7c8ef5612d9532ef79d02a
BLAKE2b-256 cfb7f3b2e2a24a5ed341dffdddc9a2add514f61da9ef7e93478b7e0a461a76e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 5376339fe13b5c70ae4ad62af551942011192bf56776c847ec6a1dd4c3ff670f
MD5 96afe4070bc5e65e81855d5dcbd15edb
BLAKE2b-256 df3c1bda1d9a22df6bc25702f0f385875cd25fff7cbc375db713b0e2c9a8f4d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 60807701c0b25a20c47c17406c3dddecd84e4fdf3957bb8caba65e70a8775add
MD5 268f0262e6eeff207845d3043d6aa780
BLAKE2b-256 da2aeaeb0873e0f9e093ec402c634c9a190084afbc9f7e260560b072e97e76f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6922e0180aa784c96fb91c065f497ee77768061533d67540f111a26704dc5feb
MD5 8840bf6184dc9a6cdd1b916ac2a2045e
BLAKE2b-256 456b44d5901ed4eea71f1c7e2e045d60a96a77f0d73555c0711b0bc05b0d5c03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a52a61989b67a5206c8961af14c96a53a1ac6b1ccc33dd023a6bba605b80939b
MD5 acc72cda04728e2240554798dbbb97cb
BLAKE2b-256 3225ca026db488558e6391a5047072d0cd5f64679e35ded9ecacae66e31b8a0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e475e905d95c9def6b23549561c6df03736044e27227d8bb6aad082ed75ce535
MD5 2d624e82316e0933c87f550c61bb1264
BLAKE2b-256 3bdb927fa5693a8eb1a928411aaf21bec10af62fa41b088f4d0b653634e1a026

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c797218f388fb0e96b49beee060415ec2271d187bd264adbcdef1261129de421
MD5 07503a862513ba2659758140ddca9d78
BLAKE2b-256 ecccc11f04d49bab10290185a641ced3af59c1c2e1a3359fec7c466181ffc24b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 40971c9435d876106df0a1b0cc2b52f6eb6295be9a03f9b14b32b43463280211
MD5 52980e82a2e10358e3fc51919f4bd0ff
BLAKE2b-256 ccfb01eb3e99c3be76d4d6467cd81bcbf15ff5aceb386cc6d3586af672fafeb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 8298a022443a7a8f5d20d894208d6bd1d63099370d18aea2fd218acbb195e809
MD5 d70683f90904ecc6378d856684f9c21c
BLAKE2b-256 0fa2e843ae6c788743bd6d19167c9a832971f0b3ec02431a816099a09b5ad7fe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.16.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c38d3afd9e4a7884da6032e1c7501f571e65f1b7114a34f110825f2708b26fff
MD5 f4fdd5a6826f3f9bbc94215df2f5e66d
BLAKE2b-256 e70a0e2acbd9fc81b457290cf4490ea5d718f3bdacd4ae18fa970c953a4a6ac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f38e871d2f4152cd46302fbe7351e6fc771bdca2a0f2289f54eb0296a6cdf0ea
MD5 17cdd86f4fcdc8cc9b50f330aa53808f
BLAKE2b-256 6f560b9199aec056a796f177a08c73bb28a6eb9395953f952b458a46a3ea1d07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 47f52fe6ab6f6846a4e81d405c6893b794f493e3d7d0eabdcb9ee1d79125b043
MD5 de6829e8e388aed9c498c5b2ecefad25
BLAKE2b-256 8a7c97b90cf13bbb79b0d2e6f963dc50e6f3a3e0263ec2d2bac69445616ba450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 42105c139b6418ad89ba28e469a93db2a566d2bb2f3ae66d292728d72f7bf7b4
MD5 b25284e824218a3cc37cf5125a8ca7db
BLAKE2b-256 39b37c30ec648679bedb209a1e3ecf5d996f5f3bbe90b26ae0a0ea615c50b03a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 af38d5c5675accbff45ac2e819d0e34c1402839e3fafeb364b506c0cb6623bcb
MD5 c4e044e326c6d56319cfeab181fe2fae
BLAKE2b-256 dedc088eca7a3f39c60b119d28111107158e1ebe9d6ad9a45a72fda6a1963a31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 14cc690d90c57e33934fba409998b1a3e5126b9867f2dc683c40cffb4baa7bfb
MD5 f74764e02da4dbc3b03ca1e02764ab7f
BLAKE2b-256 4c670f5bd52dbd55ccf0fb9cd2122cb7653d3cd95f867f0d9efe244d2e9ad58a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4f49cd76e6cac5090ef5ce8955fed6f3ee8caa5b3054e26e97b35e865ee1d069
MD5 f3d3f7282b725ece89ff5f7c9fbdae7c
BLAKE2b-256 d8e023c3c03511c35c040055cd91a4b3869ac0568a26a0b7c4316951e319be3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd36926aec26cc4c65b55a77f7877aae3bdc9ca184d00b82882ad5ccfc09e96e
MD5 cbe695e22faca72012282a4b4f20a6c0
BLAKE2b-256 24f0bb58b8c9437bc9a21c3f3b4707013ad34ca9c64c9150d49788415e16e6b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 40f6c288095ff636164d23bd5d41520925f0d7c8f9a4ac006fd92b24792b8067
MD5 6e4f1f65833ee73bc5654a3aa22ab981
BLAKE2b-256 5fce9e57b826691b54232412c5d6275282b739f7a9db05c82cb4bd57242a96fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf12ddae1316fa7f3c9b73c0a2e16b0cbd9ce9909589ad6eebfe37634838e2d9
MD5 981b5aec4cf6453569390db3ea5ef531
BLAKE2b-256 f62258b11cdc6a648befe2a80ade430987e60c53155db96efd3049fa5c2a1cc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cd3041e41e4e0e8468d0e013bfdc07a9a9c04d72d12179cffec033356e0157d6
MD5 a0cd34a940372353cff1dccaf66616c5
BLAKE2b-256 92302ccb7f6175e2497dc9747ef366d3952fdc3bee45f6437d18bc67807da1ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 4c17cd0a1b8c2727db7835e00c2782e3214f3ee8199fed6b566b3634293d7008
MD5 3661d19d68bd6a6c98f1eb66e9c98da4
BLAKE2b-256 3ab6139ea85fb28989e4159a99d0e1a53ff57765e48a779f6a09a38af8f60411

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.16.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 b6817585235fccf0360266150d86d4b5172eb5f215bb007fe8ae98324e82a36f
MD5 0a75308c7565f01c8c565683274a40e3
BLAKE2b-256 e7e3a9a7b23ff70ba50dd753cfda4259f43ed4deddf7c3fb118a7db127a6c13c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fc6132036ec0ab43fa2602072db47b00900b3f708dfd188596f3981eed6bfed2
MD5 bf92e46e70df7d79f1c3d163bbf95590
BLAKE2b-256 3c30ef964440894002a63dbba1c9d8d35ed8cfcd05b875fed35a06ac9a213a3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 39cde196e7a1ffc0852a8151dbec30c8e8bfaba9260cdb1784d7dfa05e9b5202
MD5 5128f987be841f0a57440f8babd51575
BLAKE2b-256 07baa9d762bdbd4d15e92c8b502fe1ad019d4330737af0a615cfa8329259879b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 5a869dde14b88cc729d5e70f5a6fa43bf52cae154524edeb7b8353bd1331437d
MD5 5e454132aa9e08e26f795af749e1d6fa
BLAKE2b-256 afcfe4b90164bee0a5152261363af3d2525c44f1f0d38f348f7214cbaa4873d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c3f82a0a99e7d98fc7c480c167a3746faf978dded7b3b9e10af8738154e5b798
MD5 45561f63a5848bbfc66c55751042a2dc
BLAKE2b-256 3bb79858cb42562e8a64044c837e2acd950f8823842fd5acc1a09ddd2db03146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 17a8a398897c4a121a86f48bbcbaa0b59b8b246b7dddceb308e951116b08cbf2
MD5 d6c00429cd0fae721a4ef9d7dc5ebc75
BLAKE2b-256 2c8b97c2780ca4251f3a9a69f725baa18fd52d34a66ba1133cdb8821d15fe618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e5e1334fd645fb7b4b10c323f07cf6087f10866d74aebae168b76b7049ee66f
MD5 445dbc94c92dd7bcad0222312e39a06d
BLAKE2b-256 69c8a90b47ca52cc225138a06b57f079ef723ca5d432c3abb365d01fa1a99d30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 683f97df6b04e86d62f770fef399b2cbe309211d980c14e8a4518fc23d8454ba
MD5 ef2f0885dbba49a41aecdbcdc6ef220d
BLAKE2b-256 461a3b85a52626c0f6ddd69b1b9639fca993c0736cb4d6fdb95f32315cdd1db7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 23001548495dee4b2d34125a71007a4978897e270fd48cc2c14d4c8515549f79
MD5 e929a963ad19af93ee12be8506c51d9c
BLAKE2b-256 8104c6355f67321ac5a1a7f9100143c859da16b259a415dda7214eec879e67a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1a4ca454bfee3334dfdea994fb64897fdf18d9a03b61940aa9cc6de08c5861d6
MD5 e4e76a55c88133f2c771bce3c3e24c34
BLAKE2b-256 55a3dfc01280ba72dd660967fb00250403cb9d5efb60b1859990860e789c2c2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0b8472d79c5a375a1829a03373d83833cad087fbc3fb35605c5ec904a5eadd94
MD5 8c7396fa92fc9e2940c47067b98e4c44
BLAKE2b-256 028e2f8dc55853f3de6096e229fcf01c9229af310bc5e35a172762949d3fa672

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