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.1.tar.gz (253.1 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.1-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.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.16.1-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.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.16.1-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.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-0.16.1-cp311-cp311-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.16.1-cp311-cp311-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.7+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-0.16.1-cp310-cp310-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.16.1-cp310-cp310-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.7+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-0.16.1-cp39-cp39-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.16.1-cp39-cp39-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.7+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-0.16.1-cp38-cp38-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.7+ x86-64

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

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-0.16.1-cp37-cp37m-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-0.16.1-cp37-cp37m-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

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

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-0.16.1.tar.gz
  • Upload date:
  • Size: 253.1 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.1.tar.gz
Algorithm Hash digest
SHA256 5e95673ab2ab0ea2e092e1902137674b288f396645b2232f10aeb813aa2bab01
MD5 52c0ce824cf60fcb20762ad922c7e6d7
BLAKE2b-256 5086235f847420b27137ae2bdbb7ea0290a3f71ea3277166b9c7b6a1da73759f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d0237bf12088553561f8f473cb24db256aca8211d439995e336d5950c12ae148
MD5 56de2f0f974e5035131b5454623ed477
BLAKE2b-256 4ee553937f26fa877ad137f484573a562df67a45709aa9e6d2cc89e3aa4c9290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cda64deb5ca2fc7f505114e504c052e3590aa98ae114de7cab3c5f700691c5ac
MD5 75ba1429b023d153923755dfc6f1b2ef
BLAKE2b-256 0edc36b9cc9fa8b502c63e5ce2773b57fd9df75b3988936d23b999af4fcce9af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 66bfe7f9da64e974ef559e0560074c0016aba7c67aaf752121c838f1ce718218
MD5 fc4de3ffbb04fb543db2a4f71b9e9d5a
BLAKE2b-256 a8df067ea67db29880f1dc2edd58c77ed5bf2ce92e7911d3b6d4deadb0092ec0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 94193f83ed958d135f86b91c8fa6c1240811d54b64eea38711254824e9dc4c58
MD5 406488bb6a0573858e6d1bf0ab9183bd
BLAKE2b-256 81ad1bb6ac4258408313bea20ea7c5c5b2c95bc29bddb55b1867ccd7e0f158da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0c6d7a7ab3d4a6cdd6378a3cecb54d8ef1642ce30891b995a86d023fbddaa345
MD5 808d82f30ec5f1fd1a07edd643e860ed
BLAKE2b-256 2c7b17213b07b28a96a40d241ce0019cdd857f45df8d2589e00d5555de7bac1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1f256313193d98df1ae981b81c7f4a236af63955e9cfbef5e78c41e01665a596
MD5 dd009da579374663bf56a3985e0e7f03
BLAKE2b-256 e8c3af1879d06101f5c5c91cb5519233be519defd3119359388e8f982cfdc4a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d614e75175cfd9b801994b4b0d2bdb63077115e082a55d85d8e10ba84bb16783
MD5 7ac1654f1c026f606f6547fd03bd9cf5
BLAKE2b-256 6dd6a94d68a06541b9618bef333931b590c009881f732f9a08902efefbf06c6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 405092e7fea4101ec3f9bca9f13674cdf4607bf43c55572dea46940aa28c0007
MD5 966c3635ee4cbc91131779862be6c6ee
BLAKE2b-256 e1cf14dbc98d7fb5e026c0109c1bd4b5460a3efc83adef63087e6e0f811c5320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24fc9265c6d87bd64b0ff710b1a2abc3dae5bfc7d4dfd5bec1021c9bece40892
MD5 954f54ae2da63ae4351cb6d83cbfa2ba
BLAKE2b-256 f526b3aab3b48b9c7a486418b1629ba4437c229f02ef98fdf92ff618067aec47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 592cc5effca3f3d9d09c64ee8851d18d5e264ec6945df6c142c3040d78c892e8
MD5 0b0fac456360418b7a07e4dd92217460
BLAKE2b-256 18795b0797f07ab08e98c38e65f13d20823ef291f9723576c636a5abc9aaeffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 34afc8be20221ebde3ce92414efc4eb68b6cc509d549f88f2a77b472572ec014
MD5 86d717d262cb72b52addb9fa2fbcc15a
BLAKE2b-256 af4a413f26f9b5f315fc14bf3a2c2cdfc5760b23b90105425b07f82f05acf68f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 adab84991dd32cf7b4ccab4ada7e3219b0f1de19881f6f8e195bcb98fa93f334
MD5 e8d9a36d62f13eaa34b6433c7751d360
BLAKE2b-256 c4ad6e13bb3a495c2463bce89f96baef87878598d95a05f3dbb45931244a26f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 075f1f7fe8e718840f1575505924aec351f5739c93cbb6296b44bd16d06d180d
MD5 5f67132d3334c82d3602add1261fdf3f
BLAKE2b-256 2aba74cd82ac50dbad7e72239b4972da410b9079072e54d6a88af9e0003775a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d29e1f736fb636ede73a886e855047c1a3d8ec517bfe61d22f366553f59faf85
MD5 0093385d359e58d03a1668ec9529416e
BLAKE2b-256 86924d96667553676039853b193ad6045c6833cbcbb5fe6822c0d2b61ed1b5c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d18abe0fceee20752de4b7f83df229ae675bff0d39c83bdebdb86a6be3b5e71
MD5 294d54409777fe82d6b26f0dec7b4606
BLAKE2b-256 2000827f6fd7b1e5d4f2e9b8f7fa4be3eab28ef5130bbfeba07394a11f3928c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 805c02768648b78f018db201e620d5a43c829e6f695753bc4e4ee3e40fea9634
MD5 345da55f526381be4048e178469fb737
BLAKE2b-256 d133e8c989fa01c8ac7b2e45232cee476ecd74dbd17f72250c20cf04c7360a06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5ec82c4f4c85ad6e8f7ebe40f3f6adfc8c9bc9a3e08fd62e27f67d5dcd2aa9d9
MD5 e2ff19d729fa8e491c0dbaf609ce4db5
BLAKE2b-256 a3babdd65d151228b68f5f8b5a12b4db10aa1e08fe5186ea7512750c44c06af6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 da4a982cf2f368a1250ef5d6c3f160d13c2cb2a6f4b51cc4d0b4197a2007f52a
MD5 44bc02cafb0058cb057783c77831a417
BLAKE2b-256 6dc4d2fb69d0ef3a20fd41b99e678082a0429d119fc6edb333ba60d5c59209d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 81b5e710517cd441018fb93e251259bd9c029859babc6317d2bcd79767ae6508
MD5 86d2c9b734d38580ab0d313c83266cad
BLAKE2b-256 51bbfe71da1aa4173e666b04b26ca56206da1bbdc29af8392057af63d528f9c2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.16.1-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.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d29ff664ebf0e12ea7651f653275ae35ae10dadea0f729846866579bb1e56676
MD5 86f8dd093b20ee78baa4ab2656f3f8f6
BLAKE2b-256 b8f23c3b3f64298636d8859b2bba62778e399de5c65862b5d265d2a3c4c63830

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6644ef62ad843b22e630ef107f0a0e829b74618baab43a406e00425e40296206
MD5 79fee72ad88db407df048ba49fdc1f02
BLAKE2b-256 debe9418c426d65bcce4c901d8c33f296b552f8234b123188ba7c4d329d286f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7e71617fd6de4cc599eee86d739930fdfa4310c83b7a5e900011ad94d4908601
MD5 a48c258083f42c3af9f840d4910a580e
BLAKE2b-256 3c7bb4941ff0e1c4d4be1e6d8f9d4d9fd0ae83f9f58dbc38884368d9ab5cd806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 b49c6056b0208da12591e6c5ea2e8077527a57aee26020ffb7a9441b622bedc8
MD5 dded2a96df881ceddd82f0b7af093bfc
BLAKE2b-256 5dfef280d280f202aeeaee2ff3e3c86b85278a00f9d0549165fe18792506880f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 3967128ad7d68714f9c28310048c1dcbeb8c2436037235edd90b8b8662dbea77
MD5 3010cc17db0f3cd44b98c188942c16f2
BLAKE2b-256 e8306157022dd3c8b03ba402daa78d5c2c9c233645ba677e270815e8f167194b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 4a16103aa82e74215309d59b506c2bfcdd8b733ac44180a26ec39722b33a1ecc
MD5 9f18c171d1f5d199cfedf889eadfbe3f
BLAKE2b-256 ed109d60724e7c6696e87bda6473b0a3ff0d361a29a166969aac05452eae9c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2504d80af654fd198a33f3f26b5825903beb3351f357df9b713fbdb6ce78969
MD5 b542c289aa188b724f564a8c03cb04d3
BLAKE2b-256 9c930eea8b042d7dbb530e8e1f9c7310b86eb46d58cc2ca4d5298db8a22e42f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ce7e217a8212d42f76869dadfd3968f1cf5524b2d304fa878c8c451a4cc0e46
MD5 6e193f2d849befe0b1d04b284d2761c9
BLAKE2b-256 f537b1390ec7bc8a6e59d212b2a04ab1342cb9f1be7979045951b0b5643ed37a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4022bc8993ae443d5d3fb4c88522b086de6c84d10cf424267a4a73f7f30ae98b
MD5 f490001ab5dc25c4f9f82c5f5e4afd1b
BLAKE2b-256 10465322edd9e3dd76958717efc17f1f6248e7381586d9a46a6073e214e806d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2757e5562c306194858c98b7286fcd0ce3dfe4716121bc3b1e27555b9bd7811
MD5 01b5cf4f3eb732c2f66859a6a7cf4ff5
BLAKE2b-256 84c72f4bf5958fc7ca0926556f645b4b3c155d3275c56ad2ec8d69edf34c702d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ed8f53769d33802ea142bd7ad3da399d03f67651f90a931899c4b95e392e0fd4
MD5 b31d996db0ca735319036125e86a3ef9
BLAKE2b-256 17356f0b90c3d143df6ee0ddd075d91b7ca72c142ed600e836e3018d4125597f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 ccf6350e83e14c65ed3d5b7c4b92e8bfefd47b441d830a713e7bf0e36158698e
MD5 23bd568d8dda1e7e3052e9d71e009f15
BLAKE2b-256 c8071ac41ef8f4f3198b44cde350940f7cd501c5a90cc9d10d78e2289297b482

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.16.1-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.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 91c0958ddbb6ccbc7c535d85c067d7bc2d024c3fb2a9b381da5f8a5d167744f4
MD5 d9dd6daf60128aa82879a34a18cbf654
BLAKE2b-256 88fbbd3d5b04e52073c6ca74d04630d504d1f0e152f1521a1f9210e0f63b3af5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e71bb709683a0c76b03bd6bf95760c03f18e4ffb03e5fb750af5909dde680ed5
MD5 99f8a7cce3410e7d23d64279cc5d89b3
BLAKE2b-256 1f54669f9be6a88a9e0c5fec75fc334a83eeb0a20a3f2df94c51a66907175ebe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fbf98d4d3bc36d9fcafeeadde2d88b647b30762b7beab81bc983f57acfd91f6b
MD5 dbd2242f96e892c53fdc15ee45d1e617
BLAKE2b-256 3cdf16c96971c6aa247a33b51e81369b67baae7ef139411f0acbaae2373c57c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 38575eee09be6d1156115fa1af8c0f6a3c0abf9dfc4c9b473b9b10adca83166f
MD5 ae19c7667b4deeeae048dcf56df01f93
BLAKE2b-256 c232ddd54eebe7ddc8c1322eca2df966379eeb289c47bf4a33f205506c04bb8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 1891ed499753c7fb2eafbae983a7bbac3789d0270928e9d9feaec9ef77a37e27
MD5 f1a3c2fb3d8bc4434350f0ab614aa4f6
BLAKE2b-256 e0113e5662270f0eb1aba96a1667890a87f34117f6c1a9bc29a30e282eceedcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 9178d2f4fece59374cefde666bb697b7ad015a68661f2cdd84660b7913594daa
MD5 df0fe80635ba372b688eab23f1f817ce
BLAKE2b-256 c0a890c72e60d4089b4a3e1b4b7c92d9899a91cd93c528cb9005be19268646cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 056e047fc45539a55e7e976383a22af390ca4b4b1194c1ff29c7cfd71bc27c83
MD5 422ac65cb31b2f5333981dbd8c7c7ca9
BLAKE2b-256 e8ce96229bbc0b453ac208600fe0ea4b59b7a10a2a55dfaf3fb5a8d1c3133fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4998cf84b3792e567d795e4b59257b0d299338ed34511c5c96defb86196101a0
MD5 f78a903822390971a8c3c4bb64d3bd21
BLAKE2b-256 7e89c742d48b9e583f251c8d821dd944dc95d32757fc2597da57044a85c47996

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ab2493edcf85c82fa1444611beb865300ab8011d35ff031251d1c2927af0c33f
MD5 ebb13ea47174e1c0095b95683dda537f
BLAKE2b-256 97e573715c7bf7326e16c9b53a6d54d40811961192cca5da2571914ff9e8339d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5e721e859f78c48b0165441b650ede686689a9227df80e5ed62f635e2bee49eb
MD5 f1ca4d99668e069d7d9fd0caee56c976
BLAKE2b-256 073bc065225a15722d5ca46a9647df6cff49047c83cde89ab40c5337b85e2e04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4e5b36194ce10e4ad192435577f381a5f35050f70b8ae1c1d7cbc6f93fd1671d
MD5 bf8734897b6acc2fd370efef1a5598bd
BLAKE2b-256 59bd1ea3449d87fbc7402f9db35f44d9d39c163ed7afca98d5668dc0354cd6e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 2cec816b2f83b641d72b45f3289a3217963f87d7da46c187ffa19d45c5dafdbe
MD5 2e1e17a2ab6c0da621d2f08dc712dd10
BLAKE2b-256 aaf278d48d9f4bddcfca3a4fb88c1ff5ccfc07f522ee2cc2a3eff5780be0f20b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.16.1-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.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 60569b95b45a75772af0d591bbba31b1d19feadf8356cf605635a506cdec5368
MD5 40c5592b7c2d34994780bdb385e6aec9
BLAKE2b-256 d3b0f4fbd9c8d7e0cf22edd69ed075b3db13ef6cc49c7fc8f6d97e5e6b29e40d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1038f5176c6291f3299145200f50b5e14faa23a9b7f9b77e45a27ae26fec85ec
MD5 a28378dcd83531d8ec3830efaa97211c
BLAKE2b-256 c72a8d1fba41fa1e0b5d06c2a6df4900d34d2acfd84e72036722601e3f283f45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 12422467e9e184d624208b8f77ab351529111050cb9e02228b9fdf9ca804558e
MD5 0aded67eae35ef22579a438cf7739e59
BLAKE2b-256 da833f297e360c7cfa31bbbc5d4cb1ab93244d4c4d913c5594f24f0b3e614175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 570c136c0bbe1fd12f27af588beebb8037d0508c2cd66593abbb4be658e99a4b
MD5 8353901e07fd0be251d662b2c4a77669
BLAKE2b-256 83fec28c628706a664459a85c64dff946f39b1184466101116bda608d14e461b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 5c7d726bb95636cf54460b23218fa93e1cd7a7ae6bf83336c2446b9363518dc0
MD5 52c4c4a58ff4a50633119752d9b8f494
BLAKE2b-256 cf75497e7edbdba25913789dc860eeb0e385fa1c7b3c1528eea8831dab2138e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 06901e613fd98be8cee0349a4af3da78973e0c21c955a4a6c89b757c6d07bf11
MD5 078c4c66d90a18993199e35ab0f707d6
BLAKE2b-256 6b0d1ad1a21e96e15c9b34b53a203131d9edfc7f3124036f84d9a38de27f9390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb1eee4b142ebcb17815b2120774f174b7775b249a287bd3596a27eb51da549c
MD5 486e28de34625d3b5b97dbf24a873d56
BLAKE2b-256 f90c9fe1ea425ff754b4cd6b69dae0de69d9b1418effeee8b408a9d4bc5be9a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3c6b36edab24a8ee8053e347e0f2dce7ae4060e8921de1e00fa12450bd3e07da
MD5 34f141184a85f3a1fe9e25b74ca60215
BLAKE2b-256 73bc73eb0e3116e549fe0d8bb179c6743b92785566ee97a1ec80b1e734d486f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1c9969d3d03ea7b94d3067ca4453d6a3348b2ccda4d43b9c2cff4a5e245b81f6
MD5 f7d89742ae984ae97e3ebce8d51154f8
BLAKE2b-256 0222162e32f7d5319c04604a7265e10ad78027963f415a5eee17f096bb04166d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ce87e73ac45034891d6f098fe89c856b43932a9a5eba33c2d7740ca2247e953
MD5 604941d85467aaa52f6c33a4e4cf61f9
BLAKE2b-256 eab166e6bbbd2e594bf35689bd9b05c587e830c177047fe02b087d7d661b5134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 05b7f6728986390d1951d8049ed80c36ddff16fa8f48b8ae82c05bfc936c5361
MD5 a71fafb97d633d6f50d5ff102e5071fa
BLAKE2b-256 741f309c30f9d374ec2d5890e5fe16eb857ae5059656a2a10961cf87a79e6aee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 82740cedcd2a35c3c7eb692829f9e6ba6f735cd29d5660316a1be474cdddf82a
MD5 14020577f0b74a9376f2e094ad026405
BLAKE2b-256 8a4d340c4dca66fd1557a5899c101524b3a5271fc7d8cc85af03df9decfba546

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.16.1-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.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2b23897759cc8da8a7343f1da5cd327752f1c7d80d9664e5537b5af0aac4c572
MD5 76b7b83bf329d53ea1fa2ce1386c9ef9
BLAKE2b-256 af8e4704d7b3cfd5896e13869452748218bb1b9b411a90bb96fc67077b247964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1283d9809194bdfdb6980bebfbbac99e984cb2a47062ebbaa712ccc17dd77c36
MD5 76d579009e84ec34b172f13ed7a68863
BLAKE2b-256 dba3305b043154f47a9cf3e97b2ddff32b44ab18babd22355373a513f99fa4f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0169d384e8bf002f1919b5983468f526cef2fe8e011930270bcde191b52faa3b
MD5 40996c141245fd84da9d78bec8b41dd6
BLAKE2b-256 2b623a7cc200e859e8765963dab68f3f19578908313437a088ef07936cff3cae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 5fb11bdfe18cfac651ecb7946a2840e99ac8551965f4251bcec0439dadbb472b
MD5 a8b0b68bd3294f21052b7d7142f451c6
BLAKE2b-256 e0d6fb15c26b8c43eff23d2a48bbc7a8e6facdf417d0a7de0f9947d07d8e246c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 8928b15780c14da06aca15e8067adbe0a7ccaa12c32c9361fc80a6831b5cdd80
MD5 3ad7dd693ebe38fe0e328b0de3ba6055
BLAKE2b-256 6dffcd6d77af3dacd9af48f662d895c8e403391bf016f8fdc49e5744ad4c9301

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8ca47cbe3e12ce0574715838a2b308829508f608edab7768a13a192c66b291cb
MD5 683f0de49fce7c7352f58a431e542164
BLAKE2b-256 1c162112561dee3217b50a8dd2d65cfccf79ed5bf63d3ef01ac6d282cb1c0ecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1177d043cbebea145d22ee258b25832313bd04e69fec45808e75bd904e395495
MD5 695306bb326d3230193e3848a64d0f00
BLAKE2b-256 99d9f0267e9155a076f46ba080ddf5d42cf0ae7c3c01a300ab969300dfba540f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fb9c0c66b235a0b8bee4d3940e3cf9171acb8d3810f159d28a46e839c9b087e
MD5 bad9639ca7c243a2289b3c1680ced959
BLAKE2b-256 8fa14926962007a50e3173a55d0faaf6d7b0792d74445e613f14b6a7b7c0f786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b685dda6488e68f7e382125c00dc0047a01d53aa665930ffaa9788c494135d15
MD5 e0c4fb7b58d0d34e4fd4b61a3970a297
BLAKE2b-256 d7be5be5302d8500363c645fe689b877290bfb240f2f7440862e844ced62fecd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 de418397f3054d0d7735833de60495dc4dbcc87c95c0fd44b51ec3c5ead0eb77
MD5 1b5ffafc63bf8eedaa742ea6a6d04eba
BLAKE2b-256 43ad39155d0f1c3423f79c9b60f5f3a4cc1e78a22443f7554b8e9ed9d66076f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f9607497d158eb45f6419048be40124bd016f43180fd4434455c8d6af9a8ce17
MD5 0ac834901625262d836d00c68f52c63d
BLAKE2b-256 2e929f4f61c077b4ca0b89f88633837fffef385226761b2d8015b45944aec0d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 aaec68e85fcfa6ba13a8384e692f442711e20a85f315ba37796110b9edcbe54a
MD5 c7f9d114d9b9e80ec69119fa1f1d4160
BLAKE2b-256 865b54774107a2a744fe3c431698ba9dc7e4a154d323ac5f81fbd6c995c55ab0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.16.1-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.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 517c83cbfaf1fc2044b17ade172d12434dc6d80e9d7300e8987bbb9728a50c73
MD5 71670bb46510ba9befec0b472b53ade7
BLAKE2b-256 fa0d21f06ecd31295d1ba37b4e784861f6115e736aa76748f19015aa8e81b2e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 117c8027b83f15514614a7c9b742a67c7cfc3f1fbfb7feb47fb42931cb4f0f9c
MD5 3d16ec6bda3b3059db4b31211c8c5c99
BLAKE2b-256 b469233665e33a8c050ee04d699772bf76413ef13677798e125037851cd19af7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 805533ee3c6359336543c7bdac9d2c4605e59d67f438c9d6974987d94723bba3
MD5 6cfde69311914597e1e104f2639e9d7e
BLAKE2b-256 34256d19d0da6d525bbcd80dd922087b9e5513a1695a1c1664ce85e283014e8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 e01291bba09621d3fdc4b544208862e324c2a57ae782506c82fc128a9c13d2d5
MD5 b52195de9fa03cc4805be6d7d67b18ce
BLAKE2b-256 f9698dff02e4b39b99d9fec13040a65acfd543ff2125afab830144bbca77a9e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 a4daeeb44e146b2f1b2f71175c1ebadcb4b836acfdacdd94ed822e8653f6d093
MD5 ff77f694ed19c19db3c7fd06a84dcba2
BLAKE2b-256 e93380c590853662aee2591dd648b08ddde413d451341898ef7008f7402dfb25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 ddb9b1d927c0ccc06f845f299ca2bfbe1b42e8d43b403a8c3fa54d32975ff60e
MD5 d383f7881ee90f3fded5bacf86157c67
BLAKE2b-256 6aed1b80180ecff868112b401710464fc4e5b5f5b020c7bea3cbf0507afd75d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c52c6e4cfa435a1fa08103999dd16b61634fe5fcaff7aa71714d516f5da75032
MD5 50b77cc7ef69142c19b8b475f017a998
BLAKE2b-256 41c606f87353f9649bf9d8da4c3b4dd193f8e9b9f2692871f6f8d410aa3481c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7940871c3f5d1ff7b62ed6b528dbca44431e0220040f755936691c11dc38bc7d
MD5 147617847a26e885022f37f114dd8e8b
BLAKE2b-256 379e96c7e757fc1cf0fcdd4de79a0a27c4b0fc5eb8bb9d6bb23a2e014bacee9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 84d30465e05873672f2da2e69543208458da294947ba23ab7c2b71b803be53f9
MD5 0e8a10d2bce76c6bf1add6be1d6ecaae
BLAKE2b-256 95c6a56567ca17d9570b688780fde576c69bb8e4fcb243834169c0ce983118bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 959ad563cacecf401265b687958089af2562c3a44c1edf2de4bc7ae6a2dcac88
MD5 3c204644ef1af2ede84548f0769f7081
BLAKE2b-256 c5b5a1847fe664efcfa3a5dbd25ea9afc8eabd428f804f80418b2378d0e007fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.16.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 329a02bdcbc1958bb022d28db61b6c844fb3da53555b5adfbaa7c3e9be6389f1
MD5 8b18429513b8e63a7237f14d54cd0aa9
BLAKE2b-256 809618db5eb60277dc3cf09065aba6958af4900308c2a6888ceeafdc1a97d6e5

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