Skip to main content

No project description provided

Project description

pydantic-core

CI Coverage pypi versions license

This package provides the core functionality for pydantic.

The package is currently a work in progress and subject to significant change.

There is, as yet, no integration with pydantic, so schemas can only be defined via dictionaries.

The plan is for pydantic to adopt pydantic-core in v2 and to generate the schema definition from type hints in pydantic, then create a SchemaValidator upon model creation.

pydantic-core will be a separate package, required by pydantic.

The public interface to pydantic shouldn't change too much as a result of this switch (though I intend to clean up quite a lot in the public API in v2 as well).

Example of usage:

from pydantic_core import SchemaValidator, ValidationError

v = SchemaValidator({
    'type': 'typed-dict',
    'fields': {
        'name': {
            'schema': {
                'type': 'str',
            },
        },
        'age': {
            'schema': {
                'type': 'int',
                'ge': 18,
            },
        },
        'is_developer': {
            'schema': {
                'type': 'default',
                'schema': {'type': 'bool'},
                'default': True,
            }
        },
    },
})

r1 = v.validate_python({'name': 'Samuel', 'age': 35})
assert r1 == {'name': 'Samuel', 'age': 35, 'is_developer': True}

# pydantic-core can also validate JSON directly
r2 = v.validate_json('{"name": "Samuel", "age": 35}')
assert r1 == r2

try:
    v.validate_python({'name': 'Samuel', 'age': 11})
