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.35.0.tar.gz (300.5 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.35.0-pp39-pypy39_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-0.35.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.35.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.35.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.35.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.35.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.35.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.35.0-pp38-pypy38_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-0.35.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.35.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.35.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.35.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.35.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.35.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.35.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.35.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.35.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.35.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.35.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.35.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.35.0-cp311-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-0.35.0-cp311-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-0.35.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-0.35.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.35.0-cp311-cp311-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

pydantic_core-0.35.0-cp311-cp311-manylinux_2_24_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.35.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.35.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-0.35.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.35.0-cp311-cp311-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

pydantic_core-0.35.0-cp310-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.35.0-cp310-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-0.35.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-0.35.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.35.0-cp310-cp310-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

pydantic_core-0.35.0-cp310-cp310-manylinux_2_24_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.35.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.35.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-0.35.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.35.0-cp310-cp310-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.35.0-cp39-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.35.0-cp39-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-0.35.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-0.35.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.35.0-cp39-cp39-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

pydantic_core-0.35.0-cp39-cp39-manylinux_2_24_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.35.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.35.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-0.35.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.35.0-cp39-cp39-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.35.0-cp38-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.35.0-cp38-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-0.35.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-0.35.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-0.35.0-cp38-cp38-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

pydantic_core-0.35.0-cp38-cp38-manylinux_2_24_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.35.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.35.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-0.35.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.35.0-cp38-cp38-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.35.0-cp37-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.35.0-cp37-none-win32.whl (1.4 MB view details)

Uploaded CPython 3.7Windows x86

pydantic_core-0.35.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-0.35.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-0.35.0-cp37-cp37m-manylinux_2_24_s390x.whl (2.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

pydantic_core-0.35.0-cp37-cp37m-manylinux_2_24_armv7l.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.35.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.35.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-0.35.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.35.0-cp37-cp37m-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-0.35.0.tar.gz
  • Upload date:
  • Size: 300.5 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.35.0.tar.gz
Algorithm Hash digest
SHA256 305b78b49103ca6f39067dd4ec379aabe11f4a341619aeceb78d25345298c609
MD5 d398d3560b04b6a96f25caed7b3e8022
BLAKE2b-256 6aba22a12e035e42431afa89315b2cde216d15906c55b9afa4b81b659c0d5806

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a9a7f1ec94baa2434e6f5f22ab2b23a73940ced90af5bfc73b70966783a3d6fb
MD5 75749ac1d7ab953398fd72c0c7b026ef
BLAKE2b-256 a609010860b95022ba5fdc85a38bf867f7564379b00d0b80f2637723d8cf6f8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 348b4f1f8d19691e05dbd726be3ff9eb00ac363349a329edd2ec852a3573941b
MD5 5345c9f43dca7d98eddd80a3011c90f3
BLAKE2b-256 918a076f036e3e2dd81ec38cc0522d5525dc430a4257d674fb764a02c498bc23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b2f19b272dfbc79f1be2622664a1d07a9c16abfff50060ea40ed5112728de643
MD5 8f0bd947e7d3a862c77ce082f693142c
BLAKE2b-256 0c7bde38f679c95584436ddd569d3c127f9912748e7b1b47571ba48ee030d754

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a21dedbd1ce26c09ed66e081c560988285f67c59eaca34c496d36c150100d39c
MD5 2502b7e17b2f87988c7f52b6588e77aa
BLAKE2b-256 56675133dabebfc002f68d2613aef0f0ce2e5c71f230875f81dbec24aafb8650

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69685e8e866489ca7b1b927f3396147a01f4620798a859ef9ce0a670ebeced6f
MD5 13b68ed667e85a85fbd551e53e0b4d8b
BLAKE2b-256 7e49faa5f3610fbfad028749b9a67e58c4b6a27027848c3ea53e338feaa399a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3dede7c6bf6e14e22e2b34fb62d8c70f27c8cff36f2d8e0714b03a1a1414728
MD5 e4fef986b209fcb05d3f32a6e9086770
BLAKE2b-256 74d0e91934fcf589bc3586967e48145df1c810666ae973a33fdf90e46f81e8fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 97dd6afa4c0935de71ecc9dcf18e6642df4d2315ebd2f03839e5d514cf1b03af
MD5 e54c9dcc7ddd2daaa5d54eaf617c6cde
BLAKE2b-256 531fa2e2a34d9fdfba767387bf876f5e7210fad37b0959c66bd1124a90598682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 8f84211ae2529ac05ffa5105815755bef2d95495ec7df3731b7bf20ccd1d7639
MD5 4fafd4aabd78dd4b6f5ee83019bc70a8
BLAKE2b-256 526e4a77d07bed51d776b6d7ab0a1760292d9b2c5e6ab94459e107191861cb76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c17f2faa30f455a542ee55a8b6d4475a49de5b9df56c691f890ad2acd13f1a0b
MD5 3a752e610938f463b978b433d872a3c1
BLAKE2b-256 623256d866a77f1d92864a0fd58738fe3ec2cbdfb552f6d59e866a4156b3ea8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5895b3c3995136d5d025761c9649bf97c3b8dd0cf11316b8020ac420be0c3976
MD5 8bcb2f1981b903f0a74d619f44e6f31a
BLAKE2b-256 da89948f60e8debf2a053d8e587a37a66edceb83fd32f68e0a8e984389fe2c13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 497a3bcec87851b051e350625b0b2e8bbd3e31272e6fffe72b90f0c994f8bd77
MD5 87626b502bc9799c3456bfdd2c1bd9d5
BLAKE2b-256 ce3309bc3ac122e98c35fbba21ec5f2eb75f9443b05b70f8bde697a1b48a42b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53256966d6b1887e8deaee581a3b20cabf66d7e4107d42ded11195739abd8a49
MD5 d858a27f37e64981a66da969fff7315d
BLAKE2b-256 317cc3efca14bcfe8748ce7429cbefe1a169858bf240f5e6daf4778209862b3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dec0d77202693e97259db3ab2d029f7b96a0f690a614b29dfa414602716ab0dd
MD5 8f7fea06797b58963e699ea7caef98eb
BLAKE2b-256 96ff90b6f17da7dcc975267995a6827951d3fc639dd78eeffb744864ba836f58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7f788c81d4631b5ef6416501a7391d477319744c1bbd7c8829415a587449ad05
MD5 3929dd97dc78d55c777ce3ee97cbd6ac
BLAKE2b-256 845f0e945e99e3aa1947995e8feb2ad3bb39373df132e682aa9826733f17ac35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c353210c884dacc4b21a4a7290882a351f90e4e5b31a5c0700f766b76992f9ac
MD5 0e838d5293a9c96e5599ecce4689fc9e
BLAKE2b-256 53892892b2c6538ff9b2cc848fefe76dd729f6fa77092e1e9c498c4dd6d5720a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b1ce665224f1ae58709e597538c311223ab1111bdbb920f72de9d557ac62226b
MD5 7df34b10fb24ed31c254441a991b1cf4
BLAKE2b-256 e1f2b8378bc91de04d6ce135c80bb59b08327964099d560bbcf86e91d603b34f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20c5cb614851487303f5e985b288a2b92da5816b4ff44723ade1024bf45c134e
MD5 c9480cde83e106434dacf1ed586082b5
BLAKE2b-256 79e84b06a4cd85646eae152a3263e6a8f115442d9c2661c99399a0926262028e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 449b00802a0fb37d7e3d965b99f8f702649350fe10aaf1f8a21f852f5ac5ddf5
MD5 ebd7b7968a393fa619a19721fdd996f4
BLAKE2b-256 e9bf68b5f1d7df3b74b6a97694353d5b5c5b3cfb051e2f1efed5d494b2540ae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b2641d904af42c37d7b8ad08e5d05420d2b3c5fb6fea053f0371ccdeb43d5181
MD5 9c1921463747c97619fd6d879f18711b
BLAKE2b-256 114ade0f59bc063c0f5398c4376c2c4a9ac265f7f0b59eeb1f75d7ba87f2e9d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 92cdd0da35032eb3b7a3ca23517715c41844dc6b6adf57c934d0120148797049
MD5 e839ed65d3a371dfdb7607ec45c9b4c0
BLAKE2b-256 a8cecb4d236bcada4532369f49167f8627abdd7b83d3c5d8ce33798a8f4fb78f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 9780981810ce1ac5a57d42b98d7886e9a3e1d0dbdf2e90ff0358ed3cc623e274
MD5 5818b0e9d0968bff44d41dcec3e6b518
BLAKE2b-256 81c0868920d62f2ea4d6058924ce046d8711f8e571a64cd9029684d01e1305cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.35.0-cp311-none-win32.whl
  • Upload date:
  • Size: 1.4 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.35.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 0d25cfd42878516228277487a02cbe6515b9dafbe18fa9b631dd038d9991bee4
MD5 3285ca2c7fadd506e568c1b800966d62
BLAKE2b-256 33a8db5ee52c621f7b0f8ccbdac34df4ae44e6ccb6eaffd591d1761647bc68c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 af82ced5041a29c16dbb0e5a4b2c8ff5c0a5c1b77a5deff61ca5dde7e2744229
MD5 a1d353909bcbd3d5bb24fbc86623685f
BLAKE2b-256 03ac0b1a1c3ca1cd06efb2564648ccc2fe591aacf0c3e1b4d1bc9290828eabf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0e579117f59e8c26eaf5efb769864696d0f525c751edd3aa6f4db4968062b0d8
MD5 68909b85ba073cf692c76aa098e04316
BLAKE2b-256 b321fa916d56c842474869110df3256e6e134ab856b0ff525b896371a90c15f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 9f4f1044f4d3093252195dce04b930af440f1a5ccf80a7a7817d87d1b7a48cc1
MD5 9e3573208816295376b501437ce97c1d
BLAKE2b-256 643e05c713f3c76bb7440e3928b4883287fd42d68bddddf536e93c5af28f6160

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 0d5f352051ec7aee66a3739f1d0fa57c1644c8119073b58382d01e9035b30e2c
MD5 3766b0ba116ef410e6498ec5bf626ea4
BLAKE2b-256 0ec5d878193e06153bf5d00c4dc3f38aaccda134eee4df7ee78493caa4ca8337

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 4351d8ade0e81a5fd969e05de34293866d28df8724274852a9acda7ebe370016
MD5 2a9bbb6f7f892cfd7c44fc8b703b9c1f
BLAKE2b-256 59783a8a8ce8729a551399b983740955c7592959d33f8f481c01389a015c21eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5921625aa0bee9857d3c227b21a4ce7ddb50188c51b8407072f201bb4359b5a
MD5 518e90201bb7cef09b8f7bee5a1b051f
BLAKE2b-256 a43f0027bdaaa6946977f80720382d2e070596c750ec900824d7d51a45bc3ae5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 adcf0795c1f1648f6efcc127b6cdfe50d7eb9f7eb92a6e8a473ced51b161bf9b
MD5 381f25f6a49d130855dabd064463257d
BLAKE2b-256 d3f89cb305e668ae0000e03df92d16a563cdc8a5af94e2368d504dcbe8105939

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 732c7f30e1a4b6e6a95ed7a7cbe7d191a4a22d150bbabd3cf8aaea664c9c5201
MD5 aac7132adb7cecad344fcdcac7a5ee74
BLAKE2b-256 f854b428afe0329d00dbafc143ae63ff8ca719433beebf4a12a7b36550f9fc53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 98179b1ed52def0356896e89550aa852277dcfef72ba225e29ee220633a24c7f
MD5 30333f538c5387da119ea5c4420e8b03
BLAKE2b-256 c954e13eebe89c05992c035b7ac881084c0455f6b787f9c16b58587c3d000362

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ed872b1105b5ba93d09c128b51d33218a0ad723b5db7bc84b909f006366d5d08
MD5 f9f9a82d2158ccf5c5145214a33687f1
BLAKE2b-256 a04d83c8867a32b01ac586bb98fc5cb54de2a03b608004aab4bd778be2e3a7b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 9e2e60e470ddd47a07ac3ada4e06121b1a0d81f5c0d46388eb384bed9bbacb23
MD5 d3a313293e4629c9b938186d9cbbcb3d
BLAKE2b-256 61f93126fe3b05980f4b744baff724fe93b919f0d13ae47acb321bb04f29c9a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.35.0-cp310-none-win32.whl
  • Upload date:
  • Size: 1.4 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.35.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5c4301254e7971ec03f2cc142533d41ddd21c5671d7222e7cda6757f6c5c9f59
MD5 4aa66d25efeb5b31de62565c522606cb
BLAKE2b-256 1c703a87f52f3b2fc724ec204977b67564832945126c68827fe9062df81ecb93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 30718146cddf7a85e04f1e3eddd736428be0976a2da44b4495f217dbe8518d3c
MD5 a5a80f36e843dce830f416a4bb4414cc
BLAKE2b-256 000ea7e6f22240dc7c9028462b9da772cc4f330807f48815414a9835ee52ea15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9b2aee794961b329ec3d6c3185c9a7102853358225701455ceddc3d3fbce051c
MD5 7fc7f61afd4120a0bebb300016915745
BLAKE2b-256 d131c1b099399f5b3b02a00b63ad26b6e4fff4dba4051af89ac0d5a0a27fff38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 08102980f80711e14c6433bcebb64ca0a69ffc9437ce65ef399e72e33697d7ae
MD5 e460464ea8d916b5fdcab8ca90c7795c
BLAKE2b-256 3d0355dbeb5ca2d3936e449c3c3005917f6e82b929e86bc4eec56e22c2ccef78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 16812e8282c92ebff241e161dc6646165a5fd51e8e8e0cb8fab970d1e3225330
MD5 d158d600e9bd96d09286a21bfe70b4fb
BLAKE2b-256 e9f12ff94110b3466efd14741f243f3c6d33a61b60cf7db6c85d7b74295677aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 ea012873b14a5809a80482c898ebb67f802c72b9268b548baba1d95cdd01d277
MD5 afedb276b62bff15cf2dbc8e60435fa9
BLAKE2b-256 0b41036cb18c8308852c8b62f3872b1949e09921555a7bc5fe1b4c8c2a31b9e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 862e8308556992781c734454ee1f36832c8829ed9a55374359a3aab3847c98ef
MD5 100e4f52143503dfab410f32a22d6969
BLAKE2b-256 7ef48ec284827ccfa481f2dec84dace2215d43d71cd3608affa2413dcbb086fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16031237b5aba0f32710c8e301d955a19086c3a26cdcab14389bcbb034aa80c9
MD5 b7d2f9785f7f6299264e1b8f2e313c04
BLAKE2b-256 2ff5f5d3810ae99dc248de6f6a3ff04cf2133db79e8e9830f1c7ccd6b68fba47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a2ca46cc61899535de7743e6fbabe438a7f5bbfee450b0c7b71fef87f332173a
MD5 9e74562e6b3ee807ff02285022bbd3c2
BLAKE2b-256 c62c4a27caaf2b1150e113849b19a41675f8f319eb180a8d0ff4f84b2a7b231a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77d92c989469a51ec4e41c1898470b7dc6d18e8fd27ac6c935d645fb90b13ec9
MD5 3c9d66955a1d11908a1a443114467222
BLAKE2b-256 7f9177f7b7534e4310141d5ff642b4032b179d4b87150a1b5561da3a07500338

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3859a5984a75c0aaa198e8f31d3fe849c54b9d55bcf6a04dfe89e56b42067de2
MD5 16d80e2726af5ce5588cd7eac4dbc5e8
BLAKE2b-256 1723548cc0f9302c02e95680f41221c20eb16443fd8e111c95de7807cb2dce83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 964d245910cdd74b49d0e780292e113fbf9d480a76ecfd75c2baf90d574ed99a
MD5 89f7363bb1012fd514cf5dd612bc976a
BLAKE2b-256 ce442511f2c2480faf549ea831bb704e048a9220e66341edaaeb9b2d8a579807

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.35.0-cp39-none-win32.whl
  • Upload date:
  • Size: 1.4 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.35.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 86a1e792cb71749ece2ad0c6c037c6ec665d8ad250c27348b1631f433268b0f3
MD5 56133cb57edf6b02f641fd8eaee1ff86
BLAKE2b-256 178569ab93cf0faf8e573b6ea37aa73e0c803e82ae1b118e8a73bc03b415b534

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4ed056030dbdbd9520146b1332e53db4c7b5488f88db79361930cd1c95c57997
MD5 0605af309f1d3372919b1314a8bdffae
BLAKE2b-256 575160129d67e987cf67d54387577f04a02040bc436b11efbd571c4c54a18c14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 590e4b3c426efe6745d16ed36e1fe92cbff813ebf68075213967c57f4ed833ce
MD5 f4c67f63a7be7e246c9b06b2b7a7665b
BLAKE2b-256 19546122ee6a299aaa79086ced153d5924cc9244c9790d37ffbad2dc1f360b6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 22938508327ee8daf5608686528adf3144339d1894cef6b9c41b8ecaeab4afc7
MD5 901ca44e59f353834107d6b907161576
BLAKE2b-256 bd1b8ef2babe0b7ba6a1f0a42dfad50c6e8e24b973d0f85ae7364f15523eeb63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 cccc9486463d5b14a97e04c44fd47ec5b860d75bd4b7c9ab2880543c8ae6295f
MD5 c001dda1fbecd48c382c247c63c0d90d
BLAKE2b-256 15326626fc0296763640173b7813557b7164792569b08e642849ee09b77256c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c28a6682c09ab9b648d6bdc63689539a41a6f47a8bbd8d98b11a9496bf8e8701
MD5 6d471b917819e042526bbfa189440924
BLAKE2b-256 b5367502f45fd2460b66bc40e1375d24b263c4c68d4ab69fcc7f8c5a3c42982f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 57c2e734d034e2e6f32eaf922370eb7936b6ad05c1a44451680abf291c6cae80
MD5 70550a3ec31d61e9ed8097a1a1dca774
BLAKE2b-256 9a4995201648ff1a8549561daf25eb76dfdbef116145de8b570c4d45499801e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb304dd0afd400a87546638c22c33bbcd584fb77c3a488d9936c8c07da1a265c
MD5 305f1140d02b0655a0bc0f37ede3072b
BLAKE2b-256 d7bf3cc5b229bf2411da7d804eb85703e7060e857e4318af2f2db6852965174d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fdf334c1e8f9aa79752b928e8f92c7f0eeff6746a046432591bd0677dd604bac
MD5 cfe437915b86c13e4abcc421299a481d
BLAKE2b-256 a147308a8202da778e50d3bc83ab776f0c516ebea194d0d99dc6bb0728ec9c05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 352636824651ff108a000b8481307d60e0aa176c336367ef77d9cd28adc92381
MD5 a2cfb3ccd21cc0579f9892dde66e703d
BLAKE2b-256 6aace824733fd983cf411c7e664e1ce402af47fb97420c9218aefca088181ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 596691d7a987949bbf40677dce34b135bc7d2195af7442f5f44821291c74c2cb
MD5 4cc31f2533dc6c2cb212ba4a930c6374
BLAKE2b-256 3bc3d246cb962cd4875fb3e5f7c2ebc3c4ce20c2cf2bdc1b6ecedcbb996d8a47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 bb9819c82c85890c9e97c9974e45329576027ff8a10a15a35381f1af5340e62f
MD5 1712b6fd673d071b931118dc06809e53
BLAKE2b-256 83b9699589f72ef418e87bff2675cb006db9c6906798836b856ba37d66a57fdd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.35.0-cp38-none-win32.whl
  • Upload date:
  • Size: 1.4 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.35.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6fa1d3fc037b26f72097a2f3a6366c7aba1264bbc5f294c474809a407ea8433f
MD5 774d01bb08e45718d676d059a5a798c3
BLAKE2b-256 0482e93dcdd05d86397e950b8722fceaa27689858df54b5b69f90b0d28e94c70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c3fd403c8701415769d07d63b9fbc878a43c706e636c492e562776dc21f7162b
MD5 af124ded3d16113d346b52149eebc413
BLAKE2b-256 4bbacd9ff6c28258edb2333ad75a8f6aac830b667fbf3dd63c194a2674c44776

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8022dc3a45c70579bf04c5c8a48daf8549c785f3338ad697bab0ec723047ce2f
MD5 76a35fcd9a6df84a1687ab45a27775ba
BLAKE2b-256 c75de5c7d9e11de1ccb33417743671effab231f8480be76c5dfb455c46a029f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 a241b1d5e569c6883985de8ca243e85f3a7bc70c28164924a608a8f612b2fd34
MD5 dcc78c1b79dbcc9e4af42eef739bcfc5
BLAKE2b-256 0a259c14009641cc2f54d0764e80ac59cde3f14d61360dec7d26489119a996d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c54b55fe7f5665acfcbf44d3a93e15841cb7cf4c1157d2b3233014463bad4186
MD5 2c744b6106b64689525e7742c65dfb42
BLAKE2b-256 52a87268be7c9f4222434bfe2a524bbd1296aca6be5e0d1b8caee6abf2db9f19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 112209669c3441503d5ddc65eaaaae1dd60a90c936eef0efe0ecaef06cb2edf5
MD5 df70cb594d07f0b48e88c6a9c4432e7f
BLAKE2b-256 f7bad12c8b32182ad12faa904807ecf24ea3e4afba5520d4a2df3b503184eadd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 db4a9eb31742d9f97b27b157190b1145229d8a658a7315e48e49ff5acd820475
MD5 bb035f35482f98c7f2e8fe53f30b106f
BLAKE2b-256 220f35184e581c3f9faa76031290f987c1feda908e33002067c6b86f97a66627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 534e9049bdfe6bbb4905a89c17beb90455705d94a43208e45201aece2985f68a
MD5 1fa047910a18bf5c260f0560df723c00
BLAKE2b-256 30dd049e8d4e9484d5dc4037d73a61e342e0ee39d917e2f241c3aeb096ec478b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fc4a17ca901cd5f5f03c15eba717ff1fab2c277c90011ddddaf3a854f4d92565
MD5 c10629f0156b406761d916e3730bbe48
BLAKE2b-256 cbd99387a162f4fdd35456269fe7bff302425b19575e263ddbf8f400fbddd5c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 894366499e7cf292654207ff06edd7293a9bdabf610daa7f288ad53be74f4f2c
MD5 468ccc3d4584717ce8e751b4e3b1a264
BLAKE2b-256 eb6480587f3c9b940cb2ae0a0f5055ed09d6ad7d63ea681f18403ab309a1475f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 154e64e9c76d176784ed3a93f40b3d788239a215f81af3829f09e87dc81c48fd
MD5 572bbdf95303c87154a4bdf4feefb5b6
BLAKE2b-256 8a33d2bb26cc93d2248d65920e803d47f17362b655e91f8524c680daa881ca76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 3da8ceb56db2642b9e6abbba9506cd21e40e1d51584e15adbcb02b092811bd62
MD5 cb70a8179acfe2b97ca2e275d65618f9
BLAKE2b-256 74add46c68bb6a9d3a836b6282d13bf124638bbc9fd2fa05e28efb21997eab5a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.35.0-cp37-none-win32.whl
  • Upload date:
  • Size: 1.4 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.35.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 7e9cc5c846e6beeb0723d03cea4bcbec6bc9bb63012141cb1d77388150e05183
MD5 01d51f1aa809c2f38846090d5885c9d3
BLAKE2b-256 3bd1e3a2ab0506f50725f9e21467648e60b40c62927bf1c7959df50ae93cae1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ba17a47b7d9261b7387ad41b6eaa3fad6156ae13d3dfeaa25fc80b4022eb4b47
MD5 3b3672b9bacd4edf52a297b9798dbe1b
BLAKE2b-256 d991557276865f5c6b477d6033d56767999653b688cef7bbd51d5f991abd6ff3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b30dc8296c9feb6469b095975e17d2b4330aaacf457daa5551ff38e015748b2a
MD5 4aff58e2d66b9333dc75e46d097c7260
BLAKE2b-256 52496d477695f8f2a3d0b94b10efbcf49b58a7a9c0ebe3528b6ba5283aeb5af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 7ffe52182aa41be6c192320107a223f5e040de0fb33bfba8b5bc533b74e176ff
MD5 11076951bb24c1a437895c1c4c8caaae
BLAKE2b-256 0e779a30366ad14e12d737a9f977c71d5e964d4e25b78da75c60027dc25e7a06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 177309a39bc23c55418586baad64625da627dfb029c4555abef8372bd8af809e
MD5 0883e17ad6c862a4e686803ca600c4ed
BLAKE2b-256 61b022d1b10914120f22229b61f197583e5a9e857fcb4548ac262acb7ff50bc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 644df8b46458ef1dc7064f2556cf1a4ce7887160815bdd1257283320a0624a56
MD5 588f55f32a57b5ed5bf1da717ce5d8c6
BLAKE2b-256 47f95dd773604c03d9c517f55b987d87679d04c5a65ec7752e923daa0ddcc154

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d7b28ac23084ce66915d83d507f20a74752521a3770cef4e5f19600844ff07b
MD5 faa47099a8907459ccb7c43f6cac925d
BLAKE2b-256 f2286de1c235d51c485c9ea5984ead97f45262a5e20f61314a55d3e330a12dd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2ce854a38863d4c3a1d57c265ed9df1aa12f4e0227f1e290dc0fa7ba6f02c5be
MD5 7df3e8bcac1741c5498555a82cebd3c5
BLAKE2b-256 1d355d65ebd88c5368f052f09de8210b8a75537852bdfe19bff9d702e065e9e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 752552211e41d37aad2aaabf7aa4c81b715ef8e74ec4a5a53030609bbf047410
MD5 0ca6c9c79689c89484257042524693db
BLAKE2b-256 3dc426c4776fe54591f643f1cb97d1fd6c21a9a27e42e81b06649bf251362636

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2dabb228bded810adb45a3ae84ac30708f88a12ab1d77c09b32db701a08553e9
MD5 d8129c833cb7fc69e0e1b8fa87dece3a
BLAKE2b-256 37e64d7dd39533c7eed6ae8fff3a24c92c544e2a1829a5e31366a730fac7b030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.35.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4ea9755c826b0011c979182822a57c53442779cc9ef651bac7999de57ac923b0
MD5 594656a3d2376cb0bd62a45060f847a4
BLAKE2b-256 1e6417a0e8cb7847d0c94e9b83b573fdcdeebbe495472956506c031ad5eb6778

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