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': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'str',
                },
            },
            'age': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'int',
                    'ge': 18,
                },
            },
            'is_developer': {
                'type': 'typed-dict-field',
                '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.34.0.tar.gz (294.0 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.34.0-pp39-pypy39_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-0.34.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.34.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.34.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.34.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.34.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.34.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.34.0-pp38-pypy38_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-0.34.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.34.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.34.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.34.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.34.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.34.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.34.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.34.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.34.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.34.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.34.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.34.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.34.0-cp311-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-0.34.0-cp311-none-win32.whl (1.3 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-0.34.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-0.34.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.34.0-cp311-cp311-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

pydantic_core-0.34.0-cp311-cp311-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

pydantic_core-0.34.0-cp311-cp311-manylinux_2_24_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.34.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-0.34.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-0.34.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-0.34.0-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.34.0-cp311-cp311-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

pydantic_core-0.34.0-cp310-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.34.0-cp310-none-win32.whl (1.3 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-0.34.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-0.34.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.34.0-cp310-cp310-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

pydantic_core-0.34.0-cp310-cp310-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

pydantic_core-0.34.0-cp310-cp310-manylinux_2_24_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.34.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-0.34.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-0.34.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-0.34.0-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.34.0-cp310-cp310-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.34.0-cp39-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.34.0-cp39-none-win32.whl (1.3 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-0.34.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-0.34.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.34.0-cp39-cp39-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

pydantic_core-0.34.0-cp39-cp39-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

pydantic_core-0.34.0-cp39-cp39-manylinux_2_24_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.34.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-0.34.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-0.34.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-0.34.0-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.34.0-cp39-cp39-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.34.0-cp38-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.34.0-cp38-none-win32.whl (1.3 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-0.34.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-0.34.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-0.34.0-cp38-cp38-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

pydantic_core-0.34.0-cp38-cp38-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

pydantic_core-0.34.0-cp38-cp38-manylinux_2_24_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.34.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-0.34.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-0.34.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-0.34.0-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.34.0-cp38-cp38-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.34.0-cp37-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.34.0-cp37-none-win32.whl (1.3 MB view details)

Uploaded CPython 3.7Windows x86

pydantic_core-0.34.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-0.34.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-0.34.0-cp37-cp37m-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

pydantic_core-0.34.0-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

pydantic_core-0.34.0-cp37-cp37m-manylinux_2_24_armv7l.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.34.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-0.34.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-0.34.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pydantic_core-0.34.0-cp37-cp37m-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.34.0-cp37-cp37m-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.34.0.tar.gz
Algorithm Hash digest
SHA256 adf9b98a00ffebf6bda3c1299dbb40368e6fa4414caa734e52b8030e309d9399
MD5 2a6ce49fd27bd2ad273f36479a60dae1
BLAKE2b-256 2f904233c058587035573c476c568bf07ce0079bfbcb086de60ac803b5df245c

See more details on using hashes here.

File details

Details for the file pydantic_core-0.34.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b0791eda60781cf02e1170d83ba98ff849d4aa93adaf145389b11c9e00eb71e5
MD5 4e24ae293dd60bbdb758fa09204b097a
BLAKE2b-256 85a41e4f40975581ce2b4873d15a52953c16f30582a9d1e8747adee30062cbb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 09777a9a860e7ea5b73ca97e7b3a15ecdab03f85bbd33c7fe47c4db0a17b6d17
MD5 dcef86992b9b3f32187ebd3e395a8f5e
BLAKE2b-256 0430a8f6efc0891854fa2664147796425f823c46cd37d5751e6d4d0347f47f48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dd4e31e50824e7ea0d35546e872add90a9fbd8824849ee6fc54425fc3c33a906
MD5 4bdd7fa8fc35812670ecc32b6d8c8e24
BLAKE2b-256 4e364135ad3b9b0730a2d10b5e24ff857601a98cc091f2bf5d3d77ffa064582e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6411e3c43001420a063f85269962f1e3aa2ca9ea344236cfe1da4af6d9fd224
MD5 5f469e76cd5bdd2ff836d8936d404626
BLAKE2b-256 f8ace7e813dc87ad8051b1816360d5b1b6c6788e5d7003a88544ec40fa25685f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc8114fbe5dc5d6916a9fcc52236f04c518719656ca00405b16dc1492c1f1066
MD5 33c92fe2908708a5e56293ae84edadda
BLAKE2b-256 1cfa011cdf0ef557124f1a2a70de675788ee0a1c2c11c1d59f1d50b1ec610b4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9ca96c2d78d4ed566cfa7203d0a186360ea90ca3b829a7e16f8591b9aad202e4
MD5 5c4a167918c2d9c384c34997d570d826
BLAKE2b-256 a8c28b0ffd43d936433aa856a106a225822d314236bcec2a766dd73b02371446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b75b049fefb74143a614deed0a413d8659a3f3a20648b6cc1b06064015d9b1d3
MD5 ea664259312857d7eb6517ebef195bcd
BLAKE2b-256 c1a9cd4dc7a9e0699c7f4e083a5a372f065ddc897886d671b630395a1f27f115

See more details on using hashes here.

File details

Details for the file pydantic_core-0.34.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 067243946437669981599a6f84ad6db6da393475db92c560b2fe307978352eb7
MD5 90ce2162e590cf925b5b3a41d95c697f
BLAKE2b-256 8b7ff038461b39bb84c1c351685d274ef4d50c946f24035a24e93a40462538f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3e86d61d149cb4eb28196947babe3bbbe56ab8c869b2cc0f2e9bfd20341e7406
MD5 82ab204b3d9ae2e8d7e3a8c47c2daee8
BLAKE2b-256 613c295bede80f4df511c8f1b6b80baac6e4d6dc7d9edd587627d488b1e896f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 377e6e4cf6c8974642e82ad555500db677c9dcd8c7bef4f7df9e8c581ae64336
MD5 0629f3df57b12945f3e2283a017bbe69
BLAKE2b-256 ef765af751272ca91f6ca7c38e21af6800333db6f08332aae8001720e071c539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1c84c15fbe8912b6062d12887532550a12177ff24e4051d6ecbe3441da503c1
MD5 8457422acf6cc83913a83044f8e1922d
BLAKE2b-256 2125dfafffdcaf407ebef03178acc351e8552a176fd685d3d1bb9f6ace7c7898

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e88b6309388509eeb8aeef4683b83e848b7c17e73ce850b804d9ff8c379496c
MD5 587204d23771547feca9915fa5c6f8be
BLAKE2b-256 222cf5ac907fede381b07c1bd0f022eb35b3e8bdc752176b55e85472dae20b81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 937fd6c7edb104617306ce405fb70191a2b83a74cb5f9b1746e29a42a20279e0
MD5 8403a9ff157e2bf3085fb97ce9a82c4b
BLAKE2b-256 30a1bbca29e82f02057e01abe1c2438b3cddb4090f3a499ef83359f35070f0ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6dcffcb4d38844dbfa647c666c35de1b3caf2bb1a788cc2c4d1f10c5f4b328ee
MD5 594fd092c059569aff54667b72212140
BLAKE2b-256 2b609aaba5af127160c9b9a1a9030d2029f4c643125e40d3dc3bfa46f4e3f754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3b82bd5db8488c606e8f13fb15d4fa003fac07738c346d519c54d4a85ac41ced
MD5 38b3a3d8e207c1a6c74177192c87b9ce
BLAKE2b-256 64be8de691059ca9f1a6693842b0c9ac5871d5b6c5129cfbeedb54cc2aef08e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 57f4608e91075b73b98a1f5cdd27a75d1bcd0d1cefd8e4e3bb61347d9f968528
MD5 f25893b1eaee66afcd805346355036a2
BLAKE2b-256 6e2d83aacd3a8bd578fbf96f27b066293e96d5351b435da9ebe8f15da6301a14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49e1c8bd29eba10a32c860297da578c683bf6026dcabeb1bffd29e581cf8fd9b
MD5 f1643b968d597f55733182cc72b45b1a
BLAKE2b-256 2565c515ec66c9f7b50702e05479de7c6fef4e0a78cc2d04ffa7cd13612a2c3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48839ed59a4a37eea9da6e261acc88bdef3103fbd9022aca26d8b3181aaaaad4
MD5 8c570a59824088aaa2af5600ae20ef3b
BLAKE2b-256 cbb8854352aaa8e67498c9eb0f63dc37ab8959ebbd537c87684db0c8ef641f58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8029bd07dc673d4a603361f19bd9f15cc19a890ee49bfea07393193d161b5ae1
MD5 e7a4dd578d229e7888c83e461d90d386
BLAKE2b-256 f27a975df5d13bbaea3b23c759ed2187ef1edde8915a66e3ec11994cf574a652

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8c0b4e0425f94486e89d9d9b5121c88f5ee476830e506ac073be5aee6733c7ae
MD5 fe6475567d68e83009da79944ce89db0
BLAKE2b-256 0a2409ec1ae29b35c98061637e8d92fbbbf65ab5e82efaff1a6bc9078b146765

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a2fd9c1d21f26d0e84a9a90f8c5bb6abfe9611eef3b51c641e836000d9ed647f
MD5 110b29652dae1772f3bf8d93c4c43b81
BLAKE2b-256 7aa158f5e768af11c741f89e63f1c876646603901d7ccfd017d83d0576c0df55

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.34.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 2611dc3094e8d1946efbc396bf5640e79611fdc0522a35b3891ff7812a9bdd2e
MD5 53d6b3c17b57c514afbb58bf0abc82a6
BLAKE2b-256 3f9712bc019a102a7aa7c802f505c1f373d84dd73c78a0feff04c2c09f10df5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a738cba670c1614b33eef80d23637cd2a022d2bc2fc88a427cec0a84976902c
MD5 1ab7d68cf234495a5f7bab9205173fb7
BLAKE2b-256 7e6bd24050538202396e9f685f633f03a1e5b2d1adca6f2c08190fa055240b01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aa94e4d77eb43a908031755059497d955de76cc3c63e65f57b42cb3413c213f8
MD5 3cbae94647fe197039918d0cb4db462c
BLAKE2b-256 9050e0737304d6e6773193718a563a4130890faf4be8454f2fed2f6b8f759835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 d5b6e20587942404a3ed812a4d633a3088ea1f90cbf4b51137d87f0ef3c02757
MD5 d791a133929da90e814f7486ebb4a21a
BLAKE2b-256 049cfc98bce97a0b84d0a1098a3cea421733414037c1159458f1a47fa5de66aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 aa7fcd13cb15f6c64277f354465caa7aabb7fbf0bcc11a0af2d280320e9d1405
MD5 7b60e70f571f2db3430b680db5b58de9
BLAKE2b-256 80240f07a8ad4e36181a633410adc234b8d7d1b8f26eef791067df4e1e06bf7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 66ab6efeb40f0eea3e970f313f3035556f7eb95847bbfabfdcfccb33a4e8e3ff
MD5 01b983a3d477759ae12780e25e644365
BLAKE2b-256 5b39c8691f20cd63275b5ad4f0c2266f50e304717f91e5a75ce2062ced5bd69f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 514ffcbfc9f7c05de9a1c6ffdd3a35b6ab6fc36b3a5b1e685c52d1e373c31c9a
MD5 8d136685954097b0914af94bf24ca4c4
BLAKE2b-256 fd1c93931b0f26a2e5f6b384a90714166c57f42ea1e7f7da46eb0f6da4d765c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d59ba34793e7865ec5b79737df262b51a22b5a5af5aa5ca486527197e5089d12
MD5 12f016569fd6c71068b06123587b0976
BLAKE2b-256 8264c9a5b78c47d1a2def10f84e1cc3b0b4ae0af8c2c37bcf00babc8e4f4b983

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f357b07d57d7e6003399dd5b1ceb826f5fec8739a99814dd9a94291f8159cf38
MD5 2d18539bb2d7e09bef823e74aadba4f2
BLAKE2b-256 32dfb9dc93dfaabe6b0b0435806f679e8430eaef3155b26288580eba4e2b949b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b298dbd649935aa05df64d42b9b64aaf7c8c7747d0f61b7fce36506e4d466dca
MD5 8e869a1e59faa7d3a998a2a80b7e312f
BLAKE2b-256 2d66a3157f37f1f28495879437f6b8582ad443dcc91468bf156064fd31006f34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2eb7553290704dbbaa400873dc5f77dae39cb2d30d90a9d54d49e69d857838e8
MD5 eabe5afd1004eb5303b2669e340e445b
BLAKE2b-256 1c9bd4e02072c05bacd74ff304dcb02caefdd5565989f779d25b3bdc4a49649a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 38b71e461624719944ef1893e138e4c26f2912b28b312795c12aea78d0cffa01
MD5 38c6314ae8fb7b3e17dfba34f1286303
BLAKE2b-256 18c8f07c8115930bf923abc3bb9067fa8de3ca84f821dc16a7b1def3c789061a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.34.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ae86036e8fe51806df6d7d3e8b751233f57b410363ce730057e71d0ae50dc8ba
MD5 8b6c7a3e617d4f7bc900a5ba7d98d8d1
BLAKE2b-256 ca942865bedc5cfdfe534021d230328bde858a8c70ef3b1e8e74e90f3e6e159f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0f6775df3dd22de9c4201a14baeb4874cad7ff47ca39044f6c1362b49687cc6c
MD5 6f25bb1d44d235b477c6668f197ce1e0
BLAKE2b-256 87ce871cf5b278946c4d9d7a914dca85d7037fa089a4b66390984b3fec40bb3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 57d8d35ea713541c7933393973b7f1a69ccd57c5ca495a5bbacba56df406e525
MD5 ea604a6af8c5676b4d82db31fe03da14
BLAKE2b-256 8117ffb1869a6d0849699db47628baa6a7ac785248f16f1c506968e1f9bfc958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 5a3d2cc38b84c6ca9c13e0d7529b75bf1414170d2d940439aade84e3b7f7c108
MD5 57e4adc631468baf485e82a4c9b8f960
BLAKE2b-256 4752bfadef7c94e9291aa9c55e8fb62871050f0c424e6417c0a8ac9115b8565a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 3f7b87fd460e1f181c9be0c11f5bfcc75f50598e45ca156706f0689951536c18
MD5 62854d9b0ce15663f0ddd6e3dc9779a5
BLAKE2b-256 c2e8890afb2d7762e6497088a984f76a0833dc2850495c0410300739fddb4314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 af3f4aabdc9a0c9d020a8db1c667be981684e435cf1049e05cd8d3cbf5e73ae3
MD5 8b6c49c6f152a3e1bcd09a6a39a68c9c
BLAKE2b-256 1f7e95dffd7f715baed01aa6fed2bd819593eb0bb5580a6b9af2100545335cc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a9f328175128471166af39c0a650af2ca8a4eec8b374ef51a140d6c363d49fc0
MD5 d46d777ebe35157925f48d607172ed83
BLAKE2b-256 f6382dd8218f10efcf88e358a88957fd2eb8fa32bf0e5416c6e8aa24a0dfd009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a23b990c945fb7991502866e761e78df61d2c0486e1ab6f533a6bf7ce2baeb4
MD5 226ef67dfdfaf3442acf5577e18271d5
BLAKE2b-256 3b56f9294bbea7cd8b767d85ee62dfb0292319fa4e5020ed601798a14309e699

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 510db5317f8c5e6c82cebdf2524bc8d264298569e89f9b96788a3120eb6085db
MD5 cdd49e939649805b9926eae490bf718e
BLAKE2b-256 02b5be1d882fd86c0025703bd65ea4b66b34f402af3f2f188dfd1631d38f52da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d41ced17b4b7e8b412a722fe00a159d01770ce98b08ac25b8a6c5983c2afcb7
MD5 e6e1bd0b994b94a13e95d48bc54568ef
BLAKE2b-256 0c7e8ba5458771bf8e5c2dd6a686a1ea1eabf3907450af3a56269372d3d9e43a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 48f68cf95991dee04319d166787ce8ddc368f7ece1b9556a5f913ff85d120705
MD5 c0fe7d7c9064e879f7feb454ad099978
BLAKE2b-256 e02f734a75ebab2ef51489def80343dca3eda0a62ca55473c0d6f68e4fd71e59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 f7a9f498cb3b3d40c8c6262328b8753daea883b3fa1488fb692ded60638860cd
MD5 16c9b1de137d7b384e22585a51eb2a95
BLAKE2b-256 034f7de253bfe4d803a5af4b6237fa05a4b0eb5c758ef1385c04903e09a2be14

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.34.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 dccd10740ea8d5736575f0e089b37f64a11081041bf563ad314ea659a761babc
MD5 401f13f182540c574727fbae644192d4
BLAKE2b-256 a19e4dd8bc7c95c7e47cc7902afbff933192b55983920263fefc3b74dad37cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b31175834edced44e1d9cdf4484e73182f51951706cf121222b1992f84d9f9a3
MD5 a456d4d24708b8109788f2606120f557
BLAKE2b-256 d3f556baf0c3bf457d97c7f08a2fba5aa22e5ca2564fe4ff204f0daf3e299077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e457541da42e3a5705a5b3dd3c0ea57016238ab234e4b70a85475ee7f55ad752
MD5 1ccfed0223556e7ff7b38300faf9f7f9
BLAKE2b-256 d9fbf041b8be669c5bef32141dd645da45b4e64462f6c6573c70dbf4f87ef1a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 e21c64296383ab3fd3e3ba2837621047833dce57f39c9883615ffba3ee84b58f
MD5 bfdc16818aa985cd6a69eaeef7fafe31
BLAKE2b-256 72bf5dd617ee1425bcd4788ee7abc7749906ee0eb70b77d1c80b85c8fe2afb57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 f4c2bf42bcd5e795ba4480f23b7530538327af21a2ebdd46e65332c4c2e08ddd
MD5 7c3403fb9a4fca3b449f68b35c1082c4
BLAKE2b-256 36be4b5a507a059f40fc70dfee0ae2a05dae8c6ef8b30b1cd5ad4531f7e61880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 2d7a8658ba96f411e302d99a5d1c590642951cdeafce6b76b0e5f56818a79be5
MD5 7df8a3de66499040c5de84ea9182b3c3
BLAKE2b-256 c85e162a82fc063c16122307459ac96ddbb017ccca3fe2453b743c8f6a5d56f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd52da8b54204ecdfda1062c5a6dd5161b8934619da799734c3f663f8727193e
MD5 90ecd26846ca2dfbccd2e5d27bfa3323
BLAKE2b-256 f2f70ac96fdce3ecc379ba3dd1f9634abbb0f3931195a7c1b7ba500dd063eb35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3cf88b7e46d8cfe0c32b259e4b35e6a83d3eef91727abe526ad1eea2ae4e14d9
MD5 2b942bb09e7875ef65b62085cc7758c0
BLAKE2b-256 6839f6959f51282b34b5383920372166b5ce3bc982dbd3379c82ffa855d4c094

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 69bd38b64d4fac7281ae61b75ca7110d7128c6d96d489077c435be2e0646a3a0
MD5 247f28bc3f655dba4762bdc82e188150
BLAKE2b-256 90a1bc7bafeb9fb750236dac385ecfef2f126f6021e76b8ae473f7b7d00219de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c388e6fc4e7f969cbb5c22693177bf5b180e2faa2375497ee4e40c5f29d4acfc
MD5 341e95af4fe774f41a5b9afa58efb57f
BLAKE2b-256 04e6a1aa14668e97fdd04a01ee09ae556bcb1a748bd412729ce94ff7acbb9ba2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 eaa9e012ca5dd02572017c50d7fc2ad2121b6be21d43a9322bb37dcf50ec4b6f
MD5 6a3c18aebbf1e74f91c748c736103c03
BLAKE2b-256 b6d95bd72c95fdc7ba2f634127046a88b319bd1fe0c2936a6ce73c111964051f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e8547df6274b6f40c90c6e8279a92a42da23235173caacfa3a8096bbeb423d9a
MD5 681274966e3bd9cab4ad167cb3f87165
BLAKE2b-256 3407006a4aa6f91056fb6452a2ddd61a9bd9d4f82555a02a6734237dd07e3a2c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.34.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c6d8f9a6a7b8484a28938f391630ca98e87d446736302eee71e22d80cf815905
MD5 4e7104d2f31864437aaf8d4c509f7631
BLAKE2b-256 f6ccb06380b04d970ac40c0dc21e4fd6bdc83153f8c004df2ebb81b94873bd55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e395ce14a8eae1fb6d6d51bdfa17a380e8114dc5cc10259cdb26c287b219c82c
MD5 4b85803b80d3b83c4cdc01c760f90d5d
BLAKE2b-256 498804acc72f5862b5108a626cd76ac83f86d464d3c0a56e6c531fc94fa50fcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7d30e84e3783d790a3c6775ebf1fd4c02caa2d3df1b2df78615c52dff0abbac9
MD5 acf05f4b9d8b344906749e097af7fb24
BLAKE2b-256 066faa61e3f99de1a3583d998b517ad59f7f6f79099ae5437e06aed5d3b32b02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 ec8d30d71e10427337273e1816fc21479b275f3db65bdf658cdbfb326079705f
MD5 dacd59a0248bc3cb7f488a1262d5a15a
BLAKE2b-256 57a9c2bb71d83e2ea967efd4a8050bda42c4c2cd2b76218ee00675c3382436e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 585e0b74d52cc81b18f66d027272954c422b59ce84f8ef67f0284d7aaa63310d
MD5 2434f69c9c976e7b501952282e382455
BLAKE2b-256 f447b6c8fea565b78e0ba1b8e550e516b8173c227343e9ff2cbd15259ac80024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 057ee16dfcde7c47af7a5b62dd60472669b30936e9287b3de08802849dea1621
MD5 70751d5ac0b9708601e17b04bf7b0791
BLAKE2b-256 3ffc2e2909a3e4b5b56a92d4c016875e689a9858667e09482559e3bfbd20bfdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a41ee993445defa769da85095e7ed1b7153ecdfba5bad32470cf795d6802ea88
MD5 bdd1b76d64b91f7129fbf96486c5c06b
BLAKE2b-256 75ae11031912efa1a7bf5085d7e89b19623507b83aca7324766710adb252372a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4271cbfe466a800a8876bb8aa8efd5ad84e0c6893855a39bf91f54c7bf87ffc5
MD5 5de77e2f24ea1c7c5cb98cbbded775c0
BLAKE2b-256 c3a423ee1e483c4b85d7c2b10b8af686af2f852b9441732621be7b318e5e0bd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8fd9da13f77042b128fe1506902a9b29edb06dfe751a789ec7afa243b1bba824
MD5 6b01e508b1871e96a7ff3d6dbf01833f
BLAKE2b-256 13de433c824d1f4d434c4beb12dac7725479a00dc004e5f2abe14c7c58ae712d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 34e179de1f263db20e5a27f9ec658d9df280f389c52d9b31c7df5472f501fdfc
MD5 93be6421ac63d8e30cb55024310dd244
BLAKE2b-256 00d613d7874226cb76ef313fbaa71c3ebc5cb5f889954eaf9abe75e8774d51ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a4b104474a66423376fdeee9f04c6e14a0c409cecf10b61325855498198a26ae
MD5 92e6992523e95be2ae675f9e0e06aef8
BLAKE2b-256 02b20903c1bb8981f8ee58dfeee17ef285098b0affd21f1b519fa8339732c6cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 b3766adcd8554a6d9d3d23e8d9465c8f6ed07db793cf96f7c664ed7baf61dcd7
MD5 ec8529e4b202808e6b18693cf7aba798
BLAKE2b-256 ad13f4386cda97e9d7fff8a0850c2d8204e2ae43146efe8e23aa766edef3273f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.34.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 61638dde23049b5185cc5608511f77360a1d09fe4e8e26863b5c83a7e0dc891d
MD5 a102e7d1d03c94b041247cd949f514cb
BLAKE2b-256 20c785a079d766797cda219cd2890fa5b03c85f96bcb3b91c32a523d2a4432aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0844db7c262e5a6a642e9dafa3a6b22954bc291dada032b09066baba2f69d15b
MD5 a0f5c641778c9e70e5762dfe9b12208c
BLAKE2b-256 d397b3e77a50d39293afc651ea078e86b4544696cd9879585b1d35929a5b27ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f07bca07f01a35cd2827c38adf201fb9caf65228a62741cbe1e999ed17bf624d
MD5 39803fb5216d6fcaa015919b94bb6027
BLAKE2b-256 48a207ba0901a5e534c759b08ef624013b47450b11af6902db4fdb9d588282fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 914f795d65a338417a67696619f6e187e21c29a9c89bb7b7d317e3fff0ce17d4
MD5 49c27eae5e5be8270e7632eae38a5c55
BLAKE2b-256 cca9dbb3a7973075f2e44013f42bfc7ebc373a589aa54c57a786aa61c408e82a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 8d31588518a774a5d8a145355dc69b0d7f6f8b034b39456292668f13ed5f2b09
MD5 b08e91470ec25fae157af6e1d8bbd907
BLAKE2b-256 00e8069527826984411a3d69a3b335c09769b4e0ca5e45ce0491135bc33a8a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8180157da100b46c874632bdb53f1577c5baf16d89993dde25f47fd7acf28945
MD5 5000a208e7bc66133fe1091fc1a8d62c
BLAKE2b-256 77ab9006822a92f5ba7ca9932429df12dbc185a56f13819dfaa09b83c5f90928

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd7c26ded84d25b92af13717d8279c58a68c6370bf58bd2b5aa0f16d29ca8803
MD5 fb98da020f88fc141ca21d899cad5edc
BLAKE2b-256 569a1ff3064817d06eb6c7f69554c7903e4755b74bdcbf26c705f0bb679625b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cc98ee786576b1d1cbb02022d921900979b6190b0534ab454a07500ed77aa62
MD5 03beaa18002244f7fcf8d0d12de8192b
BLAKE2b-256 624c05cdec77bc4f245ebc1e237d7b351c3069c8db6e7dbd6b285ab80171adb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc9cc140f56e4211af5c08bbe8f636e62a65d7638bceefb5d81ea86b0a80e9a0
MD5 bbe09d709a31278e5ba296ffc61812d1
BLAKE2b-256 e72581cae84a863d8a4b2746a8e7fa67f69e5a8239e6e276319a4d20b6aa733e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 90a62f454b15dfbe5547ae74331e7a4c170a91e1ebb2c4cc800386111c1dc862
MD5 d353571ade6fa3e34fbefb62a3b42c23
BLAKE2b-256 e93c3e15d494856586561c2b400d74a40f5cce3d87d284ff482b27661e4a2931

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.34.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f9619cc6f6e6ca691eb3eb0189f378d7a122f0eb05bda87d80ecfb4682984ee1
MD5 d1f07b1b049e2d8fc4bdc61a1f677885
BLAKE2b-256 01f0d46cb6308a539415d4dafd66aac882706103a0536363578c2789a4063497

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