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

Uploaded Source

Built Distributions

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

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.7+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.7+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.7+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.7+ x86-64

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

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

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

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-0.28.0.tar.gz
  • Upload date:
  • Size: 285.4 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.28.0.tar.gz
Algorithm Hash digest
SHA256 ebe31dd5f1151b5ba3924b374fd6f89db21e165f50ecf70201307f08c35a24bd
MD5 de907368489d07043255709deebafa7b
BLAKE2b-256 66ef0b12a253011bc9c835adf2011fa3a3f1e97a7e86352fb93557169b71acfa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2fe89d6f33052ccae4d35a7903e3175ee458d7803d3711d6081dca1f7f3f9ae0
MD5 774494c1e6e985d307e68e9b5dfcee7c
BLAKE2b-256 51b1239bae1a52796749e20b2a8bbc1898d1736d0c5779e913de99e4345ca161

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1b2f7f3f4caedd0a6b3f440c7c843764c9fec757b5550f4ec3aa8bab805b287
MD5 09ec4597f734aa7c4022297bcb97d6da
BLAKE2b-256 b00d0c05d1f5ca306d560f4ef76a1f838c7ecea714efeb56bcbf86cac93ab6d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9940d6e52a407a3b8950edf313718cbd871d51c943106878bcb17e77dfd48501
MD5 e31e383de4df47daa0df2ae46340784c
BLAKE2b-256 03116cb2c7ff3038c630ac9f3c57bf5d22a4db0c09987f95a3f62a230cb1f4be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5278be44d885b7f03105670ee99f994ac0bf38f8d5123c01dcccb54b9dbf48f6
MD5 6717496e17c64ce033c9b7837c728bf2
BLAKE2b-256 7b050ec683cea41774d0aac5c1a2c9bea4f0440aaefd4d7df5b19c5ad4b9afcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6b629a13ab75c921a480d0f02903c1e753d6d9078d3f8dae984feb2a3d1d4d32
MD5 bc73409e099869e878a40111de3ab53e
BLAKE2b-256 d86d850527b88ec4d8877ff4ea81f16acf3ccb9095cb05fd52ef7bacc86b71c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ede5318e8c7fa8a6e955fa5c0fc54d620f15a40eb4d753fd977e226b72e33151
MD5 fe14acb691ac95f738940c4dc8cd08ec
BLAKE2b-256 2a5cfd6c0ac9238ed0cc500abcc7d926c174e4f8ed868fd37063d6e367a10fd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b1f41fa24097d37d1a2ea7049f8dea13b17b3d14483d9aec5c174568074b3b97
MD5 849f278e28cd37d962b970d17b21d70e
BLAKE2b-256 2091e3455f8b4462b4ea457d016449cf5577b0f4d22df08f4fa27facc61aa997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 44a9442c8132e6edd4e49d99d7a2e89e987c21ccfc2477846a8a9e5a5889c3ba
MD5 f09d5c813cb27435727819e32503f887
BLAKE2b-256 9d17626a63526a7b185c5be1b92238b1225dee9ea884a96d7a38ad2193861e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 808c02b6dbfe0f6ca500100db5c4fedd585cf61c32a93e58407d479fcc7a8fb7
MD5 54c1a6574fc502a45747ad19c6df6f09
BLAKE2b-256 e300fd7be01c32b2aa6c7b1f4f11c85264be9ab9eb857e71730096d3e8b1c069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6eaab7befbbfc34c220fbf8ba8906a8738dfbc1c9dc3bb5dcbf48901cf268372
MD5 c0fcccdb8ef278ccd8220c475f91e3bf
BLAKE2b-256 dc760839996de8662793def5f946c810a033e5afec9531b14a26c520b82ff64f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 914caf47d5e61896d6ee8870671995d3287afe96ea8ad2ffb9003cf03bdde45e
MD5 416424a56f6e3c163f37619d2358e2f8
BLAKE2b-256 1a68dee40c024349c9a6c74794628382b229e3c0e5971afe2a528a4e4ff83491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aef1c02b7137f1fa874485eda10e2b066be4efe1e8e6207f605210a953abf8ff
MD5 1b3277f7c073e0d28f5abe9c4df01f08
BLAKE2b-256 885663b9fde9e13bbd0a6c319cf83a47beffc779c68b85e2ee617f58f823ca89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 49f2611176395e24e14a37c6188331ba519bf4d1dde52a2251ef097333372929
MD5 7d0a092d12e6230b8a88d6c0caf74bb0
BLAKE2b-256 5f533ce0317a68d3b583a2cf9e22766d5927ed889303a250aa4e91ec2ec02e46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bcfdc60e1a251c694c30ba9f2bfbfada4d4396fe1fa731e6e7ee5617cb0ce5c6
MD5 0b3295ec79b69094ba9b41c3f74e7145
BLAKE2b-256 710562cc82b7796ede403b55cde1188566f6072816b7e3c62b6602a08bbc0bcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 03ceb0aaaa4e52444786535a69e7642d9331601fe90b32a6d2bd012f23deb92b
MD5 0339e0ee6a48330d2297e75a35e1026b
BLAKE2b-256 1db3cf688951f44af3585c2f1a7fd131fe10ea038309344c83129bd3d3869c01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 434060df8c0987d76ec37d8a0bbc1c6ac6441e9a066dbcc93afc95e1ead72d82
MD5 6ce66dfce99b103e49f9ff8613b08992
BLAKE2b-256 bc1fae4fe5807790ab6fc2044bb65de1c8b5f16cddff86e324adfe8406da9a82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd2e0132db3699e06149b8ec1b02a42a0bc5db2430cda4773d4a3b7c371c4e6f
MD5 2c050dded5bfa8ae2fba3d3d86d3e9b1
BLAKE2b-256 51c1adc871f0abec395cc93cd9e1c34a34c5dd1b75e8e82dff94ca6a756ccb07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a963d3db9b566106b0d1a17188f4a4679636a0dc8d4217df34541aed87db40f
MD5 4245f142dd14b4921a750ac41d503ded
BLAKE2b-256 c27f2b3b5047a8a97bcbc41791d451823e54b5ba347dd7d7c5bf8cf826420521

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 75cc14d47cb35abd37a9f9ea9b19a36da5db5eff324e5a5a211a18d421a354d3
MD5 d918cbfd874430cb143aa3ac0a1d4659
BLAKE2b-256 771874728301796ef0734390ac576713a5f3c03470ddfd458d7bf080e614e0e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4e0a4eaff110ad8b8a1e8f117df30c401707e7d0d493cc79bbc06c37bbeab77f
MD5 3ac68ebb94bf53b748d0a9621fbbd788
BLAKE2b-256 a0a066f0263c0df7d71f789ad3d7fd09b3cef3e4162d2c58805ea06f82bafec2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4facef36ff7e4837e92f5175f6602b11303bc4fd63909bd020ef9d1179ddcab1
MD5 3fbf4853a7864d990a0c1321e73a7b1c
BLAKE2b-256 c5305e17c4ca4bf56f05d92658705e29533113a08ef800d502979c566b9b0348

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.28.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 9d24ae66ecfad8ef185e25166ab922de70f1bb250995684287fe7603002a790f
MD5 44c631dacfc80cf9daaedb7847cdb796
BLAKE2b-256 db3084a344e8f6b34635b3b02aa36419b4361ead39f991ed31f48f7e9840aa2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1342e479f8b6ee7971dd7f0c7aacb7e369087d1308d4437c74a2b6528e6d7d56
MD5 9e78776041016cea2c963088c50c2e24
BLAKE2b-256 0b5dee35f926fd9e83e3a03cf0ecad000336d500ff65d81291752f7d1284ed7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2a05cf246e73ffb279cd5d2df7763bd97f5a27167e770c9282e69fa7b011e6d0
MD5 091b2d0cefe45ab551fb187bf7f85a7f
BLAKE2b-256 30fd08e4392117f11fe9c74204795cbc4be258e7e6e83ba2d2f4560773eded75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 d8a68763647726e6e45625cdbf4d97144644612d5c2092c031d5ac1363416f04
MD5 ccb247945999a3dddd407d6abacb35c7
BLAKE2b-256 0bc0510f758f309c1830b1c323cfbf5d60bb66f75ac8cac6917e400a1c69fefe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 774d03dcdcff629feef22dbdbc97a850407d838814b43c3f5899193b815f6315
MD5 067ab7cf844e38934ed92f83279527da
BLAKE2b-256 8bcf01257ec66a8df27425da1d2685be16b4a7770858108b3d781cb2cd221036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 2e27d2b6d39d83039d93da4f542cd5a53c71ccca5671e5b20e219327be04c30c
MD5 cbae0a3f92267f0d1ec57edf0848121c
BLAKE2b-256 1cd49b48fae2a6279eeae59fc966492f51b3ae532e88cc82569a768032b27bc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9f76f8c2ee2a46f461064958dc587414d0d4e250d1b568de7f34c79c9b7631f
MD5 14df7fa42a49a492c764a8c7f76ec665
BLAKE2b-256 ee9bc67755f845a21e8250623f4733220fb76198125018375c1a45745d69dd17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59668c15ffbc11aea8832c29462e67e34b9b541c229e28f488b2fb9c780598e0
MD5 f7d033a532ad9750aa20c2d600ec1ab9
BLAKE2b-256 0f7e7c7d7edebb40015a9c75538aee1f675703b54172389e6fc51e9ec60a7eb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fa9c2603d6e7b7e92c557882d79dbcf17c475a9a044ae0f2589a3ec6a111a642
MD5 4cfbcfde3dbb4d7c0890d70f06e51cd8
BLAKE2b-256 805ab9e285695cfab15d9631d600f9a3881385e3fb267025a211a9e1657180e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 471d75dacf52c7ee1a4475bfab999bed4e630150063f1006a8695077f300a613
MD5 3b40e41437cd739c38ed8bdf2c8fb5a8
BLAKE2b-256 4f4c0c43ffc946349a2ed176bc2c7c5de3af9f8fb83653ef946d6a824f6409e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f5b7b5b9353b2c63d91d85825c24204de04816de1594a815f51a2e5603a810cc
MD5 58b58aaea6948a18590969db7519be0f
BLAKE2b-256 a4333460674e8d2a44c647cd68f872a5f0969695fb119310fc122c61e1c93aff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 23878e70fe149dd3f2f1274cab310c495c4a7732f7b12127867860bdeb0fa1c5
MD5 961a7a8885b3c70b1f4c74004a3c75d0
BLAKE2b-256 276f857f6abc03b34813c791b51b69cd0255333d273cf6ccc3c0bf8ecb8143fb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.28.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 8349362648f1867f2b13c0de6037891423f4f5e27fd0e098f346e087ba4ce446
MD5 9f48e9b45213cd37eef03f8b638f6796
BLAKE2b-256 dae6ea3a4b1610aebb01b56f651f34e6d63830d20a279599adbc787518945a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5d390c20f0bbb9f7f095233681eee3c071b034340df3953c3c348f49f8f103c8
MD5 ed8e649091763b9b8e840bd4185d546e
BLAKE2b-256 84a3186c831655cbf231ac1ca1f9d36f0f4a575a9f1dc6a1ccb9739f2d3df6e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8c9b3a88dac79304d425b3f027d18ece3be0d148c522fe4713433a5f46c7ea57
MD5 dce2e1d97eabe89a84e9f60fd2dfc1c8
BLAKE2b-256 2d70c95657bf345f5f69c83d1565bd1ad04581f0dc3f1f34d3a797c3e50b264c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 2673c26ac7199cacd256e7124f1b6b9245e8196d439b986fb65e9522f18a1fab
MD5 516a7a8269a56751f0a2c9fd803045ba
BLAKE2b-256 03a635bab365a1bd779091055182add5abf974370a116cf37899a9f1d35af2e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 6ac6b367040945a478b6b0deefc56a5b892172fa5211ce3bb7373cfa82ee67e9
MD5 2458dc9f2a9f6987c25e6976207d43a3
BLAKE2b-256 7d68b060f45dda731eb63eb20ce40a3e51899f69dd90acb06b93468a96194cd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 0718e0e102e2f10f26998d1784d5e05ef675089dead36db36a238f01451d5f32
MD5 8e9c3cde19c257183392b31ca3f54f6c
BLAKE2b-256 f8aab7769c58014795a4f2598c42096c94c74b672cca2536bd995ddaca752ce0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e567d4ff23ecdd534a2eaceeba836eca63363e2c68e9113ee9a37671e2d214b
MD5 e0e1ccda6df8e13ce89a86ae1d758c85
BLAKE2b-256 685472ec081f9fd5cca217ffff62c6a01fc262b448e743d08abe4981a2c371f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9018aecd47d7c7870d7532d15819cf29f5d3a07825e86c66f6bdd759772a7454
MD5 ecd28a1b7241e6c5d46366e2bde40c9c
BLAKE2b-256 d94bb0f31f877f157ceb2107acd3609e62e8f80b8b224871880060b700f4c2f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f39e031c5279fafe00d34d1a373a8c207dd84560c31cad39a4f65a35fe319994
MD5 500120210187959fa86986f21346db4f
BLAKE2b-256 b06319fe4d36860ec11d425d95b7c85c1bf2f1998afcfd51904968610dfd2539

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 927f853fd8232d6051a260720cab85b0197bad95968cbe07f01526b217d81935
MD5 ba7614f6ee1e98a541d081d238fe530b
BLAKE2b-256 717865ff821ac0252f98be07e84099b10da29998ac37160a03654412c1d65ab3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 541149a979361423ff8bfb80d8d12e6c8d445a344da47e37905db0557ee7aa31
MD5 a8c054d1e6c419dc06e5aee962e043a6
BLAKE2b-256 258187e2632d52350c4a184cf024c2d992bea9085c3cfb6ef974cd5d85d323ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 abe793311f49da6e12193f25b1905642a92f02e80652316b61b71fb754bb2d35
MD5 379b7a6bba5d7ba51745ebae4354a877
BLAKE2b-256 b950793d8fecc2a38e4de100f716737567b95a34253a09aa859932014a2c807f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.28.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b5fe96d690eff27bc8a174dec7fe595d21477e669cd1636e287b2bc502a4870e
MD5 07b2cb76419f4d1716df2de181fa0ae0
BLAKE2b-256 0d50f57220520d797e72674d5361627ccc694da53ff84965c2c745e32609b1dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8667a32674588e75ae3ae513ed3b1cf24a317411c81a27e125a783f5aeb553d3
MD5 0a8c6b9e5fb8c741ca2df366e2bb9111
BLAKE2b-256 311c1f3c8f41316818691b70554347f1a886b7b10eb285ca2f72ffa44d9883ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a351b8d4b0331179cc4acee49905e65190c0d147207591048e1b77f27cef766f
MD5 868661d1b96ce8280a52dc83d6821e57
BLAKE2b-256 be9706bde3d3895a2e0394cf1818609bd3ee10dbaa8a10c32572fb43e4304290

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 99807b36c493d4ff7226cac31bf586ad9d2f9632f02baed772fe9d4baa685f2e
MD5 4cf39560f6a22ceeb2ca83aba2d05370
BLAKE2b-256 a1aec1557f6cad18b27265fa1f0a3bebd9e0e80462ecba3fa4baa807e5a92773

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 a16e54f06e24b123f039cb1bc0adbadbbb0ef588189be0cc2625cf9358d7859c
MD5 9d4035befd732557f84806d1f9471235
BLAKE2b-256 992ecaabe8b658f6b806c976bcbbbf7ba0f6d57a6a1422a473443329e0676fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 972a18bc29ae23f24176de1cf299377d26f39093a80a7ec29f1f308f0dc131d8
MD5 49bb5a3984490aebd962cf845cdb592f
BLAKE2b-256 8f9efe962f62f9dee143048e17ff41e0bd196a937afca23830bef554147c0c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48433b874c43cd0186bf00898c7cbe44db7bca3e8708937d90736f80ff9da0be
MD5 a12bdc3df2d02f7d83c348c37caabfbd
BLAKE2b-256 fa254bfe1ccdc8a4c98b6135bcd6bfbba6e24859bbd4239b7fd040ee6b09972a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d24e3bb07c4e21958e254393164be46a14750cc1e6751e59a1cb3e51b7457f51
MD5 e1f79cc815df83d5dc58b01351514f99
BLAKE2b-256 f34d89f49be625b60e007ba36905db122e7245728d8f6392a4891e2f9fa7df47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ee43af894fe3e6bcd9a7d750821f0197c47b14e3a200149829c6d1c4af3af7b
MD5 d16d4cf7e550a7473d76711c56649e9a
BLAKE2b-256 3ec99b82322332617241df2020853bffac9ca132d8fb7d5513a97d066a61b309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09187d7fc7c9d00491e2d4dd121f9bb64187e8258b7adfe8d0f21eb050b06911
MD5 f0a6439627c2a8a64e2e3aeb2f73386d
BLAKE2b-256 9955b7658e2c97e233069ea1c5d230669f61f5cc7ee90aa0a5500f573f527ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ad1ef1d45d630e7b3ee4a25581dc435fae25df377320420eabb0f69fbf11da71
MD5 9c388a17a4914e817d4c1adbd5e40e12
BLAKE2b-256 afa1f10d3ec378d33aff7adcc31dab3a82545a21932b2c51e3afbff6ab8c2edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 723b063af419b8d039caba873f14f5030d9afd3bb22ed50e52cfe56725c2fff9
MD5 d86e215dcf6b19a3f7a5fb2172b125eb
BLAKE2b-256 3b8a53a30d7f6cb6a92f12c3a9c9f7c86a2b7ca5f660edc5185be2c908dc40f5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.28.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 8a9706b4b40c6b375bd14178aa3f2e74653e8f27755698e4d3a6eadd21a901d9
MD5 94de2b1e237c2c9468336278e5b032d7
BLAKE2b-256 11b870cc943c72531908c938cbd6d1e318f3037231236a1809d652bbe285cc96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7f5da2685aa2ac351465ba36a4c98c067cb219195d51e5ddd16406851dd5c6c6
MD5 eac6f3d81edc1e0c83289da83239c35e
BLAKE2b-256 b9d8cfc70242bd759872b07ef8b7015a38261f10c35c072b1f7d2e57147291f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f9be03aa58188180e7261be5f8482b8d85f8bd571e8a42e0f309b79d93e247c6
MD5 08e0df9e7fc4359140ebe5cae76ab096
BLAKE2b-256 47d985d737e27a7c6c21e8714c882b1a2bea2b5be0d613035a45502e44ca2ab5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 5084a066f7c53a3fe59ddd112bf6996cdb236e3c7bd3438a14d6b1573937d3bf
MD5 d96bac166d5906a2db970df96c1f46f1
BLAKE2b-256 053aa496d61eec91c5a14b428405255a674b2a76cdb8b24f11efe600ea29088d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 b2f3a578bbbd0f18dc138c078f6cc19873716169e61d176141c78ede5d298d21
MD5 c5800d277bf1c90e2af4a39672113bdd
BLAKE2b-256 efa01cfc5ddc0ec720f41e0d5afa87104da2c0e98a745d54889c465ad719a71b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 22d161777a0c3cb84b76d3ebbe1f008fef8e58dd8fd9a91d51d5e6f1588ad9ae
MD5 1387049fdeb62fd5e82fb2a29e1795e0
BLAKE2b-256 4d44a8c2e0cf3d737a9d9c30fae96cb18b16b8801c01bc48d77bd027b71b7d1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f531b017ed1c568e9c070351b55d4f3a272c9f097d8a01be453a82a84ac7fa7
MD5 bf68b897ffbd1baa2b0ab99739a652cd
BLAKE2b-256 648344676545e128d0f9862542c38423bc0ca0b185fe315e65a94c4c734a4bd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 79e8abdea4df933c3ff918671f7718e6ba483b4c556036aba4e8aa4e7c4a67ad
MD5 244ea61aa25260d5e7fe38f87efc68dc
BLAKE2b-256 299e213f03685fa02e21645a679b16d8c1fb1da068e909f41b2535dc1f6671ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 949c40f50cd9fdf0813565d96510b264e03f4b1b1af2e8ab20ed943391fd67e6
MD5 2c518b7ceb15e4e8965908486d706815
BLAKE2b-256 63f6f8339547e31dd96f8e70a2f5c6016a77f3921abb8d8c84799311fae57f51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 85fa9e3933289ce43b73fa0bf05817ab9d10dc1e99efd46e33e2b1ab9efb9e60
MD5 75d64ead701105b015bc9836d5cc4bca
BLAKE2b-256 3c55102415e2b297a98946c056907a3b5f182409cbf4614b234056c212a2dff9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8d225d957342fbccda68ee1756ad9d6878280c169956f5d4b951f1f0fe8e9f01
MD5 01d9398263b8813af5ade163a41e3f7c
BLAKE2b-256 026f3a9b4ff86247380b501ed8abf0f64884f3be96632f05ae579423e5d75be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 d76c395367c7671ac5e8dce1f4be8a010d82d73bffff1c9dc1e58ae24beca7cd
MD5 1baf83eb1c6b526d8b7e8e14c4d3a86c
BLAKE2b-256 94f759e675fa3acea2418ab47c623fcdf24f25271adb4e9125ba67a4569d8d62

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.28.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 b39a496d52ec527ba7e7ebd62a9661b6e023891dc7ca8e9efd3cf1cebfffe33c
MD5 1165c22a542af6c05ae4a11bfe73f7c9
BLAKE2b-256 ed2cf2c08ac2ffebb1765b2d3b3f585148c7049839f4fa5dcbccb3fab0c3e021

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b452b6a87774acedacc424572e183ae728ca0174b104f9d39624f5168e84163d
MD5 ab2bc31246f9eb70a93a1e83eaf7cff6
BLAKE2b-256 eb1adc4db535cbbecb9519937c9bc53ecde1ee8faf7c51d6122a76583ffe0d02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 638edfd2ce4907a5252a54cdd404774e84baf1a917c90763ea8607b58a1744a7
MD5 1cd579092430c85eac0fc8a1c5e1b568
BLAKE2b-256 78e0cab07d8c2ff0b5cc5c3b63503895abe199fecf6445047b25227c3fb07749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 dacea4370e6a2275900773ca76ed97b40f060404a4f92057b5e8e5f30e0dbff0
MD5 db461a3562c5a1e752a4fd25735c1247
BLAKE2b-256 67604ad7dc2b58b781055539636b49264d64bf4c25ecfe98f9ab48e6f2c6605c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 266eeb580dcd4f0c946d56cb0a6aa7ca8df4a16ceb269fb8a6d6e1329a1c7e3f
MD5 204e7ba47c18a56dd022a4d59f8a57dd
BLAKE2b-256 861cc543baeed8901f6aeb81d9e81cf7d0c4356664510a607d6f18e73a2b2eb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 9af533cba10c88f8835b0c8b7e75b1f2d3f5ea3d856086b2422fa2bd4e4a8852
MD5 d4e7bd98210374992e51f6566b26c5d7
BLAKE2b-256 10bb198c5a0af779008620ba7f3facae42e438d18b8b300996a1f4c10275830c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cdf30fe35429c1c7917bcfcd034da42725bc258151b31c1c92540cac216b0c26
MD5 889d260e7ef86eb2865e31d98ca65707
BLAKE2b-256 930f5d0a3afd411c548568df4feb879dbdbf3a87f586c010c99a5f939733cab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5f29e69770d15930ebdc3c1563308e6cfa2346db9dcf356d32c9d4caa39afc9
MD5 ffd3a8a813be047ec72205111deafa7b
BLAKE2b-256 0dbc1f6714b8f1b118c6db206aa96ea1887cf02637b32d6de60210422850f26b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0dd5c42be23df8648097252bec566721fd25db963117670877f51bbf5a850b6c
MD5 5905a2328360637a109a9adfe3870155
BLAKE2b-256 746700b52dcbf6ca2f8287421631c625d3aadba0b37a377b0d7367abdb630980

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8248866fb75c5bc2119de12d77d8a0605ce7967107e413fd4c5eec27caec9479
MD5 0d9e82395fefd60021bc5a9bb558df3d
BLAKE2b-256 ec8060d28b0ad5f7763d258313390e0973fd273aa189ba6101c4a0c8753b6478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.28.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f2037c60ac9a989d09f25a3676a6a35460ea98a7427edd5dee95d9f64d2379f1
MD5 794e68cf85613d32b88850949e8182f7
BLAKE2b-256 ea505904b87ec3b4af7d6c14a3acf4a84356855b499ea4ad3801bca5ab4157d9

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