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

Uploaded PyPyWindows x86-64

pydantic_core-0.29.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.29.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.29.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.29.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.29.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-0.29.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.29.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.29.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.29.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.29.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.29.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.29.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.29.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.29.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.29.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-0.29.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-0.29.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

pydantic_core-0.29.0-cp311-cp311-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.29.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-0.29.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-0.29.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-0.29.0-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.29.0-cp311-cp311-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

pydantic_core-0.29.0-cp310-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-0.29.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-0.29.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

pydantic_core-0.29.0-cp310-cp310-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.29.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-0.29.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-0.29.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-0.29.0-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.29.0-cp310-cp310-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.29.0-cp39-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-0.29.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-0.29.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

pydantic_core-0.29.0-cp39-cp39-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.29.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-0.29.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-0.29.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-0.29.0-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.29.0-cp39-cp39-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.29.0-cp38-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-0.29.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-0.29.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

pydantic_core-0.29.0-cp38-cp38-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.29.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-0.29.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-0.29.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-0.29.0-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.29.0-cp38-cp38-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.29.0-cp37-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-0.29.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-0.29.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

pydantic_core-0.29.0-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.29.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-0.29.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-0.29.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pydantic_core-0.29.0-cp37-cp37m-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.29.0-cp37-cp37m-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.29.0.tar.gz
Algorithm Hash digest
SHA256 75d48fce2ee6989a96f3ebdf046894d8b1044d90c87988de70e152cd750d1344
MD5 a3a68c00e7c754de89d79a2f448ddb5f
BLAKE2b-256 1ff0030c61d55f0b00bb3b5e90eadd09074f9de18689fd26594d40fc3e30dae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c7b4ad71bd1479afdb0396609aed0f34eb7439af31c84960e30ef67a0368396e
MD5 ce923f529f968b89ea8913856796bedd
BLAKE2b-256 ec68bb9a51ead5d1fa2ac5accb43026531e9f414eccadd236cb91b35b743a021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a34151f33e1c6575a241db05040445d4baa541b72605cf6518fd91466119119
MD5 7ed7b40567a1932db04f895f438f941c
BLAKE2b-256 62fb80f54e93f8548692d951c63cfa49bc755452c561408cfd0bf593490941ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6f3c84f2653daba280b6ed481be2b3e2fed56ce7c0471238f6df45ffbb5a9b24
MD5 ccdff9f6607670d244b6db876585c7f7
BLAKE2b-256 2ab370342bd5379548fb0a4a013d2d3fc104b0b2507a4e53091ad3fc0449515a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f35e5eeaf99266b40493bd2ed46197076626e09af8ee78a6c5ff43191431375
MD5 ad90114a97da43886105e2ef76452cdb
BLAKE2b-256 a82288c8d37d8a4b06b9833f6dbe27042e97d830a02bf4177c8e84f4eca4177f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 979f001b08f447c1a265a6856ef9726618b27374ee504b8b67bd8f84470b1517
MD5 588a241850810a64001473103d6e0def
BLAKE2b-256 94367a00b93bacfc0248a10e0b400b0477dde40490a7c483b3855531a349608c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2935d1dfb6b6dfac8b29d4a5c28801730db0606341b5a93fe82ab7684d7736dd
MD5 2f366794385a69d5c7074f0b5a203fb8
BLAKE2b-256 4bac816222c44a847718ec91159b9244dca0350a37cefe6dae4259b5a567ae1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8452e69b43e1c7f9ab3b40aafbf65cae7f1b808b80a55292b81d42f4ab321e77
MD5 48f1bc7b75566021cfc3482cc3101208
BLAKE2b-256 c756447553e6b5e21186ae3cf5ad2a2c695ae1bc5477be908d5df78b5263e5d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 56230c053c13820755e84888f75cf66815854bfe44d93c51320486000f770e9f
MD5 cec7bf2d0b9efc8175a2d5da2d686385
BLAKE2b-256 277a5202e6d9732d8a54ca29905034273c59575f27de9f17eba9a8436256b455

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ee66ef4ebf2083e516abb5be74e27fc196be22c83e1855392dc5d3b14ff4a769
MD5 8d201db22271931107bbcc9c5d1eb43a
BLAKE2b-256 1a3c117ee46e9b313a9c5592d0f961dbf58dbb3cce875b0ab699945ed1cfb1e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ca99987ddbd16617faece407a8dff87e517c6bbf909c67f3ed2cbc1be45c222f
MD5 d924263bffaf84eacc1443f82342a3d9
BLAKE2b-256 92187cc2c50469fa30459a844c97d032ab423e92431cb1079fc16c486075b8ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9b703b14134ca3f358ca72f7536f7e103d2215a5c77dae581cf60b6d3058f809
MD5 4f24cf7c2b5b4595e1062059d084351e
BLAKE2b-256 175f86c725045f550962e58b72724801285a3936c61fa05f5a56f4ca32cdaa92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5306db677f6b5988ca8ea9bfc7bb5a94e4515f7c7341debcca58b77e2b88aa1e
MD5 d423145262a01e9b0f73fbe7f72f0c70
BLAKE2b-256 296977add124abb82b49e12b8acf2e82e0f78f237fe59210decc52f609b2442e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 441c7cebd5cc06f364f30be5514a248bd92ecd452d5bbd042ec150214531cabb
MD5 ad0d852816828f45703d79586979c955
BLAKE2b-256 42ab8b468d448bbb67fa68c1d8fe9cc654057c1bb85453d239dba048a4584dee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6684ba3201221c75dd05866bc61876979aaa0ad61bcb9bde4d581c262988872e
MD5 f46c4cb6c37531bba443aa9963042ce7
BLAKE2b-256 a4001d79be72df48d82be73fca43e09c56c409f85af8d51a74450fb9b99dfe8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 68484a547f2c7c8290d792b8927a2342f307ee8bf05de6cb150f763dad5db871
MD5 094aff12880c71adc3ff23b64d3b4cc5
BLAKE2b-256 3f29b6083300931dd2aa47e25e30a597442608396255ab510da66844d274561b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b21081760f1fb8f0188ce13d0087763e7ad09d067818352ba646137b838173ca
MD5 7546b1137abca14782c57b40257fb761
BLAKE2b-256 4efa980c15d98c19cf6eaeb610028226555f8df029478f5110ed4005a45a715f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f23fbc1dc78561ef8d20ba6ea8b98d52b3fba9b182e5c8383d327343d65bb86
MD5 40fc22c69cffe1f68927b5bf88121086
BLAKE2b-256 d1f3550e47c7389da498b0cf7689f89c0150d72ff617d1be5cdff606a715fda9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81a5f663d8b37097f1bc9a9cc864b677674306e8f638d6bc057e228b74449b66
MD5 d88f04d69948c2f768b5658f93274d04
BLAKE2b-256 50d70d3f185036cc1cc4f37f8d4a72e525bed328ff9e19fc36cc31ecdc09484a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 79d7d705e1fa9e25ff59c3803303afe659ba8ac035966d8b120c2ccc86d0676b
MD5 ab1200b64533c26b9afe8997cec3892d
BLAKE2b-256 f24a03f56c3a328b1407b5a0abfb5f42a47a4e3d8c42eeb6049893f656f13b54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 39d70929bc2a823c314884bd34c1a2ccfa72791483259c384b786b6dc33c55d9
MD5 c44667c51e8dfe5879a5ed213c675dc7
BLAKE2b-256 264845d4e52d7e1931672bfd028ba3855b50ee3ce6b316fbdda67862c2e1b6d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 10ecb158178a2ca391834026bb52701d6b7d04eb72fcc1d743d8e8a2f79402aa
MD5 ffdd8a11e99d0149594553bdbb26c0a9
BLAKE2b-256 28b2af3e4218e337d632a48fec4121db730e3b76aec0016996731e3e0549b221

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.29.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 90534087d7fe6de274b3dc3c01e333c06e6b565b9d1b10d9cc8f26ee179e88f4
MD5 0683bbd99eae023890f1ac04f70483b7
BLAKE2b-256 986bf4d3510fb4bc3a803b777b0f429fcd77c6b89deb4c404411d8ed8b0dd3b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5b4ca92cac896c8e13b12e42109304ae385e48dde4b321d04238ba56997063c0
MD5 4cf42fc73cd7ef249c1148540c9be350
BLAKE2b-256 0249823072252731176db03873ab4679b2e80d7cceb5c9e3e0b6ec723f31c8bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 674da2765e56c61aebf35b8f981752e2df2dbd090e9d2ea1372be530480b8500
MD5 713fd91dcfb88e6b48703ee378c7db83
BLAKE2b-256 a36c8b9ed2a49767a3852f4b5114237a8fcb347507b9ecde0878a490fadc0abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 d67be1f5a5b3a322b4a1cc5933d4ebb24362c44290ba8b6d19a6b79787b2a111
MD5 576f70b64b83aa15ec612702a410b30a
BLAKE2b-256 84bc5ef40afe1adcddd3dd3e980dfff5e8491eb66c5f156bbd4df5ca74e0df61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 20ebcfb900addce79958a6c7ed7fa7441271729800205ec77382606d14e96ba6
MD5 e4b6262bc8f7fc57a44de84efb8470ea
BLAKE2b-256 8b0f19eae15388199662c818e0fce9691cb7f7e2939faaed86965e0492e4f2df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 a2ad5b123ee431aff18c51f69e5e7e0bd7ff774add3c3e1000d40f6dad9760ab
MD5 3a371220c0c3031fe1ab3343a271ed70
BLAKE2b-256 1dc76d624dd544bec1fd9fb589c3ace55ae3490ab386ba4c79089c3a08a97b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7d42b06ce0a029ba11e5df6ed67a03ec543730636d949ab4249cb79da7ba664
MD5 0ca25f9d7ba0c69218e6315a26cec757
BLAKE2b-256 a7030475e0086f7d7e19018a0d10171a65d5d7e72fcb50c14f2a20d2a3d311ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8d9e090764fce5e25fa0fd13e2118c69af3cd7a9b39dd4441724ab61a788f5a0
MD5 8fbde9ecfa86191d713b3b20558644c9
BLAKE2b-256 c8fa0ef18250d2fa85fb2e75796f187f406bd346a97a6f49651a13cbf20de8a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f307275463faf4a8652505c9d2f272c4d1b721d2d2ffa7993e599d42f4748154
MD5 7e517135a3adfe7448ad36a99b88aff9
BLAKE2b-256 1530c366f074b907cffdf38cd9d7edb50239c01452e329530839c372639b807b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f44910e5dc803198e54e7939ef15192de6e29469a0f00947d0ae600896c9901
MD5 c6c133e47d961bc577e633ac716a7cf2
BLAKE2b-256 f7f9b0dd5aaa575cfdee3c6e8dd58f82b16f9d67c0165de466c2b7c3434923bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3573841ac094033c70430c229b5b0acb1e8638eecb90ea291389c2c8721d9f5a
MD5 9d0a32eb391b1425eca131f9573cd18b
BLAKE2b-256 533fdc74f096af32597d6141dbdc88fa08ebeb965a0cde0553445392ceb388b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7c78055d9ba5340334b4d2d71f41aa2d784d842919635d49d56e66d2773b6f69
MD5 bb96d6345b9dda6c312a90d0ed30b4d1
BLAKE2b-256 1fe2b8ad628ee05ffb5b8587af32f4266e7c745421d3bdc896359243f3e809b8

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.29.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 04baa2ec02081cbd29c10d59f862857e5bc52c1af78b46290020a2217800590f
MD5 ecf3f684fb11eb8f81e31c834fc53cf5
BLAKE2b-256 ea41968c34d668485ea353b818595a706a2eeedc0b09cb463d9a06a7ae314bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a93abc85c25c06de56ccdb67832e042b5eaabcdfbccfe4c7721f4962eae4a575
MD5 488fddc4d07f4a331635cfcec509902c
BLAKE2b-256 58f5771be7ad91dafa09c066ff372c746df6942cb6de92bba8b2e178385d206d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5846556867ecd216c988c2f30491e876eb4c50b42f48375e69afdf1737a1411a
MD5 da7fdfb0402d14fa7037144e9c996df5
BLAKE2b-256 8220d187c736d20dc8b5f4cfe5686ba68b28f1f2eb064f8a89e06bf06a09741a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 be80ae2715bb366c96fdbdb9fe98e91343c840d3dc754e777283275e9530c76d
MD5 19170edb8cab4c4dc4fc43f831e589c4
BLAKE2b-256 f6c25f2ea0c26122edc58d30d2c8992f50fc7696f9e5402cbc9d92975fcb06b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c52afcbd0494b900fda80d72587099ec763626364854d42fbdd8f03904a67f6e
MD5 d18d41d6a52ac2b4d0ff64c48d03a15a
BLAKE2b-256 3d2c3c49ddb9e7882089e778893d1fa65cc461fee5d9d4ae6e092b4f16cf3238

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 620d379206a1e9b63dd2559a76c533d98a17be26ab37bc60a768064469833cb7
MD5 e1313bab7d9133adaccbb4133ef81667
BLAKE2b-256 5b4465bf5a44eff390b23dd1c4da10a272f508b57023863654bfc25ea5908248

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45c532a004852348436c907271334fe47792e6f74e42d1d7fb147f4874c9b5d2
MD5 26fa59862e8e8e4c356fa1561485438a
BLAKE2b-256 b9b89db991accc6ed43db8b7063f49b35b5ce0e80a650c0f53588f241c770060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51bf1f4cd1a3c8756a4f16095ab932d6b3fc1ed630dacc492824d87618145c38
MD5 24cca65ac3451b5cb3fb4cadba0e9b2c
BLAKE2b-256 b726b7794422b955412eda844c76d9e7f3728a0fd87155fdbaf57dfbc83c78a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1e13425208d4687fa0d8f38880aff33504a380ab71d0258b6ba618d54b85815
MD5 f37581719ee472c46c889579d8c3945b
BLAKE2b-256 848e8c414dee408ced0a707826c79ae3866a171a9c4b7887e89d49833f80238a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56dc8feec0078c177dcb0bf1e4cd8999807280b16732d6b30dbb0eac9db24e25
MD5 33df3ed8b83d0a68d69153a42cab8248
BLAKE2b-256 1356fdece160123b088eb900ccd13276f80718cc88330c03cdec8a9fd4b8b615

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2e3fc184b8eb6a7f639b62955eef0757e8537f5b7e35fdc22122b14106656327
MD5 32efb2c97961bd66b69ca3ce4c431811
BLAKE2b-256 9b7d81d66977b765a2d7a10ca7a21f11143ab23fbbb44ebdd3202c09e856e060

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 fe4f91b99d1db16aa94e91e524346e3aa6c0ec0e76f2614bed4333324aaa8bb6
MD5 a8ee8d3fc2c2ca26e8f5d5aa21c12bbe
BLAKE2b-256 13d201b5c7d1484064c6b4bb37e9e5490eae9447e4b592c31a8323fc8eeaba0b

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.29.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a1d3ecc20bff925ee73b6a06ee5005e5cc855652630622df17aefd1e3f5a8879
MD5 15534e704e3f85c6800dd21e96c795dc
BLAKE2b-256 af761f06a62552dc92e2795430d54880ac54a06baa217be2813128dd862449e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7b5b66ae8df56e34e7badce0216ecfd5d001cfca832b4168d8828c27d2d70ba9
MD5 60d92de51d9df7c1c28c377762b9efe0
BLAKE2b-256 b5a7aa7f3bcb3d9e9987973c8109a162e683c44ae6272470eaa0042da2119524

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cf8656c3049afecd2be7b0d10da7a90f18c894aacfb3775c904ce5e4640ab5d4
MD5 3bae332d6bbc41e03dd59e999f10eb53
BLAKE2b-256 0406ad77793aad47c93cec959850d15c5a4d70828568ffbcce33f63d5f4c9c64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 111106442552fb91287ff8f578eed2c7273f94be4dcce335b134c8b81fef318f
MD5 7251b2bc6e7513c194fdae2819c70938
BLAKE2b-256 880d4eb672f1707e7ca4e0ac5c23b1f6197c68eb99e6c09da595da98c8d8bace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 121816878b08684dd4126219c84226fbeed2d30a13d2b111346168336a1ed06d
MD5 e2835f8901b53f4880ecff3c415a2a55
BLAKE2b-256 6a97cc2ebdfd79ef668f71fd4aa75bd1a743955093c699a190de410cd8c4f22d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 91f4d014f81015603d01607dd55b4537e821964a0268dfa83e0b05e72bd7d66c
MD5 6faeed7d2485992613be326d88c422c5
BLAKE2b-256 59468298006b256308c650fb7d101e876cba3c77a7efdb854de4c28122ca8fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 751e0ed4597e6d780ec56ac3aafacc7e83b1a5823da7c4a9ebcee4cee31370a3
MD5 a6cf7aec12d597b68a626a0f6d684a44
BLAKE2b-256 8198db812378b846b1f8a6230a3174b949ca2f75a75458806a5ec6bb59d31142

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a1fd1588860eb851390b8117826448850c1a26a14f396d404139c58c949ccb3
MD5 1f54db0eb5a6ad8a1e36ed4ad0cc804a
BLAKE2b-256 5c5081977f3b952f23b73a35cfc838cc80f1869c42c8a8c2eeb8368d5058cd9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 60ff2afe14a4c3ae47940ebd0fe2247aa59260bf7a92951e17f23f1a5b1603c2
MD5 ec5c1071ae9456e50ea675681a68047c
BLAKE2b-256 69a584a9db6aa98bf17abff574032c3efed9e8b2f6f72b3f69e55175d744c33b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f4afc56a1f6bda63abd2bbb7f349cf9c7e613a70a74b924256122629b8631e7
MD5 5305c5daa7ebeb4724adb401abfed7e1
BLAKE2b-256 15ff329665065455606c81e60147099eaff9224924f1bb8364cf18270315007a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ee3bc23b2d665e4c72e5f0f4357ba1a8b9cf74f5be5b6a72d9cfd5272d038541
MD5 4189d7e9aac747965e0a483c76586bd0
BLAKE2b-256 2852a01188cb3249ee0ae9ed8fa969d6ce74351a91e680c55bd61534cbf85208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d9c955faada82f343d31c3c797c8e02480b243d8840379af7dd5f398dcc14f68
MD5 8bbcd11eb3c1b9dc4224da67bf7e966e
BLAKE2b-256 bfd8de4546e653f48cb0e647787bcb561b17d5944374c6f38605dbea7e95a953

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.29.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 e92819928df64305f31ba058c3bb112898520ecb795982b6a1dbd92ac132d6d0
MD5 aace2f7868ad60af06465f7997f94562
BLAKE2b-256 0f73b717ded0dfd682053366de1f472b431011866c6753cee0b5fe2eeb9b773e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 982720a39a12b8331c91213d01b6898d2822f8f9f100219a2b64300a46cdfd72
MD5 63c23c9f69a115f2fdadc94f4a9060b9
BLAKE2b-256 cc71cdbfc144d741c3c2f8c85b1dae380a5ee3a58442736ca68bb31cc461884c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 54a914a5422b5f781c06cf6068a910b8e6c4f874712bff686ed36aee6171059f
MD5 9ce9d2b3b8dc882d03ff2089b8c4e352
BLAKE2b-256 2584a34f89a16bd9afb013efa4370c8812ef69028c158d7b70d3cd740338e81b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 b57277aa88a3ede678ab487b1a6a6d40f13f302470a1172aa3ca9299550cfe31
MD5 d227caac59b103802e1c1ad96ce8271c
BLAKE2b-256 f50a3e55257e14eea88fa452cc3fabae56636f2a821fb8fdd5ab35f144436ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 e5753cb7897a280f388a7fb963b7d2ea38b0da65dce7b9b01715124f2fbf8b6f
MD5 e1a6c714a2f17d731d0ff72878a4f624
BLAKE2b-256 f251d88b69d803d54833792ed381efe10492faf26af5dbe7d6543cbc929cca7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 5cf73652320364d1d4d98e621b096ab06619d7bc87b7c865e66464be0a011326
MD5 79dcdb88fbaaeb3cb750d54500294ca2
BLAKE2b-256 9ae50f79df69bc02fcdbf3fb1c4826243953754c999d1ce3d22d0d13cbdbe5e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 87283f01e50379b2831019925e0ef44901bb69c02fbf64ea9b8c1d29f371df14
MD5 bb1f63d6700ba829e9dbfd96752b71ac
BLAKE2b-256 035e573a72989d553c85d30e18a6c84fb49091205297068f58ce56ddcabebd64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6a8b03d0f788dc363f2826092280a1da4d73e203615f2a5f7062a73dc95dc1e6
MD5 1a30679e87026df4c5c314610f0b0864
BLAKE2b-256 88ee15439c9777c4c2ac3a2309b87475114168c03eadd56fa8fbb37b6f00306f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 da4b1187a216da1897290dac920701688f638d8e69da7e752dfccc9198e6c7af
MD5 fb2862fb22be4f0aac5f677445fa9b67
BLAKE2b-256 152b4388a600e707a85a1cda43a1dfb70215798751d2bdd48173fa01ef15aa1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98985f5c0fe1c8da9bf52ad28fa155a833e701bb48f44b958c968623f7adaae8
MD5 06f587251276242bd6cac46f50e5fd2b
BLAKE2b-256 602c4fc66ae97b3c1ba7ef5ccf40d9f95d2f3364995fe06e789d9bfca8aca3b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1f192a571b61d76d072b592ccc6f1d48c3b5a565c31087568cdb22271ece315b
MD5 f7a68c01b3cd7d9e2cc8d5c32e4809f5
BLAKE2b-256 67734f4b806e573475146f133a6b97415b3280787b7bc680c807a5eadabbf10a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 49520ce428620c0c9c6b4df32d54a20daa4e3d801f13ee6520072f911a815923
MD5 882cf8aca1e374cfadff1fc65cdbeafc
BLAKE2b-256 d5359d693f97d3699769616cd632c9c7c43688221b4714b98e9c12825717719e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.29.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 bb6bba6ec2aa7e817654dd1275f5bf014fe5e6a6cb83e82f220756b632d33352
MD5 1795a6a7029f718525cbe03710b6738c
BLAKE2b-256 b101ae1611bad5e4ce08074e46d00ed80283d367d29182254656395bc64fa9a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1e0bff6b470784802d745dfd7f63bea3e658588c022a44ea490332aa2ff3add8
MD5 ab7ed786bbafb8e215babde0ec9ef66a
BLAKE2b-256 3280c1c640460bcd35dd4f830dc732c8e147c15dd1f64be734d9e653d8493b0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 209a0426e0289cfbc4d91ed6032cf7510a608ca163204861c759ce579bfae30a
MD5 839ebe4e38a2c4c04dc5d87a5e9ed8d4
BLAKE2b-256 c237cbc23bf7a50dc3bcf92df1d082059937ea068d56d424099ce0003d3bb6d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 51e9594efe3c90c04c2a0a4c9ff5b788d4834e23a92aacacfd5e2511bde372e1
MD5 577db8b6ca9f7ccc15d17c9c4edd5a4b
BLAKE2b-256 47ecdfc7c398c3f595b9f673aad246848232f8672385caaf8c1914a2288a3153

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 ba479b55d30e166baa22b929982355397a00a80d96390d9816cc50a4285d721b
MD5 ee3836e0c333ac43895d4a43045bf4d3
BLAKE2b-256 8eb4cb50ee50aaaee1902af1221cfbc23ab763dc6c04b739f75a74f7569ce5c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c4e02a1658f14f09fd90ec043e070c163bc773646cebd01383700db9d2bdb3f3
MD5 940ecbfac7ece031f4f84094e4861dd1
BLAKE2b-256 eb7b16b5412a4faabd8a2f815daf9101cbcbe743265a21f19b18350720a79dd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86be0368c8df5f828d153bc55a53131aa949cf488e616812910aa69624b7e8cf
MD5 3258c291c66ce134afd3f61bdd098015
BLAKE2b-256 f35011c22216ee99192b35b8a606bac309220598afaa3f992aaf02489b608e85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fff75942bcdf11777be302eb0dc1f91cbd1fa12bdda2cfde30122821cfe17eb
MD5 0f879e66e1c78e077a4d25eb6343bb83
BLAKE2b-256 ff7fe4ee66fc6855791019aa7157115290ec3a8b6e152c6ab168b5541fdb4fa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 13d19070ff1a4e54be1e05c563c721092407d2446012a4496129a887d2ff2e2f
MD5 5ae774f6dd7f04f5b088581a150ed6b0
BLAKE2b-256 bb55152ba41165656f4a2a715de80e91728eabaf08673373a956fb0cdd7107fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dca9b6b4be2a9ec38b6c3d6e8ea555bb436460c538e4be1843e7295f5fbf36cc
MD5 5d52ca0c2614537b29353d626db71878
BLAKE2b-256 23aca7660ef68155981b2ce19409acb6f33cf298b887043d52e6619177a4dfd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.29.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5f5686060fadac6a199153bf144d7dd8e826aeae483d28cd3cb6c2ae35402edf
MD5 2bad3f32e98ab5228f8d3844a2110319
BLAKE2b-256 eeba4183dde999a3e24b55f1116d41e902ab7da65415bdb563550f361818f7f8

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