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.0.tar.gz (255.3 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.0-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.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.18.0-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.0-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.0-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.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.18.0-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.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.18.0-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.0-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.0-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.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.18.0-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.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.18.0-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.0-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.0-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.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.2 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-0.18.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.18.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.18.0-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.0-cp310-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-0.18.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.18.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.18.0-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.0-cp39-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-0.18.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.18.0-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.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.18.0-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.0-cp38-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-0.18.0-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.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.18.0-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.0-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.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.18.0-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.0-cp37-none-win_amd64.whl (1.1 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-0.18.0-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.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.18.0-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.0-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.0-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.0-cp37-cp37m-macosx_11_0_arm64.whl (1.1 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.18.0-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.0.tar.gz.

File metadata

  • Download URL: pydantic_core-0.18.0.tar.gz
  • Upload date:
  • Size: 255.3 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.0.tar.gz
Algorithm Hash digest
SHA256 0c8115b8ede08668b53b0e608e2640778b34bb2ea9032eb9ef154f9673bf3ba2
MD5 fd9afb49c304c68797aad9da50ae4638
BLAKE2b-256 db9ba1ef39ac5f085767ae34100c9bba25f70c1a4a012f8a7e8d2bc51c418ed5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 43e6fc89166ea20442f26db2c085d005ccaaf0da71a1ee4acf859a47b9919e64
MD5 ed9bd80fc629b156498e9284417ff3d3
BLAKE2b-256 5fed885b36d0d7dde4a7031719968ce3549cf186ecf7b6b3f77a22040369a239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 271e58b74806c1c2cc69d9a9ab821ccc07fe60844bc856e15bde85855769cc46
MD5 b1de9f7807c106ecc19e72ca00ed61fe
BLAKE2b-256 e48224714bd16dd60e6f43814451e4f5d1cc32ee31c70bc1494e2545a2cc0b73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c735e7f0acdab2e8e3d96e38d4e7d62d6ee93753677750b28152899967c03cab
MD5 ab731db1d4ced5e027580bac7a347543
BLAKE2b-256 64f6dac370a8d70a3046a8c2be42ba61a57af835c8822385f7aebb54444317fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 626655d4b647aa6bd44b28187359e0ff2700001d69537badeb94b5659499dd64
MD5 ae0b44f9396d8e8f2050146bbfc1c31d
BLAKE2b-256 9eac4f41b49ef6da2031d32cbf75945f105e0b9570061538cd886046e1152c9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1393c3a18775630fafd46d7596899d8a7dc92e237f40c1e6333df1f9a10144c1
MD5 7c249c733b2b5394053f173124c6dcbe
BLAKE2b-256 139e1838d4a1738e3bd136c2356ac8acdb0f7d667a33082039f806fe10609484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 57895f45e1ca13dc373e4bfee09272c2f6dc67bf481aa3cb7101d39ea31b0a33
MD5 6af4796440035fd1953995ffddcd5732
BLAKE2b-256 e018ad582d1ab4ee70a9262c29a06f649d033a6610649baee6a505a68952c11a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2b56bff4f84db6f1eb51c02d282932f1e63fe582f6f95aa4cfcc18b4e6fdf6fb
MD5 ecf13fc1765ede6b6d6ed70269f9a348
BLAKE2b-256 02c0e2e1bf21f27da5c687a48178e083416a7f0777dd3171818f2ec1dd76b5cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2b8d0066bc3583da69043992ee1c9f2d1a5148b27e79aca5dc771f69c6e0e160
MD5 f68cbd7528cc263ae4062cc02d94b7be
BLAKE2b-256 6acfce2db41e3d245abcc4b0b60f979c2436584681c2b45bad8926afc75224b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 117caef59fa5b5d75d977e30c00d6000f638ff71c92be14fb33cd36943b3bb3b
MD5 10316eece5546d83b2ccd5cf9bedf26b
BLAKE2b-256 1f6d60f4c81000f74905ee1cc8ef8eb16aa974aefa71580ac51419094e9cabd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a26bbcdab21ac19de64c46f11887e3121f2c531710b9184dc41986f2d032f1d8
MD5 4cd7a73ca585e4873a64a47469c82935
BLAKE2b-256 d67248d1e54ca2baaaa16fa5b6da8f5ec1e7057bedf373ce70860e196b07134b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f23516509e4f3bf746271991b0c78ba1f9c73955ed3c0aff2c4aee6402b669e4
MD5 8815ad9c9811d66748fe2b2173f12467
BLAKE2b-256 8978a1fdba05a0e4021f39188ff127a8e441d7b88adf7a5ffa21f34e838a537b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6d8b20dce22022271399c8d3790b4a58d53f1fe47024381503ddcdc3a05339a7
MD5 a9897d5ef164acb9bdbf5a78b55eb3fc
BLAKE2b-256 d256f80e6aaf45f8670895e7ddad363741caee4646db835b13cec8d6bed2815f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7f7da62a9544f8580312daf593d3743870d5fa2e4236ce6abd699e9cfe3de238
MD5 86f053f30ccfd3bbd567a2f8ea58bbf5
BLAKE2b-256 66534077fecf74b8bc4c6c78fbc7a7e7a5ce5d46f729e1f3e0dc1730e5519989

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 94ba69ee19d12a0b002657b26966741f47989bdae6c584b8518f4ae4c2656655
MD5 6dc4ec7e3c00bdb661ba76497367ccba
BLAKE2b-256 a5ea2f8d3a3709be99aecd0b3e45f4f489a983859579d42753763da009762748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4253192ab55f4e47d504f295969c551a694a68bd54b60b1676c8d09fcc9fd0a9
MD5 a9553e6ea0837271fc943e84df5e29eb
BLAKE2b-256 beadc5590bddd12a6f6ccc32e60d38f00e9b2f098fc515974fea3d5019458aeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63b201dafe4f5242a08795788a820d020b8d8cbb77431787c5ae049ecead6ac1
MD5 c01d45471cf565645ca809b27fe5d149
BLAKE2b-256 70da60e0f46d8964a25da4e614ca53ff60a71108ba8f79d50c0bad8aabfbb977

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f2dbac921aa9cd386b6ce6edfd6e1edda2c4b8f19cae66f6ddd2e9dd142d15f2
MD5 b738dd8ff4c6b3d9b090922c72ffd48c
BLAKE2b-256 35ea29b165cc612128acf44e848effcdcb851182b1ddf47b292f3ebe5a8ff1e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 546e1ae408eac46b580a0221c2184d23e47d9ccda4e2be7bb8e5580d45c7b1e8
MD5 d65d2a2d8e995f9301fd7440494e3d41
BLAKE2b-256 3754f97d9d4862c3da13d8406e6ce03be0fc506fe41c804b94e35c643783cbd4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 69b947d99de2955cd2909b9906744f6707f00e0df6683d48ae390c013560bffd
MD5 758f274b51de5facde67fd0e60a78915
BLAKE2b-256 704260328f6e61aa90c1a3e2291f0633c3cd551e2446409f9df0e26ea9825a00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.18.0-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.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 d7d8c9e2b82ba22e543243dcfe293971dadda7d671e68d2ff7634cc93679a5a3
MD5 17d68e1393f7e730270c12a71a4a7deb
BLAKE2b-256 2f3a2627b16785126df71ca52f0294e5ed096467766d9ed7eb581c08468e57bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3dd056cdba8dfb7ae532f67c12beb3c5410b83266c1902ad0f77c65285b40c38
MD5 85cb99cd9020f5d39fce4fc123dfbf72
BLAKE2b-256 dd0c63ef688bfc4c69ab1c8d52886d7aa1113a627c86eedd4655a48a914e1a55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ad100ce98aea319b291b9cc56ebdcc09a156ef3436567b0d736bbd20076dfd0d
MD5 75ee8737f9e9c6c6a1c11386945f3213
BLAKE2b-256 42924b158f4e19f6c772675abfe655db4b2fd34addf0124179575073b4b7284d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 a11cb89b6bd4d0a5fbb855a00ef43b94a38133b219422990d7eb630816f9ee1e
MD5 d7f56607a84680082763f04a85f26541
BLAKE2b-256 fc5a5330371badb6ad7c09f1248283931bca9ecb8f6eb265a30d495393b6b55d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 9ee488388948723b479d63d4c433d7b8663f5a0e9db8bd73ed38a7dd8ed0938d
MD5 35f5cfd4211be5bad6c0f0789c9d579e
BLAKE2b-256 506a7f1d96690986df2a3372e3418a3d0d168608ad77f93cebdf773c4f193dea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 9ca568761d191e129e44a7b1ce43e285890dbafe47a61b0ad32657179a5046eb
MD5 d2f64eba62260963ece3b0ff345b3149
BLAKE2b-256 a91514da7958b998ffbde3f4bcd594c5a595faf87e836efa33ebf18ab0712cc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 531069596d3f9213f4a13008aba5befda4d3a08e5226df6e93c2f5b7a1034a1a
MD5 082553085a6c0c6afaeca8861557054d
BLAKE2b-256 b0673c289904752298fb81bf8becd78cf2931375cefa568af83712aafe388baf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4fd42c16fe630fd67ede35ad52cf16779e3b903c852b3fa5668d52c757e1d355
MD5 b67242c34d32b5b9e11b18c40ded0def
BLAKE2b-256 a07632bf71a3881b66da923c34c0af5fb960078679089266c590931d65f682b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ba7d4a4ecbdc41ad1e458941ef015df92a0c0aedb028c7deb0cd22eaa5dbe60
MD5 78fb3bbebbe1971edbff2d91b3d6da62
BLAKE2b-256 56a10c8c5eed14ec795788ce5b835f84a36a216b604edda5ec6a64a254d3f128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4bcb34d4f5f154d76b1f9ee5796bbc51de43165b3222bf5c6caeffa3f3b01599
MD5 ad3e011a34d1470e0ae5e6b0cfe289b8
BLAKE2b-256 add1f8a04bcc871eb30f0baeba44eec4644c48b8557d217c1c0a87637c7b56e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 02a8e29fb3641574fd39112474e68c52d276441bab4bbbc08b795dc49221f3cb
MD5 8e3a635e97fe1d56f19c177227151189
BLAKE2b-256 2d7435a0f8dcdfeddcf49e7657c7d9ad2751c383a52ec2ac913f6b38473639c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 76a3a02c1d638f9c46aceefc71242f71b280b5eddd21da0fb715c9ff2bdf7f01
MD5 4a8ae2afddf7064a4c46ad5e12ab198b
BLAKE2b-256 ed3edf56bc549144677f43a334a7f72465271933854f08510bf5679a4ef06d9e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.18.0-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.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6ef0891ad1f467db810b4f8152723cbbaa00332e4965d75b38ae386a15c1b59b
MD5 794c4b41052ee95a2079fa5e38d120d2
BLAKE2b-256 2527fdeca580ce8e619623d98c9e32fa32087321e718e7359ca0a625d3c0b8e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2f08e499e0d2f142378dd23e28015e438bc17a2ab3015866bd8e21fc42bfea14
MD5 c96e062beb4eed274751d2035cfcf7f4
BLAKE2b-256 08dc2827eaed8cdaeb10c0a1c427dbcb8477c7bf3c617c8ab9ddd3c7b1e97331

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a9c842952b3b3bbc0f841e3b7928503fde9a1d1723b6b9b6d85721de46b5ac65
MD5 a16975800de0958f081018bd666f63f4
BLAKE2b-256 a928577a9dbb23908ec14061f4936c64966994da63a64a4296c4be2d5af7b384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 15fdee6d720c9085c338658c38ac89c26a59bb8c4c8ecfec5dc5009732487c9b
MD5 de995f247375fe99d783f03d12cbf579
BLAKE2b-256 c7d756fe900a33cb034f1786663dca6193b38c194cb62cf3fdc62984ceb51a69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 c16ed504e8703cb5f16d25b94c8824b860e23257220d431efe22d74df2ccb12d
MD5 d9e2931f673ecf3a583357b36ae4a4ad
BLAKE2b-256 5f29612c30e434548bb858fed61263c4b45c7b26f47eb3b2be2b4161d2b7f2e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 ab7c2a1c30ce0549f35034fbceaefa8d19a68f6a2816666cd11ac46e996a8a11
MD5 5eab50d025e0b69abb83b9d9e1f355f8
BLAKE2b-256 33381014c36ac084cfb5c3dbf46861e824e465cb96becaafca0049c52234065e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 420badfbc6ceab08dbcce25fe4ab3bee6cc84e5f36dd6f86367dd2b240a47e04
MD5 77bcb916307c5cac2f2283e7d30135f6
BLAKE2b-256 e1eef4567458eea95d080871b7d5b90f2bc3bcae534f18895adec10abcf92662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 814b76e000dedef3c176e8b3363b154844133239f6b542a519d35c264af58534
MD5 8c6bf12970b5496f9146e45868ad0b44
BLAKE2b-256 6e18839290cedc83b26b786558c50a2c27ed2b81d2441aa938be0e7ffafc7f60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b6fa1a622bf7b1ced5c89b40ac666a776cb534cd35cc37f654f7aeba671d4efe
MD5 0556d1b24aa7b220fa7b2a90671a1d8c
BLAKE2b-256 4d898138028b413575d10f7bf133a781d38f9ca0eded602a2f7227d768add72d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9ed342a556760b30212b1e39f4eb99d5c531313e5c7f0d51b0a49ce1da61ed9
MD5 cb5b8e2c3c0cdbed3f6c3b1b96454dad
BLAKE2b-256 a0f6a1fa5cdb8afe469c7a97d120ca9fedd4386e09a809c36a1bbf099e1330b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2b33586d1f903fcdcd7e3a2f1044f5d1513ff8a02473a6ebed5cdee8318ed569
MD5 01dcc9c8fc2dadd9194c6e66a0a885ac
BLAKE2b-256 f36388798f94ef6aad581790a16819e270b549a2018547faaa3c44fdf6dc54ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 22129c1e6a187e561b9c14a409d2958ee1567a76c36bb9c8c600e6c58cda2c24
MD5 01e75e20685419e5e3668677b99a5c13
BLAKE2b-256 887d65946e79748ccae2bb863a718280c939fd3c2bb58044a2be0609778f2abc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.18.0-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.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 bd0cc389810e174594960d756c07bc4f5b8e6d6a15e039894c9e67d267736990
MD5 4044f2a10c4923a7a0d34186bf8e1f1e
BLAKE2b-256 fbbdca444153d74ebfaeef4234b60b2881a49a95fe7f2ac49b3cefebf48cb1ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1797fb997a53dfdd4d7ba7125d854df4c466aeaf3a46fb5fe7f4bc97a408c895
MD5 293f52d4381a1995b08bda9a95c81533
BLAKE2b-256 44c2d538d327308e72f6e78c872370d58ea2d4cea625b443835441148f334545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 075048dff89fd469320f87813db9fa632fb0861b6cdaf645d10e5ad9984007c3
MD5 ce1c2e6f52f1263acd1fe7ca2937bda4
BLAKE2b-256 894ac3e24f066ad75671e7645c930f2940056206b2c94a165e94ff77fcf0372d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 df728b223cab2587d3b6b8661a02bb5862dcb2e3abfae9feeb22832dd81a2cc6
MD5 c0a5085c990241875cd601494b666890
BLAKE2b-256 1ff03c131d1e5a829e1652703df567cca12f297b4954b8e0a6e846b8d6bd0090

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 b3ba52eb35414ed595669e6d9bf9440e28da30467484f2ca5bd7bd8dd4b185f2
MD5 faea9aee26026d8b8128444e24441b87
BLAKE2b-256 07e2837d37ed9f2fd5901a53fec8f8f2aaeacc48196f08dc7f0640089a6167c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 0856426dfff31874c524e40dc54380e5763857338c3ea81620b2b8a7dccb8790
MD5 211139472f816984f716552233546b01
BLAKE2b-256 70b7ec1b1be1d875e3b3caacf9b98a033e70c1423096880d9c7d0d0c915e2ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8582f5490df8e999394b51421cc53cb7470f48d79b11fd9a13fd3d14944d5220
MD5 d622f3ca52018d278bd9304c315423d3
BLAKE2b-256 ad76d24feabf01f53565acd811d923a5e36c9b918842d05e5b3e96817fe56ed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1092848ab71fa3507f124ebcd5552b434c6bfc5565cfd489549c9c75200efc65
MD5 3c1063b4d23f908691f3ac867f02f724
BLAKE2b-256 536ccecff75966b0b4084294444e1c25e2bb523baf2967c3908ccb3f8f83aba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 37265017a84abde8746b11c82339647084e959a916c26e3c9ebe2303a9ed1e56
MD5 b1ecc6cf18f9013df25f690d350ea91f
BLAKE2b-256 b5ebc5b160569bea887d08944a524b895878ed37a4d7d332242a8e740c3a547a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 38f51b9823306af32cd9077d9ad9c53a60db6f2603cc4c43e845d4f4ab2009a0
MD5 fd3f0eda0f2428fcd8413c9ec1d2308c
BLAKE2b-256 437890586bd2dd931c0c008a93495b782a0e057fd57aeaf6539b30183267e80a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6ddeb03ba26a0504d0bb12fab0c8ae3fe66f38921ecf952a9f604c794a586746
MD5 1faa56efb4ff0d37acb326503a6b15da
BLAKE2b-256 895e731b4137ffa32b9e000811337170919f528fa6d2acba79c6b1b72ba555ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 950e244f087bd2f4160327bd81826385a25659d5c0fe4a1caed1ffcda31681af
MD5 b7b489816615eab816823e1fac13b2c7
BLAKE2b-256 daada024a0f1f7c19956b37f66609cc4c3b3d2a149b5e692ad3d517499803710

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.18.0-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.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6e60fa797440666ec911bf5ff1199333c84b9179fad8dde5ca5384d31c794962
MD5 ce2cd8cc1e5c14de8bf5c5bd550a0b49
BLAKE2b-256 4e57aeb035819ec6f69f4ba001d07c13185e231db5c234a73d650756532da019

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 836cf48f3d735b19fbf1e596e4fc70005247284241f358c251faa6cdd1f1ce09
MD5 123e62c3d8edee3d7b232402acf9a422
BLAKE2b-256 7101fe0877fa169b7654f45213dabed28fdde8357aba8b36acc27ba3ebb78d25

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c9a4a7888e5dc79a09088f2e8219fbebdc89b57d38c8afbdaaa72b76aba93e07
MD5 457de0edcdb9453768bb58d49acf053a
BLAKE2b-256 65983f6937b782f66addf3104afe10dd18d17e53d6cda3c07f6533b65be52eb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 22f8ebbff1b882a02ccf7f74e7b24262196210db469a5c510dc6a3fb191d7b9c
MD5 d160dae17a1f993744cf2ad0cbdbe273
BLAKE2b-256 4e408d6dc227061b339ee4446887649bb2ce48d71a0bf9ffec8f28599ef3fcf1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 57c982fb8dd59d24cdff1bc16b24c6850e80c6398510e2319169261e321f2131
MD5 5dc6bdefa2ecb9363f8e73410157c95e
BLAKE2b-256 dcb9067cc0ebfb14e4bd8ac6750924833e3f4878afde49f51b498bd92c02638c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 595b8d7bc1b25830477a223bdb3a1f21231eebb333bb8149f0a53c8417bef6ab
MD5 2a0e409467d762710105afa8c69462da
BLAKE2b-256 4f8eeeb3baba1447b01ab7db9000298cb69ae01ff456f28f068c81c4226bacec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 21dce6a046408e3225a57d4c70ab3d58b91018c048644c663b389794bc118af2
MD5 1fab9a132bc2eacc408154ef6d90004c
BLAKE2b-256 89ec555541208fc6ae4444cab242f47968a5df94764d38001eb1d4142813d4df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0139988d3e95fc0de3005c39086de6e737f730a1f8f7bd679c8af55ad9fa9126
MD5 8a4cefa2be1f7dfbda54434a288e0e5e
BLAKE2b-256 f26e0c3f926b4d5ef2a00069810f50c08916fc401c4c9a46ba1126e09dc9297e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c62e34d36cab34c78467d97f76e240612871856ae821deccd708c7db1ab6bfd
MD5 705e45b246c278803ff1fd598c55b818
BLAKE2b-256 ac5081c8de47c8a51acca1efe3297da9b86e239ba80c77d954ca8292922c544e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48ea8266a6985e980ca0ea6279b52c83f9f21aa7d0418f42f0cfca6974af301f
MD5 fd7964dc9e75eeb50edc147cd13dbdbf
BLAKE2b-256 745af10ccf6c297b89843f3aaa0da47543e2e7b863ba849fd60960925a21f36b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f62742e3c1881df2f87f33935cf466853e653a65a8d3d71de1fda2a0d67e8e7b
MD5 67b2d2582a8cb0f1b62f311a83e405f6
BLAKE2b-256 09e6c0a48b23f8f8b7ba9df3b2844e1771336eb91a7fb9594bc6b30f1f62bfed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 06ca2484096b8d3626997b885f65793caa8e21fa4ec72e189fb3377dfbeadff5
MD5 e1e8dc607b207801e952bf7dd64fc3b0
BLAKE2b-256 0e90bb2e418297b569d244f18c82f8c3e13b8d97ec8e0778eeb4412b74fb4ede

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.18.0-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.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 b90b4e4e38cda3ad7a5494ae03a3f9836287f840e71399862ecf2a9c7e3e44e8
MD5 08d48c98b5b88cb4277dd582a31d1ee4
BLAKE2b-256 ec5139e434b56b8981fc8f227878c16570549079abee64dd006d4b70abcba377

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 09ad69cb4522e26988574d76fd7e8da3296733679f150fb3d08b9eaea6652351
MD5 83b8e5672b756f7f391ab894a50217d3
BLAKE2b-256 4a1948a6a5feb8777fefb1305edbc62d7ac3205cd24c9f8d5914cc43d20ce846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ecf16ef3b5f1569edf5b487be2b73a2a8060976b09b20a0994614136ddf415ef
MD5 a574c479af8e5ec184d0e93ebaaa55e8
BLAKE2b-256 f00469d6e67f4554ae15ed9c60ddbf64979e18255544cbee5591bff0b5b88d69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 c43be6c43742744b700756a0cd8456a098fd17ba48983e7dc76dd88451af4f79
MD5 0f968e45aea77184e5dfbc040e7e643f
BLAKE2b-256 5e244e1c3bb744868aeaea725111611228cf2da1a39bb6ee4bf00dbef9210bfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 678a5da16feb3d98caa6155a3cb41e2adb6c27caf98648b853673a51984fb214
MD5 8b501d6b583f23922cf090e267222fcd
BLAKE2b-256 81f5435448ec3a27c47e65fc7fefb7ac5e30a9b1f35dd70d6261df3d5095ff9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 2641d94514b7b05d51bc029a56d8ae6332735f6517b02e4662e08d21fdcec6ed
MD5 101888b8812b8ada4ad3e0cbba7982b8
BLAKE2b-256 cd27b303ed70d9151b24ae29aff1c97cbe76287ae69d1b6b662c804d9dccb038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d1faebdda813e034f950ca331f700dfc4a7a8a1587a0d8c8b0362daadde725f
MD5 ba4a26f1b2fcd27dada0e3f148d97bc9
BLAKE2b-256 161e981cc936dddb3ff4ea0e8ba330b9fcb132632d4a43ae4e04acd74a7a361c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7fc31f1b7c08b46967649312f19fcda1073561e2abbde3005c083dd8951eeb2
MD5 d8b089ab8debb59604b6fe993df0a110
BLAKE2b-256 af07187f9f756b0d3db04bf8214f6d2be18eff9bef890a4878ef2609cd0165f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6444df9b413b78e3e887b74afb6b008fa430e7b366babfe095aa5a508610eb3c
MD5 2a207b4fec429c00b65c5e7bedb68de3
BLAKE2b-256 c4b7562983fb051d687f585ef6d4db207a9568bfa0e0549e4ff39129136130ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 516bde790f7512c3590506f49bbface4ae644ff08dee558cc10ace7d80404df3
MD5 e8141686eae793c956ee3253017d781f
BLAKE2b-256 c154737a0f6899de73e6cf522b1ea413c85d3345d526a8961b4719c30ecf9c41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.18.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3504e8c8cf75fc5d9dfa3d8f18b42317d01a126dc353d0ae6ec20472729ff8c5
MD5 04ba8600ade215523c95fc236ed1f3e3
BLAKE2b-256 da189a4e2493cb7696a94f8280e2f086d8ddde264db44bd3c993dcd90cc98720

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