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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

pydantic_core-0.24.1-cp38-cp38-manylinux_2_24_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

pydantic_core-0.24.1-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.24.1-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.1.tar.gz.

File metadata

  • Download URL: pydantic_core-0.24.1.tar.gz
  • Upload date:
  • Size: 274.3 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.1.tar.gz
Algorithm Hash digest
SHA256 788259d35ec19f6890103bccbd7831ce9576af8b2890138ea055c13acdaf8b27
MD5 49fde7bc474b92099e4c9b4f773aea79
BLAKE2b-256 64bfa151b17f5d9930706f21063efe0c9e2c6f40bdd8875eb8108b729b3f52df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 01a02ae5a895f9918711b74d89c82bb5af2f3ed63934c7f6794ed372da08a072
MD5 cf7680e00eb8ec6fc1a9782e05a5be8f
BLAKE2b-256 5b1005838eec7f57f29c253f9b1a15c388d3071f27da8e1a194c71705f1b060e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a4f96cb8bdf2553a48d1553f76b368eb69f9cd97390c28affe1f732fdd981ec8
MD5 107e2e08f13bb7fe56cfded1ade071ef
BLAKE2b-256 19c8ffb52320dd9fa3f0dc8392f8a1a6acb7b83685d079c4f5155a30fb91302f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 06cb561624f1959d7ad5ba75a22cef04bc1102e745f75f708c737574542e7065
MD5 29242c345c023cec30f2075ee67df7d8
BLAKE2b-256 9ea265f37eabc15c05e1c3fc8389d112b652610d7f1f40e314c6001795090cf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8a0b96f285cc035d0d629ad4ae75897f7b7dee1bd3360fdf5e381d1cc7ff9b51
MD5 c51b7715a9462679fc5507d452c7951a
BLAKE2b-256 75be770d4e3775a806076890f84ab1f197a5bc289e6b285c3c2b66bbd4e5c4bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5bbb559bea82d234c427e70a636837a3ba76557fae3d4087a22d13c1d1226b10
MD5 cd50cecc1bea647d6333a1daf273f123
BLAKE2b-256 a710da5563aa3df24a79cd21b4efdf084f6cef6e745959166852874656165a9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fe7fa915628dbe5d32b3bcb4fc01b99cff7f95392b1031ff11db33a71a6ebeb0
MD5 15216d8d442202173cecc20c5f7201e6
BLAKE2b-256 f5db4f3b4b2a4cf00acd0f1166525bc4bf905e6f1b975848897b7c63670b799c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b918363cae4df51a61282d34ad5e0b51777d888d7466a386092a1a4532cb99f6
MD5 9716a5dfbe87646f80ea03a8dcb58fbc
BLAKE2b-256 d238bb42fe97760e28a0079ee8ef5e02167d5f9c0a1bf0d48c00bbf742a331e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 95d7d165eee0342eae453c8f7c35a7bf9a8d206b7ff346435cb2266111aada8b
MD5 a16c6f76d535b95c3bfa6e4d5f372e89
BLAKE2b-256 10eb6af352af0ec4bd6e3a9994f36f3730dd233b5f50f09bad236d121d3d22d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5d4abea69d11a90ff522faa676dd9f2e062fdf7af327581b99ee01ed2b7c6d74
MD5 45da448528a1a8267a796a7123880d29
BLAKE2b-256 2672cae20fdec5b01466421ccd65f3232f6a7b6ded5265d102eb253a720975f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 61c644fd8f0733318a48b02cddd34b1405002448ebc44bef2b43f36229d76679
MD5 c7e3da31a3655aca45cb6ebada7a582e
BLAKE2b-256 8f35950a5f556183c657ede3e511be1e894b48743c99ffc1e84e7eb9ac02731b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1954445825c09ccfae034b28179724548b7a0a819c3bf8e2f21d2ced7ec42e2b
MD5 e1132beb434d430a8a5c43869639e961
BLAKE2b-256 e710a79a4e9faa5f4d0cac2aa5071d312ca09797155fd181d2757b50ed0310a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 187eef29373aae000552686c2712a9654229a9ea0bae4a56a0bf3a608a1a44fb
MD5 62025d0e004e03b5db496a8022479561
BLAKE2b-256 76a5d45a9e21e48e212eec63406f3c203540ecae256a094103830157abecc197

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 49a2fc817051207be8a0b024b1abf5ca4d352ccacd9e0e69ea52be0aebe39d39
MD5 c7ff0cf16e5dfcd48e82ac99b0efbd09
BLAKE2b-256 d5e3d5d3748cd241f3b51c8bb03530daa38183853b2dc961bbf93c427f2e2563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d2a944dd55dcdfbdc835d605bdb8a1d0f80c1def9a6cc057e2ab5a419c1cc432
MD5 473f6cbe09a172d1621a11ffd65a6fef
BLAKE2b-256 8362d58c02f967a53349921f019d8467992d8f479897a0a879096dc413a3a644

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 768d8305528f907a714288865dd51969a8f8cc502b4d4643ceb2916329bb1c03
MD5 901a6801e84b7fd7ad986f22d9e554c7
BLAKE2b-256 36d9c604605db41722306b2a18b7b2c70f8d6a164c4c3941b95174219d51a8b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bc171086e6291d97a97fdf53f3661d14f3b1f94dd17292b1f0261100d66800e7
MD5 df4eb0031abccde12311482ff011cffb
BLAKE2b-256 52e8253da28f6393f742971a894c7a6b96152bf18a1823ec79e36cf416c01c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d45d73d1f6ab7616f3389a169548178828c339c52e58e7fe536f804f6e4e881
MD5 6ff26eb273b85163df1b482ad45c9f4d
BLAKE2b-256 9b17841b2bee3a689446d25b10fa76b642e3dd07595b3659726be1bc21e88233

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 00c0661ca6651ad0f3e2707dea29dda7ecf5b90d537a57393d17c919d009625d
MD5 76704e084b3bbc313473eca36734e0d9
BLAKE2b-256 ecc82ccb3e49a6d5ae69227bcae74d02327919023fe1d41f2e2d49a921d3e0c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ee6a27bce4b43161cb1360375c8d910227f89b528f20dba981269b9103eac2b
MD5 41a54b3f31170ca18ad31519af212476
BLAKE2b-256 e4b459ed22e60fbdbbe00b818eb33baa7f20bf3cd12242d29fe5efbb3e4b5869

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 24e9c0b542cc4640cb7c1a08e0782c5896dd4efc7caf1230c311de091d33d5a7
MD5 e25dc4a08b067ff98de1c2ea07f20ef6
BLAKE2b-256 3da7fa35debe5b9d4338962ee9da0ac32e7103b219b2d28974b4b41354b6dc20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5e1aadaa57724ff6e2e7cbd5912ddaeb5408a8655f197318cf82c1a2bca7e84e
MD5 228f471e6f4d9a043cba3d475fb07005
BLAKE2b-256 6f1973069d3da7b8bd07d7a5e90502f4496c1c181cce681cbe72264fb326e960

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.24.1-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.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 0b3bdacfe93b1853b1b7d47b4850bac29d36801f4e76b233507cfdb16421669e
MD5 f834726673ba58fefa4cede87e5c0cd2
BLAKE2b-256 9b2bdd2e33b943137c1e1b75b86c2695593a484a3c7fb8872bc5f9bd06b068e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 79b51448010a30c03d97e586ea751787f71510dc8c4b4b5aa05080a672c80a1a
MD5 a4a55da342b06644ffe8350be66692b5
BLAKE2b-256 c26bb4d7883a70739143fac12c09e8c58da61a72b1d22dcf397103e40b193cee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5772168cd0c8e75382c656e2525b9f33ec3595c8889ce3e23769343981ffe76c
MD5 0dbeec8c21076ea18ebf73e86a643480
BLAKE2b-256 294d46091376f62db4562ae7cb9c073af7ef81e6b91bbe0e6bc13ca09a0e545b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 98393dc57d3d47e62e5d7a0c1f852b7535a613a954e595194c99f4f76c364fef
MD5 77273cf976204de63bfb68078f5ce44b
BLAKE2b-256 be581bb29f07b24ba7dab381a3dc62dc02b4dcbceeb7eb4804b367bf7f687219

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 ac9dda6c2ffbb6ec26e0a9894606890fcf0849e3e73cf8295b9f854dca12941b
MD5 ec85832c9ff4d4c8a4a216660d721b08
BLAKE2b-256 0ddc93a0b96fcc3413be4163418e81c9c107f201b61b4dc0ce8703883182f82f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 cf7faa419614e0cb148bb8a4652a4a0eff9d0b638ccd62dd3fd96f1e9e13c12c
MD5 bfc5671c6bfa4fe67a5a8004a0def804
BLAKE2b-256 afa26cfbcb3ba6bd9192cf7244630b77a4a81e77dd68c75d7b3a7881a96dd375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9214cff3a004d44de982bdbb7efaffbb989b433d597d78c49de3f10e819c095
MD5 f1f36e3ee300ec00ee6a2ed5bf422296
BLAKE2b-256 eafb7744530f1192f6136ac8eefe39c601d8b78c5f6219f8b19485f5efc122b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72c19c851896acf870341037bd6f6b094b3531e7de0138da3fcb31cdc8000ba1
MD5 717b2d80f4e88c1188fc3f4e6c2c5015
BLAKE2b-256 10dae428bf6f8b4bd9bd563dd104e18bbf62e78f75011481051490be41f8b19e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 998927e2f59ed677a0e0bdbe37d2da32ab05d266ed2f62e53d511c2a244e6a97
MD5 e477127f0df55457e549b3f878bc7005
BLAKE2b-256 069c7f326840d5b3ba48be4c66e29c9b48b5f8a9c27c0c3781e5101ae1386e50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05e5cbeebf50bf94f258fcaf2b01176dcc84e168f6a6e30549ab859233f83a17
MD5 b9b4b0c6c155d08c9852f956a495a5e5
BLAKE2b-256 6e79fdcbcdff92badb0470d941fa88f67c11df0159cd0d023fe8e0bf055c98a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 69fb7e6c12cad6bb28283070e8cfc473cab03116e5e9980cc442f876d08d5678
MD5 c4f3bd1f09bb1996b77320fda93154c7
BLAKE2b-256 fbe0cc20a14d5dac62f1844118c0a19453e9cab0382f2a12ea4e555d33cd5aff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 0043dcf97277dfcd74b1e3339f99aad2dc929c3b9440c489e92f95d2753662bd
MD5 7a337c4e11b176a7a18f93adefdbdcd0
BLAKE2b-256 d2982a71fbdc32e1aad7a6a3ed5ac843382f54fd52689caff30036b4a48c70a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.24.1-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.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 eb8a42b43a1591ea95ec01eb4bc391d286600b9c68eafb8aa5a2b7e0e34de760
MD5 46db44c9b57ea5e3aadbf540c8d57ee8
BLAKE2b-256 a8f9772c06b6d36717f1fe23d6c9e628275181936c1c1c71d7403c1a5826b0cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 124229c86b0e309266cd6f3b621fd3f8d9000c1d83a6254da2cce66534a6cf84
MD5 2f75a2b2dac5f38900b7bee927134a43
BLAKE2b-256 d8e93d9a814b730a12b65771d228e10867b14ef258289e2bf919f979a00276d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aa63529f4ca20bb9254db5958cae965a7c9558815bdca20a306b1ce4860aa109
MD5 7eb24b7844eba64a8365784d55b35abf
BLAKE2b-256 8ee967b3af966340f1dcd75eab527666379986f143a364bd734bd319a70ef94a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 107558a4e9b34c4838de83a9ed3c45bc639a969fcfaf65cc241fb28ba78acb6b
MD5 a63993ff0480f25fb456ec215365e6cb
BLAKE2b-256 711859c716c07daba3dde296940ff62e7f4dd87ee1f694494abd79210451a789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 77926c462cecc9df2f4bcba31fb2c2cda17dc104cc1a0a6a2b68676f97098cc3
MD5 dfc5d2be8a61a18c6a3b51f11e2e0cd2
BLAKE2b-256 bee72a03d14f00230a6485396072d802c0737e10ce13e3839ab56c1386b3348b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 e5e631b5eefe7d79928e9c4479927a02a1d3c2bbc15ba58a06da0feb35cbfbcf
MD5 cd6ddafb9e3f54f4bb376ab9cd870464
BLAKE2b-256 3158381c63b30b32d5e68f635a89c2efa18df8b494ed565c865ce203926954c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 81e3ac64880d4e78e9fe307fa3aebabf243bc6fee17391c241662f2b0100079b
MD5 87be452bff5e480cfa2dee47cc0b1e72
BLAKE2b-256 2fbef8a3555d669c1be995e879f5236720b79d448c58a2fd5d6daeb829993a91

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d8f9b9eac9eff22b1891b95ceb3adc02ff9b87a1eb782f6238f92712abc320b8
MD5 00de3458cae660af07a628f04bb7dfa4
BLAKE2b-256 c5f8c7b36041577893bfa952e8de03196c95ca40f230c595c464a70f9ff63595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6145a74fb86be20080d2f376cf792a74c2fef2bc032436fbf1e114d460a9b4a6
MD5 987c49e9db0e1fb2e9fa18b4e1974ae5
BLAKE2b-256 bfda0ad1f03ff7853646af5ac65115db2e6e3d44a095c30a61ed937102f0eeef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db4d70acc4cb8af28ae3cb55cc30bde48c4a54526898337aa56945fc52980d28
MD5 1d06a99553483a18c273697ffb343a35
BLAKE2b-256 ec705d83f9e0c93b644ac1de479fa4a81aedecbc7aae1158847183c15ffd995d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b61f162cf0f2bc049d0596ae70a621323f0f26c853aac9e802e1990405fd100d
MD5 4b4f2172ffc065188621ac6df0520987
BLAKE2b-256 269305b66d4d21fd8f330d878181cbf799c67840f5877f3a06a6253087c028e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ba88b28b9572f221537dd99b3f9d266a2ea6118e444107657d527f0349e07672
MD5 6c4c8708008253b578463adbef43aaeb
BLAKE2b-256 e70c276cb54081ded72e9a96481684c055568605dcfc74cd66da4c2b7ba77d6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.24.1-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.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1fa088de2146ee3782e9ca1e62fb0eca5fdbfe17680e1723cea05de8407e6405
MD5 484e8d99c03fd5255b2fe7b70286718e
BLAKE2b-256 c05768015d499d6d77d2459fd03051040739cc74378ba12e3f411a3902eb583e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 116b38b776848e2c5c6bb2093791cbe6a05846ef00fcd068dfcb0f981850522f
MD5 ff7f44711a2b7196bc3a8e71cf604bb8
BLAKE2b-256 626607a4bdec747da4cca5326b77ed7c0a27cdc8c7d239f9dcc142026c63cf15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c247316f4da947bdc49109e092242a358e1cd7343d27bfe98482a8924b4d9641
MD5 48f05edcc4b66fcd98c222eef624e140
BLAKE2b-256 cf9d3f6ed4f0364049ecab00da1eddcecdb2ce2efd8e2dfea6c0e7d7dab14e6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 ecd0abf50d03f01de1dde70aa29b97f3150a88a83d69994cb2988b57ee4d0d8c
MD5 dee826a86e01ebe746e9ec1d21408518
BLAKE2b-256 d8027a7cca0b60bde8fee6f9c1de71d3abc0e81a335d967278f3931c0357e7f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 27aefd3c7382e8664f750e29ece72a046eca517afc643f62fe7d0132ded6cf15
MD5 a15c603ef5aa35fa23ca5d5554022b1e
BLAKE2b-256 4c103a37f09fef7c0830ec729fa758143522d8d9a2be4e0619244495a77b06d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 7743c1adccaf18cafe79b0e9f12729394988d0edff5ac64134381ddca616001b
MD5 728857fe021c04b4f99f8c407dda48ca
BLAKE2b-256 cfa291570c6b6e466a764656531098c219e1b3452eded8fc2219b5138d9865fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 519feb45bbd0f704134cca0f9b8208e3a0665a0855f3c88e699833b8bb42ba1e
MD5 ae104339b6da68935b6400923cbc7436
BLAKE2b-256 0613014d472d0b550b3579830cf1ac0c250ff4c6f1495f46adc2edb1529aebbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68126131cd2609c95cb68ea141b3c0dd24c98b780490a8efb91b4def5637e285
MD5 3831f768ec9043b2585179f5cecd30fd
BLAKE2b-256 658cf8bfdecf4c75b0dc08f61851a11d1585a774a42e06d6af1dc5249383262a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d43e9767745f4fd400dbc0f6b94dacb006fc94ff247477ebd4e13c9e59b8c060
MD5 4bf94b2b941850b2fa25d99463ffd59b
BLAKE2b-256 917e3ee5d22ca09e5b0863573bc8f90a630fe132440d8884dddbcfe47de262bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4b3d38b902c92564985c17d41754b4ec6409e9d0ad435b2f5746e3cad0f9277
MD5 eafe01d7645251661065203e7fa6fb26
BLAKE2b-256 acaf4a58cb8232aa62c38bffdb7f16f2b38d4c86c74a544b29b0825b8d4148e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cb8bf4fdf649e7d67cfd02221c6515011f45744c02868340f092c2116e93feda
MD5 e3a4254cf936baa9378bee3260c43856
BLAKE2b-256 521616c5ac0bb75870f11cc9576b8515708f220ee2fa44c808ddbfaf9b2337d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 b0ae64febfc92c47cd46ff297d2f97b150b9fe4f6b42e4477a11341475d10735
MD5 f273be60ca526cf5494642e06821bdda
BLAKE2b-256 190189b3187d8889519e08ced1a7c42af5de3566f194143797a56f3bca1bee13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.24.1-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.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 05ba87069728799ca14872c62a84cf4ac69b4f19e5a43a40797c137ba4c83589
MD5 a73255d7092ba166da0781f344614888
BLAKE2b-256 31a12193e244df33914c070c726aab623118481a5204ac89693e4ecb424298b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3689d06eb6d85299a5c83e2f3ded4d64a611ca3710e082baf56b7818ba3f842d
MD5 12113524c4a2a10bcea931217891f1d5
BLAKE2b-256 c37f875a4e25d8e7c802e8ef0613e9cc16503fa10afe6d634784a8252f69bf2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d245d640a5bb9218a00cd6f2c49fa4ccdb62fc13dd659f8a39fdf8aeecf48b66
MD5 947e437fab9633dbfcda3b1f028fab68
BLAKE2b-256 8fb3020279ebed2c9ccdaddaacbd42cbb8ac23f1d2a345ba2ddb76864279e788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 8d023f4aefe7a3c3dd35315585c4b24da6e6291cc3e5095a432bee62e3d085dc
MD5 4544b92566f3b3c4b0a38aca918385e6
BLAKE2b-256 c0637f37c34a850c1f494f69d6cf93edbc1b84bd17ae7e1b29804b8b7e7106ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 330bafd62c9e5356f2a6f54d61607d047f7b9c6e0d0f5b68a2bc00f5234bc830
MD5 005b5935c29063fc7f4ee350d51033af
BLAKE2b-256 0c487307dd4575d8c840dc086be603862c2325475ae330dc507c2fb8a340d68d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 b8c456b5ec9f8c789e96e80b7784a2b5f7f36ca8aeae1480760780b963143eb0
MD5 0ff32505123945d267aa230956a1d1bc
BLAKE2b-256 d43c2f6cd11d983192ee41e6f6d9c41ad04624eb3c365a024df46c47f6bd62d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd2445eaa18bd427ff29f1299c78b76dc1996f2ea9d588d1356bcba3f453f0c2
MD5 02e781a3d3f3efcac7abed301f0eb7ea
BLAKE2b-256 db46840b44af5fdbe1d49356d69a8c71704324a7fdcbcbe04252d187537517f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d52b39494c85f1983c6e207a7b739ecfc5de6d867c32376a60152e2c2bd5528
MD5 b5ca293ad87c2808e7d2614fe52d1d3a
BLAKE2b-256 f9723cd87680fea88d1e90d47d9bf721e874baab1f6c819f1db1e22a93a8dcc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ecd5c2d2cf28e1b8dd9cfba77c7050ad0853b46653e7a44756dbb85c3fb7bc7f
MD5 dc2ed60eab38a7770ac58356eb86dc53
BLAKE2b-256 74b477cd463c492f5eb8b7208ab04d193328a6435238216c72df459b4b82aa97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f5132835f5339296f1e7265a6afd1ed25b59460430f2c94629593c1a7810043b
MD5 84e0f5015ccf8e1194d2e22d9fb9eec0
BLAKE2b-256 f272df04cbbdc241b3df932076f442de661bc67afaa8fe8fd63dda622726312a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8a41f30efaa436cd4c952ae372fcbb5da1702b5ce03a7e8923962d81e105ae10
MD5 ec224e548278fd6690cbde559850085d
BLAKE2b-256 0f228fd738a1f3b193686397edb091f4e3054dc7150497f16ef189bf3248c25c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 530687f2a7ed9000fa67d7231d90b60948584c9325bc1e53e0ddd952ab01f37d
MD5 3fabb4a4170329c57e11eec6a77989db
BLAKE2b-256 3ea52175a81af1e69cb85ee89a8c00f6282ab7014803661d55a178a012710837

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.24.1-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.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 ee2a8d1ffd2fbc9d88482e2de97f6b077b05b95905e024ecb977152a2744f235
MD5 5c9711613158534de18eebe375c8cfbe
BLAKE2b-256 52f1c702d94f9a1099fb161b5e74817ba22d5fc15445a4d2ac3d32e3c2fa619a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1048e7f8fc000d3d72e8b9588d5eefebbfd60fb6ae7d76bdb481f253e2882579
MD5 e906ba14a0919950caf9b2a37d49f5d1
BLAKE2b-256 d0f80124c224d1078854f198d47c8eae03dddc41d55df5e94626bc4ba6350f81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 173e567b153161e636d0f8b7fd73cef5119b006de6987444ba2b0f18f39eb3f5
MD5 d1e5adaa1277980215808d30310e6e94
BLAKE2b-256 c51da9157d6805554132e964d305ecdaff88b37fdd5d2f8cefcda1f57aa3eca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f24d2dd31fcec38df9cf8d582fb2822789c3f5eb5236e95731d35825080a620f
MD5 8c2e2e1853c5c40c48b0eddfddd970c5
BLAKE2b-256 cbf89fbb02a510ad04684582948a7c1a10cbc42f66b4b58621563db2d992373c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 dd2c229b74392c8504dfa97b7553e9a0d6e47093adeb6e2221b5405b4462c242
MD5 0aea00e374819915eac780a2d5bcfaa2
BLAKE2b-256 fd41dc25858c2c79499d845894ff92837b9c76a9cd3dcaea895cb65d1387de3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 0167a842a981efa065ab4dc212b9e7c9cc4b709907c22a96d938de7d788d19a9
MD5 bab5cbb19473a3695b570db38b2fc23e
BLAKE2b-256 d5b90b8747e378e287fd12f492da44ad4d87334aa3a6f3419bb0e1b81b8fe90a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1617221bef4db6770299157f591604de43645c3c4768cc350c12082a9b6fb8c9
MD5 7c219b9ecc1d0ba20c52f2a6d26a87ff
BLAKE2b-256 8a006e8fac83ff8ca81f0470bb068e8227d5fe6e0924cfd11c36203484940faa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5dcb94bf38368d5ea0e65e50d2b6937e0be1b42bca02d26ad33a45cc65483b60
MD5 500e1fcd233de34ba4567fcfa7c431c6
BLAKE2b-256 11d7c3db707f23c03aa57ab0bdc34755ec3aa286e6a664be4740683fa441429b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e51750800cf87f244258bdba33b5ab7ae2f4d3794baba8f4baba42a0c791ad86
MD5 ceebbb3978f341ab0ee31c25e99ac607
BLAKE2b-256 ce0074215e9833e3b90983f478758d49c3d6b73470e9797a69c692c04dd378ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 193133a67ddc4a01dbe9f6d3eaacd18bd25e85fa4aa06dbb93c3d3b23673d668
MD5 326e3319c0769a54000a95eee7401768
BLAKE2b-256 52f390eb191a8792e0934e0e5da407c83d6e2e7dc30856e534f2cc684de850b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.24.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a66b920101782f9d81e78f7b4d14addc2ecfe8aa809af5740f5059fa6974ba31
MD5 9f0fd82eb444263df6a85f71b9c2aa9c
BLAKE2b-256 2bd7d3970216d32909884433b8d8fbfd0f6266165dfd04cd375aae48c374295c

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