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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.30.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.30.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.30.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.30.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.30.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.30.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.30.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.30.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.30.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.30.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.30.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.30.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.4 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-0.30.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.30.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.30.0-cp311-cp311-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-0.30.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.30.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.30.0-cp310-cp310-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-0.30.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.30.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.30.0-cp39-cp39-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-0.30.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.30.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.30.0-cp38-cp38-macosx_11_0_arm64.whl (1.3 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.30.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.30.0.tar.gz.

File metadata

  • Download URL: pydantic_core-0.30.0.tar.gz
  • Upload date:
  • Size: 290.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.30.0.tar.gz
Algorithm Hash digest
SHA256 039bd499abf1096c9610cca40d30db0a8609105897a694766685ecb464018d8b
MD5 4912eca97f20c1fdbad11c1e06ab6180
BLAKE2b-256 f67d24e7ca97be9fd1e3288f0f2cbdf9f4c597b41709d9a90291f596d28d22a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 36cc68b42f1f0bf4e95f5de03af028afb03c2c110513a9551d1b1ea0f018e574
MD5 f9fe5929853a23c8b9f400cf7eb9ca84
BLAKE2b-256 5644ada1b19830f70449f0a1d3c4cb5b9f86fb4b3b3d59e763984783eddb962e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6079970c2f260ba4040bee9664665aca5d3f2927ac416342b77bb19bebce1ef8
MD5 8a4c7dd280ee69e302bfca23efc4dd94
BLAKE2b-256 68acf703ef2ac5732f016c1150a3db0656cf99c8c476bc71ca0b3f34bc82ca85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0deed36ad1ffbe8437b110f2183266ca5eb49c4928e3659320aa67963e6b791c
MD5 9e3f8305312d70d00d98b0fbb0e7c348
BLAKE2b-256 4211f89b1d1ce2ff67815301638db38447e6e7c7623fb168a66e2316fb3f18e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc9f09c8e6ed23453d7a5adde29fea83d4464182e98bd83b11747f1796e9e0d4
MD5 524579d91323f4331528dc86e59c3f22
BLAKE2b-256 774db85b79dc1f8344524e0e70b1c6fc8a0adec3a46dbb506e80bd29d7cfd136

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1dce7cfe4abf11b348d82d72a2020860055340cd35462b8019792f09cbde020b
MD5 44742dd127cc715f2d273076d6f0f983
BLAKE2b-256 a8e6d94d366edf635285bcec00947c9be639e11d6a2481ec8215d72c6602b0ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e5f3ad194c53bc2a38c92bb25844dc3dd0a3e45147796f3397bd4416370266cf
MD5 d44eb0d20e51474c91dd30209cb822fd
BLAKE2b-256 441123eb039a85fd547f90a59e86894afd5f77b699abd78ec4a26500229308b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cc6d5c107467408e1600a6482ec22d922aad30826f5789e188bda8957c4d4922
MD5 84c33f9058b382e26e61233e023e85a0
BLAKE2b-256 f908d98ac18cece5d789be0eacc8bd02b11355e24c3fc509ca84f1e0f69abef1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e45e7347ab2e7752c716d43df5459569385d96fcec00e4d21159041e8150dec3
MD5 4300fc20ae81d44f6a0355f09ac92d47
BLAKE2b-256 f0b4569ea78135be3a678c25971872be30b54bd571356791896dcc6729fccd01

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 52a67a02f65c1e90379481f0b4e68dea3736becb9ede94f25e9023258211e21c
MD5 550fe295df3b1ea4709ec2e38279947a
BLAKE2b-256 a652b8a182ad931d88a328d00729868cc35a1cac2e46163845b8b29a6c2e88f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 642ff3f767766e14bd8273814351291967c3ce084abf50ece0d69d5dbb53ddab
MD5 dbfedb5660c678ea81549f2ce88af518
BLAKE2b-256 c566422165e4fe921465cd3cb113c07b141768ea58641197b9e356b0a318e4a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 705d8439bf845e11f477462eb092b1e0dcd9219fa3a07d03893745a6e8f894a2
MD5 320f0bd692797f079fb900d509ee68a1
BLAKE2b-256 faef79c9c3957b1d1addad19407254b1a1fa6597237ed219b527f2a48856a37c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dd2e61db3d0c7e172a6f0ab010740f8ace86aa695f5b80a7d185cf84c501d5d8
MD5 613c0c7bcb3e0dafcf457c6d5e26a8ae
BLAKE2b-256 4679e3505ce61272147c31e983ee845ac86ca1ee5a58459f44af4b94eacc232f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e28cf11395c5b9ad3baef8f5fb8a5f4bdc6367366167cc41b944347d7b484af
MD5 c288e7f9fa3bf06a6f663786c6338dc2
BLAKE2b-256 931b898657a98e6e2fa2905d594f1639c7a9180bd4c93fbe4b03801f482e2187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1e0c605c2f38983c82cb7a4ae80cb392335f5e32b9f9e7a42d41fd1ec8790201
MD5 ac12230f5a03a57789687f98dc84f91c
BLAKE2b-256 c0af490fbcd2f8784cc43b3a78c6d036d8c52de814ee1995359f3fe9fda4814c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 983c1d49d0ef1c91e0ade07db210986334aaba5a1ce9373dfcb0d6077f7b1a26
MD5 a725be6bc078a91bf6d5057187c73321
BLAKE2b-256 9255979916f1c165828c2d937f87e25e8dd6a52f98822b70e8fa6252f5723444

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 40a59efdaa88679239dfb7e199540967352e1122c15ef34c791984fd732f8128
MD5 6df3c67c7195c9762d56cddd19e4ad3f
BLAKE2b-256 95b8a6ffb7d89719d339584ac9232de4170d3d91ab7b991d64990417979afa54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c569ebc7ec97c3c0e2fedcf4b921710a2c7772b66a3ba3edb1e999ddb54d5ee
MD5 9e7d1d4f67a348139ed9b01fb3595c35
BLAKE2b-256 8c2a5d2b39d4c13b53220069af294a16ba864c919a55316ba5ed761a6e2a41a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7f35ff6cc7d9cbc33cb6e7784f958998782fe41aff6f75761c44756ff3ef072
MD5 7f901632ba7e10d7fe739ecda519a294
BLAKE2b-256 f0fb66f9ece31d59ea8c25edb795d1c663fbd0acad4f331b1d96147e27c8bd33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 563604dc3b91ee14ecdce9efdd07024b0f3452d629a9f4cbb063863dacbc1915
MD5 4471514d81c4c73e446f62995da45f9e
BLAKE2b-256 65d7fda235adab395658f6c28b39973a31cb0d00093fec15229f8b5e1fbc0588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 db2478efd4fe2445cc545080e07c5a169c3ca8455db42695ce8b3dff3d571e83
MD5 db199251a9240c6b05b99bd0d7d9b357
BLAKE2b-256 acd5c13942786256fc8ea0a7e81f66cc0ee3e4fe69c1d66f1d9bc5b4e13d52a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 0391275cd3217852a5b3737719e9115cc34587917bce7bb238ec7a0189b82d60
MD5 4a37f96005dd26d782856feb6b89ece1
BLAKE2b-256 ca925834a34da8aa4af81ea91e5d59a01245cef3d174b6fd824ac281dd6c1a17

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.30.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.30.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 89913535b1854b354d703516ac09a82da16a1c06074b9302c1f371e8ed89c837
MD5 505b777ccf4dd3a591e8eeeea1d1e9d9
BLAKE2b-256 2c47899acdb37959cae0bb69aff527aa7339a9fa022634db5ee30be86f4cd3ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b7d1ad4d57d76d0a48d708e51160306056ecf8312cdab4727bae19e99a98e103
MD5 b6f28e3fe0f56a19b3c2324fefbb7755
BLAKE2b-256 4658f8f2d7f20c8c6787f1576c21625fe99f01f8ddeea8179e7bdb9ad15bed00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d05ee5a2ce0aef536471f470194136b211b0027024bd18a6ac58cd23aa2806a5
MD5 bd90436e40a497c79a5d36f7d3470288
BLAKE2b-256 0ded541df30ff0cce1cda17c9cd637a65bfe5d9c166aa2da68589da6d95c63b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 aa7718c9d78a8d6ffcadb247bbcac7d397576786823371a0473fdf6feb94d0a7
MD5 72b215655f17eb14c01585370e368639
BLAKE2b-256 ae1b5e8dae1e8e259554d8fd9cd13562a975391c33c0b4f5b2d31ded23cba587

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 a1f4bdf92326e0ac1150783401660ffd0bf522503eefbdf9ac95555aac41f0a2
MD5 9b6c50761e9b5434dcb20935d41ef312
BLAKE2b-256 851d48c5afbe112edf31692411ef22e3b07a1772bfac0e87b4d07a1334c6f66b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 eb449596ff89245df4ac6e993690a57290afcdb6be3f545cd31cd1e5be33306a
MD5 48c98e02e0354385ec329c3047d86638
BLAKE2b-256 c840af331713dacb317b25a70fa2e8a7c7f6f453d83c3af073842c96852ee5b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b9bcf7d37d55904df6cabd96ac63c1daf383211d20d1325bab50d53554c83184
MD5 556eb9defe00ca9b2aac419852873acf
BLAKE2b-256 28af2ac7d7649b8319b8931d139b46a20e49dc60f6f843168fb2a458ace585f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5027e588663b7baab6be5b4c41e6303a0844167ed619da488cdf248f8316b74
MD5 6adb73c6f2eac39f8fd8dd3694d3bdb4
BLAKE2b-256 5cd09ed08c45dac49b160162b1489e78d4f4f43852197a9e16bacb2b9ba2a976

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cce350b72222b8624b5bc822f7d20901942122fdf8ea727967a14afb1fba6e55
MD5 1eb3cc3e5d6be10bfbd6d1a619c9a561
BLAKE2b-256 18a8d6ca42f3c343076dcf5037a01e81f1c46aa706bc33d8836d87023df19e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d47a099b0db8001991010a482911e86448b877406eb8834492282b300ea034d
MD5 200e9dad2347055b5ae815d803cd89f5
BLAKE2b-256 688a12a80248372b40d7561e3f90ae4d7a865d985e48d0e2334bc2486f3cd168

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f98cdd14b6c0bd24e555188b00399b2c6eebbfa97a1744ad83afbeb0559302a5
MD5 b866ab74d4e67a1f925be7fe7407b038
BLAKE2b-256 f780aaab0ea86db63267b738f7ae520d69d63886ad9fd45dcc625e8b60bb1f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 834de30faba6b5384b9206cfea008bf0e02910749cbbd9bfae3aed3ebdc94603
MD5 77c0aafbfc9cf3e45fe47f2a6b92076c
BLAKE2b-256 0339cd8aa6f70c52dbd5862ee96057f30f470140ec6feefd7dcf3806d6e6bd90

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.30.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.30.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5b9a004732d7a153f7cfc30ea30d2bbd653f42be1ce5995b848d02fcbed9add2
MD5 0091c9676771a00a633874967a2abf1d
BLAKE2b-256 ed4dc62d5a409aef09bcc69d3b93a6c26475b12a27c4be4b462ee1562e810f2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 de69fb25f6718a8fb3648899981c48fbda7d9317a9f367e2bd19fa78482df8c0
MD5 d9fc69292feaadc5f475e7617ec45498
BLAKE2b-256 9d0b1d349b8a7e3fac1c441e43913217ad8c2a0c384ed0a0a0467412eac8d360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bb6c7542ef8668a5ec4d25fdf9b028acedae6aaabb89afbc2664751922c714d6
MD5 3164dbae812910534381706b3a10afba
BLAKE2b-256 f262c4c2d9a633a2bcac75234e2fdade1285e26882add297b9e27f25bb8ad0fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 c608c02bae0e108ae1f0c52520b77ed2d1f8ea7c0927620ca5527982413d292e
MD5 b4a76bd0b6ece44720f6269672aa11d8
BLAKE2b-256 40885be0a8502314916b04f7d786c66ecd135ec76c69469ad4a20af23ede2137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 de67ac6952a73a9474a7c0fcc03be221958c45de638b990d02ea9b68e9829492
MD5 497a28c43a00c1b476d613dbe594049d
BLAKE2b-256 4bb7e9df26dfd577d75a76020c4b3f652f0b6b3e73086fc34d2280040e16dff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8f1ddd33f835de28ec550606e4f1682f37c8a896e52c6c52a53fdd192c9db9ec
MD5 6c346f93c1ebee282e72352eccd88dcf
BLAKE2b-256 884ff98021968604526051b018ed0d4dd8d067df059f617090562bf05fead5ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2856f7039a6f7815013768d82de119c2da4b8b6502ef1d94fcc664d329c928e
MD5 0a7c0bcce16dee6cc9af48cb0f85c040
BLAKE2b-256 6efcf477b643804f822223b1add6f526e0009f3ec3858f2915979eaf96a499e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91bc9de6a0527dc8e5834371a60aabfa13e1b7a06006848f90aa710ec84d1c78
MD5 a5710284cb128a8a6bcd4319b2e9f854
BLAKE2b-256 b2befd2b4697214afc1d67a9eae50ba0233fff04f9c298b0164173e9b2ecf250

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9a7a42a48281fdc0ac073d80319597dd097d096b8490fac084085c8aa349fc98
MD5 13e66df8c15259de23fb91f91d04c5a5
BLAKE2b-256 c472266ab23630df84a2e84fa90a7c5f2944c75ed3bf890c372cd1673806fabf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1128eca605524b5c9b7dda7f40671a902c20ffff9226ffeebc5eb7c937ae01dd
MD5 76f271b24d7a8478658e146831a84734
BLAKE2b-256 64e2febbf5a4d09e480a316ad3151dc250e0e592dde5b522e3350490cca9b3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8a71465d22a8d06b2ddb91f40680e27a85c08b37f87f1a8b51da9fa84e30f8c8
MD5 ecb999756ab937f9a31926fef4f5d61c
BLAKE2b-256 08745c2ac64d71e21edb074b34f61d271dd9f4c58d71cd52d85b5a8d00706f8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7d1025eb05dea39fc28f1df69669122900e226d60b1d50cd6a34293a1e769a19
MD5 c396f9449904bb9aba99988e60960ae5
BLAKE2b-256 4a8489197bf917c7ffac335b4f5150c9e318738483e98698a4c751a7d62e578b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.30.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.30.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 4f08b4a27b2e3f03e10f88fe304c8882f87f841190bde20f1b7ae6bdc1b1606d
MD5 f3b734454a2fad41f8632738862684d4
BLAKE2b-256 06727874e7b3b6dbd89d3fa09c383fdaff5cbc1ac30deaf74918d605795972f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0bd9fcfc946cef379b3f19658b92fadf9b0ee2e889f4bf81248b946849f4561e
MD5 6c4ae5fb41ef256bf80cf20ea4be2bf9
BLAKE2b-256 2edf19835804a216cc2128656c01398629bea64347f1d775aaa115ee133e94a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e805567a747807cdf160d4a1adedc102374424ed18f0cf7d2c33a6bae4e655ca
MD5 f482871240bdddf498327dc58ba14882
BLAKE2b-256 cccbde8f19e169a2702c4659ae8be21fcf4e5f655c37a313833343a7577785b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 ae2b6d20110d5fcc9439e2e6da5da3306a8a5789ea90921406ae3fea7e6d555e
MD5 c7c1dd6394708ae480d560a358ca46ef
BLAKE2b-256 4bb547035a27814b0cc04814eca36d1c7e7ee3b09aaa63af70c2da6d8de1f7e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 3015f3127ae65e7951ff93864a2edadd53e3971813418f4f81e066e1ad608527
MD5 66f95071dde644cd28edc19c06bd0a53
BLAKE2b-256 a78d019053cdc0184ec1224b73575fcf18df574b43baa2f0e62e81e8aa26a56d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 53648ff27598402eb966771bf0c1b50738f26b7678d6aae45107ccf30644b0cd
MD5 96b2ab66c096f048fd58e0793a93ee3e
BLAKE2b-256 7b7212dfb6d5ceea2228cde0bb8635f04ad02577c07a12f65b122764e0b71b44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 969cd903837a6fbc107585fb5b099cb6dc22b3e75ffd8a9f00bd2e1e0454832b
MD5 5111e32656d1c959e3be93efe4df6605
BLAKE2b-256 14864671da3c4565c61d013c1b96bd95769a613aac9774b8c8badfcefcfed64d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 785100c6c5a87b57c247b17f2fb1130022c423079a9d666fee44fc25d43fd9bf
MD5 d761c093dfa46c2f89d50e09a8fbaedd
BLAKE2b-256 9f9ca090b7af9a9b3ca0e96bb8ae5986725dc0c3c2b9e3183104ae2db1951761

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12dbbd61aa6f1bae703dc01f6135a1c5a9449ced8b44f7a9329e0ec9c07dfa20
MD5 c1470c1ca72419a340854a65838c51b9
BLAKE2b-256 e304d4bf89232190e950fb2161c27f03329be0300e9efce7e7e92a3b79278b7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 149715aae43717365dcbb3e5ee7c946cc325128e83e440a8f9fb9a0e4d6e0c8a
MD5 ebb2213a9c1f594439dbe7e18ce9b183
BLAKE2b-256 aa4b79af71c7a3e240e6ba62b1fe1e37c6126a7a759470cea0c1089399326492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ac9a2e4a208a84467e311a1f86ac6dcfe8ff1215099f5886ce07134e32844a11
MD5 14ae9878086be3984877784207ac9867
BLAKE2b-256 09ad8aea56ba9dcca7d13f7dc05e92109e7735d6ee1bb95aa52871aac3b96e00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 2f3d03af970c5e66a1eb6e3edffb893978f65316a7d7a195abae5b843ff21c41
MD5 4a945f2d416140827e0b8be95965d52b
BLAKE2b-256 d1dd811f721bee4f3837b9d16fd990f5f2b7bbb18e45d88610867a0bacd3ef97

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.30.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.30.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 88383d06a5d8edd2bfefca2576a7a84da1553e305b16d5778bedc5bdf8235759
MD5 1d6f13d2ed219657571c595ab39ea3a4
BLAKE2b-256 85db663a4edf781106b5a8f48904b3a123a5692e86daa57184933d4cdbb90282

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 42a5f5f4fc2e08284a90aced31384ffddfbda25370bd5cda876ffe3aa2ce67e2
MD5 ecd18e98f2d6d29b2b1f8e46d013ab87
BLAKE2b-256 002863e020a16eb794a892c57636b6e4c4fed82c27f52d4fdcae024febbfe6a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5a69abfb4a3488ffbb49a4f65ffa3230aa9b0e2664daf2814faa144cd531c681
MD5 9b6cb2fc978123727ecdd6ef4426ccf0
BLAKE2b-256 0a00bebdf9c3e737fc4a3460271dee75f0aa7b87665b0fa01b5d6c14faacf630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 3fd5e452dedef2ede82aa8bcdf0bce0467d6f3de092077b335ba8d724d94450f
MD5 d6f462d92b5c09777639d916cbc6fb65
BLAKE2b-256 c0bcaf907cee75a9e5e943edca9e79c96cb695f6080901ca6df6fd3d54a34a89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 8e81efb5ee607460db350212039d709833e8e39d04a75f2b141c305531aa60b9
MD5 be1a812d52fa931654d314dd3b2d743c
BLAKE2b-256 e43287bfa5c4649e608c41ada5df58087e420e945941a94eb59a0df2f62ac76a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 f4e04f6c53fc5cb635358bad318d021fcfe07bc92b2f30ddf6b16c5ccecc761d
MD5 2bf1aff09c0b8122fd8a9ad9faa302dc
BLAKE2b-256 599b741c486b008a7c62229adc9fd2e61e2d8a3b63b131b75336181c243f0840

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f3749a40d4417ab1a012219ebc88fd1c9644c8aa24a70b453bc20e46e18d7af
MD5 8d14b87b3723e33261b542ec5e032983
BLAKE2b-256 521deed4e0fc162103b4002b07ba3faa1f36a1e01135801e8f2acb3f9fec8d50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8095585d673d40100046730253ac8de5a48b06754fccb3b8ec00a0e2b1b8a813
MD5 9f511ea38b31f4c0f23a8f90f36f1f7a
BLAKE2b-256 16403ff9659e3641f861d2640a5ead6f040fb735cee28e67d5b47e5c3798b67e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f093fa3630212744810b32895720af899209820cb76be4146fb099c20c9cf624
MD5 e0a2de9760fd9542dfff10aa21b59878
BLAKE2b-256 4bb5fe5e51d4e87042b88be16cb9128181d05df92408caf783ef30fd2d7c5631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 75d00e82d4917417104d88c275dbde0291bea753e763642c8a6301303e8a8491
MD5 da23e2494923400e7b801a2632411d49
BLAKE2b-256 dcb724257244fd3705ea2905c7c32acb1fd09fba90dbfb7016a115607aa623f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ecd4aa9f2c4e6eddfdc4392d7021428e436ffcbbde054e08d3d6b92e48235eaa
MD5 5afdfce01a115c18f6dbbb6d0ba7bd7e
BLAKE2b-256 05ea3aca1804994425b5f82ca82a7fcf8f2b762ad5402095b0526870f042037a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 60403f87cf1ad7cc2b3231b15160c3fb751240ebf8df67299ab80569a15da040
MD5 2ea6c097ba0d0f1cee63355a14137a88
BLAKE2b-256 feec8d6b57259fa59cbf6b42420a0c8effd561d1ccb6739f896e74e8ff7f05e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.30.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.30.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 e6b852f20dfd9c5a64a871e012fc0a6532580a606214e1354dec59ec79a4ec9e
MD5 8b043af4a0daf843c68b5ee80e586949
BLAKE2b-256 9f64f80783040288f8765732fe6ce7327848ec953b79b66ceaff9471d4f8f669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fe037bd9acc5a52843ee95d6a9a69f92d51fdc09c882e54f052223fa52e4b5b7
MD5 627bfad97f8131372cb75190730e4269
BLAKE2b-256 ee6eeda752d9866bfd7f0ac6c631ae1c6b2724b1452324616bf6e8c3af28ceef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 17f94d72dcb235e75fdabb5e8d5e447e8f206ab5fe46ae1aacb82c6584bbd5a9
MD5 40251886d7a490aa169cb2b3cb67031a
BLAKE2b-256 31a6dcca82c2ca15f5008eede41a867ea8d506fb2faca186dd740b895b81a702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 bda084bc748b3b0778cff7600dbb82daf6c45f1d29cab18e0ac6be19f300cfd0
MD5 ceedbe26695346a473857077fa430762
BLAKE2b-256 6dd78f7362046521d27b4264c873c0786d188e37e626b97372474d20eff7b7b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 9f9b078bbd1b018e9e358efdd452bdfdb9a419474fbe5d069fabe677d2993b41
MD5 b13b570995d8622cad52c9aabb3b0348
BLAKE2b-256 33b43d21f35b720f0018fba191bf2e9b7edc7370a036c132add2e7ef6869dde8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 0de7b6f03b28deb52ac50bda0f9e716ea8cb99f4181d8ee1cf967c0bcae593da
MD5 68e1eb0d4442c30b98e67d994cef548e
BLAKE2b-256 9dec28396c95ad9160c55d809776597833da932e5b9d81b21c27281d6f669ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5d349c8dbdf7f6f41540f3443df37e6b9fff474f6c056ff9f1a3dc9796ddb6e4
MD5 4609c4ccdfadb52fd09a727abc7e747e
BLAKE2b-256 33e0041f3f76d1ce862b3e5e0c6a636387ff6ff707c300163d4b25fd942367d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e39f4c7550c8aa698963a3840f6f26c55b2596be0f539694d1cb31baf89169d
MD5 4f0d3c63ce89b4dc8c2531435a7d448a
BLAKE2b-256 b73b159e4fef43cafd7db210b5484585dd0ddc210ff706819ae460a60328f7db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ccf97d97659181352dc96dc3b145a390bd63f3641baab493cbb9281312715d37
MD5 47d1095110cd3d2cb4b03458f5ea227f
BLAKE2b-256 5823367668d5776327dc477b1e19865bf4d8f904507af89913f23a6c0846c516

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01b79683e39b4051bd8c252803f6f02748f781224eabcc2532e266be213f9b8b
MD5 75f4cacdc1c82795a17fadcc6412227b
BLAKE2b-256 1736d1f26708158155774c21cb7f67b555ad1fdba3cdf540ff363d8b8324314f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.30.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ab726880e9e3ddfb6ae2b7dbef551f39716d50728f4a0c89ff9d84d0cee18388
MD5 af5de9705feddd3486114fc164abaf84
BLAKE2b-256 f866c10f3d7ea415908f84e83f51766db7419350245062190d24334a52b788d2

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