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

Uploaded PyPyWindows x86-64

pydantic_core-0.31.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.31.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.31.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.31.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.31.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.31.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-0.31.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.31.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.31.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.31.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.31.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.31.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.31.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.31.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.31.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.31.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.31.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.31.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.31.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-0.31.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.31.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.31.0-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.31.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.31.0-cp310-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.31.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-0.31.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.31.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.31.0-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.31.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.31.0-cp39-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.31.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-0.31.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.31.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.31.0-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.31.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.31.0-cp38-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.31.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-0.31.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.31.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.31.0-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.31.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.31.0-cp37-none-win_amd64.whl (1.4 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.31.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.31.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.31.0.tar.gz.

File metadata

  • Download URL: pydantic_core-0.31.0.tar.gz
  • Upload date:
  • Size: 291.0 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.31.0.tar.gz
Algorithm Hash digest
SHA256 da524180996635cfaf26ce01d1faa371ac6d31cf3f5a40ef09a43d599f974015
MD5 5eab44b84f764d51dae42c2a69facf3f
BLAKE2b-256 d24a9f7ab750467769881c826f44691df9e79f18bf6c209354ef56ea83453761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 342348e2021544a9fe9566d6446bed6c0ac14bdbad55a16770ceb92e17619e4b
MD5 4a3190faf5df53270cddb7f49ba717f8
BLAKE2b-256 b7a6cca9bbab449aacb301f8edfd470fbc6ec89b2ab1db4af73d90b4742ec99f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d2b69fcc26c7a0e7fe5f2033fe50261d5f46535a0c63a9d160ca47ac8eb5f53a
MD5 f580201e9ee4c868af6a836fabcf871d
BLAKE2b-256 f6dd89e9a54872743195a5e7b2cd9d6395a38cf9c460c1dd72157be372087b19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 91d3d9614d9ee05b3a9fb6a148842f47f7fbdb91bb399fc3dffc37d5783bd9d0
MD5 d66a736724c552da34a860d213530d8c
BLAKE2b-256 4db5c88417c6e48d08b0097703de41a2240caf26d2be6b21fc6d1d79a059f146

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 33784ede4a93eedcbef6be86a7da9471369d191629fd7db42b05d0c4a7e05c94
MD5 50882de4fe6f1d07141e3d544f311c11
BLAKE2b-256 9cc7e7c3a8ac985c3852f1f6275a477896eb4c80ad94462de690bd67e116d400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61c4c43a5ba5cb549ecb07ba9e01469f1514364ac7a07a65597dff0265e7f0ee
MD5 817d106e4bc7295901d095bfa401b8b2
BLAKE2b-256 e3dc83779c8d60d7235a28fbdb1765e886a4663072469cd127c455806d9e6287

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e960fe3dfa022a4d3c14aa52e82b5bd402301da1223e1d4b96ac62f2461ecf16
MD5 de0f34545593526084ac1b86cd079c91
BLAKE2b-256 aa1a9eadc72570a4619010b744dd4c7acc8b8708b62b24b9454e32f2a76ab920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d8eb78e63c1f2ff80c8259cdf851c5f2bc03ce2e9ada353a465b50c6e4b94b2c
MD5 e557534b519e67fd7cb147e16ac988bb
BLAKE2b-256 154d2bba8c6e55e5219ea643cbcaa1cb0e152227b842b9b7e064f644a6649671

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 25a729171cc20ad869073a4679d1733bb65ff20e9c8073c7e485d3b7e505ff50
MD5 d4673ee6a4b37fbe1530365ea43682d6
BLAKE2b-256 3d1a41aceaa6959db2e408b7f6a5436fb3c0daaa0f903cf8f64bdc3112a54620

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a666f81c921379a33d0278cecd4358cd35b182ca5efa994aeb7e21255b893acf
MD5 c04a50af306e89ff84378cfa27ec466f
BLAKE2b-256 bd998445f0d259d3b7e9d0b2087d70294cd91269c0f246250d143d03f8bde270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ad2bfe2fc2e585e32a2c1a75312cf118f68220b8d372668a98bc23fdb1985cd3
MD5 27709c795641b23a82eacb30d107af6e
BLAKE2b-256 d9b51527ffa38cb06b7a3991a48139881596a86ef3382600ab2e80cef101e5d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a53a5aead62a4b589b95224527868fa74bc27fdec1c2b04f549007ba09927369
MD5 7c5016d487306b5a2e87634520ea10c5
BLAKE2b-256 24633dc6f09d169ad81b5a8e9cc0ef9ca29f1002ad410ddb6e2e39236cf9deb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0eb8e084515a41e105f47f0069d4148ccc6bb13a1cd0fec65e155c15ccfd4c9e
MD5 b65270bf9a04d14ef453ee11819d6a3b
BLAKE2b-256 944582326a72707160216e301e2233c68c4a4f9ce2c42dbc6365c28fa6421f5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e4ba6395695ef55519d3f20c2ac36a606854f3d2ba91d4e127afce280c54813
MD5 5dfd91a99413bd467d7bb6e05931aa83
BLAKE2b-256 26a8ce25c5fe32d47832958eb7b962f52f71881c2eae6913a001983f8b34e208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 01ef400385ffd582e23e1dc7243c8f1b860ca7026120c3aabf844e69275c621e
MD5 3084ef00334ba494d49d98291bab06b4
BLAKE2b-256 9c6cf2d8a14e705bb1a7b40e42e91209c2f205b564d7887ca1eb04cd64b0f28c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2a0b55109a2bcaae825833b1d7d3bd267137c72510de9cb05bedd7b8944ab277
MD5 60225b1b87e310e68c0cff2dcfcd7369
BLAKE2b-256 05d4234b469d1e4082c3c3a89828dd6762464a29d11b0abdc6d390877e3a2313

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e97032095745600af9babf93acfec4f347ad9dd8d14710de3497d59c05c7214d
MD5 ce01ac29d9596dee1f94720808ad0795
BLAKE2b-256 f7a3323e31cdbff6cb4f1759846f16ae4d15195b42131f5719dfb33d46ed4cca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b48d5d38533c393e2e9fd05739681a6a4ddc312504969469fbb2b7e8c297bf09
MD5 81d6929a2d1c0800d2f996a573ab174c
BLAKE2b-256 f5ff4ec6a7beb1b1b76090089e04529bed46aa05a6bc92eede9769e5b00ee8ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0aed1508d19de0b1f00556f5e5cd36a675ca88a249cb64c9ea53abbeaa55979
MD5 18849dadba077d62b35743bd3ef8856d
BLAKE2b-256 447bf8609a98794f9846af4d9ce4b7e19b4175daca4ee66b9697a71d8ed381a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1646c154daf266b77dd68eaad5eef475c28516ad46d15f370035b559d1d8a290
MD5 bb9d50e30c3c829c916bc9dc8bf45659
BLAKE2b-256 aebd087d6099a1e8de1d0772ef6d3975dc201f020050b792790426afbcd8713a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5ded9bd2d4b270dc4dc01b2f6416d4a4eb51fdfdc5cb8d21aa7e2d88f1dd90e8
MD5 157f32691b87319e988a93234a403dc9
BLAKE2b-256 66ea798e6f8a37014dc450b279a639d207d234f371c32a8d198e09221b602101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 085a504df9dc798ca2d29c53adfd70f1b4f1d970591615a5daeff5903dc0eb49
MD5 840ed9b0698448ee71ec2d1b9b80f1bb
BLAKE2b-256 a6ee2536d7fd6c73e1d431a42d7b38bc7ce6e711c507af1a936b6d644ac2d423

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.31.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.31.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ff93ffe7eebb765415699bd9c59055481bf7b57679aa51364e98d19a85aa4d6b
MD5 62eea8ef273a0fe30938518a43935c28
BLAKE2b-256 b998bd1fa034b78b0ac41e79a5a135ec29ef6c60d92f14cbc9e85eb2d3cde05e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 095bb5d2487354d0cdf0de3102e8a003375ac2f71635c14215886ac0dd22aa43
MD5 a5189fc8971f3a1c8abf6701f84e86b5
BLAKE2b-256 a403e8dcd43adea2a50d552ebaa8a13c59e5ce2341672c5771dea57aca971657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2e0d15a4beb57f317177a9b6e45c2187d4f72c1dfd2b61980c8095faefca3357
MD5 48e20962b694a2c736081421b33f8a3e
BLAKE2b-256 6e9f41e7878124134a707f41729afff164583f1aa89a769afc6f0a42190dec74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 a28655840c24288eae0282291b96e336b5d7b4f3f69ea23cd1c25c06f7512bf2
MD5 cb15bda35385fd10db3bad7caddb3956
BLAKE2b-256 d92553f525ff824faf4a3ea2e2912d13986ca2296bc98ed1bd920f7edb870288

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 eec0316f688dc35ba9bd9f15a69984bacf2e9ee48aa2d95eb812dc7469101dcc
MD5 ffbdcbf955b537db35b74309556767da
BLAKE2b-256 40d395932f9212f7596bcb4c374909fbcbc236cd1038b0466a025d609118e38b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 985b450143b0b423db0340884c9521979fc21dc429f779bd75fc76b2da4d7c2f
MD5 87489c7abb43c2be3c9bf32856f3c348
BLAKE2b-256 084b2e82fcc74bb814078a5cc2df84e7dbd033e31d3db48f4edc005fe2310c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 31939ed0224f83aeb34cf0fda8d1bba0f1d579afe1d08b8435135892d1014688
MD5 9f2946b89aaa476cf1f8922c6070a110
BLAKE2b-256 3e9e7bd74162fa1e55cf5f9bdef210c53a6bdac1d0462e4d5b9e49b87c16567f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cebc073958b12b5cc3ce6120a002c07b5f440570c6f6c5cf75b4ad597a16208
MD5 2da905a02978e5ae0ecac5bf927191a2
BLAKE2b-256 7881ab0e5aa9d85c9f02c3d36d9deddfb479c855b22fbaa1e03b9517940bd9db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 157b6f058142c3fa3d99ec78e759b2f7a57d708e3de33b5075da917af42b49c8
MD5 cb247c4a0563f3e6f81e5ebd23d7edc5
BLAKE2b-256 a4cf49eaa0605020192b530be0937c3d3046f6a0c5a78fafb37f4d56582f95b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f6a2211217f05a39c0d1ba280e518f33c46bad70b79824e3098e3508259ad5df
MD5 bbb34f4eec1787f73f2df52dace2b398
BLAKE2b-256 b897bc185bc2fbf04cbfed5ff2e18899c4b825f5cd1cae1cec9b32be0aa03387

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b1014135b34bfbe0e3d71b0b3dd47416ba2ee407b9ed09381e4a77726679ec55
MD5 613934612fe492f81d807a22ae7a0b3c
BLAKE2b-256 c1f4cfa2268c856a7cdddbe9587d79716d32a1637f8dd742235f9bacc258e6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 70600e6137051bb333df85f2ebaceeb9cfb105f274cc0083b6174fd35644e695
MD5 83a3711228df1a15009200755cad33e0
BLAKE2b-256 09b7a1b563da6396b2884fec26a25312fa9f410e711553d50685850c47f0e807

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.31.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.31.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 288e183abd941c31165c06173a7c69b6ea9a2d4a8612280d392fba788f27851a
MD5 639652dd8f823d32cd6032a54ee5d5c8
BLAKE2b-256 73aa7257e3dcfba0a69ebd59f6a94d9e93d08c7e889e92d088ef0f438cbe24b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d0f0c7b408eb40c1f1d924bbcbbb14d9e4ab8d9dcf0ae0d7c5b85322fc0d2c60
MD5 dad5d30dff05649630117893f40287b8
BLAKE2b-256 9fbd2237b9c0cf812b32e75e471065fe00f615cd161841e4f38d495837a2f8c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dd866fc9e0233f5164b4adb2accaaf24780fb9e309d84f3d29e31c486a83576d
MD5 903778a59aa70331eff4ed60d47349c5
BLAKE2b-256 5cfe9b9099c675cf04a25a4bc33d2d52b5c7ad309646be687664cef811a67911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 8a3ea324c2d64e5b3df59e55ed59b05ef05ba17f5ba496c04a7102f259563f22
MD5 b51e84f3fd7165e4eb0b2f3919334e22
BLAKE2b-256 4c33572c07a834915028d1282eb5a91eb1944579626989e8203a39fba969cf69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 12e9134ca75cadc45254fd529208f90dc6f331d8bdb76fc198b67003a9262418
MD5 443b4531bf710fb9e0bb8d909bf5ad00
BLAKE2b-256 707cdcceef31840ce1bd329bf2b96ead4c06db6847ac750058b7962881526c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 cd91b25c4e947adb436300223830a4b2686dc364a7ec8ac78b0036e6ed18398e
MD5 9f83487ef10662fc5dd36d5b402fa76f
BLAKE2b-256 d3ae39f63f98d6d51c54ec9c22397e78bfcbd459c9beba18206e604592b49c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76a03ca4258c37b4e9bb9afbabb1da3f449e6d6670a45f5b34bed591800c8852
MD5 b5c24938ece8288cc389f39081f596b8
BLAKE2b-256 85c6669e842ca11377a2c9f00160c4730450f1aa820470fb662f35198e588071

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 30b9ad0b03f0d0c642b108b2a80e514d5cfa6f5be6f7d8d5cd031d3447b03e86
MD5 c92210dc28c65702ef6869b57b1ffd8a
BLAKE2b-256 c99350f56291247fed07d3708dd35a38eb166f3feb1d2a8af7e9206e8af3cd79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9defc7047a19ef73bc7708525173e90de9da6add93d8e324e25cca3bfd67426c
MD5 32f422311812ddfda7d7dcf68d417d86
BLAKE2b-256 0df1d9347f2f73d093cc7c1d0ac9c6b75c0782098e6c4191bc5ca8517a194ea3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0c9adee96e60cb090e05ba387e867521ddb46339c272c8d31261c54d222f183b
MD5 0d0ab6707679853c1a866f3b8ada4945
BLAKE2b-256 7d3c9ecba668ca7ebfa283b968fc75bc28823eb8d6c1d32f587a61f69025010a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8f39b9b8dc35c9a740e4d76dbd17d1824d7ccb6a017691f48fd416368c95e2ab
MD5 81703f8cd210e54436669f07784e968f
BLAKE2b-256 827cff1b599edc4083109def79595c0531e6a60ca24c866772fed6b3e87f0198

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 fb2cb5e53d7401fea21a7950060af4f23358dd312f1bc9b459519f7d2338657f
MD5 955a5485a63de6c5e1da9c24bb66b707
BLAKE2b-256 23204de6466bb38036087ca023bc36d01301e8536709f2d2f4587d9959e3ddce

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.31.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.31.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 9f5ddc70d3853714e07559b31f532f1fb27ba5ef1a5d0c7be4080000566519f0
MD5 47c4bd85203ebeac1fa92a2f82e863e0
BLAKE2b-256 1823c61b088daf49d7806eb6de97ad35cff7fdcd6cab3b4b888d38ec6c3f9a90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 70265384fc813794466856c1055cc95911d6a105bb6811cf3eea738458bc3a7d
MD5 35c6ccf42280e37803247e72ac184b6c
BLAKE2b-256 14242c7fc4c717985ed7611f58a8bf79d81ec47201eb69251ddfef07202af245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 50eb48db1c070ee484f854550934e88fd6a39b4d723fdcc8e9b28b54624731d6
MD5 c4b1a1ef9c78cf1d45a83cdf4c37a7d9
BLAKE2b-256 612b67df0b11687ae17206856f794a71b1d0e2c7fb13ce5270bb7ce269aa4006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 00fa6111bdeb7ef7883c9ebefc0b0cadf11687955d1a5929ecfe2e1b14dc40d6
MD5 2ec02daacf3c5eecf67e36c0d440b11b
BLAKE2b-256 98f7400585e1ceba0acde13b8e736133ee9cac2bf9b3a3319fa699916ebcd659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 5f658021de94846d3ed2d012a2e35c0c9e3db644c21eddea8f4270629872b19e
MD5 de0f4214d7196068ea14c5f269af9cb1
BLAKE2b-256 33111e98f6eed6594446fe7a15c54d0e4584efd3d02e058211edbf704e896cd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 feb9fa0533e174789f87ee46ef85dad9bcb16e35ae6f0739a8aa58ec77668822
MD5 478bdcd4bd85f42e9ec0702c387abc0d
BLAKE2b-256 5b33abd818e0ee979601860f646aa3218fec2dd092da3e7fb95573615ffacacf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a509b98510ea7d6ad9aa5bfe9c54ba1eebfb7a99e38b2a55e35c02d09d99519
MD5 5da0f7c5f526bda17b1e5c5918c0fc60
BLAKE2b-256 707589053015a33de5c7ac6f12f2d723b31a190c93854a358da8986391c1b279

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4207fdbc147723a49dbd36aa6b3dd0f459de37d1de5679214218bedb80d63c2
MD5 16867f25181a4cc2e81b2199b438c9fa
BLAKE2b-256 2224dc309ada4fc8070d92a20ff4b96842d5515bb521d5d33c4c64de8e16c5f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 20748bd301e4016ed77b6e5cd713befc66c52cbf605307c52bbdfa753f194211
MD5 0e9a0d37306a5cb85a720c865ce32c9e
BLAKE2b-256 bb77c26c3938fb48a4969da7478ea5e39c07b72ccd3ef07b17ee179c9a15409f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dbd2d91fce025929f1ec5e742631d9ab41096aac3767ee0f135422b9cb8bdfa7
MD5 58811875352dfd512dadbe054e3d277f
BLAKE2b-256 5da0f78d08905e08f2a9f09a47f0e1f2f26f51492b02dd123c06ce693bc1a2b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 287696ffb21fdc39b351c67e61159bad98b0c26f90cc34febc278520cb97f0c8
MD5 9820aff32cb2316caad8adb2df804561
BLAKE2b-256 756c1f4f9479fe09f8c9c5bcb23e876b7feabed9c007c632f3cfa6faa2b58ed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 49f97ae8ca861279d0dd56174a9fc5c5b9cad131b4d48013d08c6ef0b48d9a06
MD5 5848c401985aa494856dbb30e3fe6b1e
BLAKE2b-256 67286bd0eef7c4e4db6cb7daafc696bc2213be58f9d4a14313b69d73350ebb3f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.31.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.31.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6559cfafedc38c3e1229bdfb2d8ada97b153a02719976ff0772e479ddd775103
MD5 c94314f438d93467b151a647c18c2894
BLAKE2b-256 9ff5674bf0c55b08bc3aa836ad6e95df79dc1d049c2df0f872a577d2f3570d28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a6a2d046ea2b49024ece1551ea091b1800081393299b37f183f0b9aad490a6d
MD5 4453f5fe38544f3b1dfa4bfee8f92330
BLAKE2b-256 a8f788e6813bcd04ac667e665a34d6f6e1dda937ca5344805be132b1b35ef3f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 24603ac2ef22179f5d88b3d4ee39f7ddba370615542009363aeb338d8a1f4a34
MD5 b36181982b7b85bef47b1a3cb7d0fa2b
BLAKE2b-256 b4140638625eb86c81afe4aa3677b2cf0a1ce96f3e7fa3e795e0b8b6fc56ca6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 376c8109b22c4bb8ed54dfdc31ad3ca018940ba904cffbfe08d2a20e439f79de
MD5 d01be7eeaba32acdea340b0ecb9081db
BLAKE2b-256 6078e72037e055dc64532987fca2eaa30ff096af19960c2b6af8156f9d21614d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 440b4e3b2025b8c9ec2bb840b7e3ba5237ffe1efae888056099a9db48b595176
MD5 46d19fcca8de88155a44e61f74484231
BLAKE2b-256 0ec94a41965bf25f7973b525044852e8023551b3f9c53f3a3576906c25f9de05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 bea59985266d3c718556c7776d15401489ee226668eb5c6a41db9086a6074833
MD5 eb0d8eb3ef6aa135d8b393e91c3988a5
BLAKE2b-256 f0b8520337f219375cbf995f6e6fadddcfbdbb34405add25b4b43a7bb3701763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8771a4ba362b4b5fdcdafc6ffd2b79a38cf7e10c5f812c065872adf4d37c32e2
MD5 6a64a13133e4a924a216f9c117ad9c89
BLAKE2b-256 915564be5ad4a70c5a902f77e9b523504846794c79c819f3110196384ad6fa57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8f0fbc5aa321d94410892691247bdd7b802c45559f3464516a02403ecd8bdfb1
MD5 4724e4ea94d371ba87e63b3fbadd353a
BLAKE2b-256 ff98d6b0389bf76f6c9af058f77ad5e3db1eefe9db01761741a7d47c730bc8f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc7f46d9ee25fcf5286846b939a1768cd2dda5d9b53e1496486b7c5dc9ffe6ea
MD5 9734f83ff5189fe22114c95ce77e75fd
BLAKE2b-256 3dbab8a82a899a23bb9dc67bbaf29917f27c361454c7b766aad126d32f3a736a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aa13c5ddd26e51c4096146511f385d023d98d18ec06899a68bcbc6a54e89fa09
MD5 fc5ac518df125aaf8019c504c1a3fc3e
BLAKE2b-256 2a5a91630dec98e7dead9c3bae8d8c30bfd51b3fd9fc4401969990ba545776bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 757070829953fd7ae5b9900a86b80e8d81b9d7358129b844b376cd5a3f71e30b
MD5 2e9ed1f8d7d023cb50d815c94cef59ce
BLAKE2b-256 fb0927b98b601e9350cf31905098667117c5603d980ab4ad30e92443871be6d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 df14b9330220e373040673528fd3fd3b8a77e455a5c96874e4a09c46e055e599
MD5 dd4f163fba9ed1881b7d3fb5a7ef0e64
BLAKE2b-256 fb27c85c16422f151e1df90cb437c0f95dd843bd82d1b1b1bc61cdec626de17b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.31.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.31.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 1e9f56025a8e4289982f1d1b665811c30ad5a6a961f25ad698c6f66556f98dd0
MD5 c93611c12946b686115201448bee53ae
BLAKE2b-256 35a9b7f9bf914087b94d24d91830b8a0706b511de57311375e8d316839f90f9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a58f3afafb66f48ec82aab12c0674d02ed1ef4124a4b4651cbc4dba6cc827346
MD5 19f478478f702b0b56d2750be4f713ca
BLAKE2b-256 3cf9e341083d462dfccf0bb5c265691021b1272eb22214a1b966bb6b3c343e9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c4e7e108d579d416a2afb2dff4fe14233a4776fb2b103d142bbbf8610f32c6c4
MD5 055b2b5562c483a43f90325092c99e6b
BLAKE2b-256 0dcab6e8096823cd6d1b1184a849beab30ddec744a676fc26edada4991c599f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 0a5e5c46c63c688c9773bdffc56a9242efd50d555a6d997b47b75b197e6388f3
MD5 715126b4410e17cec4745b447c36455e
BLAKE2b-256 5df891fac4039d79a7bb8c70e38c7d66c794312bf2fb529bafc46e19f10f17c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 01389008c43c8039b312f4c95f471ec0e85fe153a42f35e352e825e8a088793c
MD5 80900cfd39488e50d60efdabfee8cf20
BLAKE2b-256 8c531a02fdcd0782a8971add92eb7e5e9af4de325e44c064f1ee4a657c7d7c4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 0d6a1b45f207919cc22f67d20cc6029c351668cd0f8bb95f75bd9c15735a31c0
MD5 b4bdea7013b558a933c8c4219362a40c
BLAKE2b-256 0d7093b0c5fb94cbecddd35ee0fb422d10be9b4ea89ae57aaafc59ae2e700fa6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da7978d96fd12c696ca115c4cc03d619abf6ef808325b8c136a651e752bbf3d0
MD5 453b304ba9f2739759909a237b507d53
BLAKE2b-256 adb089a236d60b6edb5501a195c63c992225f86c00a4cbcddebb9d312f32d425

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d963e343c36e4ef1248bf206d2f4dfe597c562a52d81107399e79fb8b1490283
MD5 063f6499686e0118da6bcbfcdbad32c1
BLAKE2b-256 8f0c50e610f748c8e1bbafdf8555079d1f31b2159a7bce5f65a0f2027239b74f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb35263520eeae1755fee69301f475ddbdba2cd8bd0e975dc0850a3b6f8b1d67
MD5 7f09312cd817fb0cc4b64b70ddbf3a55
BLAKE2b-256 a947394839ba102abc677ceae0c14eb26757583244fdf3691df13ab051291145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dec7bc96b8c9523f38c35b6c31a0d5fbeaea30f5ff274e8676667af32aaf9d1f
MD5 bdfbf17fee7b18a00c8a1fc4018dc6fe
BLAKE2b-256 ff6ed792e04f2bf0cac71b91e4f9579ee61144450f1f775a6347899fdc7c8372

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.31.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0cf55274f86f591220cd7bb19dc1081f6e3922b76e9fa6c9d9d6e4176a04fff5
MD5 1036c2ca62afe499670e73381c3b0187
BLAKE2b-256 a4e4f629440b1cf8a4dfd2a46c0d187db820b225b9f2a0d00d8686ab1b8dab38

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