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.18.1.tar.gz (255.7 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.18.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.18.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.18.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.18.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.18.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.18.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.18.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.18.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.18.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.18.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.18.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.18.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.18.1-cp311-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-0.18.1-cp311-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-0.18.1-cp311-cp311-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-0.18.1-cp311-cp311-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.18.1-cp311-cp311-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

pydantic_core-0.18.1-cp311-cp311-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

pydantic_core-0.18.1-cp311-cp311-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-0.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-0.18.1-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.18.1-cp311-cp311-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

pydantic_core-0.18.1-cp310-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.18.1-cp310-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-0.18.1-cp310-cp310-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-0.18.1-cp310-cp310-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.18.1-cp310-cp310-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

pydantic_core-0.18.1-cp310-cp310-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

pydantic_core-0.18.1-cp310-cp310-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-0.18.1-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.18.1-cp310-cp310-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.18.1-cp39-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.18.1-cp39-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-0.18.1-cp39-cp39-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-0.18.1-cp39-cp39-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.18.1-cp39-cp39-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

pydantic_core-0.18.1-cp39-cp39-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

pydantic_core-0.18.1-cp39-cp39-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-0.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-0.18.1-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.18.1-cp39-cp39-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.18.1-cp38-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.18.1-cp38-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-0.18.1-cp38-cp38-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-0.18.1-cp38-cp38-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-0.18.1-cp38-cp38-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

pydantic_core-0.18.1-cp38-cp38-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

pydantic_core-0.18.1-cp38-cp38-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-0.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-0.18.1-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.18.1-cp38-cp38-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.18.1-cp37-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.18.1-cp37-none-win32.whl (1.1 MB view details)

Uploaded CPython 3.7Windows x86

pydantic_core-0.18.1-cp37-cp37m-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-0.18.1-cp37-cp37m-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-0.18.1-cp37-cp37m-manylinux_2_24_s390x.whl (1.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

pydantic_core-0.18.1-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

pydantic_core-0.18.1-cp37-cp37m-manylinux_2_24_armv7l.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.18.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-0.18.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-0.18.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pydantic_core-0.18.1-cp37-cp37m-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.18.1-cp37-cp37m-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.18.1.tar.gz
Algorithm Hash digest
SHA256 480d49cc0e33ebf3d084f81d7bb5b4d8c16f1d126244a5b7dae9ecc4ae5b766a
MD5 4b0e1726c13dce9562317e6d2b59f25b
BLAKE2b-256 a7309bb1e0c40e4bed04f0323eb97f6f8daae6136691c42e1a890bf2850afb70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a169bec8d0351842be419fd8e7d581b6e73b1a26231b840c8071f01a15ac82a6
MD5 bcec7f1d9dfb53b783a93135cd754d81
BLAKE2b-256 276554bbb1d0987167ed2c7a049ce377c06cce41402ada90bb34a621330091e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cc23126d51490bdeda14eb6eaa357b458479bfdf4f27c7a88992a3506bb874c8
MD5 ed371ddd3c36cc6f43ecbadc84b39e59
BLAKE2b-256 093dd9ef72d3f74f39a8cc029696a6fa8239f218d641ad085fa9b37a5b15f7b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a321e4c5d55fa06d60f44d9c657df4529b557fd876dda7feb53721429d434101
MD5 cb65451c023c75e1e5e47198e770ed9b
BLAKE2b-256 adb78462c129c955053ddf9bbb63c801bce0d467301a97151d2facf1373e6c38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 24117b3a6cd296b1561986ade9359b6decc9bc010e91aa16b7ab60f774c5ed2b
MD5 96cf09914b55e0744696ac0010d462cf
BLAKE2b-256 224f25e94f580ad4edee8ec47f2e5b8958436c03a53df7db5c20930a6c984a61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6f4af5e6e48187f5587862628310188ca871d867c8b12671fa04bb9ed099351b
MD5 59126c839e31df4dc4ba9b54585c5b33
BLAKE2b-256 34e74a9aeadea74e29f53e728186f7f955551c2554aff9d8f5916af83e0ea13d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4046c09801552035605711d60c58ed4a8355e0c0c78757746ccd2980fac84890
MD5 b63071d0e3ef128f3d08cc1b4e1a156e
BLAKE2b-256 f563ccf36e36eeda2a04e51694f6e77e9da50270b97da7031c5e97b39a4be2d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 95e2f1f34d5ab08f231b3daa210a8e9ee109bf01551a3bcc19599d028008ddb2
MD5 4157e6f022025303ae9da74535ba79d4
BLAKE2b-256 dda24596e04948055aca8f7c5258418d82a3b93a0406c0f915ee2f9c7a0b3c74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9a196ec5a386d7b809e44ab94007e1d9184c9aa0bcc1e674e8f441be4d0be5e9
MD5 b88e3d3d5e66f236d31822b99c6e126a
BLAKE2b-256 fc28ab53165c102e481227d666387a74a06aefd080e1facfb893e2bdaf28f4dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc89bba03478bbab92c14a97efba5b4e60cd182f316a9aa8967183e75342c38a
MD5 f0a243ea4d6236203a707ffa8d58e048
BLAKE2b-256 1acedcf74be678e4b8f8daa936552850bc5d3db89929eb4cc28c68dbef2dbbf3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 735a477db6ab90d038edec28f2b57d930b37d1f65c7291fad261f9c2d1168fa0
MD5 95a5fcc2e680e9f4578ae0b7d518fb7d
BLAKE2b-256 e1799000ad5ae6479228b7915711b80c7de81d4246f1272e51dd6aae486f9ff1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 08b0a2734b41c410708e38fa3c21ba9b0bbe4f334788542145e9b05559a5bd2d
MD5 2415be359d6585a36445346809ec0fed
BLAKE2b-256 1311fa63c5809fa6c992ced13afc716f5653d176cf9305230517b5014f83e5ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 44a2ce252f8c7bf20ba553acea706a42c13dc5ddb7215212a79607d7f0bc223a
MD5 5115cd2b8875ef2a505e13f185cef81a
BLAKE2b-256 85f1d42717897adecc44dc771052fedfe278f438fb51ad8c47ef19b453e5d000

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 70244713bd681a0e71ea90e563bb6eaed28fc5d983ba2d4cf13104f7df41130b
MD5 b1585d201fa74d97551afb9d6ddd6e1a
BLAKE2b-256 66783bedc578ef6c9d8beb51c8c7833f2bd016527d2d289af76513421d0a9667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a7423c8637558f24ef739bec64a4780eb743d1f58d267b8e936a7bffbb27b0c1
MD5 9b088dddfedb9b25a9c99aeec8bf386c
BLAKE2b-256 04e11f5ff920da5cc948d1dbe644ff40167a5de3c3526e9ede144296501a9df9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9c3ad48ece97bc289a45239bd635b4cbfb5dcfcad14f591aef2f7095c971818
MD5 d289e4ca8253074daa08f14c4d8a357d
BLAKE2b-256 afb2836a15031e5761d73155b2dceab7224b189ad8908478818ce00a48e0d758

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 04ce5f6b319f68d9a23acefe66c23ea03529109ad3ca233fed49d81b1c595886
MD5 98032cdbdd4cd06d3c9f3c8487577d43
BLAKE2b-256 90e472d322e001bc9ca77c31a87b81bffc3b424759b610edafb7bc3d10e95697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 97e26605a5518345726443f7d17b3929679bfd2e6ed63b08c732a1d6ac478c01
MD5 2ce7d732c7cfa5328ea4401bb7666af1
BLAKE2b-256 c879429b9ed592e7ffcb96f888c57dafdd071e6847cb9c1a198c3dc088a0e421

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b66caf2fb9058f8ecc5e101a65d99b87bb120a03badafbe8483c9209cae8da49
MD5 02aeb17c1a3af8a04f434260a399ca1d
BLAKE2b-256 8fde327a48c60ad2338aa5243c56693e5e6db18b8815513050db7d2d5acacabc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 3efd4e027d0c6f9cce090fa099cc21636cce57f8a3d908d3f25ca5f8bddef9ee
MD5 1fa56130063e1e4a2a9b627e1174e9c2
BLAKE2b-256 ec6de8674d03de1658a0c424a93e0a6f6ae0fc43403657e89161fba106d57905

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.18.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 baa2b8b93e4fc11f694e2e26373524eed8160e4e482ac1e1f442996794ec1e42
MD5 73dd95b5efe79a3a6fff2839c4490a83
BLAKE2b-256 f9ba9260344a6f7afd88a1c950ffd7249973cbe4d0f92a4cfe2cabaa52281ad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7c7d3958731fc0f97948e634c9890c0d0f16b69455679e799e74dfe84b6c3d2a
MD5 6acca0f084659a2a1410d63dd0831785
BLAKE2b-256 c126c8262588bf7406a5308e8d21d9b473fa1b7e678d8907641a4acca1d254c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ee312e7fc81ee5aa3f2c1d23a69495f978cb4790abe15f46a3fb9510dfc09cd3
MD5 6118ce899cb942b1c1cd684de234768d
BLAKE2b-256 7ab41e7dae874847833d7add64d57664904b2a8621f352e4b0f205eae3bf5833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 0ec9a9993e56fc5b4095fea38029b7ccc10bacac2f0d11c220e2ff6c1f715584
MD5 7a525fba85cfc2c457a1068d3de2900a
BLAKE2b-256 1d7963b88ea5c2f1f0dfca38a0cf4eb780cab108e9df245967045ebb5ca99354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c328d210ef9956e40176fe0e2bb28ed52d776874e443f3a86af1a356572a4e09
MD5 4ea1df3f76979f1fcf590012af7e929a
BLAKE2b-256 5844f4a3fbd74b990d189cbd124f31cf61947cb052aa4aa2e6cc29f50fe4e3f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 7bc0958e93ba1b11f7c7d44fb3491c74c9b70735f3913dc0e2740bf315beb9ff
MD5 5ad9222b0631f7098ab56610a86e56e7
BLAKE2b-256 4fa0abd3d3345a4d5d93b185fd82c4e9ba7c0762e434f0b81174df7e3d171ae0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 08bcb958c87d8e7fbfadc5bc05299e90ee17295240da3275cbcbfd0e22e94034
MD5 c93f57aa2b70d31282797422f973ffc7
BLAKE2b-256 43e06d6378038ce54a949d408e1dc79f448ae7a39b7165a3a18210a490a9d551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8fa4fed1cf52d8360ddc0958fa237f5cb6fdf2e3f162ac68a48403f34efb0b64
MD5 30dd6a9567c5f4ac84da45962a7cb4ac
BLAKE2b-256 28757c4c972cbb01d10e04ea657f9205717dbed9745bd862fba9d02127fb108a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6974a7f71e061c8cfc1a189d77af2aacdfdb17046775dd7387f1e2d59080c5d8
MD5 db2eeaac51c3d05561354e6c0456b499
BLAKE2b-256 1aec756da9157be8a8cea1c52e4fac1c3088da085aa32f1aaa21ac17b66d8006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceb9c454f10031755ba61aa87bb5b16c841a88f396cf81e338d86a13bd815949
MD5 455fa7281efc7b04521c31515396490f
BLAKE2b-256 4f04701ac6d64bf01c2230400395750bb813ccba34e7127c605bffef6fd50800

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6b41e22217d0ed0fe228eeb377d6bd03c39f0195c56555bc83c63f44b669cf95
MD5 60b8da88d0a6528f026bda449985c431
BLAKE2b-256 b9c136990258a2d5fbb3d471192df3b447f93c87b3ee63fa0d39373c97e64ebb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 64a62dc5ca6a092a8d79939ecc87811545b990eeccbe1389ebb14b9fcac17d09
MD5 c357cd021bd5019f394d2f3d9f242f31
BLAKE2b-256 cefd5a15ba80375220bf86cbafa796502331b9058e5699d9b942876b1d5e65fe

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.18.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5b8e26da819cc2b941eff4381af2becc93065852abc6cad5dfc8fa88d8da393a
MD5 af28b24c8c8cfe9006c02f6695294f77
BLAKE2b-256 733f11a3f5ef6aa1ad127c3a22c87e7f04c27cd5f7a0e644458704963bc33a79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 892d1b542486c4d8e43070fac95f1df4a9f1c2897957b48362fb1c62cf4ad659
MD5 ebe05f2788c051603bf2b298191135d9
BLAKE2b-256 a637601b78609614effe9d505dcffab61946a9d7edaf43cb756ba9199fe44ce7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0836379c1c9342a4ffe7e181e9009208e57c653d44dfde6a4c8409163a5e46b3
MD5 9b2ddfa76e6f68bcce1d74a5319567b0
BLAKE2b-256 d389397afaab967aef95d5b5d4e1197b065623136a5e2ccdcf0eeb952bcce531

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 c48114abceae9929c9edfe75781ccea7c95a80e026dcadebb49c9d38c8491041
MD5 9d15040d3ffd25abfc1d977c391ee59f
BLAKE2b-256 b48a3e336a53e04617233c0ded886298022af8f63b91497824ddc5d4eb26c1ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 7a83964ca9a580ad654174f3344520282e098b2d0a45ffbfdca84dd6ce1d6348
MD5 5b161d7f9144e31b9085b0f5f7f5311a
BLAKE2b-256 b21e19ac1b84c05527c8f739737f1ed33ea8c01f36e6695a4b598ac8def9e355

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 599a5bb8fc136174f27713b31583f80031f1b222af33495704b4e6dfdc315e6b
MD5 008d76fbb05e264d3dd5cce8c3b50646
BLAKE2b-256 e46e58f2e406c8f918003fe6aba8d772ea61c4da44608cc45fd33bf1d4b2f44f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a4c9f9d825efd0dd8f4af2cac343fc5a63efe806dff6d468994b8ee585375ca4
MD5 a3de546d4e52b1686e898c60cc43b4ab
BLAKE2b-256 41191868f72075925aa39edababad8d48de40d84cc46b2b78d54788f72c83d1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e005584b33416f1bc80cd3fcba56dd5c6b8544cf8517ae42c0cfeabed93e322
MD5 27cb9725e3108b3f9a91e5de66c11f91
BLAKE2b-256 4cf10888de6456ffcb158d00aac6f3a5aa563418b2a8197ef8c28ff0f7d8a030

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 408f9b20fa33a2fd7c21f061236fcbc835547147e900c4a55912147c7ec18da7
MD5 d565bacb8643f9cd9bb5ab78c09c1eaf
BLAKE2b-256 fc86c50b19f91f6745f4a27a781d43f02dbcf94a04e7311806338f7fde2f51dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e50e50aacda60e5877a73950b126f5fd6b72d72465e2a0245c21519c89f6f920
MD5 f9f202c2ddd15acfd4e1fe82baf7a4a3
BLAKE2b-256 d30ea02c8a993b12fdf75fe8b2571d9d5db4304d4b2a178af5ede36e1fb51907

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 524da57f7778f3407db382479d4e7a0fdcf41526496230996b992b8629df95c6
MD5 2a5a754a8002ab3557c6aeaf4d1eedeb
BLAKE2b-256 f858eac6154d3851a0757d56117bde5031c997e986438e149d2d04dea7673fb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 cbc5101e3f5e6e23ba5b9dd05e0d0add38f291b445a8e14e58039e3aae54a3cf
MD5 b44125c9b14000ff9f796c8817d0dcd5
BLAKE2b-256 a4b1e9e9380b7e9494888f1eca3da0239c81c7402f580a015aaa8c5ce6d4b613

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.18.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 028c6636802867c581a10c2016ba8a5c795b1fe4db9f9fd88ca94014ae9f0759
MD5 24a448af34da624f2de5f92055d972fe
BLAKE2b-256 2f36518eeee2dcf8c55d24c04ddd5ad130cd5d7ee1210cd41ab584c4bea90c26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 880ea0fbd13527c47c346bab08fc950675c90a043b905f70c0813f8bdfd0461f
MD5 d8586d3b915cd8670ea89f6a841def8a
BLAKE2b-256 9fe473dfa92a7be5da66bde1b88c4424b52182f500d5503d1334cb2026e82008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 90c9b12df8be928e97e36c2b333cefe4a8d72b79699c88997d66b6ec98179310
MD5 795799df2d02996ce2d62e3a33f25cdc
BLAKE2b-256 97fe7659baccdd8803f41cc89f4fbb667140405653510293c2e48cc71de6a9bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 06dacc34232fe5652893db1ea52fdcdc8a069570b8cfa7c99197eac6a0d23eec
MD5 e49c7d266419725b056b47820d8032e5
BLAKE2b-256 1f5f6afe4d061d79dbc06f4a5096172ea847753b20cb6abed11d1e134218cbdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 9681291b0b0f720639bcb3216ccf09822b562a7a6975af66e2611e2eb38a9cd8
MD5 d349d0a598fd3aeaf5f3b5a4df77c350
BLAKE2b-256 bfae96b090494d95c64a039373a77739b63461ddb78b52224051007eb0ef0c9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8651871db480a835df615c70ee2015b9153cc4f89c6327bfac7cd9fe4be596fa
MD5 4c01ea6b5c5822efd54adadfbdc7d897
BLAKE2b-256 6413103801320fb02951d7d8fa31fc222aa325e5f6df84a817067e79f7928c92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1f265e3c631ad56eca3ab59efcf977c6ce88a0b9b7fff85809cb59eda891139
MD5 150a368fa3c56f92604d9aa10e945fd9
BLAKE2b-256 04fb72a30ed497012426719f29cc516e750dccb31bdfafc0aee774b9e5de678b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a08e25f7d4a451587c9d942f641e61995d3e34890fcb913acf4cee85ed3e9db6
MD5 87e08c9617ac0768799bee2c0becd598
BLAKE2b-256 de1c0404f0d6a818d20d6575102cc8f49ae638500d82caa80351185f606c647e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bdc4eeb230323c76403d6a6b3abb4b4010d2e6f49169f5cf26cd148134e7112b
MD5 f8159ca6f8704650232cefae6164f5b7
BLAKE2b-256 cb4edd0503d72ff27d937f84d0b3683a32fcaa5b6c1eecbe220541bf413bb036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f724d9c34dcfe959b578e46ad330ce83166091024ec1d399f2b7f2189a79af39
MD5 782256eed43355edc1bf70e213c8b8d7
BLAKE2b-256 96699e219498833f61ba5bd9f29d24f3539cb649517da46c1dc386da723ef411

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a4ce5e24a070e8cb0e11e2c29dc22ee83d5263dc04d038b98869aab050450bb1
MD5 4bf525ed77fb40c69192c0bf0e62a1e8
BLAKE2b-256 844f61307bd47e62832be386e05b3e77754ba7078b9d72ba52888de7e5dd9427

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 cdf7d6bd71b37e70170f21124c8fe6fb63e39aebf5351b781550ea45f1af0ca7
MD5 aedbbb65f670fdb5e53277ecc8707988
BLAKE2b-256 2f64498c7a98b93c4391c2dadf30538069d0a22661e56a55abc93fee85527f6f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.18.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 f4c4e9cf18761d8f328082b6693f27deb6b697ca12c62441ca4c528e7dfc8897
MD5 cae34f3d24af08996eefffc64070667e
BLAKE2b-256 6a1986210b088fa6acf58e2105ffb17beb15a41e9fab51fdd603d6fcc4a54cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d7149abd92b5cedaf9db6c086cc3891b056f7f007c9316b433c69d1b8ce8d27c
MD5 bafeab939f4ba7cf6f9bf938147af8d2
BLAKE2b-256 f1facfb10e2f837eca3be05214cf46851c2e99e455f798d0b3b00183d72382f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 56ed8cd620a0f5b8e0171921febdb4f1743d265eb34074e111a081bbd615e265
MD5 dacdffa6381862f496e0059a7a215905
BLAKE2b-256 da800885f0b3319bcc7554b2675e70cec192d0272e538db3ba9a08881b65a2c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 1c8c6db027c57919d1f010de7b532dd2bdc4098b8801a675506e52e72945d406
MD5 1b190eb21717a07087f72187b606c93f
BLAKE2b-256 a582894ba8aa2c7c51cd60083de475d1040c297b933c4c3402ad77e5bf534bab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 821ba89e560f40e6cab9c377d3d09b040b0aa6e4bffc7c0b2e56fbc1a5a9ac3e
MD5 6ca3f7483ba851e47189e27e93536d17
BLAKE2b-256 d84f5508e2444e6d52d0ebd98ec5dd455a5bf9f06dd0d45964fb8ff1073967e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 4d435fc6cf038be549d9be6dea92452de1d41e78bcc08846ffab145eb74612f1
MD5 b0f34df11bb8a1606e71626884964c2a
BLAKE2b-256 0ad390b1d0d168f040bc992c1d762479579871077d70916642b7550a922956e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c3c210caf17f13e32c30c025fb8a1770c09d2c6ea209da5f28eb54415f8b29dd
MD5 7809d78f6e0c914a36a07da1df1c81f9
BLAKE2b-256 3a8d367864d1693dacf908ac772114029dd3046b0b7671bb71627f2cfc8600a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20f298f2dc7a4ffb7519a476dd3b5161fefb2944a0d535044053b8af6bbb3557
MD5 59e7725e3ab4315aec00b2437c08fb5f
BLAKE2b-256 2586ea855dfac635c26ead82d4be0fa2cd7e4b9f108a7fb1cb24798accd36e97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 045b1527e430bc55b487ee34b12fd5074c18efbbd195f77886050959189b4e5c
MD5 16d0e2d103ef137554e58b391496523c
BLAKE2b-256 5df39cb9ad23a9997d5b9eeaaacaff70267ec73e8179a7862c2dbea4eee44c89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 62e94585d5760619080706bdfb7ce79a94ea6bdae231fb6e1d8f14e9b22fd81a
MD5 dae6a0cc39661a965a1174aa133f2b2a
BLAKE2b-256 5b67ac1811c66f4180e01606a7b3284c70cf33feef2b938e2b24e330567a422d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 29586407d6229e4d66eb509eb737f3243b34c70b69c5d4667ff8f41f21295fab
MD5 b74ab1c193e3e434fba0cf5042041fd8
BLAKE2b-256 ab3c8d021be8a7cbda946ad34a4cf043e70bbc04fecd05663dce821bee98a37f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 14a9f07c46b3cb872a55b74e410e4bb0454957002aa0431bdd41265e884f7a10
MD5 63d3436a78a36fb113120b1a250c6be8
BLAKE2b-256 377ec0fb7c69df96af032c253a9aa3dc7da083228ad3f941a916c795b625c1b2

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.18.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 668337e4cb0b4dcad8670fbc32e97e244f71b221a849770d4cbd963f61f2688b
MD5 1daa09dbf306854f3c8a118f0ebb474e
BLAKE2b-256 37ea40a370d192dbb1370d4a47e3165825f7afa34996556b8cfe819d7655f6b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 54773d5f992925a51d025c2410c0f1c9bc84793be6f86de1b53165e49f60c99e
MD5 f9ceb43639df8cb93b8ec1cb3430c5b4
BLAKE2b-256 9f0961c5d96132a06402ee914ccc80cd025481328477064070dd7f741e7a1d1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c7753967702cc36bdb83b82dbaba9bc8c1615315328547b797e32411a584f466
MD5 943be0c10893f8bb410e8de1fd2983cb
BLAKE2b-256 4b19a6fa295ee3ad1189e08d5cd78e7d8cf06af07653cc54eb233faf8476392f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 d2a7771ce8bbc14fb655d59cd07de33573d5b71a49a99d39bc953cfc46619a12
MD5 d02dc25ec26c9dbdd9f3e581c85ec222
BLAKE2b-256 159ee4fec2cfca55ad359b6a928c54523b719c3f605fc11c8177d40fa29e4fac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 ef0edeffd97db23d0725eb73837a3d7768c5940ca6a0657409784f5389ed0255
MD5 bf342586879d8f1247d7a3c6db0077ac
BLAKE2b-256 ea3814ac7accaed3c31db517ebb7e8ffa49ab5432a9be8cfa8308a579ed15cc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 34fb793468c3ad841a825fc2b89327494c30e26f8c0c2da65d3f631c8ab48f31
MD5 f402b48239abbd0f22c2e481af36a75d
BLAKE2b-256 c6e422dcedde3dc44fe1e770d0565ff94a69b5f8353b2f3598aa3d9d5ea3a129

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d4d830a3c16bd45ec9c06c38d1dab53bfc72329fb4e26e5769e7f82f6b53861
MD5 9dd55cb82c50cc5c6fee5cef9679e0f6
BLAKE2b-256 358dc0e72c3a30e8e693572ebcaaefe49b281d0156c7395125c653780adc0a49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b3e7608c0f8cd090763c9f45f0ba4d048ef0b57121c142a10648b4cb29f3909
MD5 4f1ddd2ae812fa52d68e7a262cab2479
BLAKE2b-256 5d4ec055553755bb1a1850eb2c37f3610ece29b44d88174bcd3b08274379135b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1e3f16cf9e7c33a005a4ca2ec9fa11ec21fb41830452ca6eb773d19236803394
MD5 19a3be4e5b1619f8c13553290b160396
BLAKE2b-256 242d7bd630964699a37ddbf981b8efa3b55921669cf8c03ee78395fe560ddf25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c7e946b8ab6ecfeca2b169dc546dd8d854f0afa70f75fbecc7ba21cbb0af3abf
MD5 a744229d4818443ef33aeb253058a874
BLAKE2b-256 61eabe4bc90082af0656171b4685d3b3ef8db3c8f4b82ae73cce1bfd546a4d96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 069838d56e0bfb851902b627d73e2e940993108dc06f6b39b8781f871e1f26a2
MD5 004ebfbd3465e283625c1c7033ff983e
BLAKE2b-256 369aa784d9f5605b5464db8d096cabfa767109cac8ea2d24ed3e639c2c946b22

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