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.27.1.tar.gz (278.8 kB view details)

Uploaded Source

Built Distributions

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

pydantic_core-0.27.1-pp39-pypy39_pp73-win_amd64.whl (1.4 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.27.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.27.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.27.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-0.27.1-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.27.1-cp311-cp311-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.27.1-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.27.1-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.27.1-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.27.1-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.7+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-0.27.1-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.27.1-cp310-cp310-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.27.1-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.27.1-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.27.1-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.27.1-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.7+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-0.27.1-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.27.1-cp39-cp39-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.27.1-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.27.1-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.27.1-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.27.1-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.7+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-0.27.1-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.27.1-cp38-cp38-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.27.1-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.27.1-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.27.1-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.27.1-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.7+ x86-64

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

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-0.27.1-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.27.1-cp37-cp37m-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.27.1-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.27.1-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.27.1-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.27.1-cp37-cp37m-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.27.1-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.27.1.tar.gz.

File metadata

  • Download URL: pydantic_core-0.27.1.tar.gz
  • Upload date:
  • Size: 278.8 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.27.1.tar.gz
Algorithm Hash digest
SHA256 f2dc7e0d36fa16ac4fe0862bae2b8c67a2215e41ab13b8c0320b0e2e559ca243
MD5 eeb70c9f1fa9bea6a33dee63506dc2ce
BLAKE2b-256 23e1a28985eb81444463b1cb50c0e38b35b9fd13b0eefce80c96f2d9f81c0e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 108008b5816ce60410d00875fcb8d6000a43dd57c5b042a832e4fc28ea0c8614
MD5 49543faaf1062922ffa0ce7d2121c44e
BLAKE2b-256 ea67f521a2e870d84812eced8931386e22678dc72b8a5963b5cf3d98d7ab1f7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f4335f6cc1961cb46d1bfd07603edabb78dd9eb578d2804ccfa34f794a0fbf59
MD5 5b28b1854a1cf45bb3ab3a7faeddf133
BLAKE2b-256 5751afe7a1d0d898485b6bd759bdd97c719074c7440583ad43895487fc2aebde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 188ae641117e464fe6b4560d5dcdddc179ab9e0ee2c1ba32e848e0ba96c0eeed
MD5 be1d34b4b902708537ef3ae217069c07
BLAKE2b-256 4dc7dd26f4507e2e4a88ced47a9b2b3ad88baee843e29d7c24959fa63b615823

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23b520339723f678bea9b313f13482dea4bb9e5254fea4b2315de03216071123
MD5 6752a90e9baf270157fc400d92b925c3
BLAKE2b-256 2e6b30618b5d4aa3193b602ee47e3e4d70149c0694c29e9715a521f942d99091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f39af0fa98012304e3fb0e5861e713b039336464da5fba3880cfa4488be8c1f
MD5 bce233e3f55e42e1ba06af68d8809775
BLAKE2b-256 a06de005c389066e15677b6652e9aa2a184c4c2f425fd1fe628a02c232b550ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e0674c5d63aedd3a704221916ec7e30702ca8daf396b711624345be81e6f0532
MD5 e3441947886f019ef9261dbffc343b40
BLAKE2b-256 f2b7f81a8165dfbadf161f207801311fc9bf083413971d6c2c466b19a3785fbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 40d8a0ae4a585ed19cf3c56cdf19aa16cf8a32de6bcefc3d18d9cda627a9c703
MD5 899d96ebbc86488f00047b65e6d2a98d
BLAKE2b-256 a277d7cfeda1bb68b7df1f5cfbdafc45520552d43fb0d9a1677163fb3fdc4a20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d5744bfafe43feedec3fe3b3bb5b6bcb04abf5ff8f14acf58487de3a6efa5c4c
MD5 c98cbada155d6762503fedbe3414ab3a
BLAKE2b-256 9ad6a60915128e66fb729cae99d8800b43f9e3b2c2a9aa2363f184bc8b943450

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c8a7268fd88e476b24aa2e863646b2bc59bc1929a8ca1aecb35f66b7b9ceb520
MD5 79a491a70946e4409d13ecb9b25a5b06
BLAKE2b-256 68336e7ee0cb7d3ce67b08268dabc4e553137d6db2f36cca5e77db8fa3d8b67d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5af41d2441c517c3da5762ca987f5d589eda97db58e3ed7924011e14ee999448
MD5 163834a41fe8c23d3673032042071515
BLAKE2b-256 46255d54643a88219e0124c11f1439397a84c269f78f32ada30ea320c0d706ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22fecd3e09e89cb2d33e94077a30b4bb110fb3eeeec762192e4e1b2ea6958013
MD5 83cada41c094de16cf6156a7c5b054aa
BLAKE2b-256 9a82320f9ee874a7fb9871cb29320f8e242ff2420bb02ba097b77b73bbb7fce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8a1469be0529db360c9c14f5396b41840d52b71223a6a48eea795fafa2c4afb
MD5 096b06422a07d4c92c44b8c9b97da1e9
BLAKE2b-256 f3a22af21d423d04c32ac88575f740e3251e011e73f6c3429b14f2ae4b48ec5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c684cd6224383fca66ec979929b1375a6a0c2c62256dc08bad6eef9d6495b282
MD5 0e263b477ee35f3b3d2220df51ab83a7
BLAKE2b-256 f9a2129f2c8a14abff0a5832d4650527a81b3eaac30ad8e7138baaf9ff3756ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7da473373e0149551759ec7150eac8c4c62cf7b9dd4954d6e2b810811dfbf72b
MD5 41bc920eb640824233cc03e759e9543c
BLAKE2b-256 961658c97171feedf879c7d86608988775ef01d04aefd28521f5c3c05fb20ea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 27b685c21ff08ed71a57ef901f9faf2f2ea838283dcb0de46731e9ae7a02752b
MD5 33d69ca4647e5ca335f97cb18bf53a85
BLAKE2b-256 68c0dbefd533b50666dc7aee1b9c8430187b67b0466d001a9f351a1bd95ca399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 151e3ee52090aa4af7734cd05211bf0999f6aa54908b0f51b2ae713128e755ec
MD5 5551d76bb8608c569d99fbf4ded6c031
BLAKE2b-256 c20f829b65d9e9f13aa1183538d8686a610321cc5ea39b5b14b2ba6d6f08150d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 311c83d4c6f8e98aedc5fb773ebda1c9b7d9a90ca119aee1a323974b71c764a3
MD5 d7259f803e266f816bce912fd8f0bcb2
BLAKE2b-256 75c198bcf4dac6655ffb243e1ba85ad8fac8a962e86413e13eb4c0c5e0ace8ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2588c2d8dfa8b41c92e0bf39b6d855732ba5088b83e049814a7abb2b99c04a2d
MD5 dc810008eb9d5e60a4ab371c2ad98594
BLAKE2b-256 5320415a3033787945fc78396563bb7c5f8a7d82d7ac18b0d00c15d2fec5b776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4b555633bfdcccca849b800ed780bad3ae8ce7acaede5ba93a8f2bda684ca57f
MD5 aeb6820f940fa37b9e8efba7f58cf5fc
BLAKE2b-256 861bd024bf8f8146783e8060c0e431a5bc8cf1b2e19eacaeaf025ccdbcb1fb46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c1747c45fc7bc1a2833d6acd6c5dd207d4d7e4a6ae678c2176399902c3f042be
MD5 2fa4da4f1c66b612142a5ef2c1f94c1d
BLAKE2b-256 520bd702b3585258544938a10659d62999a76b72b0993b3e558cf5851caab517

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 78aa88542c2c5c1d24f808020a50b26071ff72e9aa7ed13370fe2b5eba14d8ac
MD5 90fc2811c96b4e405976d0ffa3048507
BLAKE2b-256 65c989d543928e0ac3a154c7d954be63829958a5769df009feb25bc0b5b1546d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.27.1-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.27.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 17c81e97e3d9378238d6e50903604f18ce116bb02590ded873f9fee95082e684
MD5 62bce3ed4302b2a3300ae056f9afd1cf
BLAKE2b-256 c17e919a2b06609327987649c4a139d71c5caed97351a46b5b92a6e99444d99f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1876ab521a20ef6eff61f19415803260419fc7bf9802cafaccad31f4b02a427f
MD5 148779bd3779fda25de8112d27c07f09
BLAKE2b-256 3030a37974f317517e548f9c4538c8e829a546f50815a7070f05a210859692fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 15cfe4129f3731a25d38085424b3caa4cb93e1a9c9d1df645053502f8de91781
MD5 fef590cb49d1b9d42ed34427117a34ba
BLAKE2b-256 ed0988432e5f478b324a3f07ebd504c49e7b49a3d7fd20d8f2c124586fee019b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 51be13eaa83b7ce5bd7b29c36a0ae7276ccf93c8befeacc6a38f2d0f8aba0ca2
MD5 0635cd597295558a485fe21db9738c0d
BLAKE2b-256 ab8ac7bfd0c1372de4614f814ff58359ad3d5ea61cadc543069ba52a9f74270f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 00973d7be7bf338be590baaafdf9d3699dfe5abe82838035ae244f4816635828
MD5 fc461888231b7ab80a19ec5da6b13c93
BLAKE2b-256 37147a5b737bdcdafa70b699477df0f916592237004e4cc02caca80f47dc4fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 16eebd2c46d5a7128e1530ad15a150304eee539cdfd287f00c4ab3e0d5e7f302
MD5 1443536017947acccc8375a078d8b379
BLAKE2b-256 9f7a86a1cd8c34ea61602eadf9efe223ab20d22a761732ff6711072b656f8d01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 055759fda374b5863703fe1566aff718f0ee2ebd170496ad0a566a346d44bcfb
MD5 b602abc1559be958f90d7c649294d2f7
BLAKE2b-256 b7df1e688c4091b1955a5a2f3d3c343d1cb32780634830e355ff69ef3e5ce956

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 682eb54e3b41e662acc55c3b89bf6ae903afbf430e414b6943704b9deb6a52c7
MD5 a111ecf3c52cf67d714657952a289c12
BLAKE2b-256 23ebb3eeb044c0b503ae184ae6a4f1d7c72bc172a59bcd225f4bd8ffbfc6f984

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb260b26aef5603d6b79f05c96388452998b954e0ff3b79006e58e4938e9bab3
MD5 e8d38dff59ab74aaaf1f5df74cb3de52
BLAKE2b-256 4f6f17e102814cf23a950f35e42adeef7dfca1b4b010fb29712cb65c4853af0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bac0ebbfb928560c59d7e9420731ad88f4c9d0e028ae4bd82b4c764133be428b
MD5 93d2e986b1efc0763685ac9b427144a0
BLAKE2b-256 c6264c8bbf3a3c5776d839075d64119843d2264fdaa3bcd499c4c3b16712475a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6efd56bf13cf2e9542e479192413f32bdef0e422e24eda92ad350d47b8acae8c
MD5 0b291bd3936e311d45e875dc12329be6
BLAKE2b-256 92eb70de1550ae07c7c3ef78cb04f6edb2e8635269d81fe5571f7e0bd7590182

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 999d5b127c53ba8f28039c0014bbfc988df0bb82ae3a998d6a2f1c41d3ffd78a
MD5 8c05087d98e1fc216f12fe6e108841bf
BLAKE2b-256 730af9b8c36f72cd40ef028c681117f69200abf421235d8fa164bb5945900539

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.27.1-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.27.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5f4d87f7893709238dff063dd5494446fac97ba3b06387fadab171e8759c5937
MD5 cf172eff2b0be8c68909df80142bda1a
BLAKE2b-256 79e0233d90a2ce11d3e2cd55b1bd1233cf8f2ed8fca656d36813d234d9456ffd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 256d8775fc59b0929ae677df9011db39bd717bdeec768ea42ce91cdca78319b3
MD5 bb93060ef639d7e4335a1bb5c866b317
BLAKE2b-256 a644b2cebf2c75676389f91d71131b745cfdf833c6452fdf86911062bb2ff339

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dcf34ec0422e68fe23d6f74d5548f131866c08939dc767083d652a85cfcbcbc0
MD5 dfb218333cf3a0e4aceb11ea4c443cc6
BLAKE2b-256 0e947148ecdfaff21389cbfc3d4ec019dbd7cc6590d22b4c7637118b1220bb60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 8f4a58821e1c34ef297f91db59db09d99d01998efa339ee5cfb79039f3043465
MD5 2bc863ee552c46bc1f2a2c6dfc6bb755
BLAKE2b-256 c13e3742400b99bcdbaf594f9c1f136a7aca9d90b9df7608dfa6b293b2a36324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 87d7fdbfe71512eda90c8fc43b7a7bd092d9b0ac6bba30ce26bbc326dfe790d8
MD5 ca7920b9507829505b8268e11ad66a2d
BLAKE2b-256 87685748834e9aa92daa682bad5d1945a84efd40b4b2bad8623b9ea9bdf456fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 96d5616adf44750ef62d8ec97a52bc4c97140390fb60de7b75f8b4d468b02504
MD5 5bfa652d2558f946b2c2491d4831a540
BLAKE2b-256 d4148562d5a7384c996b312d9b6bf7710caa391baec0d3b9811c3388cd2c0f24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 83c31b4e48663926112ef0de24e0d6760bafd402d6b894c1cc8e1ab3657d34e2
MD5 9c8c6a28ba286bc3b82b54e82d4e9b13
BLAKE2b-256 6b6f0a7b9f08190777d9452b28e83904440bd587bc9ef2807449a506c712e692

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b12a3d9e3911bfc803995c08692aceacda528027161268c56dac658224a2fcb8
MD5 1b4aceac0ed4f0eb8ac4daa645f69911
BLAKE2b-256 55006d77b7fe1547b6d924f8bbd695b819112b40eeae5381a06dc1680fade6c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 28f05caf66e26e124ce62031771053df959cfdef35ac8ec3a7ef0134d12a0cef
MD5 d60c2d29721f8ef96ba6a95cd98403ac
BLAKE2b-256 a64262b2eb3a1432e5875b17b44d26effd53ad2380eba1da921a16eef3002c94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1301ae5f998d5d2f37628d966900fe02c67e76cc366cd96406451ebce20f8ddd
MD5 d567b12bbb1f95177d02393cd5c7d9e8
BLAKE2b-256 514fba8cd17806768b1323b4badee320bb631e18fb4eb7019ea16a223d21588c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7fb5cc532f36ab8ba74d79b119fa7ea8d71ff74d8cbe20658340fe182a7c9b2a
MD5 fc3b9409cc8839b91502cf8a9776dbe1
BLAKE2b-256 9ac819780a0aac5d82be71d35a021af607341d79f71697b43111faa7a1ecb85e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 78283c0239c39afeed4b5f9833287eeaadd963013cbc15a65e4b334cb649a95a
MD5 f014c90fc38089e0832622864ca3079e
BLAKE2b-256 a42d9dc163e48ef6af2cc5b5e4b7220140a17e3e07057d912f6a09ead66cf066

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.27.1-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.27.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 bb70f7dafbf2fc44712efc9cf921853261d6cf2bb23e272a17fbbfca48dc6134
MD5 2fa2b89111beb6738af895b4446be053
BLAKE2b-256 ea772759fe1ffd35dca41ccf1713bf252398915471ae5170e2caa7cce9d7ad4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5be1795567f63db392b56701d40e76537cbe0aed3326b620f3732f1da27330b3
MD5 9e81f131b45b6c18c33322979345d580
BLAKE2b-256 f97ac33d3a360971ebf051c78a44b18bb732ca42558ea10af7f155dbb8b08c3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 568b2d42efc983823143d889d84f3cc74790bc6a525565e5ec96e86ef094f5cd
MD5 3a92daf706d9ef6026516c3ea1a4767e
BLAKE2b-256 aae9f05bf4438fc5c96a65da464bbb606b7e3836b8bb4c5671e7c2a95c4dff92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 bd28889ec000fba196fbbce45b71cd928e1944a455c575c9cca95d3aabf00d9f
MD5 9413238eec575c6c6f8a64f0dd98c541
BLAKE2b-256 688bfbbae54fc21dbf8ea7737852ae648c45c6485e3e4036b1df156b6c15ad16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 7411b7f4329867c79ec1d31929848ccd86eed0d242228e123d3d00dbd891aa1c
MD5 dce377b7e677209dac105529d23ffefb
BLAKE2b-256 aefbcad8b66ac174cf481b81ed279feda7e5f05c2fbe38e5481310ca7ea6c20c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 ee6afa6b0b0952d1fd76447d7a11e8f93771da52b8e20523a573f3fa1d52655f
MD5 a1bf8f19baa2b0b14ea24301798bd91f
BLAKE2b-256 e065f4badb056cd200d27b0cb2695bd96ea8b2ecad4fe4b7168a6dbc5d83bbe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 560ad0f11298eadfe20d46b8818fab01aaf969acf5e38b2ab9528c45446fff38
MD5 fd9559d4381bb35d60cac686dc8a1961
BLAKE2b-256 f139aab933296282ea5d8c43392491b1f072de28afadc688e0cc87cd55d8b971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6cf344bd8db9af88235a30623beee26222165357dfd106ccd1de14f91b03f435
MD5 3a40fdb76b394e3d9c2da88f81e0a38b
BLAKE2b-256 2309153d04e77c3305d076ee2088d3422d7b57d2459958788d6e46687f9d0712

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f261d823262db9736cc6357c5e84aa28512d9f364967b60a7917fe5c6c3a74c
MD5 ef091cdc38b275a09b51b7b8197a2e6b
BLAKE2b-256 3ff63ca1b10d1d042ea82b6614b8f7ce47a0c23d54ac4a2d9265006685fbbe69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77719c0a4f9c2c2404feb27c881239151b631627bc132a6ee6416d3674fe4878
MD5 f5a56f795b2627c575d54dd9e7d32c39
BLAKE2b-256 8c4b4aeb15d604adee60bce781a810f0e446d3ebaa1c609cca710dd5a3d47c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2e096d77236a1985d2a112c53bae895b9c26d7ab743caa68e6304dce27723069
MD5 c74949a7e8091d1644770d210544d82a
BLAKE2b-256 c700ca4769bb75b585b13b5e98f5153c349dab2d94ee3eff129d51314a34ccac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 1373bf2c42a31454dc61a3a2db4cf41c18fc3fb2221177fa0a88ad28c3327151
MD5 f07390536d87079d4c283f8d6c6b37af
BLAKE2b-256 bd7352cdeabac985ca2499d33ffdb0c5c49cc787cec31816289d41075f5522e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.27.1-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.27.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 29912a4a4482051ec46d7662713c0d011d6a2f463ce4531476894e53e006199b
MD5 413cec60ed548ed08de2984032cc9ccf
BLAKE2b-256 8f473d249bfe6ef2975475d2d4f99dd2197acac85f18c703572bfad356cb4aa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5b6203776121d11c7674b11acaa56e0c283f84694fa47ea395a80d0d39d3d848
MD5 479cbba40cf0c0dd352d8cd31054875a
BLAKE2b-256 b5268781a59906f7f5914bd209eebb69e589532771080b1f2a72ca17d23d1586

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5e2feb0c74ccea87918cefb034bab7eba29f52d3f66dfe0fb789b383ef04ffb3
MD5 d92628f92ab082c8f908afa0e9347855
BLAKE2b-256 b92be943ce773a80cf728ea1c6a569050021e4b172ae33f8d2d5420a75bb215b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 beb85fa49f137695840d81f25cd0f11d7a1f27fbbae6fd027f6b8f4a988983cc
MD5 4df0d3deb037a80fa9bc1d16078e09d6
BLAKE2b-256 de4088fac6ba068b606725dbddc796e9bd5740b3be5d26a55dcad46a901ce09b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 4ba38442754f1b3598d4c71aeba74c987f4a1258b03b46c63a6b3728ba58fa76
MD5 0a00f86ddc7dc1f2361e19a21fea63a6
BLAKE2b-256 8f603f6f73339de18dc3fe30ae3a2c7e77edaee0a8540a7e7fe346b3fdb3cb9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 458e9405b4976e9b00b9355e3e5e3cfe4b335d960513bb92363e752ca3fbece6
MD5 643c1f161075406fbf0111e217fd8e19
BLAKE2b-256 fe4690da3b21c22da041fc664dfce0584c882ee690b7fcfebc5ea0eda8254ae3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f53cd49a7de0f3dfbc8f625acb50f5e81c916e6492d931f499401db63fc9690
MD5 bb085a919f81c97c9f0a322877550491
BLAKE2b-256 ae2480889cc709636456a0250169f89d8547a83be433aefff6caea758c27ff5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70faeb9228610ba5ba9c8d189a077012e21bc59f79a97bbb302e141146ef866e
MD5 6c75bb4b5ccab06edc8381ca5fbc6909
BLAKE2b-256 d3facdc05898cf890492802e76d4baf1f6d484d90de8c9a3d1ea815a779bdce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 46c9f46372ba076d444e728ae2ae5f1d2ea439030a95f0915927a4d0fc844787
MD5 8eb012c656d94a4ab5999f58c86de238
BLAKE2b-256 6ba6d3c215e8451337d60a619cb92ac772f2af953fbc084c22c9160721e65580

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e7a4fc9a263ec856b65b82c998210936709b7a35a8f8be6b60b9fa925392938
MD5 549290d75546f180b8e22b5cfa2f3d0d
BLAKE2b-256 aa1c58eb198fd50c6edcd3de5a147a4db9ec6549f4b0b929c8d959d25ecc9328

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 101c2d2136afa1846994c49c5336b4e0a56934fb9f41549b36e11f956fd90f01
MD5 adc63991a6b2a9315a8b370dbe571f6d
BLAKE2b-256 555229a0d1d713375408b3659567595e378985950d341800a266eb6672c6f82e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 efcfc3c4c3052eed6323066f8685be50560219fd9b2057ff29127f2ec02ec8e3
MD5 0147359af3fa2bff6ca662c64afc25be
BLAKE2b-256 18286d004a339017c3e65af67373bf216482617506ee1a5818f5f63946adf414

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.27.1-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.27.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 c49f1211a85b6a333a5a87a4bf3cf33e7296ae341b283102bc5b79e54c6e8f80
MD5 2e34df86bec965559bff42cf0d1d2d26
BLAKE2b-256 7fad550100609d22a158542d083757d9962734c8b04bd7b7e21d44069d32895e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a9d2ee6cb98266a166b05832a2ee06efd28e1a5536b2731d981a35673ee118dd
MD5 801afe91ff06b5e563e14a7bf664b3d9
BLAKE2b-256 5e8ab41f2b00f81713574b71ca782ee776ddeae3285d35da5c1e8d259aae829e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a1054a491403230ca59a7f48ef2606da336cc7e5b8a96adc2487ab21bb1182f4
MD5 f6e60f1a1ae548408796a81ce2ac7746
BLAKE2b-256 299e7e279d7e009101edf5390adec67fce089a787c5370c2aaef3426394c0d23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 475a6c70de495b6dbb1f5134e8b3f5bd532e1d4f2646324fc72faa7a1455bd1b
MD5 ef93607b59adf1c0cddabaa9b5417949
BLAKE2b-256 b1d681740d04a5dade7d9e552904539cae6e33e661c10e32f31cfd4cca6b15d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 8b9a415f41940c9dd3fd28e6fe33062a5e7c96d8b445e60c94c8706c49f8bba0
MD5 8b67a71db8e7739191efe6d80b401bab
BLAKE2b-256 4c6cbd9312405c8f34eaba4083c2bb6ce8af34fe56c1a1a134a62b7bb15db96e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 77566b5f40926277ecc2e4819127afecbf209c5bcd12221708d3016ceb4de2e5
MD5 f9678d0a9fbf73ccc6443daf4d80fb01
BLAKE2b-256 edea4ef786e76c8b4a09b4fa1884c0d9648e81f37494e57eadadc2a5166b9bd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5069936787e90513c8ebcbecc31536d5f7607984ea7d77f69e841772923bef0
MD5 e2f47a126fb8ec739b90f41120d1445e
BLAKE2b-256 750b181e93aff7e50c96787cf4257b78e06ff1c93cb73b1d79cc25b0feeb7899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b32e7445d7cc9e8ff44549fd0a630e521d7ce1c8b9dfd079acc3810fa410b713
MD5 249d8187b716261a7e448d0f29301bec
BLAKE2b-256 2b16c9ac75e91dfa4543d4cca4c7e4b5406bf3ddaecf0fd3bbdef356c0024d06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f29e01413f7976e3530b51284befada153ed2e27830442e54b3ef49e97707932
MD5 5d8a5190ba43c449db7117a3a790955c
BLAKE2b-256 c149d57d5dfa88c24141dcb1beba5f96c11f561320265dfcd2f644a5690230de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1b31040a9cfac1d7961eb76171a87c92463bb876bda1c541ca7e6ea344648993
MD5 bdad666788a50269037c24c01045f907
BLAKE2b-256 626ee8134f28beb29dc53f06bf6d4e92cf3a24cfbb51b30b5d481875e8b0f6ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.27.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5a0423232af02115d5e2befc11ac847173e0245f4f2c9db52dfebf2113bd82f2
MD5 1c11e15fa6dfdaaabb5dcbdb6bf76bd7
BLAKE2b-256 b9125ea2e5f92c875d47ac167195aad42a4845e355b0980295503a899954d895

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