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': {
            'schema': {
                'type': 'str',
            },
        },
        'age': {
            'schema': {
                'type': 'int',
                'ge': 18,
            },
        },
        'is_developer': {
            '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
      [kind=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.

Benchmarks overtime can be seen here.

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 design 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.5.0.tar.gz (148.5 kB view details)

Uploaded Source

Built Distributions

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

pydantic_core-0.5.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.5.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.5.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.5.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.5.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.5.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (936.1 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.5.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.5.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.5.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.5.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (936.3 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.5.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.5.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.5.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.5.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (937.0 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (851.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.5.0-cp310-none-win_amd64.whl (760.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.5.0-cp310-none-win32.whl (706.0 kB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-0.5.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.5.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.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.5.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.5.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.5.0-cp310-cp310-macosx_11_0_arm64.whl (851.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.5.0-cp310-cp310-macosx_10_7_x86_64.whl (935.4 kB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.5.0-cp39-none-win_amd64.whl (760.7 kB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.5.0-cp39-none-win32.whl (706.1 kB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-0.5.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.5.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.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.5.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.5.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.5.0-cp39-cp39-macosx_11_0_arm64.whl (851.9 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.5.0-cp39-cp39-macosx_10_7_x86_64.whl (935.7 kB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.5.0-cp38-none-win_amd64.whl (760.7 kB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.5.0-cp38-none-win32.whl (706.3 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.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.5.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.5.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.5.0-cp38-cp38-macosx_11_0_arm64.whl (851.8 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.5.0-cp38-cp38-macosx_10_7_x86_64.whl (935.4 kB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.5.0-cp37-none-win_amd64.whl (760.8 kB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.5.0-cp37-none-win32.whl (706.5 kB view details)

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.5.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.5.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.5.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.5.0-cp37-cp37m-macosx_11_0_arm64.whl (851.9 kB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.5.0-cp37-cp37m-macosx_10_7_x86_64.whl (935.8 kB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-0.5.0.tar.gz
  • Upload date:
  • Size: 148.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pydantic_core-0.5.0.tar.gz
Algorithm Hash digest
SHA256 990cc14823205a65b9bd2f62b3c46e8d8245e5f7a2fa20ddc38e97140f8c82df
MD5 910a4769de5ef8abaec56032ac91f56a
BLAKE2b-256 d23bfc9f405d3d416345da51a3bb12d64561aaab283e01268dc80a700f373013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bfe2774596e3ac989ce916b4c231b35a707b91c1f0ea3b866c9e5452e4ad41bb
MD5 c09232aa990cab0072292a6d8ff5130e
BLAKE2b-256 82b9a4ca68c6fbee87e39befe599cb4f68408b942191b6d7a598b6d6edfe8e9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a2e14fcf4e5190dd96c5da7a0e7d67cf20f23a6744c1a17ed0061bcfaefbd1a3
MD5 a91ea858cba025963a6f13aff21a8eab
BLAKE2b-256 e23eb363f722b3a2d06d815580db251323d4f03cd3a820d6a251e8c61d1d6561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e18b8104ad3769bba7f8905ee5387fcb30efd5976de0d5ef235fc5f684702f2e
MD5 7a32ff18dd5b1cab12f103e6d80d98be
BLAKE2b-256 1e6addcdd50519d996b4ab8035ea483f198281d9689c6d2c53aff6e1a1ca7820

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2aef34bf7a513245fd4df4d3347b8a37068e44b0aaa4f154cf0572c05322d855
MD5 ce3b39f5333e80738c81ce2e91d71a30
BLAKE2b-256 53f27e348d23ed1ffefbff0141eb41d7720f69bcc685a6edb8d4f88fe0680f84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a17860426787014c7d58dccd5a5417411b551ef59b4c1fc6618a4458920cd026
MD5 7cb2969b10ab61ff581e9f31aa6a1083
BLAKE2b-256 3afa95120dada6cc6d483b377abde7ba8bf430927046ab3daa1d839346b188fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 303c5c8ee89ba7db82e1af3b298d6e9637e8974e2ca4ff6954e294ec6144be0e
MD5 c3a66fc4306fa4ac9fca5af072deac53
BLAKE2b-256 6f1c8d4820a43501a497367795847092f88ae589ed4615f283b4bb9d5775b1f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9ba2154e94bd6f275fd8e34d001b4362ba44cb10a90e3965e466d23abb8a65fd
MD5 bca954f3e4a6302ed7ed402d2de86ef1
BLAKE2b-256 a5050cf65e2132ed839355e3f27e296f019b3cb36ff8b691f56ae44ed096e216

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7188d757d7d589dab474f2db34449b6d20416c615d75bf183427d43208e89c10
MD5 bd1a578fbe8c73b14248ff2ca0dc2333
BLAKE2b-256 96244df5df8ca471236b34dff5c53bf37574f7164c33f227f0161c4e74cd612e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47778e5539a1f3a047b739a648824e0153ab12f265818f94160733c4d1504ccc
MD5 d0ee0ace225246c51153ad4650bc07e4
BLAKE2b-256 a8fc3a27264da4d23f8a61270b47debad6527e7ff1d5ccbdede3527c19e762ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 544d1327e640a1c287f5bf51709c4dbfe4b73cd80a0fb5f4633268d3c50280ad
MD5 45b43cf822947871f8641d03b4c6368d
BLAKE2b-256 c911e400285c59e9b0a47c50326488e055df0953208406b7391acc761683e6de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a57beed88b7f04028be813ca1e96ec016dc4840e53454c9c93f1c20fade1c57f
MD5 9dfcdab6a8760babe636777bc22bbb96
BLAKE2b-256 7209961e6160bcee532ecf3d660f274141b07d903697a5a56eba594a1ba6096b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3a208dd31b86b7e6492f26a9fed61fe1d46e5debbf53ed196077403a7592c392
MD5 b83ca4eb98c76126e930b29ea210d13a
BLAKE2b-256 e61e2806774fb4cf6d593144d8671efa520fb35cf2bfaac694a84bad8f8475bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d98a012f2e412672a869eaf348bd9368c5241e647634a3ef2de42d0678028c64
MD5 2a687eba945f5419010df7154aa36194
BLAKE2b-256 ff02d195dd6d0a8cd89dc7fd0ef5576bb4b2664ba6b88187b1644039ac6e9d18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 445c95b00c9680255074494c7f0997cc200ad02a4b92de4a57e44f9aa23509e5
MD5 caeab2b5e308198e919a2f481b106888
BLAKE2b-256 cb188ac5dd4fd090d7fd7cb1a11593e79a1d51486605b8e7fb4d1bf9d02c519d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dfae0b1615710e6b351b40ea7d7ba5b5916f259a17e5460b68528a072148da81
MD5 b74552c715cda66022f87e4fb279afc6
BLAKE2b-256 75049ef2954f9c938453d0522a1430b50a02b71bee723702e87cf3ba678683f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4317abf3b80ee2b8fb86a078dcca38501fe41a722f6b450e1af79855fb00bd15
MD5 e749ebb025699eec31f2d247d7d581a4
BLAKE2b-256 f961259e3c6ec0ad272a084440faa8831c37ba18601723e40d2580c06aa75f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 78de9ece6236cbfc4413d47dfa1dbe61e1fcd89d88441f2ef6db82512a76e214
MD5 fdf22eae70652f41ea05d708bb183aee
BLAKE2b-256 2c827a8f64a3aabe5dfe7b0f248990dd67bfa2cb42031570f284f8c6e283d7ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0cef8a48fecff8522df10c173b644ec05baaa85dd9dc55a25b25d6a9e1d6d5ce
MD5 670759bf018251e942d20832d809eccf
BLAKE2b-256 c2a896412ae4198f71ec2b236652ae7ef138dbca0912d8d45401f0ccca1247f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 1d4db487f944bf8daba5023d06f9a51954a1edf2cf5e8976413d230f547e7528
MD5 7ee6c4a0117e1462a73c949627d0009c
BLAKE2b-256 e71d59bbfd82224cb44f484686affa47d91d25097b398da96a80d74f8d7caad0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 616f166b1506d9cb715b3641c0e593231af3d983e4d66c621e1dc738ad2be2a6
MD5 a28f6376c94fad161e31c525039f56c6
BLAKE2b-256 dbbd7cbd0a2508aa0f60d14b63cf8713312f5cd464c0e3c4a056e4937ff584b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 899744ca683827966c29f06f068f9115d7cb50601d21e6dccd0844df4d98351f
MD5 c9459155966a3b1f2ef0b0e96ecb591f
BLAKE2b-256 2a2801acf834f2c757395f2a9275a829d0dccdeaf19a9ef3e5c04e1bd42e419e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.5.0-cp310-none-win32.whl
  • Upload date:
  • Size: 706.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pydantic_core-0.5.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c5d7c908702daef3b423f1384b534036fed453459b9d117358590175ffe98055
MD5 ad1e6a120c17448b70373a3ba6537223
BLAKE2b-256 228521f394499894de51a523d4001abc4ff8ba9082a64f9910cc5821bc20dd96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6679345da2330cde3c983594444e56dc8286c2dd09e7f179a0bf829f2caa800d
MD5 f0a27675479a266a89bb13ccd69988bb
BLAKE2b-256 4a8582f1bf0fc8dda33e8dcbb93b995e0df9d59fb28658f07e9dc2be05cfa4d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4a3d71bcfbead2b076ec0cd71b8bbfc6d466df7d7dc08e9b457ab3032a12dbd1
MD5 add7a1e0f5bc7d2e60f7f57f3d41e02d
BLAKE2b-256 494638b25dd890a58085fbeb6dd1324b2f87f16b8ef6302ef71ba699960a9218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 a3a6e9cefc986aad5c6d9d66290619d7ae58e7011bf78a602ca1f6e4963f513a
MD5 a78e208a69a55c0999b2bdfbc2a68e50
BLAKE2b-256 993fbc1a2c6140c6e83e2fea4f4caf85c3fdc667c615809a7f747bc01b2e4c51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ed14ae6cf5ed209614d0fa75834e95a705f7fd5f57786663723a54eb0543a0c
MD5 2518e8f14fad97cdff84667d469b4c95
BLAKE2b-256 c0b565dfe4feffbc00f41f6677f3454b6cff58687e64770f5ea533a872834b8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87a55da455bb58b891ffa20b222b8a1e3d4149bf37335351d590e408a1fcc433
MD5 50996716e2ca844eb90bb2321bece76f
BLAKE2b-256 011df5159594eee7fa05ed38de671060aa713fbb3b09c579552e1ccee02376f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5c5e5d07b75f6901a704d87d58854cdb17e325b1939adc4e1ba49d6dbf331fc
MD5 dadef7727eedbcfd78fb976a3b756e5e
BLAKE2b-256 7bbf656ff0492a56c1bcb4fb31e5f9dccc8e917d77344c0da901d9ade084079d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 702ee1bb5d84a70cb8f8bf1be4a3596c6affb02448e975dc0bb3782678a054a5
MD5 8d84f72c8834c29535d63c68fd77000f
BLAKE2b-256 3276e9bb7102754a6119d0ced8dc002b7a32a2ab091d1e866168e6494508c507

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 983bdd7c26ca551dbad1e30b49bd5c78b4e6d6c0cd0feb688bbea5b28f19590a
MD5 9afa125363ed65f93ec4b57cc32de830
BLAKE2b-256 ee7ffb29e5d728d4bb754ed5aaa73eb0542dd31e6576abc9574aff31c5086f73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 edcb320e2551c03faecf1b218136406fbd92cce67a7fca8252725b25fb1e2132
MD5 30d6d7033154ae6f62d2a9813b420eed
BLAKE2b-256 3872f9b25de73af2d83db328844a52ecc29b657a17cfbe0f89fd19919d57e870

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.5.0-cp39-none-win32.whl
  • Upload date:
  • Size: 706.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pydantic_core-0.5.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1501f94c642b745f642e402ddd6e0cba58e3bdc50c741cbc1a9893db73f1bc2c
MD5 23f2a4768bf3a5bca80b0a4a27dced29
BLAKE2b-256 d17f0663d5336ed58e800783cead00734e6a1673c581743d2b021862d13d6f14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1d4f88e4fcc68efb1ff327235e3c9eba4755f8d58c054a65e487b1fe49a1e0bb
MD5 d6bfb0b9a91cabcebec0af832695b1ba
BLAKE2b-256 19caa49688a7caa8bc6b2529b4b3350ad3431423938741d4c629279d58ce7e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2586e259981174ad06d8fc26122b2485d93d8c6b5b4d636fbf135b9bfa76f823
MD5 18b06b2dfb1dd624bc276a7fde52b031
BLAKE2b-256 521f5d62d9c091b1fad394aec9c30c1437e90f3d62163b56a789f9b0f5a27f9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 1876f6ad4c2d4fdae75f289ca373594c9cfe19fa2204ec022fe6e60f4933417a
MD5 86fb71add54f1a4e5aa2b2a09c6b4ad0
BLAKE2b-256 b16b8d7a95e6a44943066d614ab40749d6e591a042b37ec54d79f66c9ac9128c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0f53661ec8811514790591ad7efedf798526461c05381acdeacf1575233a09e
MD5 5339fbd0592b499c9396919dcefdf521
BLAKE2b-256 0be095015ffd4124dd70f9124029744b945e98ffcabd731584eb28f383add2c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cb16581491a2684a60d337d1c215228150805278c13a7ac75f4c36258f669df
MD5 032219005fec0696b6b841baa4de6039
BLAKE2b-256 c41306555e926c2969fcf92772ca21593c7825e7dc4d40611b004d63c4bcbcc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d4b241701bbd4d3e090583ab5b65c7ec36623fc083081e55519f2d27c4e282e
MD5 90357db7362b13c5145ceca0735b6ea9
BLAKE2b-256 8d1f3fba5a681685f59ba35a9d34528006d868f5284ca72f54fc437198314376

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4eb6e7a24b76483da9936cc75b64bcac0ee1a81594bf886d3ae569b188e45bea
MD5 60a5c8da203e62c0701e3ad8dec94927
BLAKE2b-256 16da7975930ec041b14be660499decd5996a92c557e2046c4398509e3f733b6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9306533c6251b8614f60946c8cf6e277339501e43fbbf5a18e897241ce4fe774
MD5 ef8676fa9b7951d407e86a5f812f1dd3
BLAKE2b-256 74a83e9a71ee3657b83e02a1162d3a11c2292ae7c31529207e15c55ebe303350

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 5352bfc405a32e8421c16bcb5a1cb4a2ffbe021ee7be22b4e6ce74c29c838eb4
MD5 fb80b679be998516f23a01e6b11e947b
BLAKE2b-256 e2ad1700956c37b78d43c8a0416df3a6429860045bc1b64c4fea815c3a2903e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.5.0-cp38-none-win32.whl
  • Upload date:
  • Size: 706.3 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pydantic_core-0.5.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 2f13197e9a5a25874cb2ec8a4cfff566987857ca39d5f0224b0b6abbbf38cbfb
MD5 cdec079eebf69a43766b7d7d00b8e897
BLAKE2b-256 be4ed1bbbd785b34928736be66d681bfe1d9d33766f7e3da81b83ce47c2d3c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 93c326b16a552f7008d9cf93ac6d94a607c264955ac7a26fd4cdb185c79d1590
MD5 90da5e5264431a494b06641b4728d3e8
BLAKE2b-256 6b24fdf7d30605d27dffa9e62103c923c1aed382db90123ee2714357815ca108

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 99c6aa902ac81dd52c59afd91b655d37214f70e25a21edc1f9e8e9ee29688c23
MD5 c2d1490e995989fe58147599f8bd56a7
BLAKE2b-256 c17edcb6cb337c290a5cb87e0dda733481f6f203995d9a604e15b8eedf82c500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 6d23b9ba54aee8cd735b41286e6285e0a71512a4c92409596f88e344d831b12e
MD5 e41dfd7f8b5c2d46320934ad893be5af
BLAKE2b-256 b7a5304ff24bb9daf6b0ba679c19652d2282c47c48018b7957be87ba47505985

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5efdf54b3de425fc7adfdec78582e990a925fa5c7af83d448a1031baee5f951
MD5 ffc0b606ab2729a11d4e46b01445437d
BLAKE2b-256 769561324773d1cdd9cc35d5f0026ab3a59c09d47543eabfce6644561d44b9c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c1adeabc228d0e7820047a9aedd564cacfa4dfd1d2b00219a359accc12362d2
MD5 ee751d7109bb0c9b61325572c0b9eddc
BLAKE2b-256 9d3138f0607270b003a27b0d7cafa708dd362d2d3e07ebf461ee48b704b5f665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 592994c4e41427a1d62e271d32e5191b496abc0aa5e2ffbd2c26e744f397d419
MD5 d883578d8c8bf1ff2acc7ad1d67caf63
BLAKE2b-256 fb61924b8620a63b22568ebce36d22a74a8f1d68768d8475a578627a234d8f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a77f5f639a9c1fbc94d02d5dab670dba9eff20adc702adc405914b048e90dfe7
MD5 550ecd80b271cf47fb502db981dbfe8a
BLAKE2b-256 bee0074b53d8c032df118f5ac23f0c667468efe06543ec246f5420300a1cab8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9bd2c3866d72233a8c0a1dfea6171e69485d4a6c58638db08e5a6adfb25f51b0
MD5 3e6df0d842119b4ff02bd881d55b90f1
BLAKE2b-256 9615e2f53e7cdf800d88c247d6e539a2bf3dead1d6b79943472a1aa7d21c408f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 d670fe9e0a2f1da2f70f7258137bd97bf00944ffbd187ccf7e397097a0592a47
MD5 bcf8e37c0a81e726df5d0ca725dec597
BLAKE2b-256 fa348d77b6a52c296b76bc5723917f806ab28522e8e841ed7a19a063a1697fa5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.5.0-cp37-none-win32.whl
  • Upload date:
  • Size: 706.5 kB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.7

File hashes

Hashes for pydantic_core-0.5.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 fa5de0ab0d0678b255d2963aa776eb271bfbb92e7d62410372daffc180d0b150
MD5 b8517e52dccea58bd15ca8d1a2f4d614
BLAKE2b-256 dce4b80b6c7c7f2031a255bf3c16e80039444c7e03080bb95f9bd5e9b5848ce6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 95a48cad0821669c1c32dc3cf9282bfe2127652305c21a9fe0a97d299c2db7ca
MD5 9765c0f852e42c81c6b427c645dff7e4
BLAKE2b-256 01afb8ba535127c15b5108bd03ce457278a550b80cf29c6ae6eee5e9e2e1d577

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 129f4c9706b71dc5b2407f2cf6dd2d2f7b9632e5ed6dadca170e8ff6375ececa
MD5 f0d2613f8496b85cc9ab0225d82b9757
BLAKE2b-256 892985c8d59893e915de5b4d63db1a8e373d2db52e0054af38303467c35e2460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 4fe6fe4501935e6df5d0950e7963d4003bc2e5b3d94ffb06a85cac9914d98642
MD5 0b83fa84c2c7318b5f1c802648f8f4c5
BLAKE2b-256 2842dab5ccafb1466bc33c5fb85183802ef3fbd2049cff86e4e42592f237372b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 eda4c93ba560de6b1bb29375aa1fc56176226e75efb2f520dca8fa11918fa1b5
MD5 61bf82acdc5ecc1cbcabeaa7b56d0b38
BLAKE2b-256 7c5aef515a07919beda613bd377071b038d963de65a672ba14ab3338d5b2b643

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 febf6c1e94337d50917902f4ebcf8a13e3cab493a749bd4710d83788d547a0ca
MD5 d0adb18679630258a52ed77450631b34
BLAKE2b-256 4103c8093a1f010f7c1187196e54224b261c7b5f59a6ed35b92aade340aaa24e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e8a218f84864954c969df5f6046cadc297be3786cedcaea63b9105be6216ace
MD5 d9310966f80323688005653d8c253463
BLAKE2b-256 31be9083355f4cac36e213b849c7be8fbffa6efe1e807768f0ca9f3931f00e2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9f7e6d31af3f5d38fa7aafcc779485854c98b327c0800100f99948d5658dec9
MD5 07b840737b211df5e711724b8d6a4be5
BLAKE2b-256 0a25d659aaa110f86140da58cb4ee19818b40f280c9054265a77f38d7daf46f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.5.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a227dab890f08967ae0e8d4177472d3f5521f03cd884f911af9fbcec86956954
MD5 cc8be136904de8216ab5730da1fe63b1
BLAKE2b-256 315a6f049208e4f56846222246356502436b46c6f737884769065af70b57b328

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