except ValidationError as e:
    print(e)
    """
    1 validation error for model
    age
      Input should be greater than or equal to 18
      [kind=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.

Benchmarks overtime can be seen here.

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 design 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.5.2.tar.gz (153.1 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pydantic_core-0.5.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.5.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.5.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.5.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.5.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (943.1 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.5.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.5.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.5.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.5.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.5.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (943.4 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.5.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.5.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.5.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.5.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.5.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (943.8 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.2-cp311-cp311-macosx_11_0_arm64.whl (861.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.5.2-cp310-none-win_amd64.whl (765.8 kB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.5.2-cp310-none-win32.whl (710.7 kB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-0.5.2-cp310-cp310-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-0.5.2-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.5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-0.5.2-cp310-cp310-macosx_11_0_arm64.whl (861.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.5.2-cp310-cp310-macosx_10_7_x86_64.whl (941.9 kB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.5.2-cp39-none-win_amd64.whl (766.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.5.2-cp39-none-win32.whl (710.9 kB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-0.5.2-cp39-cp39-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-0.5.2-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.5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-0.5.2-cp39-cp39-macosx_11_0_arm64.whl (861.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.5.2-cp39-cp39-macosx_10_7_x86_64.whl (942.3 kB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.5.2-cp38-none-win_amd64.whl (766.3 kB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.5.2-cp38-none-win32.whl (711.1 kB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-0.5.2-cp38-cp38-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-0.5.2-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.5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-0.5.2-cp38-cp38-macosx_11_0_arm64.whl (861.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.5.2-cp38-cp38-macosx_10_7_x86_64.whl (942.4 kB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.5.2-cp37-none-win_amd64.whl (766.4 kB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.5.2-cp37-none-win32.whl (711.3 kB view details)

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-0.5.2-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.5.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pydantic_core-0.5.2-cp37-cp37m-macosx_11_0_arm64.whl (861.3 kB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.5.2-cp37-cp37m-macosx_10_7_x86_64.whl (942.8 kB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-0.5.2.tar.gz
  • Upload date:
  • Size: 153.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pydantic_core-0.5.2.tar.gz
Algorithm Hash digest
SHA256 616e684cbf7ecfa14cfa6488749cc1c771811370be053853cc9e62d65fb6953d
MD5 b6caf8cb765950157ecca532df101cee
BLAKE2b-256 8965c80c55724cfcefebc916e16f3cb3685f2ecd6ba110a179dbb587662683d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0e696428b38c6c7655a422565939a129fa6632325def621ac08ba8dca1d1525a
MD5 690a4c59e3a6184ce0162731447bb7d6
BLAKE2b-256 525fbd4c25300334f8419008c0876b3e215f55ab7363d343f52d1a7c03fddc78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 29e9dca2d7fc539b428c158a29e55d50770063d1cd5a8068f1d80a80a0b9bcec
MD5 7d74375bdf5b92de427c2059da329e81
BLAKE2b-256 5232ef20d3380ac619bdb54ef55d30d53c5f38080715701260244d9b086f28e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6046aca9c08fb5587964d4fa93ed552a040fa480d69e9b4ff2e6642d4aaf606b
MD5 f9ce89de90f27b4656aedd94b2f9d9af
BLAKE2b-256 f1e8018a8181769d1e387397267ed70a48dd337aae0e57acf53231f6fe03f673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f48162e13629d0787da26e498e1e5dc1575165311cd0c1d3d4606dfbbfbad69e
MD5 ed40581d4cf94d1a14510bc2190b175a
BLAKE2b-256 5db06a0840bef47091b12e7985f9670c31456f8911e822a8254c6514fa9c54e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5063b4975708dcdc5c38aeba3e26d12ef84a64ff083e81d30af9bd27d349afe3
MD5 893968e0c1ab303d2839c0931a5d43c2
BLAKE2b-256 8855c534ed883d90e7bf831ad5ef0983ef351fc0d02d93ffdf561be7a0f8a193

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1fe76e4b6d3073bcd2022c0abbed386628abf24f26cadb570ec401e81d78893c
MD5 76d090b5fdebbd3bf19a412ccb96817f
BLAKE2b-256 c1bbbabf3b52e694a58aa5261050348f26a122ff3fb041ca554f623a22fa28fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5015e648c30740bc6a12016df3a64b9a8e07bb781b30c132878d0827fd09f5e2
MD5 bc4d78166f3d484f535643fcc9ed0191
BLAKE2b-256 e9677bb4f81c41426c2b197ad7df90e8fa5b446754508e99ea55ac74ba4a0dfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 39813ada3f0f71988ff0de389d6b03723ade8ec678343f6baca2324af18788a0
MD5 3b82ca8351826a9a49379c7acd0b6016
BLAKE2b-256 0ad0812304bc0f70a4e8c389d9484fa5b3394f8a8edd6079f5dbcb5787e4b5ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ba5eb06dd67b46204dccf2b0180709f8250896a7d71679e9745bbd62d717b13
MD5 26b4bedb97d96eb1ba83f2c286280c52
BLAKE2b-256 a57e9ab430569736e6babd2f9cfb1f638a5b79dd88408df13a7381d5da0e6964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7964c64921bac1f6cfa7f79802233066e4debc023c350dd902b86bc70134ed6d
MD5 9a495b9f459651adf8895a2ba2d9288b
BLAKE2b-256 dede4318406aecd70c1f5d837e7ecbbbb0b3c705d4616e3005de8768c6b94cb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 44101e72eda2a70b085591042ef941b580fb08e259d4ae7e73238bc71c23741c
MD5 60467629fa23f274e201ff511d206c1f
BLAKE2b-256 6b3ece21bc66551b8fb40597337ac8c25fa898959c0e953f97acca2fa6c0d5d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 286ecb643200e1ae669632c895f3fa29c43aff205369f52797a5c137ac0c62e5
MD5 fba43c69423922446353838ac19656e6
BLAKE2b-256 fa08a3ac4a63a27a6eb27467ee5a936292404a5cb184f2543d8b6dae8fcd1537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d9cb0cbada5942b8c526bb99a75566ad4d97ed58a0161a7223c83e4dba11e266
MD5 b5ddb3fdc0f14ecfcad87aa57c87be5d
BLAKE2b-256 f26f47cbd20be25901877eaeb425ae49fa1697e2875253a23a99f5c9e6bc661b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 982caaf6d97dbb707ae7bf1e8f8a137f29bc4d737852dc23314c9cead649020f
MD5 d18cf002a27d7db15cc96caef3d23a96
BLAKE2b-256 192e036b9db4240d45dceb5751f472117ca0d5c7fa2ad2126b7161fe985c99f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 59101d29f17fa3505122e1aef80facdcba3f14f7d88a63caf9d2cf7056d96602
MD5 8f5844e58afa2170e3bedc49714781fe
BLAKE2b-256 d67b08d0e95f4002f1988d01d727cad4d8b4c9d6ac7d58833aaeae9406d9b252

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6d8f775ae336ff4502f8d9e59006e2ae65c2fa31eac0a6c4395af1db3e80c6c0
MD5 4809ed4b4c75ea2f8793782566595fcf
BLAKE2b-256 f72aabdf19264da0942f739fb5fce43e6225bda827a738a1808cba1e02451fba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 80762df43f48c74ef101a74234b99e757f1ac014bd362fe16b8ea17d6678f934
MD5 bc0f5b08c3f7e97bd3a477ee486f3315
BLAKE2b-256 c7e564fe2994625802357db0121c005fa4af9265b6e93261bd751debcfa146ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 77fb5ea835178049ca53304f5ccf1d9a0a4e1c01c9613aa8b67188650e7a7fae
MD5 9e2fc67ab3dc7628762fe91cbf913ded
BLAKE2b-256 2cf5dda9de782be32e42cf8805a00433f688efac8648e5eff42af309f32684f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 aeb4b7b0b0e98b0293e51f3498ec9406f12ba96b2e6beabbc21cf33ff0d3445c
MD5 f42029b57b9a9dcba8e08859275b0cf0
BLAKE2b-256 13abb66435873847ba05018d3eb234d6a085d6f63559c2b5b68aa979b631795e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b014f1e6a18099392da52c069efb6ed11d74c56d3c228475e1d182ea9960aba
MD5 4fbd5bf887ac7f1cbf2bb99f3c377800
BLAKE2b-256 e43e68fe8a5e8253d1abe7d2cfa3b897055dcf7f8f704ca91fef49d6e4473907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 1113e6c926f3aba3abb34c25fe85a72750e9f55cc61d2a7d69e4364d09139993
MD5 84a9994681d0cbaba77a535a3167284b
BLAKE2b-256 daeba4b010ca1bf0b5bcedbf730a46acd6058126866132b33fd36c2b271ced43

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.5.2-cp310-none-win32.whl
  • Upload date:
  • Size: 710.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pydantic_core-0.5.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 2eb3f1d371b20a3c1dd377f7bc03e189ff51bd16126207945d47372aaba1fda2
MD5 c9dbf77555e9e8c4a2269e1fe104a051
BLAKE2b-256 90c2452c2f3414e61d092c8014a76720656776ca7378ef9edb33c99f16c6f832

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 86802a2c149fb3dd3d9332dd87f82456873370fc71aaba7cc2765d31d8fee515
MD5 804189f58786fe0f998070ff4e27ab81
BLAKE2b-256 522a0ae6a56a57d77adabc50ad02996933f61b0dc3e985bf8c78cdc427ccd51c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e57d6b9368da8a831401c2f3276d05e2d35a05339c3480f5115f6111ada2ef87
MD5 db8c0cbf4a76fddf45bed0c21497f685
BLAKE2b-256 5a41dd7b9c1825ec60a47c19cc9fcece0f2ca6241890e0b80f60c40661e83663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 729497d06ef4e86b219ae692e28bfc8d8a808fdcfc1a297de8215763c65dbf95
MD5 e1a5068ae1ecf8106a2bfd98ad86407e
BLAKE2b-256 697cb97773a3946c317c92ddf382c77b877f01fb1aed37473a57242a3e6885ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19f4694cfcbb9e7685ecba7cd6a1618768b950f4cddf02c3dff77d4e73fa2c99
MD5 abc161e486501ca20f3beb2da0e6d18d
BLAKE2b-256 88c8fb3a798bf8c0dab3b0073eee29be26b0215ce185645c32f4234e334e535a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7e2474f46c605b8aeb771fb2d44f38d368b279241d4b07c217a5379e9557361
MD5 41168c1563458539a5eb587f4f50fb23
BLAKE2b-256 901b142d6f2bc7ef08979a8b6dfeae8e285c072d210d1fd0c7c6465bb6a8b92c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a2d892b0a56f9540ad3302d954c165d5f3f0dc5a1d894f852c9dca9990b1152
MD5 cfb7847e70c129aee023058d88df58db
BLAKE2b-256 8f33c54976038637928b2a083ed33cc80ef8106794732e2cd4e7c179af1649b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e32c5e6d6378b1329922194615efe82a7c419f4f3f511a6faca66c4dd6713e74
MD5 ca2ae699ed62123f44161cfa4dad5a06
BLAKE2b-256 7d6a15c90f9236569248a5f02f53db41a80affa84c438d3bec94ea61d10c80d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b7a188e16719c51208a1d29b042b7fbd4c13d3c52a1c765e164dcb1acc305e5d
MD5 973bc0cc6848d0a53146d8f927002e85
BLAKE2b-256 9883b0abae74afae433967191b819d4e2a7a139c9d1cc0bf97e05ec2b5a0e20d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ded0352eb848348334fd58cc1adfd7f596bc7fd1ff4e6a3db41d52c3cdf5a4c3
MD5 72fddb9236af5fde82b79ead9f793047
BLAKE2b-256 9414b901d05d65c7230576c08b5e9e597417290a3494ff400cbe3dfdff2d6874

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.5.2-cp39-none-win32.whl
  • Upload date:
  • Size: 710.9 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pydantic_core-0.5.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 2c543b2e508278b0c76a55d1f2eea5961834e40b61d1f456695153017edf44ae
MD5 332946a785de6f5c4abcff9bd8865535
BLAKE2b-256 cdbede940ed1bb115efb9cdfb365097db6ba49fad35c1a38d8dbf04fac5c4f9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 efc6a413add652ad1a9d37f745dd89d431329ad605467b01701b066a0b68a9e5
MD5 f5e5dd4a594ea9507f06b84897baa71a
BLAKE2b-256 76f51ad3e30fa3137d5510ee2913be2e1f8bf04f18b74f5bc0eb915abc1951cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7e00b7555a6e860380f8f83d6009271a6049bc06bf01d042163b8f0915120d88
MD5 7ffe16c6a2ef1740f69e60c27790b5b1
BLAKE2b-256 1915a399b03c33f2a090556207b345b6652724a159ad94061d4e2fb050d4966c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c318f975dfba885e2dd2802e782d723f8007ea139bb712dad8d271d0be0cf9f5
MD5 45cafe05583ae090c5c241a320d7bad4
BLAKE2b-256 3f1fa33f77869db8a62798954016a00a21ce85c445990f87a62d83fed3254f94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ce0eca790cf2c09584537dc2c7badc822daa748e3dab953be59170923c6d45d8
MD5 539e52ae615e7cb4171dc84254c1ac5f
BLAKE2b-256 5277b93a6a2432d76ae18206288035c1c58cb13374d30a781e2ce923086e3c3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da80ad052cb2fa71203be31e7f137018c5a74b8fcdc94b2c068e406d7117f556
MD5 77585fad934da2493041403181ba3d29
BLAKE2b-256 dbb9b7b504dfd3517d56ca61b5353f56f53f44269fb020e9cc6f793116862d93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7bb5d3309cd713870b7ff4b59b58f9104a6fab74ef69b19c87aa455c54e8f34
MD5 e514e239a37366c9787fcaefda184c28
BLAKE2b-256 dc2c98d9797c575ef7456214b5680f596064ee66537e1cf805709e179e7871bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 908d6adef3a849557dcd78c0560dbc9823c1f52119a6f71ed2c56e04f8966a6d
MD5 1a05b0368ca359fc2404d1a1b8cf43ab
BLAKE2b-256 9acf188168a8ae5e84eae305d96badddec611b11083a0f5401278c57fa739ee3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 aeb966600fde22fd77b7eea71f7304b1517558da568d878ea90c00db614791e7
MD5 1166814ea25f99dcd3923427a11e05c4
BLAKE2b-256 4b8d7835ae5b50226594e483619aae55f0d80cfc9bdeb0b5c7f4e795608e21ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 aa64bc59d584b62fd79816e9dfe37cbc6b8bbc4580f6c0dc8960bfc643d66122
MD5 d2020560d1287802951f454efdaca54b
BLAKE2b-256 743b745d51c15cbdf372a49edb4ec733acb9d1aa4850c0734c7a6a5d40e718e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.5.2-cp38-none-win32.whl
  • Upload date:
  • Size: 711.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pydantic_core-0.5.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 1979e068882c3c50bf9ec0b2808deca6963b338135656bbff586d932be172ea7
MD5 d70f4c069749973482e44a77fb1175bf
BLAKE2b-256 76264ed390399ab3687c93bd6ccf9018daeaab0dd6db35cf9a087934a75cafa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b776fc7d8570ab9a14d1ed06cf653eef1db65f87167411134da0ef8a68b14938
MD5 2caf9e871a73d9bf5f5081adca1479c2
BLAKE2b-256 d2eca98b5391da57e5b38d34a0ba95e59823988f2e12cab6976090ba06f93286

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fecd1c450e740a86531d91c0874e74bd54fabb1fc8ea456366153cec55e1980e
MD5 9062935f49ca99eb605dc2ab9ff964c8
BLAKE2b-256 226092f13019d8587441d550d29d16013ee69251fd5932258908245f6612429d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 02b25cbb579a30c3537c6266aaef2dc2117102e9b4cf6248b37a8d5e6227fd18
MD5 e0f3eefb60367cb12af781f0c54b2ebe
BLAKE2b-256 b0b19c5bb041b937c7af344d2c564b75ea8341d04491a7ab8c98515f69a0818b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7acb374b6f988258947bfe2afef8339b84fb5f5531b1005e2190d52b2c5fb37
MD5 7969b5a5c0bcb0f833fbe8fb47ab5227
BLAKE2b-256 79cc9e653c4ebec289f0f0ab5dc393278d234bb315b572987da525dae9eb3e02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e209dd8a9380959a6e9590c16a38d0d0d6cd05ed6b07f52defff08b885394ef9
MD5 5d6092ddb1dd1e14ca3859a9ed7ac93a
BLAKE2b-256 a7230ca9c576f6247f856dcb683d785265ef21205e3ad906ff2a46310e0e3d7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e8d6dab8e88720dd49fd5771359e17ac407982c26560ebeaad3f102a3602220e
MD5 2609cc140da38d3f96463e716e071bed
BLAKE2b-256 e39f96130bad47f78a3227c8dc5a1857fd9ffe27d488ac6628fbc39f1ed743d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 635825dc5f8e004a2920fbafab00cc8f96e4080aa76c8d9a61f95f56c0856a3d
MD5 6e19ada6c8dfa098cdde68db482ee94d
BLAKE2b-256 273151e49ac0674189c5ec0603edc49ab2947878cd688113ba1de544c43a0c2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8d823a12e6965a689596ed2f6e3bc78ac241f104be49d902c9871128d710863b
MD5 a5d0011d701c16718bf87a98918f9734
BLAKE2b-256 164f6f275a33b84ac6b1e8c27f8b7c932708498e911536c82b4d7a8716a580d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 06d5df9dbfba5ba021bb6d0c53058a8585536516b0c11e73020b893d51ebe2fe
MD5 e755dcf4e3d9ad969456863f96d38122
BLAKE2b-256 7dbfaac3de95b27a6782b8180874d89cda170c973742ef36eccafb1e73d734db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.5.2-cp37-none-win32.whl
  • Upload date:
  • Size: 711.3 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pydantic_core-0.5.2-cp37-none-win32.whl
Algorithm Hash digest
SHA256 bc0bd51af617bf8a416b2c1ffae3171a267752f80b1a0d983bba153b8805c796
MD5 46629e4a018bcc2c6b9744b5d212ef47
BLAKE2b-256 33ed0ca939cf000cf497a6be9a42ed698f1d70f230168a3ada243429d1c56b37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1870cb68abf11299b962b270e4e31423e4a9dd075e4ad553dd40eb86c5b85a0f
MD5 f02140c41ef5ee211ab2e135f742695f
BLAKE2b-256 d355fcaeed8c6e16e2b7b09510c3e6a4486fa5579e4beb8d4cfb330d90fdaaa2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 119d10cca63ffdf6fb23cf336386752607f0d5352ccb631fd75443188cef99cf
MD5 cdc6aaa1028e3727da8f9574bf9c72d2
BLAKE2b-256 823107029e5bd13586444d7e07e9b363d2d00481ea95f37e9508fe1c74b42d18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 f4a6732b4d548339d7550b227a6af0cc39f13903256f1c10438724b7727a3417
MD5 6f422b9dc69370b210f452ec0963046a
BLAKE2b-256 8e8bd61dce158d0d3835b6fa338382c95463ca09abbaaf403728b667d66e39cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 edd01c89ffdbba47598ad045e298b35f60d332ea446ef9e8464e3dc74a590d3b
MD5 224c76fe684b30a25daa5850281bad23
BLAKE2b-256 4881c943f3f94239a5a0845067d19d56039992fae61265aa8a0c381e543a6488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 791cf091454ced58908549fb2e13d18acc4d1a32047e5644524b4a4dd506dc5a
MD5 f14a0e44a2145d5a68c949e6e6db1dfe
BLAKE2b-256 4e7ac4cff05df7582ef040becc68708d6edfa5ca31a051826855453d78f8b282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 89bea32203da2f82de414ddd3036276ce69869e9fdcc55e9a8b3c8051b4e4c60
MD5 eaace24eeac95015dd2f95c942bc6560
BLAKE2b-256 177d4db0dc2b4fde78c9ff11a8fa84d6d5b0f4002e5907a42b55658b9fbae2df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 12c70546af742f07b2e018051e68cc1bfb16345d118cabc58ddab2d12b0cbf4c
MD5 5bd57ecc322a90fb29b72f57f571f456
BLAKE2b-256 eb4d4607e63753a6666de250d6a29861fa9cfd51f7f56f88a0c2290fe95ba9fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.2-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3b3028074c658cf83c096ad287893d83cd7d8d50e01b5407adecb7feff69c877
MD5 224769410c60b0e390c7fc1aef767eff
BLAKE2b-256 8eac257ff55591240db7a85bf01f3d2aa32527448f91738631e57090841495ff

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