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

Uploaded Source

Built Distributions

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

pydantic_core-0.42.0-pp39-pypy39_pp73-win_amd64.whl (1.5 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-0.42.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.42.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.42.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.42.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.42.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.42.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-0.42.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.42.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.42.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.42.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.42.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.42.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.42.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.42.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.42.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.42.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.42.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.42.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.5 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-0.42.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.42.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

pydantic_core-0.42.0-cp311-cp311-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.42.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.42.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.42.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.42.0-cp311-cp311-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.42.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.42.0-cp310-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-0.42.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.42.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

pydantic_core-0.42.0-cp310-cp310-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.42.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.42.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.42.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.42.0-cp310-cp310-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.42.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.42.0-cp39-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-0.42.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.42.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

pydantic_core-0.42.0-cp39-cp39-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.42.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.42.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.42.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.42.0-cp39-cp39-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.42.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.42.0-cp38-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-0.42.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.42.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

pydantic_core-0.42.0-cp38-cp38-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.42.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.42.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.42.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.42.0-cp38-cp38-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.42.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.42.0-cp37-none-win_amd64.whl (1.5 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-0.42.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.42.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

pydantic_core-0.42.0-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.42.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.42.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.42.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.42.0-cp37-cp37m-macosx_11_0_arm64.whl (1.4 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.42.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.42.0.tar.gz.

File metadata

  • Download URL: pydantic_core-0.42.0.tar.gz
  • Upload date:
  • Size: 305.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-0.42.0.tar.gz
Algorithm Hash digest
SHA256 25d89d9c09c1e79d415e2150c11117c35115f9d08dea452061f3391d458ee61b
MD5 425df9e70b1edca78596bebfb449570e
BLAKE2b-256 afdae8bf1ad5cca291d419af4d5e18cfe4f814d6b3dc8cd94207bc5be12f99b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 af8f20d77315120b4920c1eef1b8f1663244a9bfef6d089f1775bf4fa0abbe20
MD5 e18188152e3a415e34766f8b0410b14d
BLAKE2b-256 093264bca0eca0a925a901bca1f493e12555885f6650b28f1ec89ddbe3f98df6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c75a1283229f02ba6f027ad2831a28a824f8eef77ce6e8292d184dd089c2a4b5
MD5 aace56bc98bca88f9d04e592cf6342bb
BLAKE2b-256 e502366991487093a591fdd8f8a26ded6707dbce7556b6c47fa66040b5a6ebdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4af0a57be2d35bf6cdca3053617676110e96ac97e64fc9eac0e43354e5df93b9
MD5 b8a5444df390a72f22a24ccabe31a92b
BLAKE2b-256 92334025285a5310544de8d2234829bb7f9247c6e03e6d5b12d6807d6bbf2fbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0cb3613f180527f00608d434faa7eaa11c99f8b6cec3db97dd96cdd8e8aa780b
MD5 803efece79676bed744c85c08045ad41
BLAKE2b-256 9780796fdc88e12c0d22aea3216d92884fd9b9bb048934aa420e69c6197142bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 06f8ebc5f19ed181ba170a0a64111d45d4f84e7fafd6cdd8c5158845a1412f42
MD5 55be307dbdd60e56ef20db285438d96c
BLAKE2b-256 3f4a0b0019150d356a41611f801aa74d8e02cfaa89549a22a92c174313d6ac8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8f36aad5fa7011b8e962154bb42a8db747d9a699b5135dc82f80bbad74559043
MD5 924bf825c617513ddc2b72a1dea4a466
BLAKE2b-256 4c2419aa53cc4504ae7f821d23948e4dd3270bf5fab5a4a96cf65dcc8e470d48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d9fc0563f5a3a7cb08aca28371616f9d260655aaafd696ccae8abda8b7e0d803
MD5 172a0ddede84168d1467dbb0fb858959
BLAKE2b-256 99572b4188ec58653da7da99061f27236ccfb7439242ec8102201f2c1fa4369b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 043b89bc56d6bbaf49cc781753f7159e56d77733f1b73b060c8f5e3caf3141c0
MD5 8c797ab4b1877b53a3ff715851a718f3
BLAKE2b-256 d6069cba38deaae950b56e27b8662853d642252a247c598c2857c53f0e555655

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4a1d5e9c5fb00f6cca1f0fb87a312def0845c450e8e3919e2ffe9a0cf23d9e41
MD5 614f5153c4c1fc441cbf40642ff06f46
BLAKE2b-256 e3c485f6a2528507e5f397fdde63e9356996e0a2d5e07803ebb02d4ba0c98353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6ff43f05ef2872ff7ace90d6505573baff846be8e4d1f9d69913a5fbc287f378
MD5 01a829c8bed708c138c299752a9e65f0
BLAKE2b-256 266659346f557098f28c7a694efceb930081a5f00395e838c5ac089f5db0bd1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53da348b2e526dec8286f0b55618a83283664a8ba8a77eca3bab77ae11e02d4e
MD5 bb27aa74ed9afd8d20816c70ab706fb7
BLAKE2b-256 68d927ee35387c3578e7294717c7a475683383ed229dd1b803493c5a86f6a11d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 03976d9c45bd12b75c5734ccd7d443d3f2a698b79d0a53f6c92e43b46a1c75d8
MD5 a3e4d7b1533cb384d07707fedf8dd207
BLAKE2b-256 6171f980b7731035ba4289cec1ca998839149167f6fc952cb5cdce14bc79672e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 24b7e0d3d44920fe0e8a3c7091e06ba2816b38b00ee1a55da42fc73bb33b7c21
MD5 62e6bbd33cdbd5be304d2a38ecf90d23
BLAKE2b-256 e6c7ae708ffe3476a957b7458b2d96d4d04061653cee5ee7354f0a14e9bae4b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6787a84938c3b6428e28d134725f730cb897936eae8e2e012ff70ea3a4364863
MD5 9dcdb45f2d7be1980fd2b9eab4f422ac
BLAKE2b-256 18394a8a67c5f0e154e3598076b270d765ebbeb73409bd4ade48b13fff59f302

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 325384754caf75b944b3457e475506fc70c69fdf541173d77dcd7989400fb6ca
MD5 964ca4fe0b393f40620d89254e7cdde7
BLAKE2b-256 b1226495ebf27e5b915f9774a2586dc28ca8a8fefb75086f7884c65ca17a2930

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2a042dbbc25bb4d4592f112eb74d537eebc5175990e948b755ec36b480ccf8cf
MD5 e382c381a8eb707409176e161a6bc58b
BLAKE2b-256 5f5b349051c730215103032f10398bb60f887efd8e4102812f23e2ade6bbbc58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34c102a5d62293a443765a5aab15419221f578313d43adb3065ffe1be31bf14f
MD5 03a8768b28a99d212b990ebafbb66e4f
BLAKE2b-256 a3fac2da913d7f915720b1bd39b55072f303d37c5090f5bab85e7b52f115d9ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d1d5f397abf2c55d7c79daeafdbca89f0b8fb0b50ee5aab790a26500e0b57ba
MD5 272ced01af24908f9012be37a72f1afc
BLAKE2b-256 142165aaa42ae3fa9e3d5d5db5bce757e1e62b48360710c18bc97ff71754ff02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 edca48674280a4bbb61f62f07377063ebc624cf6073dfe9f6c811a3e8b076185
MD5 b225f95d21839ea38fff67f071490ce7
BLAKE2b-256 5e3bffe17cde7def562b3339ed4d1210a9ce3ec6de5cd79627f115b7ee65da54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e6b6d1c914eeb6eb5add7f07aa0e9bc129ec042c90af5e846bfef3c1a16b9b54
MD5 7158f429af4cbdaa72f678059c406468
BLAKE2b-256 c7cae951d8338ed5678d1ee992495f496b3a412a3628d030cca0443643bf40f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 a409ece1e2686847272805e486d9c4debcea4cd1aa2bdc00641252640111bf32
MD5 07713170f4023f785eab1661eba4c2a7
BLAKE2b-256 429908c1dd72d6d9b908ad6a885661395087d217d46b0690aa67011149444373

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.42.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.12

File hashes

Hashes for pydantic_core-0.42.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 8779886e0e057e068e31da21102ca7cfcf4e22bd9f0149f369e32b97fa637d11
MD5 42d02e74bfd6d151b64671f619962d48
BLAKE2b-256 0398cab2770727004d431bc3428a4ed71ee0a5ea016d6ee970d466d734ee242c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fdbf6bc1bd6db49c3fa171cd63ad4bf644b741101575247ec1986e088ad00b9a
MD5 652e30dd47187994a56422235f72206f
BLAKE2b-256 8c8aa04a7ac623d7f81835f2a1ed570db38298a4ebea994ed24854e49747e179

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d386062fc3f67b584a5d7ce21ed97c7e1b710a31f0d9ab8462ae8b9db839e17a
MD5 9ac85a038057d6aa2597b77a28723dc9
BLAKE2b-256 bb51987d023a5e539efd07968a5b5112926125f474e5b284646fa6e4c5970b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 b285aaf67274b2bcc40fa093c6ea425c854a4a8886cc65a3db4729a47f795d59
MD5 87ea26c001b0060d9bf820b139e87ff8
BLAKE2b-256 8a1f4ad0a0673bf6ccf34fde18241773227876b6f9a38541fd5920bbf46608a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 3b22b6d8d1c9257ee9e0e4025380bb736144fad372182462cd11cecac93e762f
MD5 5746422f41baf14eb9efbc65c0bad05a
BLAKE2b-256 914e72ed36d51f922ed1e48f006a3b499310f0ba695155c0deca5f81191b694b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 97571c7064076a969f207daf0cdda7b105f6ce8917464610f0445ab7d954ef92
MD5 9da39399cb4de818b56191dc2cef9a2e
BLAKE2b-256 262ada2c1c49647b69ad2a04d90db7ac46605e9cc109b70105cc8c2607e93d60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51668ecfa6f5553cb95b2945e327332a6480f3f8389baf7b032d06cbeb5f484f
MD5 74afa88a4e937b0826fe2143e321a80c
BLAKE2b-256 a85ec488441fe841bdd22bfb6f8d26aa5d0570edc05f08eb2e22789995ecfa11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16478e18ea1e2aef08ff529cbec62dd11fc66a2bfe9bf1c5210f55690a8c5672
MD5 6e50492007067a330c469293c6780d85
BLAKE2b-256 754d00cea5e8ff6bd9e711453ae7b78dbef87c157c01c929d2d71198e2d61cee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c3f1020304115988c65bc766a3992bd55c3513a78077b42b1b14fd9911de0b4
MD5 0c36a8274e32265ffcf7f3b4d0f5b044
BLAKE2b-256 0deea3f2e1742efc7c98ca207ba40e52bae85eb099a940c1c8d35d323598bc37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0cd219094a1442e7b69e1f0be782e82da5325d822fa97899a009854a3254253
MD5 530eafbdd21e64ffa15f86d1cf39d04a
BLAKE2b-256 d2164630c25e70cddf960ef5d9fe440ad517fb16b4bdc62515c81d2e6a20d304

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ac0f4267c0843bccc45a97e77f36c9005cae84689dbbbe20bef0622dfb352507
MD5 829305d5e17cfca242717b54717697a0
BLAKE2b-256 667d973f6138393d06b5f30c3f07fd049492c53be287dd0054a045c6ca730232

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 d9b0159224a292bc08c7da40b27d680fbbba99181165598730adc636ddd630e4
MD5 4a660cce17b2d6f6ef9aefd01667d0ea
BLAKE2b-256 3a849bc58fab2208c2d42c01cfa8fa19ab7e29900e5f601c8a1060fc94eee510

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.42.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.12

File hashes

Hashes for pydantic_core-0.42.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 9be3da7d7e94f815ea021439731d52e39c37856c3e097a976fc33e94d455351c
MD5 117538f1c780dd514d323d33f92668c6
BLAKE2b-256 9c7565b6b4199abe1099216db9b44cfe254875abfae1ba0219dce80c1b4f34e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2602035e85c974ef922ac9e059ea9a11daba34b430fc87e9d07206fd0bc98f39
MD5 9d395f69b4db4266bcb6de70aff19ecb
BLAKE2b-256 316539c11bd4862d7b8e3eab67219715b890816800308e2a2e1fad489edc69b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 15e1295870528f17001ca53f8efd534f1faf0154a5f3952993dec25a557dae3e
MD5 25befd70d33b3fb548a7c4d0a977d108
BLAKE2b-256 f541a1e3209ed4edcb03504ad551d57390cfe1d541d8b196784c4f6aab652e42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 3700f5f0871f06b9234b10bdbaa1b4970a7322743675636e768737fcb246558e
MD5 4e5d63de0e1e476aa9fc236fe0da9b29
BLAKE2b-256 acfbd45ae4e953cb656af7a0989cd1136e16462e1e9e6af06d538a86bc149306

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 4e749049fe6ad23c74131578371305f8ed92304e33d58ff2a9df878f3c2876fa
MD5 b41fe34306b6fce816542cb252dad008
BLAKE2b-256 668b97f2a1ff277ef45b5a9ed779a0188140ce18dae364cb7575e171bd477572

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 5e4196cd85878c4e6b1944bd99504f994f4ede3a2fd770b771fcf7b36472eca7
MD5 c257e2618208c9088045470de88e2062
BLAKE2b-256 8cfb205bbe7cd7df71bef7f0248cef3372bd2c8f057fa3f4a567e14964fd1399

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05e12fab75fdd2972618020781d1d544a67ae605ab3dbd11a7bc08e6af17831f
MD5 c36ef9d414a8317b97259e9aeaca9863
BLAKE2b-256 629060b7f596868108121cc89c762803944ad773f4455c7a8ba3c7ccac4c6eeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e26ebf8c3044fac92fc2ed17f156e54a77d68a5493869f48ae2a69abc3e9e7fc
MD5 3aeb0c1d885ecd61e058de07623f1a80
BLAKE2b-256 5bd165461f365de9a01203bf34bce22fb6561b6bc443cdc312cc9833f75a9ffc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e7ff47cba7611412d6554dd3d7bd06d2d339cc815434868206366ec56ca9c924
MD5 5cb2d5dcdf70d596ca773bc787e908d3
BLAKE2b-256 2b17ebf761c6e2575940fe939d4f22da0376184069d3b1ae982278f17a389152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8482701761e751618529b1e32f1b1eeb47afb1ff7983b19fac31082e45a0f416
MD5 8d0df22d10b38684decea668ce34f68e
BLAKE2b-256 5a7ed169ab15033f6cc251c926e6bc2a19a45f7ece93e2d37481e9208e0ea68a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 afb6da57951854dffdd713c67ba2dd18a52e1e67a43d42ac465c8a5b25127ff0
MD5 c2aaa2ad9b859ff6c9e80734c062fd4d
BLAKE2b-256 531d023793f36e511551a0725a0b04339b487078b3c3f9c82c5e21aaaaf0f800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 f17ea1f64390ea1d964a9680399d56dfb8a55a42d3423b34118a00c381ace8b2
MD5 42c4ee610819159e8564f361140151c8
BLAKE2b-256 d0f684f99c15b1642b4f646a30301b52b0a90c827ef8f43af5e900ec52ff2fb5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.42.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.12

File hashes

Hashes for pydantic_core-0.42.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 2455a69adf07f09d3613a505013830923bc88b619e519927a2498ec8ca27576a
MD5 96e9edf9d0a9dd3bba6192f892f2a1fc
BLAKE2b-256 42cdf70b1f5593b24dce2586ac4fe1df299ec95ab694e002825728f0263c4cba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c37efb3d9956211177fcbb7260d8330f1ccb5c2783ca7e9b8d9edb41aa56089
MD5 0f905df830e38f657a2d60e45eb1ce59
BLAKE2b-256 52fce4bc251ba76f3a64e183267fe86c7486ea3cc20639bc58b74cef3dd12aed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ed93fff5abcbd35520d614b70230e2c898ef745d7997cf4b662b10aded55e2b1
MD5 e2857d7620af9e3c090450efdf293caa
BLAKE2b-256 3de565f8c7de21c069b7c1d476ad5c88794bd0ccdc34f4addc961a821e47b1bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 78fe7b91de0e797a2640534f91129bad89f3b7586a712f1a67d87929c4edcd22
MD5 308fe1fc3a3f1c7af564b5f243000c34
BLAKE2b-256 0aa4565d6d379a79b7508f2c07f9b5571ddc176c740615c33f4030670548253a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 1750c297d6b1855e4c3d9a9ff264139d2b8c1259589f3f5ba0ed82c321f1abc7
MD5 205cd6cbb43c7421b6bddb3c0eb8cb59
BLAKE2b-256 bb3129d1cb318bf731015286c80a0ebcedc7f1f8cdca08250c174642653310d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 08001743394f408a67440ed9753698d739115d5e40efd935c13148ac27f46ad4
MD5 59ee70f01acfdeddbb71bcad83e80548
BLAKE2b-256 0db15ee5b3720b60cfa23a4832b71ddc320f91da166b953bc15d0ff792a62cad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0e08d387df27628c21a95c27fafb0c76874297f641ddba3be4c33fe5a6b0b5e
MD5 3160b4f4b276eaa61fde118efe23ab54
BLAKE2b-256 34b8c9c563848f3e4731109fe55b943ec9b094cfffc443f80ad2ccffe16e4072

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c25e6cea758abcc3069eec2f90e31189a4823e22477ce3bdf85d2fca9d7333bf
MD5 7ba8a13854d340dd7cfd82cd1b7128c7
BLAKE2b-256 7c80f5da2ebf1b20fef8bb3ab36ba46c6848de12b5fbbba90fb82fec682dabcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e4d018b9fdb2e2a051366da39a149fa0a52051ab216425838caa89402d60a31
MD5 2bc54f4d900d7314d8b9748d77b6c428
BLAKE2b-256 16783e238a751f14cca8d9e36f174f997ba7118821885ce8fb6b5f5483aa0353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17d085b22e085f6b3c91cd23456e5a8fec1c5ecb956eab39e8e7d852645fbd89
MD5 5cb2b32d9af5c558ab9d4da2433f31ac
BLAKE2b-256 3d141549fe5d6c5c2b57b28a683c9c27ce385591a4d6ff5bb57a5305e4e509ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 df8b4ce18e87bbb67141e36c14b281606578832050bb8db00e7474be4f88f671
MD5 72f0abe424c0035de15c35174b7f7b8b
BLAKE2b-256 00c14785b661ccf30283c6646a0f7fca01319776cf1ed5cbedd72e61765784e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 41685997bc0ee3ac6b5bc551c08ca38f34536588902baf0b3386919118f033e4
MD5 904142203a201ea7a2f896404ecb38f8
BLAKE2b-256 f3239e509b11ab9f3ff6060b2d8357c945eb2d19ba4ffc6a22c62fa8407d7897

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.42.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.12

File hashes

Hashes for pydantic_core-0.42.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 db7dbf5d9da8ed8df23a5925a5efda41cb2471a5303dc29b5596751d872d758a
MD5 82226aa34afbd69ae51bbdc3d109a87b
BLAKE2b-256 dbbb7be63952e46c5f3a7b9ea01187ed0d434c40dcd5e7d372a1fa2c0b695c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7adea9e1500566ffb27e0f277671fcfc9dd4b73d56514cd5781c915608734f46
MD5 0c7df15311682bb7a31aa3553ed79ea5
BLAKE2b-256 37e254aa25c5cfde114824ec7aab7d08dac3af83364583394bd2a608a01fd02d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c7046f84629cf0fc82d18a93369db73986b92de466fda3937a072faf3c72e2b9
MD5 c89fc5bb6d83889c73d983fb9ef90a73
BLAKE2b-256 fa101e7b61f55349937b35b799bd2cf80d88e5055d9220375d1fe061d1041696

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 f5d67c10c115cd84fca56e815a737c5652d222abce466a460bcee7ed984b1ffb
MD5 1c6faa9fe377cca922bbdc5c59c2efcf
BLAKE2b-256 4e4a12fd67b088ac96549aca07af849cf47e48d0fdba13987183659e126e8049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c4186db513ed56e97709a4acc21bc8eac12916723e06ba5724608e2e6327bf2d
MD5 6c3da663502b199c91540988499c5528
BLAKE2b-256 4584a95c6aa61ef0ee6340cf15fd74df96c47ebb6e23d313091b93f8c845a4bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 e0bc9a1cb8cd682e309e1081e369457d0b57997498e4029830bfde332c464693
MD5 fa6e56e2f5828e5c396c01c28967bc4c
BLAKE2b-256 641dc1007c358a7dc5065cf6b5992a6c1f4bf1e885d699db6491c5f6144f3e21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73e852038e2cceee6e119b18ee492781b58e02bedd9d71b059b85f17ab07a0f6
MD5 69cb12c138af5d6094459c8b44709706
BLAKE2b-256 7f48d44b87d36a8745664a92776a9dca4a94f39693c944f46c6b480853ed4c83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 749d2c24d75f201a8a843bf197fa2fa370193b949c405a0d6b364b0342246280
MD5 5dee42acf157d707a7d248061bc474e3
BLAKE2b-256 dc97edf625f8ca82936898b6b77cb85b53f9eb606af867032e020a2187d5bea5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 900eb1f8ec6c07db5f026045083175576ea285bb08bf718cdeab51da7c520680
MD5 ae8532f68b80ed0e6ecab44d2aee1ad9
BLAKE2b-256 01b9e75e93bcd76ef95573f14526f45b48d35d8cc0fe994f6c557df46e0f3c8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd5968a6d411a055dbe757e144baa702ea4a45ebf1ac25203482529e2d657e77
MD5 5ba34a89cd002a3e2d59a876e24b30c8
BLAKE2b-256 7473cd71d3d3aa65336d6a8a3851f4440172caa1518e23a1169ab746085d01e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 96ed7c759cb17019be3758361e99beed5a5a397a53f2c6c6ebd79b52b18a61aa
MD5 16f404abe7b25e24a1d893f2ce1f8f07
BLAKE2b-256 48355614ced7afe883a8526c2b7c7f08ca23480bc7bbdebe373433e97b18411e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 55c2f9c17b328d90664f86b15ee77eb46bef521518cab3956e54b474cad6b166
MD5 27db3b840c5940409a28411a0ab915a5
BLAKE2b-256 940d7e43513ab4306d1d6aadb6bbd8f60f10fb98a41b609619da6568927e4c6c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.42.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.12

File hashes

Hashes for pydantic_core-0.42.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 90ee6319b60165224f7bd825b0ca59a72a28e7bd9c5fa7a1023a254c3d42962d
MD5 f303ac1c7e8a4bf290a965ad691e256f
BLAKE2b-256 8036249ce5374c860b88818145287175292e2ec0deff1385bbe2d1effb8c84d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1b36f9c12e1cc6a95d0eabb1a29ccf3856ef05cd261a383556d9190acd1bc8fe
MD5 2ad04c44ed76962831779638ef70ba1e
BLAKE2b-256 4d9f3b62b9a574a68f514ce5ff5920e915d7fb9370913277d5b92373f905c0de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5770208bdcb392d03e2016b325e02323022489f112513e821257e54f771d5a5b
MD5 ccfc99ec9e43411d43f1b0a182d5560d
BLAKE2b-256 9dfc2cde4e0dabc89422daad9f8c41cc843c4b68775290b0540e06b4b8b74a6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 39a273d4bc1e7631a51a98111789f3ef71e1a2c99132ca7951700ee6c2bae80d
MD5 c79b90049cc93c4ba44ec7b3e4d52322
BLAKE2b-256 2863ea68d978c0cc81fe61924024d206005eb80107e1a95e5fa0e6bf5e950c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 49df4b63c827e788be45d4e12407cff4244263fc340d806f442661ddf6b5ae21
MD5 88e8cc1e0dee58c65e5316e836a49458
BLAKE2b-256 7ee348c3fe8be0fb742a44757d55cf81610b414011f51b7d45c622b264253e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 9fd8c36832b34751977c1ba5a64fae51b7eef21d22aadd21b5e728d1cf36c451
MD5 a37da988828ebd3ad96829926fcf4abf
BLAKE2b-256 83a10297b7e69eeea18c9ed693ef020c9e595afd1017b34b09040f4c59f3b859

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18d6507e3a2c87777151c718d23c91371c31dd192d381a2e49e425fc5412241e
MD5 a80e8e288cfc21ac2bfd3fe69c8aa26a
BLAKE2b-256 8c8f9987341cc49ddd676aee7f3611a6c2f24612ec674f97b843bec33b272bfc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 379bdfb029231bba4a4c9e51de98c62c108786f558106bd2e85fa935d6a0051b
MD5 075cdbf37e9776d4299ce39f73557c6a
BLAKE2b-256 4a8c5950786f774020661ba069d22a713f44bf402d5eef6aa655f90eb0e2ef44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c072387568751d61c52aaf53fae3bd768eb19015197a9e2fb9e6486ccf8115c
MD5 2c5eda1b43a9e81a414a596b3acf7ebf
BLAKE2b-256 1e1754e3ac703bbebe323ca84c93fe5199d8e115af1e347c34b8558eb8e8d717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e1a6bb2508dfb016b1afcfe0ac20e75af21217f7bc9e5e8c997b397e138dcd9
MD5 23a4371635831ae2808664b5efd300ca
BLAKE2b-256 14114e891764aedb99f0f2cdec57e22afa50c9df8cb16fff0434358164773623

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.42.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 880678206985593f46feafa698baef990fdfbca7a548f9c26e61c0ccaf44d778
MD5 1d9ce63f9dfed26fe7c3c62955de26a7
BLAKE2b-256 d442e2b14cc7d67c23e833b9f2e236b37c20ff31219fb21a23574a9e2477498d

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