Skip to main content

No project description provided

Project description

pydantic-core

CI Coverage pypi versions license

This package provides the core functionality for pydantic.

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

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

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

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

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

Example of usage:

from pydantic_core import SchemaValidator, ValidationError


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

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

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

try:
    v.validate_python({'name': 'Samuel', 'age': 11})
except ValidationError as e:
    print(e)
    """
    1 validation error for model
    age
      Input should be greater than or equal to 18
      [type=greater_than_equal, context={ge: 18}, input_value=11, input_type=int]
    """

Pydantic-core is currently around 17x faster than pydantic standard. See tests/benchmarks/ for details.

This relative performance will be less impressive for small models but could be significantly move impressive for deeply nested models.

The improvement will decrease slightly when we have to create a class instance after validation, but shouldn't change more.

The aim is to remain 10x faster than current pydantic for common use cases.

Getting Started

While pydantic-core is not yet released and not designed for direct use, you can still try it.

You'll need rust stable installed, or rust nightly if you want to generate accurate coverage.

With rust and python 3.7+ installed, compiling pydantic-core should be possible with roughly the following:

# clone this repo or your fork
git clone git@github.com:pydantic/pydantic-core.git
cd pydantic-core
# create a new virtual env
python3 -m venv env
source env/bin/activate
# install dependencies and install pydantic-core
make install

That should be it, the example shown above should now run.

You might find it useful to look at pydantic_core/_pydantic_core.pyi and pydantic_core/core_schema.py for more information on the python API, beyond that, tests/ provide a large number of examples of usage.

If you want to contribute to pydantic-core, you'll want to use some other make commands:

  • make build-dev to build the package during development
  • make build-prod to perform an optimised build for benchmarking
  • make test to run the tests
  • make testcov to run the tests and generate a coverage report
  • make lint to run the linter
  • make format to format python and rust code
  • make to run format build-dev lint test

Why not JSONSchema?

Looking at the above schema passed to SchemaValidator it would seem reasonable to ask "why not use JSONSchema?".

And if we could use JSONSchema, why not use an existing rust library to do validation?

In fact, in the very early commits to pydantic-core, I did try to use JSONSchema, however I quickly realized it wouldn't work.

JSONSchema does not match the schema for pydantic that closely:

  • there are lots of extra checks which pydantic wants to do and aren't covered by JSONSchema
  • there are configurations which are possible in JSONSchema but are hard or impossible to imagine in pydantic
  • pydantic has the concept of parsing or coercion at it's core, JSONSchema doesn't - it assumes you either accept or reject the input, never change it
  • There are whole classes of problem pydantic has to deal with (like python class instance validation) which JSONSchema has no idea about since it's dedicated to JSON

Even if we could use JSONSchema, it wouldn't help much since rust JSONSchema validators expect to know the schema at compile time, pydantic-core has no knowledge of the schema until SchemaValidator is initialised.

Still, it wouldn't be that hard to implement a conversion layer (either in python or rust) to convert JSONSchema to "pydantic schema" and thereby achieve partial JSONSchema validation.

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydantic_core-0.19.0.tar.gz (260.4 kB view details)

Uploaded Source

Built Distributions

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

pydantic_core-0.19.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.19.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.19.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.19.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.19.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.19.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.19.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.19.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.19.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.19.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.19.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.19.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.19.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.19.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.19.0-cp311-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-0.19.0-cp311-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-0.19.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-0.19.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.19.0-cp311-cp311-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

pydantic_core-0.19.0-cp311-cp311-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

pydantic_core-0.19.0-cp311-cp311-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-0.19.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-0.19.0-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.19.0-cp311-cp311-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

pydantic_core-0.19.0-cp310-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.19.0-cp310-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.19.0-cp310-cp310-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

pydantic_core-0.19.0-cp310-cp310-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

pydantic_core-0.19.0-cp310-cp310-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.19.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.19.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.19.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.19.0-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.19.0-cp310-cp310-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.19.0-cp39-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.19.0-cp39-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.19.0-cp39-cp39-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

pydantic_core-0.19.0-cp39-cp39-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

pydantic_core-0.19.0-cp39-cp39-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.19.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.19.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.19.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.19.0-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.19.0-cp39-cp39-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.19.0-cp38-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.19.0-cp38-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-0.19.0-cp38-cp38-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

