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.9.0.tar.gz (229.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.9.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.9.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.9.0.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-0.9.0.tar.gz
Algorithm Hash digest
SHA256 b4a2abddfc3a38fc2dee71a1e31cd422e85f7869743763d07035d95ec5b603c4
MD5 2dda10d779fb149c2de32ae7c2ac8446
BLAKE2b-256 73d271067fc29dbd97ad9dc288b715da55c8dfaa72d17617642f96c30d880981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 08b6548c532efd39c38fe0d9f7d600f2f924a345f4b100258131e3ad636f40fe
MD5 b207549643b4ba1f20db3d45911769d9
BLAKE2b-256 a738a1e1a5f9ee69f2a45f20d5941bc00d9248ebf64ea511632a825b413b91b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1557f8262fffa5adbb50b3163658df4651411769182f9e5e00d755051ca25603
MD5 7f093ba5fcbbba03ce697be297900215
BLAKE2b-256 5da7fe2ef6ea6166adea872cfdb812f0b758f3536c58e8be3ed0609792ee87a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d429add973c30f0c322074e28edd26bcf7374dcdf6140ac0ec66d7cf94791608
MD5 7343bf5a1ad9295056f1bd11aef52eca
BLAKE2b-256 3b485566ab062abd7aaccdd20757d3d22d34036af95f84a908e3b624db3a3fda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e86880b2a2d1f3a82d5f8219d3e26821908f2d864c8b6f4264e617c1dc3555e4
MD5 f8335e61b28fffa2ec7e1085f660c1a9
BLAKE2b-256 e761173a212db26123d5a52905c1c9e5b86d9af18a23ffb61e7efa90a1bc2a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5de827125cdf023897a37f0e812fd300fd7c256f10c9b127270c2b690a76f2d6
MD5 be035944b9232b52f88eaa1e0028d3fd
BLAKE2b-256 f81f5b2b7b99d1a6869053fa11ca931921ff797664f78f2d0ff743dd54951e8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1811488d31ef8f2d3dc12c5438a694e9e1a394e31246bd221bfa7ba169711826
MD5 d202f4072a260a0a81531ced09cc9ee1
BLAKE2b-256 a2dc5a2a7c7cc78c38f53b7170df5f64d1ed440d54e3502f27398a55e5544877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b4fa6ba0949c3cd5cdee4cc1e53057f9597ddedcb463fdda4680f178eaf5af8d
MD5 25daf01c77e4406006c788fb10a4323c
BLAKE2b-256 6a2db83354c10d534f3e9514f0f2d1e8a9db77a9509c3f1efef3ac60dd11cbb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d3e2f30a3afab649b6e9427babb11a270406923a81de21f79e283d867a5840a8
MD5 32574bcb4f5154e524917fe6a0baf314
BLAKE2b-256 90716f6595be95126f4ca7806fa1c044a9014375ec146da7d78177df6e2d6a16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6d03b79271c5cd5e663e4b47e487b0aa8bbc10723ea25187d00492d2639cb72
MD5 c0b58c62183a2599a77eb1cb6af1d52f
BLAKE2b-256 cf980afc12d66e5ca30a26e0a47acc284dbf9295968aee03acb7921437554705

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cbb58cefb47d4ed935d39e04e3e54d9d4242548182153ed7ac931aa7ba32a5cb
MD5 9c5af71e6eef25c00c734c22c3baa9aa
BLAKE2b-256 faae7fe40f2b20c90b2f321bb4f170fc9d72029115e1147f527a40d72e31d86b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b904b74eebcc9240c54838ae2d090e9498e95444d716591128f0c72e54ccf394
MD5 ac3a04fafd602f4b759850b0723e129a
BLAKE2b-256 d244928fcd6982c3feeccd0d6bf4196bc422438be6783fdc62cb7ef175b9a901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0f3e607a633033c2b785c02b7eafe3a580536e0beddc5d45438743534692adcf
MD5 962821a502bf99338553906b1418f2e8
BLAKE2b-256 0173fcb6541d5641d2cb7f2cd124d6558cb95555f66319a6c145bd767cb64b94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2abe779be27af0948d2a5804e424c906daed98b98aa94710c1db496136562815
MD5 019c459fb28f0d4c6f3fde79a4e4da48
BLAKE2b-256 e7e9cbfb1c90191fbadb67d3981aee4dc43e5119f5e995a01d755d2c473adf62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e506f83696a3c9e69d35bda8b669490ce5ffcd900876ae024c70cbefe3b5ec31
MD5 133e039c5f7ca09b4d368c3d8402dcc7
BLAKE2b-256 526be2e31b76d08e6c81cb94b673eb738cded39adf86ed0c8e8f526133d1b43d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6df9774963fb63eadca5ddef846bda1174e0a3ad3ab3958c32936eec5d0b51a7
MD5 6b81e8f340d9c628c711ee7849e5ab80
BLAKE2b-256 160583bc02cb16ddc9f622634e3aa2a3d963b68e5d242b939f4e335d41619650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8af989fab6c181387b2707e85e3f0e985f9783fc0650924d5c1b69a3e409c9a9
MD5 91ee873dd9b4b3240096130565881f1b
BLAKE2b-256 f3d91c13710ed4365dbeafc7d3bddea6beaaa9e1737830c1ad87304c11c17dc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c8282e4715279295ff6dfed9ac3a6793f84e3051fedf9be2ae5e6ca45f012df0
MD5 7eb3a1700879eea1ea60c0d453f5f697
BLAKE2b-256 b7a0c024eece049445f112eee217ec773d3fe0a54509e9be7c591a28d5f3d725

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e714cebddb1d75b4dbab468c2b10a96882ac7a4200f1da92ddb00d271b78c700
MD5 0d16235573c31c1a98cc78dae7ebe771
BLAKE2b-256 1953c64a66bbb2896068300ed168587ffedd21760b3f93d2d273e9fd8ffebea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 e67b78b0b5eaa07af9e4019a54a16bbd62aa73dee3109ea3728e29282142c4f0
MD5 1adf3fe8e1345bea01d82b6b43a94ab1
BLAKE2b-256 d795c336197318cfa3a1f675d20db2c1ed22e240c702c1118d3cb45cbdbaa900

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.9.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 840972cfc4f5b0f1a5bf8527bcd29aae5dd414a680ed6d3048cd9d18b671698a
MD5 5b63c551ae87b5ead1062b6ecd0a7ba9
BLAKE2b-256 a5c8c4672fb50f6205e8d100f9634fd1c4d5383eb560bb97b0feabed2585ea57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7c3e3f19758394317eb65516ce398ee12368c2456ec18e09a4a523852a83421e
MD5 330316d8affa54760432f7bb498f9cea
BLAKE2b-256 6568505a9720c940448b7b211d00558779644490f2709b2c5e1395d80d2f452d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9363a4c042b7cec2993d21519023f78d255427a0c2817105f4d52c832fcb8ad4
MD5 f06365566bcbd3f5cde53677b36cc59d
BLAKE2b-256 918f1c9af818e79306886e0bdbfc4851d64696989c937adf35ab602fbc09fc71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 b753822e472f05acb50b92ada57c5ce8e7f451d8bbc701228af824cf4f1604f0
MD5 63e67646f3df2293b205db6d4abb0ac7
BLAKE2b-256 8389a4b1ada65d892c8c1a37142323fe782100a62754d6f9739a59bfa37fccb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 49a12f14cbb591fc86373a9fad9caf24a8dd6000239250f0bd3970825616da9e
MD5 a43df41080e1e7db09ea86c7f0cc873d
BLAKE2b-256 1824a00f7739ef5a0a7cf16bfa90a148e9f4938d29826072c5d6dfac9446438a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 778f7d85f0dd0da04e0b934c008b1132215af201c2f25bd97902dacbbd5afc78
MD5 fad1a19a3ea4379b1c65d6033dc0b9d5
BLAKE2b-256 ab13ac4af517560c0e0c1634db8e5e6b9f65f2951e0e81df2a6458577c7cc928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0069016723cae37834ef215768be87c74d405adfb5584d628679e9da30a88b24
MD5 6b04a18d57e366dbd8e479086d0cd038
BLAKE2b-256 316c9d7a1bfe8095fad0bc247acc2682c0cefb35cd5bc115b9e799fc50f91cd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60bae28d91235e315ec88ba37ee2bbb987ede12adcc4dc9194d1ea87be97cbe8
MD5 b33788e0e9837196d85df3a3ca00fb9a
BLAKE2b-256 5b65df3415467a8443cc0c04b84aacad5bd4511a458d1c2ee2c6373dfe7738e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 31b380db378a1df3714c96c0b82f6aa1093157dd9aef42b09c8ea2faf33e8722
MD5 876a054f0aec31e3ac5a85a53379b5ee
BLAKE2b-256 ba70bb30e2a4821c37382846ac72405fbe4916e992cc362304b98919edb4cd13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9547ffc32cc4cc0d7408d3ce3449ce9b87f7ec920f80ee61102c565fb2398fc8
MD5 4fe348479359895e6b1e01500faa7324
BLAKE2b-256 379a271b050c8b736926aa5fa82a88f966db78ecc4a6f75a1bf1267836357d9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f2c6690e27ec87f03236244443f2b91d2ca95c5c644c0f4776edebf0b7156a4b
MD5 2fb71093add3a5755c14d658428bbdc8
BLAKE2b-256 fe89f2b5655ce6b155226f3b254102d8d412b9478eade305c7859cacf785e42a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 8de7239e4bcac663ddb3f184453d4ad0268616f604c7bb2415197f8fcd268e0e
MD5 8497e7b559afc292337f4cecfbf59f12
BLAKE2b-256 5b81264578240f72eb28e0d1915740453aaadec0365082d99f4e06c6390bfcd8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.9.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ef6edfedf5bc73e29d6a3919df0cf94d26d97f2c5a54515174a98450d85d8edc
MD5 182dd4acd02cac72a9089cef2f6a13fe
BLAKE2b-256 0eef6ea6972094e35e4d53587625d87d7a28895618c2f12ebfc2e645cae7d3ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 06aff822bf53a2db404c4ebb027adb7b0f0071b7bc586aef513561e22aee58d2
MD5 b1450367e9cb14c7cfaa7f7fa342c69d
BLAKE2b-256 f4bcf2782d99dc632d71ffc8f4764cb3ebb6ca6631e02d0f245ce4ce7ca30c42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 548d8c2e978747553f1b1ecb8a58ad8ea266fa75a4e68b799502d3a1d074892e
MD5 4e051d3562ed4eb9ebd13b6700382419
BLAKE2b-256 321689e0ae2a58e954b3b77e88e3b7218121805fd64877a67d590126d1c18657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 dc5f1341ff9be985e248faac626a03337c4cfe5cd1391a17e248276b27a675a9
MD5 1bbab871bf61e99f258636c17c57c942
BLAKE2b-256 bc482076569a010b4f9cf7093540c787481b0bcf7871ddd8afa79e582230f4dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 1243ba62be10c46307a1dcc670c9f62f58a83cefec2998d3dc2e97ce9c78af0b
MD5 d90f66d4964a84e9ed9b6840cca6d0c1
BLAKE2b-256 c995b81bf7f5ef633841de6edc3ebc6863acf8f0001235bedb02c6b02e0940e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 610e6fc11632510e9ce6e557f37233a7b4122bd358190e97b93ffbd29f0fc587
MD5 9a003679a9a9af1da49a43e54c1e052d
BLAKE2b-256 3085cfd9009b046e6641e42931da88fae316b6f1b569013d7a0f274a0d5a6f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a7623e6525566e3e87fcf4f9f6ef4854e7c3bc9f9dee66528dbd7ebde77f0dbe
MD5 978f3a4b7f922e15244f12b959601258
BLAKE2b-256 3048f381c4644570bec748a20d6841f5a083660e1512b53e11374902577b0756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8e2ab12d009d5e1a72ced42198aa3f48307631abd57cfe8655537cdf4673f81
MD5 8a345f8ffe5d23ddf87b5205fc7a7cbe
BLAKE2b-256 d8036d9a0e42abf10ad6bbb798250066a84a5aa681c62610720a8048a4752af9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 02b283bb29cd4d1939f78a5e92cb88bd7c0b256aaefb0bb006c62a5b2fae479c
MD5 2ef1a864e7417329f032da6846c050d4
BLAKE2b-256 72429e262d98966a63a441f5ced4d70aac299aab9270947b056a3b6aba3821d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dee7a4e96a3e957f1b68b62b60889cc80ac307d00b5d7877e59f6f929a349704
MD5 b56e387e9e6fb6b943ce1bb53d35d2dc
BLAKE2b-256 55d04a2403e84a2a7f66956263db609ea15e382b53460842041baad7559cfe03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ed61bfb1e59d8ea68bd2402a1e2a6207baddc95a740dcbd5e6451e7b97c6cc09
MD5 72cd580d4afb76d153c9456ced1cf8e2
BLAKE2b-256 1e279f3ee7ee5967b9605ed86894a03ec6187430fe218fdeb622351310e424e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 9ffbcd0b87042572003cc88a8bb9c2c37cadbed935adb2516e47a56d2eb4d442
MD5 d42841d5de6a1802f2df4d3630d7b109
BLAKE2b-256 a0ed70ea498a8244693567a931973298226f15a65d70602229b936fb828be497

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.9.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 3cff8bf95b781d1975c45cce4ceee9df02a117368356aaccfeb0f2669d560030
MD5 8bc6fa606ed0c671e3ed588678f641e3
BLAKE2b-256 1214a8a314c558bd377cf9340cf90080659f20e253c99d0c723d76cdd437face

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 00ed443e83f8add6061a819b42bbc7d204ef7b999fd38b5a25abd4be33d4dd42
MD5 5fa4c6a1e06b7e29219b49d2c4048678
BLAKE2b-256 9b385a8e6136acbbe0dcb94a51f3af0cd79f699d2a1b9ea0f936b077d0884c82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 16e71f574ba3b8eaa6df94327f12efa403d46ef1cb8fb94c01b158c952fe6201
MD5 f08448c64bcd3b008bfbee33d824747e
BLAKE2b-256 dab54a2c7f615d5bce63de0e6839fdf969ac4703012bc610e6cb8ff4c49e53af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 d0b1da98015a4e9c611cb92533edefca9dbcd7aaeeaa1ea717fdcf7d3361fb8c
MD5 f913c5c545279b6ce15c22fb729d6138
BLAKE2b-256 c8607622e466cb2d38f4fbbcfbbe543f5a0c02ce2c050b7a866ec1ef320b600d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 ddd29a616530fdd523f956ea0008ccba35b49ede1a4a00f9f0ccb83bee582ca7
MD5 39ae36b155665ba65b56a97b9f7d1fcb
BLAKE2b-256 662dc644b22f72bfbb472f7366462053a3c98df95e89c3ecb3f2aabd2e2cd0b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 70befa3daae93f0bf043b02f200316871028f6485619cd4acd80c299ed0b6ce5
MD5 6dd412bd61e4ecbf16fa121c687e84f6
BLAKE2b-256 374fb42b71f2165d7a8fc3e8ad0b4fea5e3930fe20331ed2506a9a3216f8c208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d4b848a92bb909b18834136759655c4d161be5f08fa78b672dca61739a4e5e9
MD5 c1355243d9325d77951c2c729122a8f4
BLAKE2b-256 df916c7875e16fa42b427d04755ea81224981ae26487ec286effceb4016c0cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f2366341eb76c09d75fc94e8ae458246c1e90ad5e160282f7e8efbccc2873a9
MD5 b4234c092e4300bb78d3b6e57ac5cb3b
BLAKE2b-256 57beb782e419e88c3c454b549869277decb11ddfb4354a3a9546592b27a916a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1698c9601088893e3dc72a47e1c11f230d5390453e1f9970335a5eff35d7ace6
MD5 c9970f5537603dea68c01e58de3ad712
BLAKE2b-256 66adc379fa574138f5e40855568702d1710f15b86df0c66cee2c6efbebaa630e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4171a008ddfbad73057950811c3c1d1e19e610698e9da60126e9ffc6e7a3d5d1
MD5 0ed01079b5a5bbd49834023e754963f9
BLAKE2b-256 8427fb3ad6b154c9142a0225d98dc75e0f07ba31930e5a42cd31d2c5c248b2c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 97ec63b2741ba96368fd7b4ab4ab40437d07c1abdaf8a824fb3a47ad40895e02
MD5 377429242407ed8b8242f6c105a20dd4
BLAKE2b-256 7a12f521f86422d75418a45dcc9d57b26b475319968a5b9d1aeb2a66455182ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 b61931806cc88757b0e18f914b86deff8cd296cc0c78016a1ff36b292c0194d9
MD5 3ea6d963d4a1a0fa2acaf3726ee07f3f
BLAKE2b-256 9adbe9bb21424fb719105adb429ce180dfdaa76b43190418128a726c0da0bf51

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.9.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 028fdb6332d11d125872cc0a3ab19c5322e79af9ba05a0c892ce8b4f8720ff79
MD5 824b84d3f6c2b95f161ce562d13018e9
BLAKE2b-256 c81af99211f2fb2e8bfc2bc08d0709bdc432f9e85e3fe874024869b00b7068de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2ea9b553eb28fe049b6d607e9eabfef3bd42dead78b7a771536593aa0935043f
MD5 d675ebc88ad26bb2e2cbc91584187684
BLAKE2b-256 580a374b358297aedab983d886ae424d2e8a82e4773a7daed9d4c76309c333c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4aa2fc4313a7ec8b538920ceacd67b2069128d06132c5581ea3af49f00498a6c
MD5 d20a9e65765dd5608093450cfeb145ce
BLAKE2b-256 ee50d04ef4b295f466776f5b72ec8af77ca2fc009daeae0d6a3959e4fc7c9a4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 9d7480e43915202c403e5f86b96ce54f8217ca4a9c0b6e63c171ce26a45574f2
MD5 8651e2d6b1e36f4bd76946c7d54b25b6
BLAKE2b-256 b431ba0a8e2917f93fe45ff2b0b744ba9dc63e198e3aee36260232c985f3a1b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 7beca706d15e8c6f6c7e8ba6d5362c841561a26bc16129bedb742158ec4922b9
MD5 7fd79cb69ad8df259780b7582bd4533c
BLAKE2b-256 31e0813cee311bf0c34df58325a84c9b255490ba9c5b19acb07f19b378b7119e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 fe710c8301cc2cd93ef16b5a15777d8b66c84180f9570568823d7f4366b20ef7
MD5 25ead98c467381875fb8eb5cc16f5d69
BLAKE2b-256 62d6f368969b596e0f0174efee222067b74de3f15fb38613261712cf3c5c715e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3daf7bb4c72c04395e5b51dd84dc71f18fb86da20136654ed0cd14c31bc33132
MD5 e6e77b0101c204cb321bdec2262d960c
BLAKE2b-256 188d3571d8592b02e077fa0df7646d807ab9d92ca99d857345e7e72c0e46e832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80671808b39fd1a0f350351297ac309ef58cace35fae93a299e4e78c76db41a0
MD5 5be636b7ad23207c8bc3cf07033dbb5c
BLAKE2b-256 c210d193f008b58fd3d9ea31513d0ac104ab4106274a5c822049bb4a7829d019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ed9d1513c6cfb6758f6d3cfaab89a38235f28674c721a7e36bf83c320374088
MD5 376c6828a70460118324f076f65ce270
BLAKE2b-256 bfec592c833507ed48b73b1cd243f4c6381ff8dec9fd05f59301e9988e5a3092

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 630fb5bb289327f46199d8570dff78a169b7b26d0b417d3c05087b280ffda17e
MD5 87281718e8e45d0dd86b94a9104ec676
BLAKE2b-256 982f656dcb99356d8d0fea69edec8be47bff48e6dc4a434782c1399a32ce2dfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 772537f53157229306a689e74571befa8b785659681c758a70a973bc9a8d4d07
MD5 4eed14078451e03d6e73acffe857ba42
BLAKE2b-256 f699f19de7e2a2b8f6f3d320c1eadeee629570e2a5d6c7f3c79f22cb8c36402d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 573814c9f1e3b39adced5e4d89a38656b483588b3fce50b547b0cfc8bc7ab200
MD5 1db2f082a286f9deef428edda536237b
BLAKE2b-256 dce1a47c6812acbc3750257bf8d8728892f7617c3e7fc195375fe982867ee51c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.9.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 1240d48f2a73cfd1baf4b475703e65959a1a8fabe1d99d82d77912e494f63351
MD5 c490849a42320f44b4a1a955eb9e6941
BLAKE2b-256 d25524e25d53adcde710bc55c479eb3cda1e981c552bc26ec9bcce4c43aac592

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0d185eb5bf344c26416aa34c7902084cf60992b515e23568cdd203e096de374c
MD5 62c20b3339ff96d7a1b35a012564a01f
BLAKE2b-256 eaa62e72a63a304b00fcc666951e4f2d5cb2f179da35c20e3ad8825082b6c7f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6f5d2b91e2b48a723ca34f060642f0dd3fefd89d4c179ce5ec06a8c6f736cd71
MD5 862c4057105fff8be32b412faeececd6
BLAKE2b-256 d453d8de77172f058750d9158565d93b4f81b3525860ba56b66e26067e53b763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 1ee6350afa52f50276927340dd8a00fc1bc111ae7b148dadc3e1a3683b776718
MD5 5f75098f80ae16b0faec07d15e820cca
BLAKE2b-256 bab0d28a77f62f0bd2ba2c78bdf562fdbed42d6b2308164deef64184aa42fc21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 b8764299751c397521980de4bcac5cb62bb7f2581880c2b47f92a5d3088dfd9c
MD5 09df3e285b274b56fe649cf78985f9a1
BLAKE2b-256 a37f6cdfb0e65682c827777403ad4be77b5c4218bcb9b7ddf9195f69cc7111ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 0701bc7da4e2708e376f4d3b1d276546f2a3649815812bcf8390a9664959681c
MD5 cadc0679bfd19c5253ad48a36e94b8ab
BLAKE2b-256 9829cd4c15ac74c4684d1c3756c4d2fe73c30f43a548caca0e568d6592a7507b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2ff699462e5865d2d0ddce8687a96db0dbe75e6e4fa954a093dc2ad92e4c69e3
MD5 66208009cb49fe5c3765ec559ceb0a6e
BLAKE2b-256 f50fa47a101d6d3c6589dd9e1c94fbc5126f546a8ad1e0d6d832e5f41cf49ee9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9655b900baad3eb84d1c315ffde9a0654b157be6294a5f1c7e7a3c97d405cb6a
MD5 eabdac7dca0a4555ed66a6b87841fad2
BLAKE2b-256 e6a1dbe4f09f6ad34d475a6b95f4e565a1ab3efbd907e9f48f627c957d5dfec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5004d804afc1966c38581e6ac2909898d8c38350d02eababe81b5174f6955018
MD5 cc3b6dbe1264097a75785cf1a64e15d2
BLAKE2b-256 ff03e0fecd9421fa3e306fe7fae9c63f52772b982dc18e44197d0239b534a229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6118a90b98282d79785186184927ebc709f6c8710a11d1b2922200ceeddf0c3
MD5 3c8af364174425bca040496f5ac06e42
BLAKE2b-256 ae290319e104644f3d3c5dee074618a7e20b0f104d488d0a3e8ed32a6eacc08a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.9.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 060018c84fcd5064974a54be6fa07b3c97aa4d80e5421028e9a6acafc155de17
MD5 e02bce888b28753ab9046f7c6d3235be
BLAKE2b-256 70a517ff1d3cd9b7c41bf6ceb8d1f77d30b2e8d07aa165a4cbbd8a692a8519cd

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