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.3.tar.gz (153.8 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.3-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.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.5.3-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.3-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.3-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.3-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (947.0 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.5.3-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.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.5.3-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.3-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.3-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.3-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (947.3 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.5.3-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.3-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.5.3-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.3-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.3-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.3-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (947.8 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.3-cp311-cp311-macosx_11_0_arm64.whl (865.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.5.3-cp310-none-win_amd64.whl (770.3 kB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.5.3-cp310-none-win32.whl (715.6 kB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-0.5.3-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.3-cp310-cp310-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.3-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.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (865.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.5.3-cp310-cp310-macosx_10_7_x86_64.whl (945.6 kB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.5.3-cp39-none-win_amd64.whl (770.6 kB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.5.3-cp39-none-win32.whl (715.9 kB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-0.5.3-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.3-cp39-cp39-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.3-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.3-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.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (865.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.5.3-cp39-cp39-macosx_10_7_x86_64.whl (946.1 kB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.5.3-cp38-none-win_amd64.whl (770.8 kB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.5.3-cp38-none-win32.whl (716.2 kB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-0.5.3-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.3-cp38-cp38-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.3-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.3-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.3-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.3-cp38-cp38-macosx_11_0_arm64.whl (865.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.5.3-cp38-cp38-macosx_10_7_x86_64.whl (946.2 kB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.5.3-cp37-none-win_amd64.whl (770.4 kB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.5.3-cp37-none-win32.whl (716.2 kB view details)

Uploaded CPython 3.7Windows x86

pydantic_core-0.5.3-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.3-cp37-cp37m-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.3-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.3-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.3-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.3-cp37-cp37m-macosx_11_0_arm64.whl (865.4 kB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.5.3-cp37-cp37m-macosx_10_7_x86_64.whl (946.4 kB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.5.3.tar.gz
Algorithm Hash digest
SHA256 34d7094a06ac2dd7fe924e3df4529968826240f87f34d35fb9810c47ecbc88e0
MD5 74ab8c4c8f53c9a68dfffcdc8e9f5aa0
BLAKE2b-256 bcafd1a8c4f0519023e3830343f6cdf6687fe7f3837022c2642da1c05fdfe981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1671b1aba8380fcc2e9e9a8bb0a0bafb1e38acf3a0dc2e771881398b045c0a2b
MD5 d1b8b25c17ebf739fff1e707e952663b
BLAKE2b-256 30561f8b061e8a045aa23b5e9a95923cdfb5596eae025779c881e7d0487a4cbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f3a20dc9510a786dbc23327d22028fe255b2115ab64095b8eb010cd2a5f3d292
MD5 7315f55ea56178e9a07bc71a5dc89921
BLAKE2b-256 4c081299bbfcc738266fe9a3dd99ba25b949f0805f3b380f25cd0ba2ab99b235

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 37a1f89827c42c6daa2d0f79b67ec9fea7fde2929c53ce9fdf483cd7e2d016fa
MD5 e54d5f17fdbcfacc81de2b6bfd6741a0
BLAKE2b-256 161944f0433fae0ba012b198d19168d3947da1e430062f1a4229fa210d26c2fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78b03e67a6efe63f2cb2acddca5c9f1a58ee871498463ccff42345e3fa2962a0
MD5 46fe57402d547106bfa41bfc8f45105c
BLAKE2b-256 a177e980229f5a83cd47fd4a896eb35c54e32066871a45179903b76cef2f12c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 91ce3578cc77d559399e5ef0e0335df8ba1f5bb3a5b81c35f8ab1a2ec2b6d056
MD5 d283fa049a93c8861dfeeca432c20896
BLAKE2b-256 112b6e2b9d82937d87270af19a5f18d3ca5e769869ea6f41f53e1bd56452f6ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bcd7d434e432ab0cd0168b8e9cf373bcf51365d7818dcd732b93603ca5680592
MD5 12f74d544b29f39e79c3738b8ed7dc79
BLAKE2b-256 4c0f6d79a1a3137d014a4acb626f8a1682fb9182dc2bcddcdeb01c9bbcf07c87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 39a9e693b166536839ab33260cd551ccbf367a4400d3c9daf8f41cae342bd368
MD5 a853ee9ddd5a9d3d1d23d9ac176546ba
BLAKE2b-256 97b55902888b0437a352c38cb3f4e4351fe250334c68bffd1e6118fc7b1565fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 34b4a6f08019b638a0a496cf8f40b75b6562281f923a67ac1fd8c10b0abb82df
MD5 61f77fae4186b87418a294451dfc1626
BLAKE2b-256 165f8bbc76b6dc5cdf5823e56cbb691baca7a1f81fb36af9c02ba895f1e17216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c2a69f2d68b0d97a7b0f694003c08bf3ad632fa3f0c04c7a6f4a62ab4a232d7
MD5 dea27d224ec6ced955f2b40efe7d9764
BLAKE2b-256 fde1e309d41eff17f9ebea77d1b582df88162063a7095290f31e627bb7cb7222

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6731e27d52d4c72a9b102e26e3b34da4f4f1ba570f50cd31f27bb60b2711728
MD5 a1faf11c35006114b0a19e0357c857d9
BLAKE2b-256 cae3dbb78d4807aadd56c575d35f7ab1d7bd5fc38fc63293e2112579f0e7d703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 60ffe2cc61a5b2345b38731a45d72f29a9e8345813d549be46d54a01346b65d3
MD5 f2706a0da899a2976fb1b88e0c048e27
BLAKE2b-256 f3bd9857e823fe32dc248fb40f77e843b9dbf78eabd20323381f16a5412ba3b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a5dd8e17e9046736040ace21fd5e9838d233fc4e3bbb358605c7658fc57c0e84
MD5 147b962c9a0b182b6f301c359fe6ecb8
BLAKE2b-256 985df51784514f5bce0f2c02f7f5496a4d08ffb806c98706f52119a775f5f6c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 407fff82b17f83733f3edfeffd51a9b4d3c7faee8ab7dcd7938ad2d11997ca17
MD5 0d9747f0bcaef214da49b40645c603d9
BLAKE2b-256 84f1dec12c08a2db62d72a8eeb21e0aaf9c4681dbefd1e83dda0e9a789732266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 28aba4e352a9ae1015a3b944e4764792a2517bbec08ea16fefe2b28258922aa0
MD5 60ecab0bf9594af2a13143318f53870f
BLAKE2b-256 1928f421790d34b3677fdbab91178a47625d931bfb96e8d8e65e2b74db9d3e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f38e2a41d28ff8dc7300003eab505d19d2f277975e14020660a87b73e27e0d59
MD5 01f38e2e842c2fc94cf5fcfbafd1675d
BLAKE2b-256 73d199c7d70b453a327a442ff6f0f944c52074fe4680d4c8bbc6538d7d8fecab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 375d7f20059d571f1c0b7be964511c8eb527f546df50c444dfc09686783e740a
MD5 98e9fd1954fb8257e0700f2136b7400a
BLAKE2b-256 3df79fa187c74ddf8d198e31628db6cbe26897304545693d967fd9c2f112f670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 298787ecf47614b6b6badbcdaffd3aed1e34304bbf327b63c7bd35d239767f1d
MD5 cebbbc33ebc13ef791731be1705537b4
BLAKE2b-256 ba98de39758d2161cdadcf86278691c18696536c64e1439ca3ce877d887ab532

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 35a5003fa0978a474d0a5b80af55529172bb27243158cbaf190ac6e627b3169e
MD5 ee4230d5a5f1b210eaeb33edd76c5967
BLAKE2b-256 d7d0d03478c3a9d0932379c68f31ab388afad0e3d5700214cc4aca9ba95d671d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c5986fa84dec7373e16ec2ffa6f99095be261a5fec77c367db69c0358e832e4c
MD5 2349bfdb082d94ba0955d3308c047da4
BLAKE2b-256 8134f73819f5b992cbe803b5a9e324b1751647ec91e16cb60144572c3bab10db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be949b901552786379b04782e5c0c80121f6fbec41f24a17b8ed6476ef5d5869
MD5 dc68739801ebf9916feaf2fa21480522
BLAKE2b-256 54ade5c976d7baaff9dad87cb3d3b2ca670057e6fcc71015eede3c4297bbb261

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 ad918036e5ed8a6aae8c553af124631ccee693212362668d2898885a024ae99d
MD5 e731db18d2e1a606f71e03b4b6c211bf
BLAKE2b-256 2386cffe84c1560233dad31aeed21e6490845d100c8b39370bf9b203575ddf44

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.5.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 19ebcb854ff178ea0f99cf98c0eceb3e57408a42c8fd96b733dc179b48ead47b
MD5 e9a934755fea402b2c7e16cf0e2f16b4
BLAKE2b-256 24aa5cba2afd38427b2d031f7b3b16e76fc34731d8be360b3bdbf8e6241fb474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b049f9b26b64f525946d0ecd231bc0942dd87cb7a700449c6ada90a03f6ac744
MD5 dcea7d36b5763e9f5ecbe8875e8c80e3
BLAKE2b-256 4bb05143057ce5ffd641609802b90a17090e83256135b2fa037bab3410833557

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 521a34bdcd09e927f6654960a909c9dbd51514e1afd4a35a6f9a913f42258dc0
MD5 b481a7f8c9ad84269bc3cb3fa1e6852e
BLAKE2b-256 0163fdefd1228d5e2ddfb3d6bf1301529637e73b1d0df24d4da55dacb1e18984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 eeb36a3c4dd3a1ce1d8f9aca8a027ee04df0321e3b86cee68ed14928651347df
MD5 1013e2a52c5b7dc7f557254f0972fd7e
BLAKE2b-256 c2e85267b1e1585d6b009aeae9e286866f55551388cab43b38fa21234a24bfdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f829714ba72ec84ea408b4dd24792b8636554830a0f21df52f95371ac29930a0
MD5 a418501b98a776642fe287389e9f40a5
BLAKE2b-256 c8dff43106a8127a3128b696183717a1b6f9a315b5619cf6654fd1b869ef0b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 627954bf67b94562b6c95cd2ad4672682da322702f0e0686c0242a5412829064
MD5 26d119295e8e54894949c43889ba3ec6
BLAKE2b-256 0d409146afdbc3250d215a5b0a3dc11476c86d5fd619cf54df33f4ee674b4221

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2424d7bd1cf6943f685a4d48a620b693b2a5a37cd3aad1cdd19687e9c6bfa35e
MD5 0f91d895ed382bd5d0120af86c323ad2
BLAKE2b-256 b38fcb256534a922039829ec510584da9d313039498468fe965abcb87a8d6a28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1baeb38090fb8e5e03381412490842b36be9e571597915615b905556db1720e8
MD5 560fdea3777e3590df6499b90b725470
BLAKE2b-256 edfc757fe02ab60e42a1a76fec3dc6e4c293d23a560a33646f590103f3bc6af0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 73091246c6c913a67d17c7cb596f69cd8cca1f780776abf4a5d90b0e9ac618fd
MD5 0ee4837d3bfdba540ffa5d513f63544a
BLAKE2b-256 4b6b0b649ce7afd628303ffaed7a493a1ae0ffe8aa6de641aec5c71bf6878494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 37d472d81add69a1bc593a6fd64030df904f7f36c73f61236ef464261b2485b0
MD5 88941e237af31edba770b0d331ec0321
BLAKE2b-256 a9c2a7abd3bc9bfab703ebc5e396564a74985f3ff3be1a7a85f67425c302e58a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.5.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 f923f485429ef918bc7ef9c828422133db660151d1afc3971fb2d4e28e4b7f95
MD5 c9e0c1f0f0480905b9c3fab2acdb4180
BLAKE2b-256 49eedde3d533bc3ab4a05f4230188249b3d1665d84e8dc185e92e89f2225281f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bd2d3c73d56db763981ce21bdf18b2aa125cf5b308500146054c91bbe2b4f343
MD5 050ec42d5fc96b73b3333b08d3180557
BLAKE2b-256 5350c55adfddd1b55b484dcdbd0ce79935df9e5c89a8d1afdd74deda8bc9469c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9789577c5a0c24da3cd9fd922a3c8416390964ffd7f252c52415e96d4c3020b1
MD5 2f154b9efa05cf81b6539a08b447a708
BLAKE2b-256 28e12891beb55e0081bac958787e5a37dc85b7e758451e4755f2e5736965d2e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 54879271f43d14c785f5fff483c3193c9dd7e887181e54cabfaa3b5d411452ab
MD5 0aa0e771be309d1446b38c4e0a649fa3
BLAKE2b-256 a61896f57222135546d5d3655f63eb48a7d87704bdc144757badf1c39d1b393a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f629fc207fd59d5c6d8bee3aef82c0d74ddb612815cf26c7e36536ba93240a97
MD5 027b18b8564348270090f954ff1f54e3
BLAKE2b-256 54bd390318aea88a88e416e2cc96704118169a49bfb97f7091f30bf334252394

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1e50670cbe4416f167e50fcc9eb6aea5f1fbb1d51924818d2f8c9f8e17c599d
MD5 843b00cacfb1ec1c1a22a9661174f664
BLAKE2b-256 de9d32644bb995912b28c7daab77fcdce2f1ca7d83d2aa747a31c0a83a914dff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5e88216359dbcaf6223428dd7ea7e1dc57c7a1dbaec8a510548a321e60dbb6c
MD5 776a45589753ceddd7bd6450286859a5
BLAKE2b-256 3c8c2643abba56970901866c24a7b16dee6f1b0af32f659d2a7db8d94f4d22ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e775fb483f12f8a16464e36feae56f6652df9696fd9db5022b7583deede8e971
MD5 5ee6381bde958538402455650fa11106
BLAKE2b-256 acddecaf6d3bc63ffd683e0c8ef1bda46630e38cd99e944322b013bbaa9bb8d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 367cdba1dcfcff60b978ef1464c01557e1144ce51e6e2deb16ba3aab11e732f0
MD5 aa37d781f55e5bcea2a603731d851b21
BLAKE2b-256 4d0e458c7b61ae72fbef5fe1101bb29a7ce97e14101440fd54df1c142f8220f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d01b7a7b4e026dd78ad0c0add0254d1d9fa7c2dd73e90eb6f8c04cb4dfb11f82
MD5 083c969f50f31c1000f63cd2215479a3
BLAKE2b-256 845915d933a0e82bdc196c47513b67f8a3b6bb6276e758a7242f05c8ee1c9dbb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.5.3-cp38-none-win32.whl
Algorithm Hash digest
SHA256 7f241f79a8cb5891bb57f3ae21995acefb21277d2d59ead40104eb7f5226346e
MD5 24da144ed66e6b3f0f1313f210e576dc
BLAKE2b-256 ed428e973f5ae9af79dde0bf20d683b3dd5f5b0bdb4732f6ee36aaf9f420b42b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 42a2c4930c5ce1377274e7ad9870415277950e0bd285cf023f5917d3b11b001c
MD5 a0279f14267c8579ed00296e8417a37d
BLAKE2b-256 dd886a53bbedf99f9c31ee1033e4ab4f9a411bd5e37f70f90eadabc488544ee1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ad4eef1a073e431adb2b3be85a1f58d0f0ff285909953f83a191557da468f936
MD5 b71d7611c4bb277d90a872049053d543
BLAKE2b-256 0d841eb8dd93796d9455a38953c160c4387c7606b10aac09613eeeba8a9f0852

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c10a4183a78f74830f0cf4ef23f0e7f44f99b9e2dbff2fc33ff7c62daba81329
MD5 1ee759974eef1f78e091bebbce7511c1
BLAKE2b-256 aa751554e73b956de372b1c6ee14a4714d67403db7ace10e431dfb93278b794c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62a5d5cc68388ee05b83448f28045df370a3416b3f151d228ae686b9b48cc047
MD5 7086f9dd32506eff43e518991e57fcad
BLAKE2b-256 582b6dd9eca2859b50adfdc5f305d2f520aa0be2fcde692ed5933360c1cbf8e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73bd1a2189dd632735abe78900ce4a199c6ab8cbbbefe488a2383c9606a8ed8f
MD5 878cb07cb0a61ca31d52b4433186d0dd
BLAKE2b-256 0a2172dcd31063af058685e8045888e77e3395fbacf718c1271155e707065158

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b7aa2de42b7a96abfddff0f42544f7b45b250042b7da63bc057695dcdda38b39
MD5 80b68b09265f10591d6b0069d65e1322
BLAKE2b-256 3e79a8160bb3cdd48267185d7695d5d6989128cd67f0e09f91d409df749ad321

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f982c95a309d1c5febe773284ea3a3d188b007b0b933fa9fb91dc6471f10611a
MD5 52119433c3ca032234e8e81053d91f2f
BLAKE2b-256 a39d329f4259e18f883094da597ac239aab0f5ac812c8e9d8ff9a7af306e2a3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2349993431a34f6954ec1f2806ac574ae3b14e1ac42b3e7e39f69ef7a3cb328f
MD5 7523ae361a6dfd7a3f4c75141a67ed95
BLAKE2b-256 0d7a270fdfeabdfa96b6bef701554c7e556540ebdd50c9f9d54e2458e793ff70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 242547e40b461960112311589ccd970c6bc73dddfcceb1fe1a01a463bc44fcdb
MD5 11afd4b8e3a3e25ca030410995f3be67
BLAKE2b-256 a92043839b10a6e62589b3ef7d86a6c6f3b5be679476e275b7733c795c44ead6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.5.3-cp37-none-win32.whl
Algorithm Hash digest
SHA256 0219ffa48be831733f8559b283849e8a7866dab3fd3ce5cd5621a561ea13a147
MD5 4fc2b377f759ac448884704fb6f3e5d1
BLAKE2b-256 c127aa0728f283adad3012fc0dfc900ae07ee3eaeb681c549524b702c0f0f9cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1f24766a9f0ab7310750e19e629abf4c0910e7a221e8e4c7148be02197f1bab
MD5 95ccd1eba4dcd22dc92e8fcc4abcda7a
BLAKE2b-256 295097daedf44c23fcfb53c08e733ecea5380e246885f3bfd7f8519093f2e490

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c3fc9ae1fbc5486842a18d2304145ac06c0664acd6959898a670db28200cb007
MD5 e87210f2d05fc8b100ea01100aca4f80
BLAKE2b-256 978d540ecd73b68136f75d631ec3a9663cb9e571426b451b6a2566f2226d5f1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 70bfe94d595ff39e0f57cae1a1d874bfb58ab5de294baf4dc5a56a21d51f2302
MD5 a5959f15dc79a6cc1ee60c9a224299ee
BLAKE2b-256 93eecd59eaf91a2d3f6c6ae3726f5ae1575aae05acbc424a4971d5c8391a165c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9464873a1980e02bcd304230430eb60d5c775c36be2b00f3e4c05d3121e14be
MD5 3e29bd64d3614ab5fe87c268b89cc3b3
BLAKE2b-256 96bf6f384336a4b50e0427a22f602a5315a5f9c0a01c871497d62d3b1be79e61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6625c9fbd79f3af52145ef615c70a1e0cedb6b061628e42133b3677441b2056b
MD5 ef8861c1f37a2b6e83ad62bd5661e61d
BLAKE2b-256 27e33aea6228387dbcea1264486946988772c949390d2e8901c600a13a1d8bef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 798cb142edb9bf477ceefd4793da7522cc372590d9a28173662b2bb19796701f
MD5 3f38332aeebdcffca2300a2d9e4c8952
BLAKE2b-256 3fb7d8f4de92c64c1018237ddb7083bb8fd4473319534c973fd97778321eec92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f18c17ec55b2add9b9682aa92f2b653d610b94e00b921c77e79ab2441fab422
MD5 592dcd2693ca0967c3100b78cadd89d1
BLAKE2b-256 d65e70ad06a1c908f7addc945b59cf7779c51293b8fbfe43e89079d386acffae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.3-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 79f779cf51bac47ba594ab5f98f48c8cab5ee783956d80595613cad4e8cfe1d3
MD5 8d3983f8413c2a8eac03b55867b39f2d
BLAKE2b-256 9a76c7e42f82b90c7ef5aa7d9c4b36416fb369416856825670590fb336faae07

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