pydantic_core-0.19.0-cp38-cp38-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

pydantic_core-0.19.0-cp38-cp38-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.19.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.19.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.19.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.19.0-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.19.0-cp38-cp38-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.19.0-cp37-none-win_amd64.whl (1.2 MB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.19.0-cp37-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-0.19.0-cp37-cp37m-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

pydantic_core-0.19.0-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

pydantic_core-0.19.0-cp37-cp37m-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.19.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.19.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.19.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.19.0-cp37-cp37m-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.19.0-cp37-cp37m-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-0.19.0.tar.gz
  • Upload date:
  • Size: 260.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for pydantic_core-0.19.0.tar.gz
Algorithm Hash digest
SHA256 83894e9b970d62221181fb9d4969bb70cce83aa724ed62466e35c9daa8efe088
MD5 32220d09b5c58b0a413564674a4b4b56
BLAKE2b-256 5dfc5357c61b78b682dd4bfda4b005162db6f223827cebfa1b5378772e05fd1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 10ccb27de1ad390ee0676dddaa283850914cbc0c685badb3fe6725c79cc1f3b5
MD5 a68f2cd01ca9ca4581892778f9ce7335
BLAKE2b-256 e0b4174a9beaaebdc3eb35a43487473a5eebeae5517eb7589696f4511c4f26fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0471542f752943c27c01f5f74f8f4ae635630c289cbcf4b9ab7926596f450372
MD5 a5b931929b79e482399c96619a527387
BLAKE2b-256 22cadf9cb3344ca303b2f3e7aad8145e555e2f9a515b60c2dbd8bb2fd510fb84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7fa04f433fa6dba147a0607c4ddb64119895ccfb1ff5aa3a8e778dde48c39387
MD5 f1621f4921aa673533339c412a51ec79
BLAKE2b-256 a2ecd313641e7e0ed850811ce22419101e24f1e49352efe5a9ac5d5349cbfc00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c05d9c1a5f233d06112c65eb92650462aefebdb56875fb811cd14fa554b316a
MD5 ec932e132a1c21d6954f11c4f3faec49
BLAKE2b-256 8cfc5ab060011aa3833f9402003d2262166d361256d67f1a887998b38c51dbc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd6534eba81a390d0abacc1342c395735689554f7395eedb4a95fe807fde4891
MD5 efe078f11c423cb0c526f1b77bf38652
BLAKE2b-256 dce5b67d9743a68690327bfe4b6c16e0e9a5bd7a360d4d707f0f5e5456f7e761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1bb523358a1d23705c015070893cd16fc98f557292129f647f03a604be8b8fd9
MD5 07ab130c65fce15c2526cde77b5bbb5b
BLAKE2b-256 57e244ebbe2a961d27c91f81af503676408491ad19da5b92dbcde202e4c8654e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2661d584c0b993d8c8177997dfcc3b1ef96126ed141835623747a8d25558f876
MD5 e52ccdb042041811c7336cb5f00b1869
BLAKE2b-256 7f5c39dca6233ed6dec80583dc6aaa94b8c73beb7774d61343a2d96cfe953487

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c2f997b1832ef23b67a506167856844d4792e38465ab14ccbff640750f3127eb
MD5 9c1bd5634fb631725e727fcb15868d70
BLAKE2b-256 58a1e125103d52a14485847b1515e9a9d0545fcb6cb398f339485f94f27e240c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fe4bb6035c23d3c77ed6b96baeda423dc73d2245d570e746d93c2589d3292926
MD5 6065aff54a357b28d3da60f6ce8d7a88
BLAKE2b-256 d021b5e4811d5401ae2460c2071c3488b73d549c82c301bf62782ca95060ac30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bca6b513deeeaed71b959ccdf84d6558a3ca3b37204d7afa08f8a485a175c45
MD5 874cb9f4b5a0bfbebc21c423047e7b10
BLAKE2b-256 be3e54435b1d94267502a7632f9519035a1633aefd51a4941698e547807c6657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de7e133485ed85a188e030cdb152f8387b31298d63b0393199cf73364501d3c7
MD5 ea3bdd44c50fa9c383a28300c11abb19
BLAKE2b-256 15411f1935b284edd37e49a79dd1a76e3f42adc977d350b0cec3835e52c6c1fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6995fda67d359bdcc7711103cb11fa7fa1f033d5b1780dd9f327b75d747ba8fc
MD5 030f7c23ef799bcc47f802aeedccc88a
BLAKE2b-256 0f4e16b245b26dcc8a21e07f6cad724ca230081e8f055159fd62f4ce85b23547

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 80036b83e9a6080f26b31ce44c1dd3f5b1b7df12e1481c21c1e58dc14a87cd97
MD5 536ca3358b1819803fca3f1f4de19b89
BLAKE2b-256 56275732cae31bf894cb3c72c89579f4f96ebc47b46cb97880cb8fdccbfac3c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e9bb1af99d96be4be806ce5b86e8e2022da68945b5a52fa0bbf09ba9fa1717cc
MD5 14d08fe9ef46d83016c4402e8d9fab7e
BLAKE2b-256 820b42f28e061318156510c5bfd9563a4c04eef107bf831c779aa0c8f872aaa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6f4bb4c147adfce5d1f5d291fcd6edba6ce3aabb2284037d803ffeb2bddea3f
MD5 03ecc3f8e97be24cca9bf4c240e2df1b
BLAKE2b-256 13a6fa538f60585fec12870a51aada3718a2942ad774a8fb9a62ff8fc06b3234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04e1e1443fac8d3b92c4c7919db397006682dc0cfe7fc7d20b1994d64b1b76dc
MD5 824d05bc22881adb2e30b25ec9778224
BLAKE2b-256 d167fe942ac55b5b1103ccc38ca59c7a59efd9b535ec64c2c8c875a8f72ed1e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 19dffbb3a96411db38b82ea52b5697bb4bfae76fa927ee67f170fcfd4545dbd6
MD5 cefc974f7bb43d7dcef77cd38ad0263c
BLAKE2b-256 92fb20cf0bdaec4b62b07696607e940d3d158ed23058372f695236ecd64135ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a3886b1ecbf6588ad3ff75ac0836cd37681df0263ed8308893f008f3cfe6d18f
MD5 b955869b0824314d020910fb9dbeb2d1
BLAKE2b-256 84bae89e25044069069e17fcd350fb3c4067ffeb76cc0fabf03d2e7b47f34ad8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 67fa71b1bf43b70f107ba8174f915c02960786ea4d4af2af058f15e1d2399640
MD5 00338b8c29773b40021f6da5a3cc1a31
BLAKE2b-256 36073325cb5d12e4aa25319d50a5be021da314feb2dcdaf2df51df67586aa3db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.19.0-cp311-none-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for pydantic_core-0.19.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d01f3f3ae9129bf3e8ff18931097b34b247443d2930932ff9c3ff76800772b0c
MD5 316dae1534b4f7e68a8ea8ed8a7ccf56
BLAKE2b-256 f1176509f0b88158fd0da67b318e33681342fb32c47b73110c63884fd55a50be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 15d4d97896c0907eddab755bc6c336f36a7a0c40d93caa2f71c0a4fd6ca79893
MD5 697e8185354f37065bbfa928a653487f
BLAKE2b-256 5b82651e10b55277419b80c15f9520aeb5dcfc0ac96a05b94349f14d54007825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0aa5e128cf8a4a76cb2328af4987f7e8e434ed04522348693f93543910040089
MD5 85049a51e7a19e5015aa1ac4e4e25eb0
BLAKE2b-256 f04a5c0621b77ddd35825b84f58f8914bea74bfc0adc1e86104bcbaa2eeae26f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 45509923a603bee1651774d0a709357e11e872dca7cec7e45abecac56afc2628
MD5 ba9ba618eb79bbc8285d6f0648a7c9b7
BLAKE2b-256 6c80f020ecc447867c1d72c5849f06175207f91aad1eb6d2133fa09366b126ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 07c952b03c47fad1da1d38da00ec99d14ba162e03e9d8bdf57bc709c27afad96
MD5 fc5e7d80ef942c3d3dc5bf6a0e4affc5
BLAKE2b-256 39b7d23cf803bb9b338fa4bff6fe76241036ab7dbe3c7adb9e173039b461448e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 7710b0bb0c976c95075d034af4461a5652e007c4e5b4b9a4f22605c3f6214faa
MD5 b2498650f0b9bfa909015e3da0626ef7
BLAKE2b-256 0ed7cb7e0c3a836fbd634f1576f152886845af3eb08187645787fa485aa7cdef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f8e1f4bebe89035a402b25ba01fedb7b925ae666711d49ba8ddc1c54441c6d3
MD5 9e84662e53e9b93d43677e59fc4d0b4a
BLAKE2b-256 ff5f13bf051cc99819ba70f9edcde35ca762293c29f63a03fb99b94fd0b5ef5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38ff853283508023c64384941feaeed98c47bb62c88dfa88f513c7ac2b637fbd
MD5 2be41f0f55565125683fa3f06e556b07
BLAKE2b-256 7bf753f49ac7673073344f0af248d454cbca9ebbf611737fe283fe72bc158f40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 268e00094d9857b6f719a07b5b81af65965e3ed6eb48e72dc4e2637600044318
MD5 bff3619b6aec485fdcea35481ee792a1
BLAKE2b-256 df98017f3488141997063f87315fa1f81731b0f9b459f6dbe2d7c7163e7ea4be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba55788b1c03f4b96c88eaaf3d9d70d0a55d0b14a51ab1df96664450c74418aa
MD5 1f137e017f56d7df76977ee4196ee58b
BLAKE2b-256 e0fcf470569707be2c67bf524b8e1d8e5fe9bfdcb324b6f0145f94140b96a96f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c4bc70ccb795ba4cd074bc44e31a186ff061c4e7483dbef38ba480fc2838b75e
MD5 9383f7f9bb1da02875dfbec16dec9d81
BLAKE2b-256 cdc9dfc4e076d6927fb2903d9b920ef2f4c7172393624c621f89b9b329c15e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7453c6220a55ef3988864c39385b448c111784727c7e546919f372707a3f46f2
MD5 ba4dc924818fc7025608d3472396c6d9
BLAKE2b-256 06e0c69ebff0a2636e01ef03c458e215ed2a571457ea0a477c3794389bc7193f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.19.0-cp310-none-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for pydantic_core-0.19.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 abd397d7ddfb20912012577575819d7d98c88cbee20d1ccbb5bbadd8075dc9dd
MD5 36f219c312e8252082ba3778f6c3d44a
BLAKE2b-256 5ee9d3ac3b1540c8b001a1f7cd2ba6f1fda7b512ecbacc1d3f79fa71d0d22b6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 50c423b38818f4736044af522b1332985e56d6e8c02e744585d19b669009f9ab
MD5 3549b16c8d104209193426515f53e709
BLAKE2b-256 f8357a1b6395c5bc10fec02b3d57aa531b4e53d3b38d7d957878800a5577326d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d20adff95b7b3f5ef6427185afdc07760f4a15eb9afced830b38f7c838ceb4ed
MD5 e0d60e12ff03c9a1a2614710ca7ddbff
BLAKE2b-256 4564b413178c82e00f8b0992bec42bc11922f7f55c70b2841ea77e00a24c25c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 4367b08aa1b2c998a17f6053ad2ef869f0af5998b1e2c9f9ddfe1ad2186cb044
MD5 10e512cde48652360e63de7f9ff2c26c
BLAKE2b-256 f40d7b1b8db329a3fe1e67d19bbf9fa71d61ff8bdfc73e2016e3c42a24c5572f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 f4d67e49e0aa4e6b37f47963a26cfd38418d62f6a91a77521007dce9b289c91d
MD5 78c142fdb9ad1b6a28e8c55f2284b6c2
BLAKE2b-256 2e1ee4be8de50d8b1d038f56ae83e0730b73f3bb1ce37fa35e0fa1d1db5e01b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8f230c7b5bb29a3737bbe6bc49c886652052fc8767731893ebb30be45074bd50
MD5 45578eeb2869c46bddfc6a23106020dc
BLAKE2b-256 e41c47fbe821520f7d4cafee674e1cfb7a163f750a1d6b249af054b6312bbce4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8badcd2f63c2dc462e7842b703d0c93c5a94441f424c1c066151eb511d4733b1
MD5 271339e64fa3816bc67b9fbfd64f615b
BLAKE2b-256 f1964a3a4fb601a8d85799a22458f14616a43d7c7eaef5f5fe86479e90a78bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d228c76460be94fbbcc5f0bd3e6c7e8c411ef654ae41c38b0a07897cc425d964
MD5 8ba231720fe5a18067435f176e114f35
BLAKE2b-256 fa395d773b31f223328d625a4e35f8e52e469ca537ecf7e1a6aff8ca8e68215d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 84c7d91fb8118ff668f13947298a75c59b80abfc3660ab278072b543b8354af5
MD5 970fbfd8ebf260c47edb5110ac8f5af7
BLAKE2b-256 0402d55849ca6de482ebbf6f96ef58dfed8f9f8f2a58ffbeeb83dd14c8d30cb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e2ba717e4befe8be35df7c61967fc5b86fdeb22ef7a95159cd2e2ed2450895d
MD5 d0c3e17e6ca4858cb512dc30926a589f
BLAKE2b-256 19fd9b29b7c9c94d9bd8e8ba511afe34281b1b9e3c2bf51d45207651b52f2d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f45230838ea5056d30141a50934037c66ed4788eb71cc343e1bbe5b7cc7c0583
MD5 9311f6d23d5c8d5a7becc764e9ee8fb2
BLAKE2b-256 5724457633383e8eb3ceca6215535cf819d06b8287b545eb49b709294c8f2a30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 8ebc366fc2aefd9d23bd0ab47e455df9b3b260084dae53790a2a422d3b89bbab
MD5 aa1b3649b78217e3681d34dab2ee9fc6
BLAKE2b-256 e7abffb4c754484e5b5f1076ce509af03741bc9eb149a4b92372bc7867e39ff5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.19.0-cp39-none-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for pydantic_core-0.19.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 e27598fbfea1cd751e73f7a67fb74cfce61eaea1f93cda560de5f80d10ffd98c
MD5 4d28b36d942d2f851f267103547c6572
BLAKE2b-256 a47d961fbffda9cb5d4efb3c3c3417f19f60008227a7b189f96b6f844f1f576f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 db320eda6b7d2a02723b2846fe2d20aeb4bf67bbd386b0d48f0a78905a55496d
MD5 e20b14ef34c9f38c83c6e9734e5e4387
BLAKE2b-256 81bd72528cb22ce8548d26ca3785125c258f66d9606e5d8706d9291bf372e41d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5303facfbc61c4b08fecf2e535bd99ac1b65f2e816b327106fdc89b72d260075
MD5 ca724b35bfd61bb95ab2bda644faac54
BLAKE2b-256 7d9d9c838ff8d90b08c8b5f614ccbda4b63bd14d7be135ab94acbbdf3c199f1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 1272884546b464bbfec27bfdd0a879ffbfff72890f82d7d1f240ee72e5982b98
MD5 0acd12c0aac9ddc3256c45efe7ecbf73
BLAKE2b-256 e5dceb15f67a4ff5a5d6d26eb170bf14557ba0ade20e2063b63e68ccbaccd821

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 e69b9b6d6fb1a51eb9426ea9a415cb2f2077df60bd8169238aa6e6fc81a3184c
MD5 c8470bd6e401860578fe2bba000ab6d4
BLAKE2b-256 7d19be19ba7bd9f9196185fa8949ea9e542e4b6f832d3708679a5b49d72f76b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 99b0d35d9ec0adbfd0efc0065febc6c9f5b62f8e289cc6a18eec9ae943167e73
MD5 16105b1f256faf30b3958846f1082acb
BLAKE2b-256 e4ad6089d25228015c67b490b36d72489985efc5a5f89c60eaaadf2c5bdb3a0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9be569c45d56b3f151fb6a80424a68753aebe7157a5174ae997384f0d04e65e
MD5 2c820993aee0a5792a2b476e6465ac4e
BLAKE2b-256 f218f2dd968221166fcc94ee9a33974b4852254cff61b6527d905f743a5bb07a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 879f156a5adc8a8d051c64313b51129ca94314322e3ae08d6669463969f339b8
MD5 bc46c82ed706f3599bb90572669a4b2a
BLAKE2b-256 c7b16887e66fa42ab9d0a0768ffc0be08ba751ec8116a898af1aa053c4db88d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bc0d9742d9133f2b6cb04a9d5ace733a320e35483d1b049a3d62fff6a66a8d3
MD5 f64e78348c51f7a5aeec18c0e4209902
BLAKE2b-256 c8235ff4cc49eadb3650e618a68fd23d8e158e965903e2b7b13984f5fa999b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dddce2577d90178b1f6770a27a4d8d308a10c0e15dd85f04b3d962f3e551e8a0
MD5 20eba9c9cb461708ea811ee7702bb85a
BLAKE2b-256 b811fe131997b1a281eea72e2b2e8645dda72dba9ff29add2006375bd0c78b65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6320b34da9bfd6aa1dd9dd0088d14bf5f4d03efebd0c396b7ecae2c0241337f4
MD5 469a94c5ab1a58db1083d7d6e5f42521
BLAKE2b-256 fb2ffffd7b526a085b7ead39b2fe4b5ea76e07bf95d849ac002e1e913a81363a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d6b643e500b054f8c80ff8a2e2921afdd23bbef4bb7ed233dffdefe054ebac69
MD5 cfddb88ad9a4ce1df6ccae8baebf68e3
BLAKE2b-256 92133406ffc0669f3b89c56287ad0c21777e023e0679d7d676cb889c8b2ba7bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.19.0-cp38-none-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for pydantic_core-0.19.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 c4629ea59cdf9f3a1e482e4fcba7d0f11b1919e7185fe098348a01d894fb846e
MD5 5dee3559f4cfab6c8e608e84af1bd09d
BLAKE2b-256 5e0ceb3c667405cbe566f5ce455aba2b6c31ae38584229d8be36f71c181271cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 beeb37df30dd2d406b9d4c9153e90ff548c0358e02d5f06d07455bddec4c9f3f
MD5 ba0ae87a3020237268989eb2992436c7
BLAKE2b-256 40b5014238a1f1ee93959994a24a664ae22eca755f804ecd3b5134d90ae0dbf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 60bdeb1ec6d7e86b2444a3a63a4306e58cbd8db542f4c3247d160a9875a35b85
MD5 584908eedb117fa4fd0aae0a132bb623
BLAKE2b-256 52d0d3d01a0a56971ae884fe729fd6493d2bfad09ae356c64c9ba5fb6b6ee003

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 9aeb089de1d33fa5962c940bb3d21d9379aec4f6e84ccb2defc9c972ec125340
MD5 2297364352d801bbadcf607e5415066e
BLAKE2b-256 17185f669c945198f30d363846343fe01f8c5f19c3248cec2182fadf99fdc843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 06d0b4ca89c5edec5679b4e2f5f15b13faac26f99ac6c6628f72cd6b8d9746e6
MD5 e3cbccd098343620ce681852080799c2
BLAKE2b-256 5b34675bb029a4f44039e964c80a505f15a8cc6592fcee3ec7b40a0aec1fc524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 35ffa26f5de052348a3f0b5ec3775605e39238b7a518e7c257a6f9292bbb540a
MD5 9d7d84123a844799e21e31b0cce5545c
BLAKE2b-256 98179537f902c23c616bad3ed9ce05fbe3acddb7fd7c47ffed88697ff92205f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d93af6800466efb56f59b4ace4f77526af003ed0bf5a33d7c8924d2f927ee20f
MD5 26de5ca65230aead5fd32662278589c2
BLAKE2b-256 f345aad7267ee928d168525fc7d7393c7830bb0a33d8d12f468ecb982b91d2e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6c191b4ffa0734641d0d431c965e40ad3faaecd75b001370c51bb55e4ec327c9
MD5 b6a4a7a1ae1ffc2f71b89722ff18b780
BLAKE2b-256 1d06a93296810fab64aab55ccd3e1df5e5733376a677708b349d0f36b6f0179e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 befb10b1e25f8da7f1ed9007fe619dbbdb51cfa8f2c59f76edae2616ebc915e1
MD5 a73e04834f954779a3a30400c3dcaa70
BLAKE2b-256 72532ea5e90672eb2c1f065e8b6bd2851f83c5f9679aa8622086acfd23df6d1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07ba7b85419b0c348536d8acf308bbabaf5dfd04a7b1e5fa4c82f8e48ecfd2d0
MD5 11b36006451e6ff65dd9640ffb9aadde
BLAKE2b-256 e97cf018e79af641dff9e4e5809e57a04986ed047eefc01ec23d18bd6ed57b00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cfec29378c8ae6b2d4d2b0fd837f58fa60dd6c92cf532a583944eee5a08cbbc3
MD5 25769fd5474501083d3a9d80cbea3985
BLAKE2b-256 4a1d326d6cca90e12ff77922bb1041e13dd008c1e5a599e13d01ef9878442c4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 a327c9c5e540385fc3ea2fc8239d2eeb42e4ad20647899a3bc3c669909d8ee67
MD5 98da1849c208b4cab9840cd1c5616045
BLAKE2b-256 e83a3d4686ce081211b28cf029083b3a905e187acfc41e8c1580cb33efae5678

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.19.0-cp37-none-win32.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.10

File hashes

Hashes for pydantic_core-0.19.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 33b4b8e9e41dc46922edad5492d9e50f203454d234924368208d8b29e8d51c61
MD5 8d59fb0556d2ae838d1783bc327ba3c6
BLAKE2b-256 55aa1ec2f196f9c060f09c949b4da8a20576f3f869f8361f2a114a2883aae7ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 98dfddf152e83463de92899640deebcc8af5e4f85864b77c1e3a80a38f384a54
MD5 0c839946c253c95f19c551f9900134cb
BLAKE2b-256 99eda648f10bdf8d147dc8e10f0a84bec1ace7c7060798d61973fe393056abfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 37dc257d635d00acf3ac357e8376c3a8de5f78d4a695f66a20188cdf218e5f8b
MD5 952b203c44638ba0377da46dcfe41b7e
BLAKE2b-256 89a9bc154d35fc37e12f6bc0934dd39bbe81cace064e47c6f241850f463db748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 946a6fcc0fc88a6707be201c8a87376b62b3c37c66608933256237ec91ae2964
MD5 720fe8e9a5009a99b315f0142e89155c
BLAKE2b-256 9015af752d1076ab098394b96b19d4e1878423a5e681e3bc0a5f19af060e7bdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 e189061c3aed8024f5450323c93e683454852ad9980f183687f49ad5ecf52bbc
MD5 b9bd7c2d477b923df0ae52c2bb5c24ef
BLAKE2b-256 3719277392f056699f4f4c4bfe7b101b3f7cd5ef2ca975f26550706b87d7ea85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 55cbb0a351b8c46aa215f299e2ddf369b733b213053fe8fa63ac9a4c342edd17
MD5 8b564dbca517239554602bc6406b06d0
BLAKE2b-256 a24e01e880904235913cc005b669210ed4384c212d2564c079b79f172243bc6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbfec73c0b593851b11fc7364dfc8858aa7da41583ce7ff73ccb7460941875f3
MD5 71271828692033ed11c3e2de97f7745a
BLAKE2b-256 8d04349012f9404da9ddbfee2c99c54495963f5e845a6633e510e37e71cff086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35c14ac9fb76aa5dc3e29b2a0b700584d61085df1be69cd2530099395277585d
MD5 3add2eb0602d6143342d78021c2bbe8e
BLAKE2b-256 2ccdf0c460838b05503268ebc959a85ecd3868936dcb6fb2243828b3bc13ca01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a1015caeeb7af1b1c114997d09fa915e2ad66bdc1d7fd8a7637982e49c42907
MD5 fc787b0187dbbe5a1bda89d962717397
BLAKE2b-256 42ba1950b9b995954fe30fb13a364d1d47ed4afcaeaa9848651dda5506e83cf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 28b46e7a578524c0f210b5ce19c84892001be2b1fc777e8e97c8176068f4b61c
MD5 9a17a4451c91048316aa80365698f525
BLAKE2b-256 5189ed68d01370af82d0b618601aaad4f88bbf7f853801f4834db79a43f592ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.19.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1d59e345d25aa00474634347a947240128fbd055aa6f7ba58a6ead7c6fb25c2c
MD5 2ca8db48fd5dbb5cc56f9db899a5c255
BLAKE2b-256 6c7363196f4a0a610a795b9819becb38aabc21adacf1d04e74959b6d148e3db0

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