Skip to main content

No project description provided

Project description

pydantic-core

CI Coverage pypi versions license

This package provides the core functionality for pydantic.

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

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

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

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

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

Example of usage:

from pydantic_core import SchemaValidator, ValidationError

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

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

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

try:
    v.validate_python({'name': 'Samuel', 'age': 11})
except ValidationError as e:
    print(e)
    """
    1 validation error for model
    age
      Input should be greater than or equal to 18
      [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.13.0.tar.gz (243.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.13.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.13.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.13.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.13.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.13.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.13.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.13.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.13.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.13.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.13.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.13.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.13.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.13.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.13.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.13.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.13.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.13.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.13.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.13.0-cp311-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-0.13.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-0.13.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.13.0-cp311-cp311-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.13.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.13.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.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.13.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.13.0-cp310-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-0.13.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-0.13.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.13.0-cp310-cp310-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.13.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.13.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.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-0.13.0-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.13.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.13.0-cp39-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-0.13.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-0.13.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.13.0-cp39-cp39-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.13.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.13.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.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-0.13.0-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.13.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.13.0-cp38-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-0.13.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-0.13.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.13.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.13.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.13.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-0.13.0-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.13.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.13.0-cp37-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-0.13.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-0.13.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.13.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.13.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.13.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pydantic_core-0.13.0-cp37-cp37m-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.13.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.13.0.tar.gz.

File metadata

  • Download URL: pydantic_core-0.13.0.tar.gz
  • Upload date:
  • Size: 243.6 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.13.0.tar.gz
Algorithm Hash digest
SHA256 c44da674be996fb947ca19a11fc1ebe2421a45cda1ae251c04e317962da52e39
MD5 eb920f363ad03a35fbce42d8ea8cdae4
BLAKE2b-256 428ffa2e7d60c3c328b58b8fa54180b2ef2e228cc6ab38d65d308cf17f77b85f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3f1e2aeb8a927342c4d7c2433e559885c190972e98480ef57dafac5748ced9f1
MD5 bb26e60c5c0b1b9edbe9cb2bbb2d3c23
BLAKE2b-256 5c68886ae35f8cd78e5266a47c33df2309da467ab21288fb2c24e1e129f0c402

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8c5cfed40bd543465db252ac3abbaf27f46c1d12844746c0792e0e51bfee9484
MD5 7fd68ad24f9082ffd820e5bcdcab521f
BLAKE2b-256 0dcc7d4559ce0439b8aaaeae345af74ef1baa9139dfbc44c26d84b2149110124

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5972cc318421017e48f3e84524db5038d8291ee83fe98971f40500953005682b
MD5 d6d39017dfc13bcec84be597e3128bed
BLAKE2b-256 c125e83656efd9bd66044793f558b3a407558ae7363307d030ebbe9429b12e27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 66208ed9774f0ee54f8f1593948fb7d00bf77f10ed9d4462e466e77161cc743c
MD5 00e312f4bcabc28007013405c3f3bd71
BLAKE2b-256 d62e9c2d71d63070edf30a5f5294eba5358bffab2cbc143e1548d628e44afa8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 115a7c2f4f89828170393644061d1a8f194e9e2986e55fb9db65db2f2bb02ffb
MD5 9973b2cbb4bcdc08816070a475694699
BLAKE2b-256 70e1d6b3bce4e0434c19fe3163ff2cb2cbdd500c606706273e0a88de26cf697e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 79d1224e4d8b9ab60917a2fcd1e62adce8c365cab83b4b936b985a5eefa06ddf
MD5 729fa5b19bed5960365c009a38e708f8
BLAKE2b-256 b3e85d4e296e4c79ca45d60ee3f60ccb427c04307c42e646acd2194e46ca8c8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 646a268bb0ccf234baa91e8bb941550d35542b2d4a9376c056438ed17b6a410f
MD5 7c2308866bf8aa9253f7b277c30d56ac
BLAKE2b-256 6dff00741124c19ea04da89280a583e835f56909f5bc8328ef96ece1b2630054

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a39b3abd955827f54a367b4c64559139a0036d8fbb139aeb6bedcc350d42c05c
MD5 b1bf002a4d584739fcf2c4352f40039d
BLAKE2b-256 58817cc779500d943ca74909c6020f7d060a21bc9774a0d7a20a9049caa59ab1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d19329f4865f5e48a2023b91c022f25050816dd9ed9d3cf06eca870b8d7702f
MD5 c02bbbe58f57b686c498ca228f46cf73
BLAKE2b-256 00f3c84f72b8226bdfa7c7ddb1cbd722c93ee6f6a35d945756242bcc16002626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5c57b8183204811efd57a931d88b009c13536db89ba9502d83678b7e6215fb59
MD5 aebe9b18779f21a13cf2429a181aa7c9
BLAKE2b-256 ce58bccfd06e5988352c5144955d2609672226f583a36fc739e200b741dff23c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 78c6a840ef6d33aad91af070e45733e2ed57f287b395a356cd77fc27ce89136d
MD5 3828a760b0cdde451ff5d57f3f743e5b
BLAKE2b-256 d8330f52c612917b9ddd05156c531d076cd6ae63f26f4a110a669513b27ae971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1acb8a31137d9e5ffff94277251bbffaef8a698ed16ce91d6dfdec04440ef554
MD5 3342790b0f5c974a2c4acf5a9034a085
BLAKE2b-256 09ec6eb1478459a01191f4e734196f564666848a78abaf64be5f04c7332baa9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7c764c90104d083fc33163c06558b9b110a0d9cd8da1bfc3270bcd69ed0f0995
MD5 88a0170ecb34961ab64e76b82f3947b3
BLAKE2b-256 8209a9695fb11c962c7e7c2858b719352669e9b5fb33b87af1629255e18d48e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 46ac6157d4ce34f7ae3d9e4797d6bc1eeb6af0b127cf531ff240349897619b54
MD5 f20de3010c5a0f47fb0bcb8dd8860bcd
BLAKE2b-256 54670f3656977cdcfb76801d8911b5fab9884bdf03f89a463118fee083a10134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f541c0c79b899d2fef1c6e58585d9b9676e2949db62f240a9e9625818313597b
MD5 0f435864ca7ce2d14a5a3c746a2356ac
BLAKE2b-256 5113b418334fa29d8d8fbd6c151f25f6229770b03bc2ac1f9c3ccb9ca4ebb93f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df9478b8999c212b053a5bb89a35e39f290cab5fd4946435d6ac008e13e57cea
MD5 bae021f1a4e7c974ecd399d310fc9f96
BLAKE2b-256 b07cd3659beb0158bf4a67608233263a2129672740cdab53210a504bcc73c981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 803520433251fca29ffae2594a6bf1f96233acd1dcdf2d7b21d862e4206312e9
MD5 309128de92cc3aee6b952f9317b7f4bb
BLAKE2b-256 ae175f12adf8f309ff815a6f993730ea19bb227bf93d69ddf4fa66f02a23a1ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 373a7b86b4741c4dfb9316e82b02667f2f62d0ed661acca6c90a888206c7f555
MD5 6bf0770a7207c24c0cbc69839e7038c5
BLAKE2b-256 c7dd01d02efb824db706a5125dc74571fab3b7410e999e35fc09e50f9f18ef5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 65fd8f227109f66525846a69b8abfc1f191bfc84128cafeb59a346c3e0cbe1fb
MD5 214b2ae525375ed2bcd3ee48ed4518af
BLAKE2b-256 8bfd27494fd00b483893a9b6da99ffa4bc80568127c7d139b3702d3f73d8d328

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.13.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.13.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 16a5b6a924df1b1b2b20ab7d3301c2be8caec692d0cb2531d2492a3836b7e809
MD5 056afbdd862ede56d5dc19b7113190f9
BLAKE2b-256 a659a7ea432a750f88d89e3e99f51da596054e90d1623d5aeb453c8338301cdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0560163e330b0c757ce1ac6555f3a188dd9b497b40379a7826f353d9d248fcaf
MD5 1cfe48018eb30f687f29301b9ae0cd41
BLAKE2b-256 8514ec7031213df03673b45f12ef884d2c929f093ff5748e08886239a567e681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 17735d3f918483f470f48b686f804e2b956ffd5c2255f02dfc8880314f320abf
MD5 0fe4bfb3f854517a1eb6662241b2f131
BLAKE2b-256 97d8a37d5507ea709294f81455a88522b278183650106a975ed8878733314a71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 1ad33f9fc1491cb189a0a4e9d603ee30c7768cff4f2babe36c43157ad9306580
MD5 bcc0838e56112a8365f65de11fa561e8
BLAKE2b-256 26cccd9949ea867fe88310e2641c844cfedd0d43774d51ffc994bee39656dee6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 a3bfa6572b72e9d8895ebc2800e1d35668493d1a5a3ebe4658938a83e18ead7e
MD5 e0c42ae6c5f9512ac9b7ba78bd556042
BLAKE2b-256 8e2313774bd4819156746d66ee47cfabaa9929e3f123922139a4e01978e46bbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 823d7e1dc862785f284c8d3a7ac31dd006e5f68bd9c81aea2dba853c87808c27
MD5 3c4cc371ab5219f55de703a0bacbc352
BLAKE2b-256 a4eb73ab83147345feecf659c52426b82a36fbc579e9442cc821702eeed09359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ff0bf1a1e315c151870b615c22d5361bb053b5e7a72e080bf29296a897522c8
MD5 e284e62ff60371b4577d26ea7add5bc8
BLAKE2b-256 79cb1acfe606f9ff6bcefbb82289108dbe27f86eace26a20a08941167ddffa7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 401ec3f8fd708c5e30021244d59d2451506b19fd45cc9a8efbf5f7484e729a2d
MD5 d5bac6181b334423ac80805e0d51a5f7
BLAKE2b-256 9d1a2d9a1ad07f67b52433854959af8e68c431f70ceb0cd45d6023701ebc981f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a74429e3e0c1baeded7dd6704e19869a493def8c081ae716231002185d40c019
MD5 5b2fb5e456dd0f724c78a7f123093bb4
BLAKE2b-256 8a91a815a14507b62143caac682e915df75e13b904b931c97d0363c104b3257f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e713eb9493ae25264282fad252ba88a435ad7fb81a4beb4b23e4a46b39b9d019
MD5 51c02b2e711408a243c9237abb97c78b
BLAKE2b-256 0a45e4f07e2a0ec66c9ca12cbff75fed80e8f66c02b548d5df4b34a27acd6c5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cd5438afc1f3d2412a120e2aff2350a544f7efb51aa113f963438e7ef4e98b17
MD5 0aaa0dd5d4e4a4c0937b888c2063a97b
BLAKE2b-256 84a289e8a2cf1b45b5b8f9e59f9856b91eb9afc087e61b759d4bc0c3f28df7ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 c41cffad6b47c879c737a0676b3f0a98a08de77fb770ada85e1c42ddf8053594
MD5 1c4d0f5edb8297abc1adb5df42943877
BLAKE2b-256 15e17cad3a4eeef6d915e75cb9a10d7531a859e9f0d7bac294b7ffb1384a579c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.13.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.13.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 7f2b454226412711ec4fcf05eb2224a3362dabd21bfd7b75aa47d420ef6b371d
MD5 1f5d1f690fa75b1c56a1b29478567c6c
BLAKE2b-256 8b6669b8e14177d59d8672b5256523f7d7739fcfea21dd99e9e1720d02b2b954

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fef03198bda7225d6aa67036568aa3a5bd6d1b1e96fc30aabc975766cec3fc20
MD5 f593de9dfe715caae0c352e96028eaaf
BLAKE2b-256 ab1bfd44da96553f0fcccea436a32a7fa45165726f369ea1b763a4500380ed10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 556a1c9152958aa0774d35f793bfd0f97be12084467feba2f8ddf932eb473ec3
MD5 0d6264094aa1483d6438d8072851760a
BLAKE2b-256 746b0f87d67fb08f58cc5c206226189c9700ecfe7717a9b003208a2568bc5f75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 767375fd1a0796cc0ef80fa9784951d3a54dd5f212bc87595ad40ff63488041c
MD5 0803c58148a82e6ae213df8086bf72ba
BLAKE2b-256 2de12e50c35bfd87ec8e8a95638f1f2f7968971a7f293c4612e473566094503c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 02db6c8adc91f19b2ade2845bd5b15dfc48308d7d7964128662ed699c6d95de1
MD5 83f510c51f5e2b2a666833cd70738d44
BLAKE2b-256 7b22e223268b2fd10ed87bf32f6216582a38835a466928873686c2a390257ecd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 6253f0486566a626222413b20e7af37ef84f3373c43838bb91661f4b9e495d54
MD5 2fb9210c0d5ea44afcf12787393faa2b
BLAKE2b-256 8782e61d0a41eb8e240bdf8c005bdd0c97f0517f8f1e92ad6ad41cdef5b1130a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ceca9073b1ccbcd565f0adf3bf10454706a4b8b46755cb92a0b4731024503d94
MD5 0652b1e5242fe1d7433a9e68e04654e6
BLAKE2b-256 74767771f26c2e94d53cfdfd646eaf959662cd84dd7764b5187b32c7510c0525

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86da17f2a80dc769f30fca65c76a810db0e63e673801dd1f819be0bd271f2956
MD5 da2b422c53ff71fd05e3c3bdd2f0e41c
BLAKE2b-256 13c8ef87e82fd217ad0f74449d763bd6b47ec8bfd0c38094fae48694a6df0ad2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 210a0f124f72ea537b336b51e3e2b628bd4c032041468b03b69fbf49572fbee0
MD5 b504df35aab6bf0dd653749cdd0a9abd
BLAKE2b-256 87caefcc5051cd46942b1328f9c8956ed3de2c052de84b63497d5c743626a324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6a0cd3658714f3ef62ba22988f77c0fbeed84af0b5e58e00469114b6624be6a0
MD5 8b1f9fdb2053359b09e94a6f5b6d7860
BLAKE2b-256 5078646bbdb6848dc86321c57f21df5321a999b23c8874001ecc751e9772162d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3935c5e407141443f8336781ea44e558e67b724ce26b6e50db8c780577622faa
MD5 b09fdfd455cf5e870adda3a982fbd43c
BLAKE2b-256 7e9df2aa75631d873e341b4c2ffb5d76573cd743aeffc79cb56805c8ebb9140f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 2dd3a5aded0d579dd00456abb249999af9657d573bc03d1ad549d23a7e8d24c8
MD5 a9afd8421e1ba5e17e4f0f1fc4e321da
BLAKE2b-256 0c9fec7b823cfe7113762342beb18a5892d94bc41440bf7b7f2f39e738bfee2e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.13.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.13.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 8f119d2bac3c01f7bdb637f6874b76a71f2f8594e839887a0475694ea03735ba
MD5 4a2b4c5991fcf408aa2e519b9353df32
BLAKE2b-256 b9601a9fe77115f4eef25bb7540c88397dbcf57057626b652ce2b8d86342d4a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6fcbb9fcd8c5bd7dbb42152c0093492a93140ef9bfd62a3df8f29d752c2b3f9a
MD5 fdf588f86eecf495e8977f3d9498cef8
BLAKE2b-256 7e18b26ee3c711274c61fae25d62e3d62a55ab6cefa9545e32a963985e61151b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0987836f73ef62c2bfd3a27ea3eaebd99351fbb56597616ea6b1296658a30cf6
MD5 ea652c88fdad80bd8595fa49a713feb7
BLAKE2b-256 d4b914ffc6f09c6bcd47442e4c4bd24daf1871aee471b84c01c9c118102bf7ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 d2f92310a24323dcd763eb739c1fdf370215a52f64b38b1b9062af88c90d8092
MD5 6099a8ee486c455811d7343438dce29b
BLAKE2b-256 afdf1c3e3db4eed6d133e7b97f4fdf2711811ec451ebe0115de79a6ba1b04b9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 23166441ee4d202abb88f27f987dd07b0ef6673a14cbd99f190c1fb8befffb10
MD5 84f98b9fb758ada9a686beec5fd8deb5
BLAKE2b-256 47d6773c965594ec9292ff7f48a1a5e5484adf50404b98fd28e149d8455198ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 6d866d83e9339bd4a248d50c0ba75cc9b768faf758432d453951f270beac48ef
MD5 845af67cea25d0bf727dd8752efa3513
BLAKE2b-256 2c340691bd32382a427b685de979a9bbd84aa5eaccee979897929c2c571e0ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 971dbdf6977c8429e1b5aff55bc84e9ac88975f38e6c1180b5557d73d150f656
MD5 19d6bc9e136996f98db7b7757b2d9cd0
BLAKE2b-256 419aa4c0d1ea0c7bf2714a542877bb2c8b807ad23c4a39db47d9be95f04b88f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a5a5523e609b110ed8513aa3a90be7d33e7f5cbfe15ae48f0cfcd4d5b44e8021
MD5 9009061834ecc9d8c2e0747b5ed3eb63
BLAKE2b-256 1b47273946dde3b11bea12c41e156d8611fc59a04a8496812bb4e1fda5cc6dec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 82c0b47db6d6f3a625b16796f0c10d139d3d4df7a96cd1a0be106ead70a546b5
MD5 d00af15ffde579add528481d0fe0addc
BLAKE2b-256 7c0f54919768b9800eb966908ea0508058e47b411707fdf597008e5d35b1bcd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 320f800704f0a36ca3d669f977018c6e5fa775a67277f8455e4d1223b9bbf9ec
MD5 144ceff891fd10b244a6ef87b7df48fd
BLAKE2b-256 50f4cd3a838aa052756d854def7e18ed2a78ddeba00e02f4baa1d3fa6245666b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 dee51322e52856d1a0acbff8cd325bacb84a4a83a63aaadaf74bae8773463e3f
MD5 6ec6d1a276ffcb387bc812aaa647913f
BLAKE2b-256 19f4274e9128b9968305a98218380719c25d5cb04ee6252d32122e1cd1f873b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e9d8334873ae04a2bef1a3c889cb0d61b451177bacf1ceedf3756a81822d4df6
MD5 d0946b8d9541aa59e751d30a4bb15b1b
BLAKE2b-256 5af84f1f805fdb02e21db18b4812451ecb0c27962b4617b5feb978ec66e263d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.13.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.13.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 1f0fe84ec85d85819eac6aef15f6b3a8745fcd8f6b80a8e9b813e0a8f3872182
MD5 73a359db406e6c106f24c894c365b766
BLAKE2b-256 fda91fb9da1b3e4c78bd58128a2a6f5a368a99a7f71507acaf762fb46ec46964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2a56bdd71fd02358691d8df88c8906bd91c5aa3a4c9973c1802cbdd306f34074
MD5 2d14fe53839d4dafcf42da067ebff217
BLAKE2b-256 000c246b14053cf67e7018c4aa91203cf8a51bb725f1e631887f7f9c0efa9575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 293beeb1b7316436de74e56cc2830d567352c4cdbd61cac23f7b517887f5e44b
MD5 67dce4cfd20a7420172cb6d41c303ec5
BLAKE2b-256 771d94a4b17e3ba6535e02b0c76ac2399cb658ca7c711fcf8d3a9a5c56c4a952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 5c2eb156528662e83fa41b5baa0871196fb9faf480775aa2e8c438ef31c158e4
MD5 408bbcc2aee058784563f94fcff059bc
BLAKE2b-256 872990d259c28f2a5036eafb7656d6769506e85617dcc137731a62e7ad87bae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 fed0139e90b9d159fbd468b23e147e81cc5381ffe8b721401f0d8ef679070e24
MD5 2c7eda9fdb9afc47f92112148ceb7fe2
BLAKE2b-256 c75339f46aa35982c79a668007c5a21047d580305d96c8b40edbfa1031ac392c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 eb46b784fbd738d5d12906ec62e995a8d7a32d7abe19dcffd329b8cbf1dafe90
MD5 6558a9fce577610cc3c628f576e93dc7
BLAKE2b-256 214b6bef38c8f6448332149b3c76ed9b4d57a0bc22a63cb7016b14958f744f1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 35e0a7f8fbfbb4a6a70a167b7e6119310e61a67bc9cf12ad50d23f62bef7b051
MD5 578154be8bd2baa26c30d7255bfbe417
BLAKE2b-256 08800cd3f1deeeac1b00d39346faea270659db4935a42b70905a5197e779b2a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a029dc2e6620ed6538c053457c7a85a895050036fd76b611c6355abd5957d919
MD5 b7ae518eac8fec72140b5831a0c274c7
BLAKE2b-256 1beae01c05e50166f19faf306a984d4cbec0704c3997fc1f3f33b384f9c389fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56cc891d1ea40e0cc85e95010cb1622e74c5aaf09ff08f9fc385341e265ad36f
MD5 4295279c34e702dea2246f8a5a1c1222
BLAKE2b-256 03854d98ed967b39ab7bc2828acbc06a9846282abbde964c0d998473c777e11c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fe392411f557dd406e112b7ddf5f621f1f31149b235aa27b6453610811d34d5a
MD5 9998c698619e8914fbdef95cc82278c6
BLAKE2b-256 e030c3fcb6312a9b70c13a0579940b902305dbf35f03298624afb769d78c5817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 157f3019eb3db9b64c73465a0f2d4cac6e5522cca1fbf2b213afe45f3abded4f
MD5 77482648b309462249d457a622a6d93e
BLAKE2b-256 0b0cffc0b68261483f5629794d339d7270b274062f64d18e7a826d75863fef09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 81a153f44e904ad5d9c2fbfe4bb094d4169f2f5462e3ca19ec6e34e8ec45fedf
MD5 1b1ab484687d6ecda09a62a1e5ee63ec
BLAKE2b-256 49cbf746887b2175b6598fc9084c94a5ecf400da472b1e339be73e1568f0e338

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.13.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.13.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 f16b00e063bf55e2553e3fc0884e09b7a6bc84e1750f5080b6b53fa074a4a966
MD5 e64e6e58fcb91a27a09baf20edb738c2
BLAKE2b-256 47cb1eb4cea991ef71e5f1489c931fac149669c9c595f488ae9bab767b03e2cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3cf6c49131078ad19336634386281799d3852777684cf771688136ab722866ef
MD5 934af043b575038fe4d3bf0a486d3b5e
BLAKE2b-256 ee150a42c242c2d9f7c0f0964d49768c7c96204f098b0b507ebfe5aac489ea5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fc6e91884846aa8b8e915a9a69616b66ccaa519a6e8ce3e2b67bfd4391b6494c
MD5 bc832687d840659e3700af2e951ebb3a
BLAKE2b-256 271f4e5f8d8d4d90926887820e94125780c47b66c5a19f9fef1aa2184241a26d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 5167224f36f44e0b7739a4cd5ef5be56995173dc823ef655f46ad759e2137bfa
MD5 94adf56b13e2708ebf763744f075b1a1
BLAKE2b-256 138257c76c780136d3f2077e786d720bea931c7068c666f1a702fa61fc508290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 07ef5c3f8b0b585abec55acd9abfc7c0b99233baf887a0970711707861cb0241
MD5 53144a549bf0aca6321e5cc2f5defb33
BLAKE2b-256 7b487a167b259f697f1e1145330545acbb73a757928b338dfb4d7cc104ffc611

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 e94fc298c1bb52563d6b2b9628b5e3a5edb60abff26e525d1ef1b377a01eec99
MD5 d23e5c7c466e03253c2f78421e81326f
BLAKE2b-256 4d0508f5d91a4b9966334947432f45f8970c246c0f5253394bde07115d81ac49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5de9372b75faa1502f38647db22ef2e8ed8832b7598f4c9da2ae49a0c539f930
MD5 74a529890b0aaf6e79875a94b18e8e6a
BLAKE2b-256 bbd44a66be687df907132d3f84f4073de23e3c88a629b64493ea649113deab86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 17e960279a75233213b2f6ebd295a836de0b8858f64409ae9a4e5e9d11a3f518
MD5 8ece869ae72b5bc062f8f863d4d3ec10
BLAKE2b-256 ba69fda426ec16ea08b01ecbb69545dcfc6a33e75e38a32dedb307784ee9c754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a0b71ae42f82c725f09fd8b43f8a33d0327f425dcc03076f2ab7298c13e0c4be
MD5 f40bcaecf91b117dcdecdb331ec6dc26
BLAKE2b-256 dee7d14878ff48f12aee0bd4e0427283384f2155b9a77b7b9942f4ab88ed675d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a5bd18c13f76716b8740e08cd64e6e6dfe7244a903402fd2d71c1c3f497b86e0
MD5 0b6593a8e28ea5cb2ef2c771a599722b
BLAKE2b-256 c0e641de394f6d839d79b88ff42394582e2bf59b8ac1b84d03f5a74979e5685e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.13.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8d22f3502e2f8c7d57e3fd3df268efae64cf9ee987beedcefff8d912e845107c
MD5 fdbd118a5dc8c6dc9d49d7b8c78b61de
BLAKE2b-256 126c8bfcf28fc74d15981967a99d18fa7ddb31362ca9a610339dcc9c331978c2

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