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.4.0.tar.gz (144.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.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.4.0-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.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.4.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (928.0 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.4.0-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.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.4.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (928.4 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.4.0-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.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.4.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (929.0 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (848.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.4.0-cp310-none-win_amd64.whl (754.0 kB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.4.0-cp310-none-win32.whl (699.9 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.4.0-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.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-0.4.0-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.4.0-cp310-cp310-macosx_11_0_arm64.whl (848.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.4.0-cp310-cp310-macosx_10_7_x86_64.whl (927.6 kB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.4.0-cp39-none-win_amd64.whl (754.2 kB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.4.0-cp39-none-win32.whl (700.1 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.4.0-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.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-0.4.0-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.4.0-cp39-cp39-macosx_11_0_arm64.whl (848.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.4.0-cp39-cp39-macosx_10_7_x86_64.whl (927.9 kB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.4.0-cp38-none-win_amd64.whl (754.4 kB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.4.0-cp38-none-win32.whl (700.1 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.4.0-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.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-0.4.0-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.4.0-cp38-cp38-macosx_11_0_arm64.whl (847.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.4.0-cp38-cp38-macosx_10_7_x86_64.whl (927.4 kB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.4.0-cp37-none-win_amd64.whl (754.5 kB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.4.0-cp37-none-win32.whl (700.2 kB view details)

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.4.0-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.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-0.4.0-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.4.0-cp37-cp37m-macosx_11_0_arm64.whl (847.9 kB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.4.0-cp37-cp37m-macosx_10_7_x86_64.whl (927.6 kB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-0.4.0.tar.gz
  • Upload date:
  • Size: 144.3 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.4.0.tar.gz
Algorithm Hash digest
SHA256 75a10077abc269fe1059a287e42a724589d3c12471f52fb1b83040fe17b52043
MD5 bdafed891da86a9c54200657f6f5cd02
BLAKE2b-256 ec444e13a299fdf517402bbcedac96eb36a83708bdc9671547ff3606da066a09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c68f2606f5cab1ded11479bbbb17a5fde0f8ae7720161d39464d5b3f4cdc7f2
MD5 b4fbd74a04a6ca9a802fc7d72b98eb69
BLAKE2b-256 05433e4b9e99baf2ac2acaef03ec57e9f6af8c164ef115bb92027a1abd36fa77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e4c888ae7765ed3f78d98b69e263eace5193404a630601a7ee34857661061a8d
MD5 f3ec4e7f9089df0bfc872060ed112572
BLAKE2b-256 8782f66c8580cd28ff1e97e1491d54abdd75aa65ffface5bd6116ea25ed2e033

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14471ea7b4a497a2cf6bcc1465a3a08e24a2d89392b2430ca072e7113c933cf5
MD5 9c693e1a5a3690392b65d8f50015d7f4
BLAKE2b-256 e553b972b3cb979f2ef1f5fd809bdd8f5ec711e7eaae84ca720f637a1bd5cd92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ead0d144ced6c0e123de8a28568b43ef85ac7ff9d2309dbe795672e4c91ae8e
MD5 47f9b4d3ccc2c1913b33e148697c0dda
BLAKE2b-256 c58783f31c20b923eeced9fd0aff84ff7ff2c6615ad3029bbb09e7cc795c04ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e577bee7f7b7c7ea671694f6caa34f9a9ec7a8d483337549752bf0092b0e95fe
MD5 997d49765e64509aa289f9526964d100
BLAKE2b-256 44be92e16276f4486103187d8a1d10369e2d6d40b3dae32361cde460338a5eb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7e4047b4e40645727c47397359078b408347f85b6762a6a6fe4f9aa0b555d352
MD5 cb38bda8729f3a47cacd5d46b0eb39b6
BLAKE2b-256 75ab2d9a0eafcf71790e9630368ba808f7355fac4e45c293bb848c1dd0392047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d4160328b2f1d9648a9d6dcd3cb3509c14ff097d531c88b216a6592ee2a792bc
MD5 640787e94de47af96839eea1d8bb4a70
BLAKE2b-256 10610d57d765aed29712be21d71137b608bd87c22f2edef60ddb9301b1e3d2a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7d9b19b1f05022b1fd6e4de702d744f7445ee3773a01a8392581b247efea672e
MD5 6975fd40ece5849d542a8a73c8514927
BLAKE2b-256 bb6c4dc46f823bbd3258d217ae343ea710ca18ae0d25a3d24f52084776b70177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e9fc7b765319b86c35fc7da3017335d15ae7335dba80012e54ec3350d48813b
MD5 2d24b298660f9919a14ab3afa1e64e9c
BLAKE2b-256 167bb69fa24e40dbd0cc965a105c3825148e42acd0bbfeefa86c457e52ec1b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18ae96645fe3c8172c73580465b42f7da522669c27c5fc1ec85dda8391522de2
MD5 e3be946fc852ee9aff80d75465aac66a
BLAKE2b-256 c005ad3826f8177171b3c7df1be9a85006a89e9a1a29ad5fa9b5236255a578d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf18dc6f1b6db5393d971741998c8272117b86c2de7a35456322ffee2dfcdd88
MD5 479520e9fee4f97ed9c4d6a5612e0220
BLAKE2b-256 620de3f1c602f9e3097e0d2cacda17927d61fedc65ecc3f44d7efa742a06ab24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8b1127524d7b3722329fc09e6fb461868644eff8aa37be25ff4056d7a603d389
MD5 22e2c60da8cb6008b61bd627674f750c
BLAKE2b-256 dcd6c4d3891ea824ed975eae89cb031d6ed4f8f7784905288932edbdecc0fed3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 55a6ce00ee3d2c389f8e360020a335a5b32adc2012c69a55a54d66badd1fc8de
MD5 dcf68fdc84c7dc26b833ccf50e4983d6
BLAKE2b-256 34be818ea8ebc00b1e2eeea15329a670a1dfa850b4ad9ba260dc47fc515368a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2da3d57c5e6830eb6616a23502852972564294cc770b3ac9cbc903360b5a87e4
MD5 2387874472a6a84c88baaead30722e51
BLAKE2b-256 52d1359814d625c1aecaeeeb35a95e1ecdd7d1fcfe7de74e56259a43c34a15c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1fb1bc4eda6d4cd2b506dc911f39abc5f9bbc1193f452f4f73fc7be3a210655
MD5 f734ed1baaf8269ced4ebd3799ab4636
BLAKE2b-256 53f9e49a17ffc51d7d5e9e96a8703bba8fe6e3083c00163255ace09eae1688b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aa9ed8830b7d6a50bf9ef78c1e7705c8bc87c6ddef73af4c51b42aec9ad27e20
MD5 c3efc2ddf520a408c4a29a4abb68ce21
BLAKE2b-256 5220afb8b6407eb71a567b3e58bdf09011ea0eaff503bb07ab706ef4bc224ffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b69b22936eb2582db322b4aacd44c78976df74c7408bed1b31f667fb07085df5
MD5 590b60b05dcfd45248b1f36397fc09af
BLAKE2b-256 18b09b4228a655d082622a313eb365774039c85f2df2fba469046f618ae56c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b87a83d7803002df762f618d7a3713690597ac415cc30c1fc28e4592da8d6260
MD5 e53b1ad4797f0e8aa391cb2d99fea2b0
BLAKE2b-256 bc4fe11defa0e31f49c5a3190c258cb899fc9206f1f5a92c86b1b0a0128fc83a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 461d951d1cb524456ae617776d66d01d3d319c3d85a43820f02341a585226244
MD5 dbe4765d03eb6352285aaa1c79e05881
BLAKE2b-256 8b16615d64f845dac014dce3000e4b2a5b53cedfb5dd70f5874b9e9c749d1750

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 459ac3b137daa25efef0dc437665843636be46bf0143c0505d10f7a14719b598
MD5 c8a7ced15cfbedf30ba55cd60213619a
BLAKE2b-256 6ad26a12cbf00ca8aacdcdbdc6927fef492168c12aa403a3111d241ecf609f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 11d8a8c033cab21db8c200933f5c8f4f284fcf989a0349405e0d7bb4b8ab0b78
MD5 20656adc2f03909bcb5252916564b8a5
BLAKE2b-256 655b54c2dc69d4a82ac2bb157c312d4229e0e6ffc0bb324a3ac2d95653e06751

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.4.0-cp310-none-win32.whl
  • Upload date:
  • Size: 699.9 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.4.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 ea2029bba5da402c6ec0d8a54c679e903bd86758aa0eb72a03849107ad56c464
MD5 d4d8c8541f1d9fd70f5dcc2e2a64d81d
BLAKE2b-256 6eb095814c1c930f12f5f18fe50b511b6d94268593f669ee972aab16da904924

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d87be0848740c84c47eacde0217d768eca4a7747abaf90480e69857b2e541cfa
MD5 35bbdf2ae62110db51b4adf61018bcdd
BLAKE2b-256 e2371c9d6a256f554191e2ef01e90371a0a68d2dcb1cb9f9e096fd84fbd68baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6aa0fac0defc72dc210047d92f3375654e36329593544f93e5fb014a1b346500
MD5 5fe90911112582eab3dd992fbd93736e
BLAKE2b-256 0cd0fa851544fe62abce9f6dfda7dbdc6f4f77cc64e4ccd8f1b1c66ee8009583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 95a15562ee08f9d50551ac91cd4d1278c04ef977202d4be65a77eee15746c447
MD5 d87b41333a169b8c1be9c9c1a01fb507
BLAKE2b-256 5a11490619199bd2411c30ff89a154069de03e3de771ccecef828cab7c98f939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ccb6224c6d074b210dd6e2c9cd9f5dd04c92b9d2079c8b394820d960a9a8adc
MD5 33890e43ec15acc8de240f17dc73ecfe
BLAKE2b-256 21929413ae641511ae85ad1e14bc9dd63f9e089b1f61bd05752c888cf9019492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2eb90ffff07702d58a04b925c5698eda5137e28fa3d8f5401aa91ddeec01932
MD5 bf153600157ce029bcefcf4f25bb0d8d
BLAKE2b-256 81b8e47e8f8c9577a61dca02a4fcc11ceb9ff48244892d9dc7c7d40e26857fd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5b02caf1107545717a25a36136cf5f2e5de90bfc1fff04e97c20185017a55fbc
MD5 9325f9d3be1262fca2974d46a401377c
BLAKE2b-256 a913f252ffea63041404f80b68d89189808413dd2432f33cbf182c2ecf9a2395

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2add22fdc0c25835655bad6565eb3085657736f22e1fc1c61f6b5cb42cf93488
MD5 55c48201649e26c6f5a42f3b059132d4
BLAKE2b-256 967726b0065e37463cdd87d12816f77a5a5197f7a14d9bb6147a6a44fd2528ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d09eda0be5e8a19b1752da9b2d707d609c74cf918c69b1129f1eaa0673add15d
MD5 2224f4752acd5f557fcf4f4fb56147d6
BLAKE2b-256 75fbcfa2e233e6bafddce39409d74ba9f041023332b602bcb82c961002bae2a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 5a8db50dd11c1593c4ea3a19b85edc3a304a4214f6ccbb8d20dfa3e9ed4293d7
MD5 c4668d2a319d37f962c0a0d2c2550849
BLAKE2b-256 01c07044d32831252ce6f608b5c4d0c04ad0f4445bbe4c1f04c5613bae267297

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.4.0-cp39-none-win32.whl
  • Upload date:
  • Size: 700.1 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.4.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 f600039bf2dadd094a33b938015cda1abccea6cb20e6265e5d07904bfb8a3cfa
MD5 f4f2b23278c119ec9c69c7f61d67da2c
BLAKE2b-256 7b5dd2b06fa81b7d674f90aaa3d54a7fb27533c079c91990b36b9ad8896afce0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8bd7d31a278dba4e3caa14266c12bb7632e3603a7e400757fe9fd6a1b5dec5b7
MD5 8c2fee511d9bdf05bd0d401014d95b5c
BLAKE2b-256 c976af415ce25c17a71e41426d75e1b0febedd7f1f37293dddaa4d732a6b1fce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6f1c970b317ad33e25d3c64870bdf6635995df57039ec319583f874da231109b
MD5 4cf4b6059b85f58c76f6406758b48afe
BLAKE2b-256 3ea33fc4ff4218e29619efe3091d4057377a011c590235909fd0e32d3bfc0e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 7ae9b298ecf66ad814766f4ffa634ead422c32cca5df7eb26d294faa7c9c3cad
MD5 2ff2855614728781b1b21ad13dd869ab
BLAKE2b-256 e01f46221720fb43b9afde0a61d4d201a35be4293f87e0733645a1347b15439f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 84abf187c127ba5d71be266682c70eb730161bd3dba382972d6eaba58c35ea46
MD5 5a4cd9f06224e311a755e23da39fe890
BLAKE2b-256 ccff287e93c74ef4ed23b5a939109c677daf93aa1ce325b563ceace758a2f1c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1030822dc26e391606319fa06dd8368343a60edf6803dce10e78d5e2ff2c72dd
MD5 1a83f07ce010c93b1f15d4857474241c
BLAKE2b-256 69ad69eb190d02a8ba081029957b9f209759fdc409b216eb1b91ca737d72fa3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c16f038f9fcf546904baeae1ae57a44903d57d62ec4eecbd4cba45368678292d
MD5 def61eb763f6510652a8010fb636a99a
BLAKE2b-256 1a1b139ed74e75269650a43595d12df2bad8b7cf8f55aa3adfaea97fa9df1eb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 864f0f1d472a472a02fdb48618443daa9907343aca0216be3dbd04e605b70598
MD5 d094709bd8a2833635c37a97ca7c3b1c
BLAKE2b-256 cf9a8229bc8c81f390e3fd3e183cf5f3643af965926b5db725292264a7f9e7fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1fe06b0017025a34690cec19585e643ac7b30bebd3d792a03606e0aab3d0ef12
MD5 d639b2da9aa1c49bab21792b23ad655f
BLAKE2b-256 9a7c8b009844f0493020366063e43b53dfddd757cee9f5083504548f3672c3e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 317df51565bb99a81e140d2c3c3d1d13fb8716df0aaa30eba11f0fbdc84a4caf
MD5 85ab4c1c203eee436e85238ca9614aad
BLAKE2b-256 81a95bc6a259c296e6e6b0e9c3f3e2b54c907d9e872f21a39314e2847e0c0c18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.4.0-cp38-none-win32.whl
  • Upload date:
  • Size: 700.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.4.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 7c29f9c7b95277b72288ca7635305b886dd7f937fcfc9773344592b35bb958dd
MD5 4eaca6b1d0bc0ef522670d8233e5434b
BLAKE2b-256 5cec83cb0595554e06bcca51759ac1f3b196a7aa0f72d0b65c9eefdcf6c96eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fc85768ece600796f777ae6cc5eb3ab2c067b4a153b051b1705401be257ceb85
MD5 1c8a4d5aea9885df390998b3718c118f
BLAKE2b-256 4c77ac9e9755e521f1b7dc23f3737e2b609d8e55baa7d187868be9d8bbeed26b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4b158326bb55bba9ec27a7b3ae7968916f00b5fa9f89833e6b37415e1a779130
MD5 5f79d80768f75e046691269b6955ba31
BLAKE2b-256 41a45a751384aa21bc66e89971bd29d794c717395ed5e06472b01ad18650d900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 968af71168d50bf65e15a05bb94b62d359a57868da640f330079d29b20658951
MD5 83ec485395f7b6e6a4001d4547d38535
BLAKE2b-256 b7d9221f1b0d4721a0940cb8f2546d09f37d73af1cf28929c7a1666a77a9e479

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 969ee7a4b8d7301983051f87fbf4dfe87719d309d86498496a2ae89db21b68c1
MD5 5517f55c02354c44a4cd4f66a173fc92
BLAKE2b-256 bfd62d556ca6a18913cf45626f1e3338ede803d8584f877e68c5179bc852508b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d783129a86b35f23a75c6e1e0a5242221daaf38e55ce7044e18a4f30be38da34
MD5 4451375e7a8f8d10843faf56ae209ee3
BLAKE2b-256 e230b21b36078b0c3ee82fd7a2bec95796d0dd3d2800902802bc7012c389b3fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 93fc840051fff9eba646e74227d2be2823529768eb2b04cd753866395e7ce727
MD5 99fa2f7a1a2cb040fcc359491e2ec917
BLAKE2b-256 f73d86db1a97495581e3c92c495a9f41eddbfedd2d6a16810a0fdef2ece8b687

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c1c76abcced0276e76a2fd48dc903cef48e99bad985aee2aeadf47b5d354d1a6
MD5 8cf3f18a07266b937a8722e091fa21d8
BLAKE2b-256 9a700003ef2aec4f908a7415d15d1757d081f9775d18b285623d686834033d42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f6ff49f06f61c6ade61be1f7ff50930faf6f66ac1dad15106dd4e935cc82ec39
MD5 34d6e6641f43ad97fa6861af1d5f49ca
BLAKE2b-256 dbddc5d9e36da6eebbf935d2d64fae1ca9b10a48f8a63627f2f3862b606e5b06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 2433678a966486d04a4b02d24aa0614571fbce6e0d201bee17d8a1d15545f532
MD5 0fa11073324337280677d1fdc2b239fd
BLAKE2b-256 5c7106fea6f0251124d2d94c8cb643c5d2e4b0feb2229cd0156fe05b8867706d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.4.0-cp37-none-win32.whl
  • Upload date:
  • Size: 700.2 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.4.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 5fddb8e5b0320210fb618e470da3559a885c48e07c74359157d64315994692cb
MD5 ff5ca143c988ad32426148f8a88d0437
BLAKE2b-256 6f09c372f5a522c3fd4fcfb8c5276ad9a059eb25fcc6701370b8e542d24fbf47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9460342ceba6c509c11a96fc4db7f0ac744be7898f03dff1796e5027a3c3c5b0
MD5 9a03b5b2b636f163cae3780fdad2efa2
BLAKE2b-256 228ab23cee773a90af6128899db299ea3d13156c93e7255064db4be9e188f25b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f2f8cdc0f383a312e01d4253da9b6e5d5b78f1a47340fd976bb5af9b291103cf
MD5 56e6936627a4958015ef52f369e95d5a
BLAKE2b-256 2438fa8b6e84de763af0256132ee3dbdf94fb82dc6eba535c9552340ab48aaf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 e80029b00cca6527f3bfbf3098af61904b003ade38c32bb8acd6b590aa212b62
MD5 daf2956d03d75dddeac115738762269e
BLAKE2b-256 2ecd0f2bfa0184e4da5e5b51f16ea62141036b3203f73f646bdf6e26b0e41297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d3fe1d5481a3c5f3bacd1b2d8a0497beb0fa9ea46df61ba0aab3eadc769ff47
MD5 46ec67dee307f023934d0546b4a73642
BLAKE2b-256 3dcf160e63ace413147a8abee9ed2e9041bebba1ede5a22a8530af62ede0e78f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fe4a31a6c7e862b1f887553ba80ba93a9dffc222d118b93e65a096bd3992529
MD5 59bdf250e5e4cb19ed4871d68e797c5f
BLAKE2b-256 0f05004924dbb19ddbfbba4fbc5d0e431ead40d3367d56b15fde0c3de5f0c1c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 472302d62b8d73c13e8aaf7f0ae668370ab3d6ff596a59288f05c0289b1b1fac
MD5 0b0feaa5a47725700519449f7d598028
BLAKE2b-256 75053c56adf46c2ac7bcb5b489fc4978354694499eaee1af533afbebf4b8bd53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c9c85a5124d214d8cbe99091f740dda852d61fe9ff18dc632cb93a29688c951
MD5 ff86533a9eeeffce0856d9bdb3f38329
BLAKE2b-256 e62bfc27008ca0e4fc5330c8b3bccb8b15c268c398ac1a12e713978f1f802f12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.4.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 584d39228be29ffb33ce7dc68336710c0abf19f6254ce8754a58eb7d7e870036
MD5 2d3b58d34b420a892653a980b0f3614f
BLAKE2b-256 48acf03e13b4b08ab1e69baad83af8dc111945162dbcebd6761e89193e56140a

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