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.24.0.tar.gz (273.4 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.24.0-pp39-pypy39_pp73-win_amd64.whl (1.4 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-0.24.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.24.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.24.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.24.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.24.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.24.0-pp38-pypy38_pp73-win_amd64.whl (1.4 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-0.24.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.24.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.24.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.24.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.24.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.24.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.24.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.24.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.24.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.24.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.24.0-cp311-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-0.24.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.24.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.24.0-cp311-cp311-manylinux_2_24_s390x.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

pydantic_core-0.24.0-cp311-cp311-manylinux_2_24_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-0.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-0.24.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.24.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.24.0-cp310-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-0.24.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.24.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.24.0-cp310-cp310-manylinux_2_24_s390x.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

pydantic_core-0.24.0-cp310-cp310-manylinux_2_24_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-0.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-0.24.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.24.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.24.0-cp39-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-0.24.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.24.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.24.0-cp39-cp39-manylinux_2_24_s390x.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

pydantic_core-0.24.0-cp39-cp39-manylinux_2_24_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-0.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-0.24.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.24.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.24.0-cp38-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-0.24.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.24.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-0.24.0-cp38-cp38-manylinux_2_24_s390x.whl (2.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.24.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-0.24.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-0.24.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.24.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.24.0-cp37-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-0.24.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.24.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-0.24.0-cp37-cp37m-manylinux_2_24_s390x.whl (2.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.24.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-0.24.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-0.24.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.24.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.24.0.tar.gz.

File metadata

  • Download URL: pydantic_core-0.24.0.tar.gz
  • Upload date:
  • Size: 273.4 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.24.0.tar.gz
Algorithm Hash digest
SHA256 3e8bf4dd75743f9278fdf7807ecbdcf353d36c97f569fc4db435b0337d5c5d55
MD5 ba0d23145f080f78870f39de6b25fd37
BLAKE2b-256 b400519e8040ffc78d3478deb2857e994a75e5621959d8b8bd8a35c65032eff7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f70e2174ec336ddb1e147b5d45614601e1e44cda3240d50eebc01ff8de44f1a5
MD5 370b35739467a6ba31ec6d50541bf576
BLAKE2b-256 853e28c0e9502bb389b3787f87ac425292b34e0f067f8e6a93d75f4dd5b7b155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9c33fc4dc78de2c030c9ddfc206dcfe670fb73ac2333dbc0cbbfaed41791f14e
MD5 1cc07f55a489f99df69c0f0f9b952e27
BLAKE2b-256 3b22fb32aaade72e08c895ecb575f09673c0f1c83d429edd897be270cf0d6754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eb4c88a119770e421978d8c51c771d294a6a5dae9d787a20dc74f9edfbb0ce14
MD5 6024eac930da324d3579bab3274d5131
BLAKE2b-256 76e6f8cce2fc4cc996e3ea90f6f803438220fa13474fd997cb4e3b75a78f7bf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bcb6663d42a8c8f6e7495969ceee76e64e7fca2726e1a24bff77267ebf557957
MD5 4d583d0dc0a9b416a6240abd4429e9da
BLAKE2b-256 43220c37bad0368c6884f21b12f7b1f2f6dc55caa28e355a7888368960135736

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eba9c9930640a91953596790cc3fd7b7dcb0ee395fe58ed1f062dc8b1fa179ba
MD5 3b56871f3f67f8c4023f99dec2737703
BLAKE2b-256 fa3e73c43e2ba2cb5168b07f4042fb46058df91439db2f1870672c1a1ff394d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d46336bf5e07c32d05ae0d4bf3831e465fa1e4e5a2497550ef6e12b9d3b4749a
MD5 f052d6db7034529b6c5a22622150f67e
BLAKE2b-256 e8dfa35893938f725e8aeaa769598ec2306791c4313168a88af379f1c6444930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 51738c96f25450c61509a52502310869714985df16817fb8d4473ab715687e85
MD5 6cae466c7cd5590c338c52eae9333326
BLAKE2b-256 72e77efd1255dc1a5a7d843032216fd366497cf9bf944f65fc961a88a7d4c1f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 59655f04dbc9e4483d028941e2b50d76791b1ec9546efeefe4bcdab75d1674e6
MD5 10c9152381809d6dac82cd410577e8f8
BLAKE2b-256 ee3225fc0c39619d2ee38616fcd95bb8a1f8d3c0f750a1108f62355350cbd035

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a8ef7991ee6aafdd68dd43af7f4b617c6995dace3eaacdbce2dd95209f4a7f2
MD5 9fb5d1ab8d21ad7d5aa67d5431c3d1fe
BLAKE2b-256 61f5dd9ad1911641907d630b195c112844b93551ba166c3ac01228671c56196b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b46bc8098c74f4142e6092d3da001b3f237dbe665f0a6a3a8a21670892dc1f61
MD5 855efa0270c9eefac82d1f6efacb2e90
BLAKE2b-256 687ad3c76888a0f723083152211f4a99ffbb598a55e38e76102b06a4fce8a2dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c36a11db5c5172ef05fadb31a25cb29eb96c5a546fe7db3ccd7424da7035e22c
MD5 b889c4dd6ebd28f20a823403bfd81c04
BLAKE2b-256 a0068d93d7f9bcd6020421bea377886febd357fb48e7dc8c6a19b065303bd251

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4f736f417894dad3bad41eb734ed980bc115df580f51fa78608d92253fe20cd
MD5 d17b5a0f9158c0c1b9e71449a946d00c
BLAKE2b-256 b6945d85e97724f3df23f03e978e9ac3cf1cdc2287a5a7db32d594aae0f53270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de4b2ff6e9f79923ee31f4383166fd87de0905869f6f74ab4522828c0482c57f
MD5 2aeab240fffa3eb94b5d6c3af7a6511e
BLAKE2b-256 42a98e541fa52b057a7f0a40b2cef3aa494751dfa67f33edd694395cc0e30f10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 24e9d96d672a504c84ad676eb3c99c9c89e81517d5d5bc49d405277da029266e
MD5 6796384d441c9a9b7aabe0d8ccf3329d
BLAKE2b-256 a6677427fce24e42cece0cb5d1670a57a1114d2418d4a3e1a6c136138a60ada2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 db647313eba348d8ad9e0a159d2fcfcf869bb7ca7fe3bdd346c0a372baf2744b
MD5 34d80a75ae1563bfde2cc2bd8e1261fc
BLAKE2b-256 949a92bf93694067251feeb3d9a0a6cba963e27c9ac0d51ae132bb6f5214e534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 96f0880333ead0b916417108823da82dc8b6522ec97a5588d83fcd1407cea27f
MD5 98b740de4dac073dcefecfa78ef4e056
BLAKE2b-256 a2701bed9b9078fdb251e6fc0d91e475a336fe40640a47f6bc2d782bddb36ca6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aabb5277a3cf7a47d7f5d03a216c3cf1cdd05cb8747e8da9173136bedb5b9572
MD5 e0cfba1ea0738bdf776f826a434b05b8
BLAKE2b-256 8f08bfa8b8f5eb1f4cc3a94e6af2cc4b9af6d0fe5a4218e8309a04298e8619b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8e7e39533968fad49f28f5d5544d4fd004934a6eb067d501172577a98a789c2b
MD5 49520060f21522dfc800c00418f3ff24
BLAKE2b-256 9a29164a5fe02017df7c1737b53fcbc81dacfbea73a647a297dc70e1f94b3a8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 263b05fa1d8270dd416b60685f2ee6a68272cb3b6f24dd5358aa25dc571afe43
MD5 3db74e7638fbda1260a147e39fdf7917
BLAKE2b-256 3e6129a133cde1ab0e813924f5f6a51986fe3c9b10533949f6f8935c71390d84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 78f692edd9f263b507eae4ceec2883f18679e3b2e14314b5d34f40d9a26e6427
MD5 cb5a466555fea63c58c6132e9e0a3ceb
BLAKE2b-256 d7481ae0ad3806123d0f0bd90e570c47a3969663bf67ce183936608ac560e2ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 d44a1685018032e39b6ea435952037de145acafa89fd25f7fb5527eb911271d3
MD5 85556d092d23510fa10dd21e19fd9ca5
BLAKE2b-256 98acb3a47c0b26c2a72785fffc4d7399d50cb80087b13a3d49c91a39489a1d09

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.24.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.24.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 29c3f3ab9ccd2f85b3c2e727a3b0074f69d1472410771a14ea195dec2d741b5d
MD5 37683123c66fc05574bf61a6cfb5dc50
BLAKE2b-256 1078d42e225b955fb57c4ecce13dc1c223c47b11039f4fb770eafe4827d24cf0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f92398a7d3f96edd3f4b8c47f119ddf55c4b1dd843009a1c4b1908df2508cb91
MD5 dc1cdc9f0547452bdba29c16331da4cc
BLAKE2b-256 f4c9957d43cf8e2f882bf026521410504ee0fa6d5bd20ddf22b54a23ba08628a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 10f498df7f7560e9e1c21166a5531561a5390b152fdba33637db0eda59d1a7a6
MD5 3f138cbc8afbd50ee5e54d226f7b1d00
BLAKE2b-256 9af709ba76e6cd03a432da7e8733a35527296b7d839b16927f64e73818abc4c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 06814bc155dfc6b06f9ce80654ebbd78825c373a0a5e18e7ec349996f75510ee
MD5 0f1b7a1ba1ee0fe34e833600a3d4af87
BLAKE2b-256 3553b907b8c4df0eeb97eeb1e04ea37e0cc24b2841e64a40d82f7138a408c9a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c8defcf6fb69db091bde49f2fad977ce4a8587b93784266ba501f30bdd2d2e19
MD5 bc2488ce3a364ae358a992af31e8f998
BLAKE2b-256 eaf1e34c00fd89760fe2fba081e1a6313bb4f04cc743693d46e769a96482f95a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 64f3bb3aaa7082d6401067c2456f3fba9540b66a9a2d66dc80908aebe875ed2b
MD5 b9e305f95216f41044a1da0e9136176d
BLAKE2b-256 97f14fa34d12a2eb37a1d04a3f330a5fcf51ecfff81631632e34bcab31131c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d2024172b8dda01088af4667a2e22134ba2d4125db1534a5e38faeb397103717
MD5 245ea846f68feebdcc9b5a75eef3fe17
BLAKE2b-256 c7cdef02113ad35b7c419decffd07624f5346dde27c8c6752f05c38509b41c32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6964646a15441371754327544b1688bedfc7a11f9dfa0f660f34cf9a8d95157c
MD5 2fff173fa4c6dfee7fb96fc926049fcf
BLAKE2b-256 7f60ba724631eb44630aba8d48611825ad5ce1f1f2b7f85a228c90c5bcdf499d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0b7f60af053dee04a505d65124ac8e279df5f4a9d5eedf66004b501a780c1beb
MD5 ab0fe196a2d22027eb22f34a8c8463c0
BLAKE2b-256 d5a3eada146a48437714240b1186e86ba6ce343737b3b66a7b2212fc2379c362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b532fa356e2f81b271267a1aa07cb281b0b288e96ddb5229ec8273d45ae01731
MD5 3eadb03dd0b204310ae00003eae023ee
BLAKE2b-256 3777d5bb96d3a6819b00f5f68cc61d5385985cfb23129697113469ccd005aef3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e692b479452968bf436fb1690fe1da5d78dfaf14b5bc87122875306b688fe992
MD5 f6704b99f8f036f82d3810261648abe0
BLAKE2b-256 6a66f91f92532e30a4516b4d6f5723adf2e1540e22835a25199cc7faff5d401d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7e3698feffe89ae345b2464648c920243873e3cc3818dc91d2fa3aa24f43a7cc
MD5 7c177ec52af4ace328de20293bb49f2a
BLAKE2b-256 c2ddf25a2304a07631090e3ead4af2e1d4bd3ca571139a9bbe51d53faace2b82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.24.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.24.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 744332e15e2c3c6c2803f4d8e6ed2eaabc06f30c883fbf13e3a1258fbd43e1f8
MD5 e135697e58f2c2f259ebfc734ef3e747
BLAKE2b-256 6fe80002edcdd02d46d05f339dff326812761dc7664b92a1334f6f249554d5c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4e6840c7d0a1f4f2b848c2818b828304ac55fad4d94f410689b4c505a2ac5860
MD5 76593e1fd0a409181aa5d126f590b8c2
BLAKE2b-256 09ccec1ec87c86e22ae76141053e2a7afd7d3c853d7b9c4a5c87df4d6a7422e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8db825c713f65f8939084ef2ee622e103e7dc9467bf5580fe2ca6134cfb60b5e
MD5 a059a637a4b9ccd7fc555ac3a313d7fd
BLAKE2b-256 c1a9922903bfbc48aa8e4c392ccd9cd22284427a5d66e2e9355a0a98290b8c8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 787b4506a2e9aefa561b738f6016d97491a44b65f15c4669039616103d5b6a01
MD5 35f50bd61616abfcc9fe494bb4e59687
BLAKE2b-256 8ad1b351a32bb561574497674797dd7fb072401dd149cd7074ab6c9c38e24f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 62ca35180ec40e8a766ac73bc4770b4fc36768c8a02f3552c3f0def1ba4aee5e
MD5 c8607358c8acb7c2fc3f2340e11d1cbc
BLAKE2b-256 9d6d46dc5de94b22eb2e45feed14f027510f7368aba50076c06792c1ceef12d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 9a9b4ec768e383b04716a3634246146e158c71eac9604cd3e68cae9d7535f851
MD5 b09c640d4bcae853fdf76961973a6cc1
BLAKE2b-256 b53214804999dd546505c28fade27f21ba93902ea72e824670adc68092bd44b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f1ae99e802870c8bf7a639e9bbb0f1cfa74b6cf217d98ee3338803f197566f4e
MD5 fa2eb9d4b86e57641752e7b19936097a
BLAKE2b-256 3c8a65b36bab2756587b75fd19a371c02075fa6084a54f50e79184bd3c5b32e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b40ccdfada06d946bb31edbb8a3ffc1ef3c753b6644f2fe75d567ffd6903419
MD5 7612e100d275a588fc71cd55f91d386e
BLAKE2b-256 f8d13d4fad00ec2fbcef97e9e8a69d532546d54a32e15ab891173980ee3fad16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 be5c9b0b2647a0efa2dee66a547a2c9155bbb68973a535cfe796e23435cf3e0d
MD5 85515261e4867ab72fa227d7a6668098
BLAKE2b-256 8736628326368914bf2f50981fd4f2a57100b07e9db2e397bb640c5c2cd2441d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3d6749644bd013f630bb739319ffb54a4796f06f1f07e1f45df7f731ab14e6f4
MD5 679212606862f9638f75d054621841ae
BLAKE2b-256 44efa62d514b1f0464bb8fc12d18e5173d0921805c3227a580eb27f5677f47ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e11f04e8da350a85a6c558c9495831398c990d114edd43d7ce785ca5650e3a55
MD5 3597b0cc13440da8179b112a33d04cf0
BLAKE2b-256 a815d1ecd980f5d781b04a255b0be56ab9905f446fe41dcb501c71a22836d937

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 2cad102c2d0b8f9b072472e749d91aa38fa4c5d8fdd69dbb6d5f49e47aac952c
MD5 6267e8cd228eba31618d8384b5ffdeaf
BLAKE2b-256 a49388770eb02d69ea0d9dbb57d1923e525455c0ea5645f151f25973998d0721

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.24.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.24.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a23574789e6161abf311a6aacfce388416c2c26a9d091a8a1f511bc784b5b31e
MD5 b4712a6ce322d98f891f126e7564e5bc
BLAKE2b-256 f03b420afeee5af4e3e28ac260ae56c6f0479139c86fcd5a974f0e033c269d03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 526f440b94ce0d01febfd8a5089cc1216504ac157a63cf07a53de1ce30f590a1
MD5 c08715cef9a52fb81930bc22b31c3f8c
BLAKE2b-256 cd49f925d29f8e9abd4e86d4ca6c79eeef1769cf60f41bef58e0bd03d6a8f6c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4bd824963ebc2e6b25a1c8832639026f0865d7fac1c899448af32585c750a4ff
MD5 4a8c6badd41cb523a00a24f1c4dfc571
BLAKE2b-256 e454910b8cbfa1046043b3d27ae16cbb6aaa32920b60d0de83d355851de7c8b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 7d625ccfeb782c5e5e2aaa4330a561de144996cb4fea7f9c58512f81c244099e
MD5 6fce52b84551a3e82090ae6c7c224bd5
BLAKE2b-256 4e7f7954d515b9fb3482693c907958ef9930b683ee2f20f028228fdb34f45b4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 4e3082e14258a21c2c3ca0b95368d55c3f583815ea0b4f9b6bb973beae451864
MD5 4528d5835a0d6b66585c4150e85474db
BLAKE2b-256 b49d092cf0f04d38bc83c5ac28d5c09745db179d6ce28b3a936bd61c58e2c1c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 4094d061454d2bf86fae3281686848bb795ace7b97d17d67dbd06a0def9a6bf3
MD5 4107bf827df1d1cc158c880a86d3fb6c
BLAKE2b-256 8266dcc681a91921d40efcb60f1c96a216b3050507d387f1c1f8ffdfb54f81b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef08e9e716364f4719dee959a8b8490a79fd3068dc50d7a131d927ca814fbfc8
MD5 27027c495f13b1c4ba7b3970878b711a
BLAKE2b-256 30238fdf30ce79601e91e9e4bb2940b3b77866f711d563861073e7225821aa3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d10998ff1a0ffa3ebc9310afc321ce9d670f67d54463bfedf481793a7496756
MD5 3be232b4016a244af98ab71e73a8d2bb
BLAKE2b-256 18ed01e36e2cfa878f333ce8ba627b39f44ff17096c5258f10298a270cbf460b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 146a46924e8ba91c85b1afe6503152056df085a5177c999abf0492f1b7dc4de7
MD5 ceab93ccb85700050815d3d5823d184d
BLAKE2b-256 ac14c3999e4cd53d3303c7a5a3618597eb9672e669b7610572030d8cdc7e868c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d38d08c50946ae4c48c135f8aa4728cccfbfb1f9a06542ff5bc28cb6ceaad290
MD5 0f0db994f1dc8dc01d233bb01561ae2b
BLAKE2b-256 2fed6f824eb1aefc989fe39d84ba27f2b2d1eb1ce797834082881564b84993bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9006f47638c714680640d45e0cbcbb1595fa7c7a439e7bc022de75acb30d5571
MD5 cb3afcbc2981e458f1cd2e3491a8035d
BLAKE2b-256 9f4f8968c7eda39c3bbadd7be6d89e670d579155afe375a3a1a3a126b7b2d7b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 b6415b40cfb0f6f279a71b733450b64c5b025c52b6be677d6b9e479836a1e29a
MD5 ac354adc4d6cd178f03bbe0f78e1c4d2
BLAKE2b-256 3af121a62b7e11b7a3c6738ca51c19d372b6fde627a37c0c1ec026c496d87847

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.24.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.24.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 b4f15c791d084a275b3a877d5471081a3eb03fe4a1e268854380ef7c18aa9c1c
MD5 15246b6845c0d2782a5a7e3ac72ed6ef
BLAKE2b-256 af3cb7f6ae20ff2bee89a33a6a6fb774893fcc1102db8f52879888ec34984533

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7f94c21564fb3b1e62eba2fc238664f5edd1beddf69d889aa9332b0e2546ddc6
MD5 4db9555c5fdc149c141d3f01b89cadf6
BLAKE2b-256 b86b7a7e4e0b5c331a1416320e99e454f3ba51fba2f85af011fce15efd6bf45a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e6abf4f08d1dcead8ac4258a665aa7863037a6b30330fe7257474d1a8ed2ffb3
MD5 429a22195091f6fdac1b9bffd18fed84
BLAKE2b-256 b4567163561aa7dc89ffc62548453fcf59d0d231286c2398ea63e7f2f0fe2a2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 edab353f5c072cbe28c7d859dc372b9720d6cc01894dc3fa95a5d7a970b90758
MD5 99a127fde7c2c9b94b7fd7f02917dabe
BLAKE2b-256 700dbc29ec2ca7aa7e1ff4d038fbb7dd3e289d5db75ffc1450ce87fc96f42ea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 07caca20769a4cbedac45e9521e0532f502cebc94c805564c861c641dccdb18d
MD5 3438c6d3fd71d39f346d56d18bc51379
BLAKE2b-256 e5e4b183820ea767f2b08c11bffd42cd9109aca4c7506f3149619df341e66e55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 e2f918ce9d2b3d8481afcceb01483639b06d102be238a4b7be3fd0b364e9913d
MD5 4b54a1a8d663fccfe7ccc14681c7fffd
BLAKE2b-256 e3805f7ed00e5c5fdffe0de29079ea96aa554ea89a8aafb882113468f512ec5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 341ea0b451fe3738b9ffb3f45e34de2135a2ec2c983c4c7cf8c366ab8757b71a
MD5 b6dd9e1ee26d66e8432aa52b7feb216d
BLAKE2b-256 0b77469b93f205ef34f6632472b7f28b23fcabd21c709a3e9775f2b43c40dd2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 05ee4d3feb2b33d7bb1ea75b820277d570341a617e25ce4af2b96091acce16e7
MD5 381ac99f52c3118b41deafc023a3c855
BLAKE2b-256 c26b294d7c4f25e914964f9a61b20bcab1f13abcd1f72cb1e0ae90081a1f424f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 66cc60f2b281441c581f6f8b6ce5eddc4e3e19b1008a8fdae7c15e68fadc6e70
MD5 3f0e185b054124d2f8fb123192d25a53
BLAKE2b-256 f17fe4f645c46bd10bc6c4d6287bdf5e57bbc4f52674202c09a5dddc8e3b2fbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70de22397bb6f58a12289930be9c124ebcc6959a47125e75b33f1923f824197e
MD5 f53f311473e654f8fc208d02d96aff8c
BLAKE2b-256 4bae4d6d77a8508aa29eb8c1dccf693337337aaf74c6ab091b7e032d9cd2cdb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2f46b714b5d353b9500eddd639540ab8f55834cee9fb8cffde9bd3929713e4ad
MD5 5dc8633b998957124ed22754d895594d
BLAKE2b-256 dff98237859ec7a9bdc5215cde862f096990cf4d16ff706b7452b4ec0786fffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 59c9893c70cf11d663c51ab94e5cef12b5573c0aa676e2f240c5861978c37acf
MD5 8df11e79b77a1297e47acbb6850258a2
BLAKE2b-256 22b9ef8c9365218c97b929f6709fae7389ab029d179aa0f18991dcc63783d571

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.24.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.24.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 cbb8eff73333b2acf0f92667274aed236866c1b5a209289a46894902103f43d1
MD5 24dced01f2c619a0da4f45d929572a4e
BLAKE2b-256 4ca7f32ef8ca84338731736cee88432cfd0e20afde7ee6d547fcc3db28e5c849

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 45bb4c0131ce4302b99b7fcc6fb17e2f5a4d40447db6220222323dd17eec2926
MD5 8fa72c2fe7e3bf3c6fdbdc406c1c5f62
BLAKE2b-256 1a76140f984fb1330651aa712051c8aaf26dea533b4be8bdb2ccbe4bc52b2854

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 15ad7d0b58f75d0e5826785dbc3ff59178e62ecd5a276533db63fc4fbbea7121
MD5 cb94a51f33ff88e93ed4b5a811da485c
BLAKE2b-256 5c7ef76cddd4428d3ac57a091d5e6304f0010609ddb1af9a16580cd35eaf5edd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 0ee582be823c6c2cf1d1a77741c3be616674a7ebec922b186f5aa704e376e83d
MD5 f1570b89b2a625cc1e8eb4044395a9e6
BLAKE2b-256 27261f6914df0e5d902904e3e9925a4e478185cbe0baeb01d43f558b7c067d2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 6ac22bc3e91a5a9c37f7d4e08b2f70b36f3e1ba3e8952cb52dece2608a375c5e
MD5 09a2df991fae62db99b2befff15a60b9
BLAKE2b-256 481269fc26c8435dd8dca54445f28762a430a5fbb2ecad267dce5a7b53d14adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 eb9f98cb6d7a98a1c20cda22b336bf8403a0de024c86822554e252a78b3adda4
MD5 268c6825f09d32196da3fb477af1c2e8
BLAKE2b-256 66922e513c177ed2beb94640b255457cdf9c3bf6b13793ea8cae5ae6a2d82e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6361dcc006399f7af5078cc5e2b0402a43784d0001aa7e5053021e6d9fbf150
MD5 3ac37a260a3b2f70d6ac1500ad6b9369
BLAKE2b-256 b53fa2256c7f91a9979032cc1c2b012d1583efb1a6364fbf5e2ddb749cf2c44d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 476d302def12c645af0958a998cc7864f5639a69e01aa4372e78e2c4f35ce3e4
MD5 efbfb7cd946f65d15df34504bea500c5
BLAKE2b-256 6a682157c81205e79e71cc24142442f0fc6eb1619bee65cb6012e4fa4e1a877a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f829c8c1cb66bf9e151ac8d8dd04d61c6c8eb27521b5609858b9800c77c3200f
MD5 5f970d3b90cafa034ef56b48f2ecdb57
BLAKE2b-256 23d7c7ce98af4372cd7e02e029137300ea009210ad5f40e238496d42f8dbccb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b4f19d6174779e9fbe11acc599dbf3d36222d04bbdd52dc92f5d62f2a73d0b6
MD5 a29438ea285b2f7ecd56624f6fabea46
BLAKE2b-256 95444b8e3486c007ddfc4e86e3b32e088a03bc66779500e120763f6065dee873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 98bcd712e735c75c2a10e60500081d44b23f9f330cff2e6a26c03a19d710b77e
MD5 df95c58903ff594a7886e01e39d3ff6c
BLAKE2b-256 64d4caf278867c2a56e27a0fc4cdce93ab024234160d5ee6c2a5abab20943e51

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