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
      [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.

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

Uploaded Source

Built Distributions

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

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.6.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.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.6.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.6.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (946.4 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.6.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.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.6.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.6.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (946.6 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.6.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.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.6.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.6.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (947.1 kB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (865.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.6.0-cp310-none-win_amd64.whl (769.4 kB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.6.0-cp310-none-win32.whl (714.7 kB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.6.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.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-0.6.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.6.0-cp310-cp310-macosx_11_0_arm64.whl (865.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.6.0-cp310-cp310-macosx_10_7_x86_64.whl (945.1 kB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.6.0-cp39-none-win_amd64.whl (769.6 kB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.6.0-cp39-none-win32.whl (714.8 kB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.6.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.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-0.6.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.6.0-cp39-cp39-macosx_11_0_arm64.whl (865.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.6.0-cp39-cp39-macosx_10_7_x86_64.whl (945.4 kB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.6.0-cp38-none-win_amd64.whl (769.8 kB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.6.0-cp38-none-win32.whl (715.1 kB view details)

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.6.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.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-0.6.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.6.0-cp38-cp38-macosx_11_0_arm64.whl (865.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.6.0-cp38-cp38-macosx_10_7_x86_64.whl (945.3 kB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.6.0-cp37-none-win_amd64.whl (769.4 kB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.6.0-cp37-none-win32.whl (715.1 kB view details)

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.6.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.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-0.6.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.6.0-cp37-cp37m-macosx_11_0_arm64.whl (865.6 kB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.6.0-cp37-cp37m-macosx_10_7_x86_64.whl (945.6 kB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.6.0.tar.gz
Algorithm Hash digest
SHA256 68553aab7f4c687a4fb8ede0495e65a92e0e2a4942e0da29797d17b33236662a
MD5 15473bc7bf2e830c268f24c035831b5e
BLAKE2b-256 d02dbf688e2be0b661df4645c68b2279f61f9913e8f58fae675924f1db18788b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 06625918123770bd00b2a7f142e455ac8ee4f0e63885fafc9aa892dae1e7bdd2
MD5 2e7b81241b1808a7ccd16a511044b3fc
BLAKE2b-256 488b32bc23428ad0c22b92b43d211343fb8928639a70fc5b3ca6a259199a9575

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 84a24bd51bba80328d02bb1875ffe268aa53ddbad5ed5b1027e7d319e8e0487a
MD5 906d1a244da56ccd8f1be2c951abab6e
BLAKE2b-256 d04bf61b84974bc5a704f8682569a3dead97f51dd0d6c776f81395114f6dda90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 93cb5ffe680fac7c4cba8099efcb50d5b1c340a3f99233e5acb353afb5449591
MD5 82cc1babd85e7ad5781861df8f65b73e
BLAKE2b-256 419b68596c6f41c8a51800a2d7497022275418fbd4d852c93732e7fea063a8cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 36d205d8f42ea41bd5bf860d7d5459479277cefea3f9218a00ed097df59c42ae
MD5 24802d6a170cb573b9f908280337c6ec
BLAKE2b-256 61428acde24fd93425b5b656156bcd55890aef9602ef12d6238b151bc0523f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1759a07e4aa7f3517ff2c69642d8e4b078febc15b7c7609069cd54ee54225f1b
MD5 fda780616ec11d8d661016f840b35bb6
BLAKE2b-256 8a28976a84f243a1f373b4eb0b7d70130fadca210452f104c6c3bbc5bf69268d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c4729e4db4830c76a96ddea72ad56c6463eb78f6c801e3dcea1be4c0ce97086b
MD5 986ca6bb14fda3f75c84914d478b646b
BLAKE2b-256 84999a81c69be4fa637a4b49e9069814e60f2678d6aaef9d3cb647995f3e26fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b7bdba849164f2608468a2308438426aece9f02f8a619ed6f50118cf813ae135
MD5 5226f01ea1285766685d477ea6856e2f
BLAKE2b-256 2f8f61733e709b9fd6d6515186a34a7972cf737135b4bbb08dd6ddabf5ca5f32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 da2e49157ea74eb619ffb037057bbae45cf47e20b6715d0a4915f5ef655aea3c
MD5 9e8665c1e743d329456263db8432712b
BLAKE2b-256 840125b631819fedf99ca626c1b1d738933e6e54d2f6a35a1e85fb53dcb40b0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36f4da1a9486c6f237f42068fb27e3636a643f744f6feafc853d0aef2ff490db
MD5 5765d32103c450d70105f62f54405174
BLAKE2b-256 80b29e6ea2970e438efb76c57e00e3b890eef278c44388cdc2db630eb57cb757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1df722c5aedba1b55510c64192e733a0cd50da82b762a92c0eca7618d68a8163
MD5 1ef026ea469b492d76bc8ed7af628e85
BLAKE2b-256 6912cde2b37514b83890b47ad9c8145c303f1d88307b445d5da6e2d37a332aa7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fb8704b68efe7d486088c0022b8df6aee1984ed63c12c10e020fbb196bf6a263
MD5 4a62ed07ee1f1d169203443e588c8151
BLAKE2b-256 cf1af0727fe9cae878b141fc9888881987213b6563788921d44d1a6bbe363462

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6e1feeb968b068bf62c0aa14b881e72cb5939fce96961c0fbd3c0437375ad04f
MD5 3cf6f65b9af001b93320210ccdb24eb2
BLAKE2b-256 1e7dfad75f96da46f3219d5b7ece65ee7d92357f054f9ec53d5bcd496089f5b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 917280bd885abfdc265dd2d412d7753230f5f1970811d059bd145a2ed0dbc05d
MD5 fed8f82b725a984f67f5500b7549c3b4
BLAKE2b-256 7f4f059bc9e2342cc06b7d713fc292b48843fcf5016c76bb56b2c30eb73c1ffa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dd0daf8e24788224abba6cd01db2835dd75f915f9121b17f178d778286b065df
MD5 ece55a30ae68425ec7631a8006013d42
BLAKE2b-256 d7d2b28bb2dde5763d25828f134fef16f5dd0ac0aaff22f728cac201bd1d5edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1b69de0bf3634ddb91ad8cd820a3cac828ae961f510387cdf71b4500fbb435a2
MD5 a417cc8797a65b0e17dda4117b143848
BLAKE2b-256 b583d71c7d2d69ca5833eb12116a035742fb513d0de06862b97a4d370cda7134

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 179ed091c1f7a4cc5a74c42c0e7afce610429de1cffbc6930594cd32fcb8e6a4
MD5 832d0033f11fd7fbb2d05e764dee680e
BLAKE2b-256 c479d20e9eff1cbf6d7f70ae19c638549e3d4a960ecb502c99a8df3af0c524e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d74a472d51ef899e57913c7a8e179b91e8840b87d97958b348611347d2ebe123
MD5 4c485d09aa988773bec93dcce6e86c63
BLAKE2b-256 0d6b0ab8e6094388aabb1d363d2a14b76b029e2ebfd90f244abdeaf08744e10a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e645b5dba38ab50c23f4559e0969122354319965e4ae1616ef96e7916c27386d
MD5 7f6cf59952e91e2f940dc3c1bd8cf617
BLAKE2b-256 86af65ec5a454869f11a73f356028f3500b9048d27daec016f15e857f98ef1f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 7015e0ffa8d0acf062c5810cce7cbad6b33993e21bafb85dcd08b83441692583
MD5 308e7328c751e0827e115d035de26c72
BLAKE2b-256 0a9b137e1901684aa40b25459a1029e0409a5092ab64b6a675f6ef9f1fd4321d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 362e3c3e1004876557fe019c3ee3feb83d64ea1132ddfc641d9c11ba6fc4ab24
MD5 ce4f432a405a23eb147ea9e881bb1c15
BLAKE2b-256 a2961904f8a92c99e23b0735dfcecac38bc03ae32c81aed44fb416921236d58d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 4221d298890a6ea2d6b11d8bba6aa141b1494156fbc0f6a6da36ae43e8a129b8
MD5 4999aa9a1463e9a473c8d6937dcc7dd8
BLAKE2b-256 eed1ceda0b3125dc3e0404704eb24805df59cfbbb826b35326f0cc248f691482

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.6.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 8463a7f55ab4aad08cb8b9fc7ebc00d1e56be91c5f2fff652ffab6337e9b3b07
MD5 1c5b97f23beb9deb63d643b77565bd7f
BLAKE2b-256 5ebd51f45d4cbffd782134cdfd7c66a87576d97ade0c3fc3446ad64a46b28f9a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 074e690b43a162a749c0502016a28ff7dc02f9ae08fbec4b6a30ec810dd1cadd
MD5 d5220317d0994001ca5e0268472f44fe
BLAKE2b-256 2052de697c68bb4e41039851c23e9c15f842f9c9a6ecc749be7569274c28d998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 262b3cc4f90877862f752b474f344cd5725b326f41828c8e06f521f2d2e16ce9
MD5 afbd95396b7044760f45becaec4c8f49
BLAKE2b-256 fc0b79e52d553f2603c0a759d526f740772e635a6e186f3707db3fb4326bc2ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 83acded5053666f87429e4e32bdae5db4473de6162f688b92779dae9e5878a85
MD5 326a3f304cb1fa1958529adc8a4a6136
BLAKE2b-256 76a7dd2b530a06f53e1383081ee7d9eed13551a734cbb7231f90746a64f26bce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 03a7e900633fdba494c6bdfa903b0c156cbb91c0ec365afdd36b880a83e8e98f
MD5 7fd5304e96b5b132e5baec2e5d4c0e8c
BLAKE2b-256 f9e678c94da1740bbae41423d5b16aef77ddffe2b3ce0c423cba1a2d59668154

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 61048ba54b51e87321b7f55d532ac05c34b804da1a0599a53c60241e333eb120
MD5 13af473ba60a9aacbe7df54d32b83d76
BLAKE2b-256 fd01aba250b453c2f2e2005e19c95cdd824d9548081b5703412b1c9dfe8a70c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d4902b24c8da767ea55a6551c1e4100df6e6de23048016294f732dfbab624da1
MD5 0527d95eff56e594c9ca298700453f2e
BLAKE2b-256 9b545d3cf24146977dbb90fb32767ce6bda8b73507936e52230d5e9f54181af5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 998ee0f0194ad7a1d4590f294997d18c11eb90e7dcc7fda0b3c228fae0fc3d17
MD5 88c163e46d3158dfb75ea0f80d8c426d
BLAKE2b-256 39b80e1ffb2f178925c19d839f4d6922705c1a354ad14cfd1b7a98a03fc3e38a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9c87c2e1c3b7a5d79220b3789e2871cb357584914d12a0eba9cf8ca517181230
MD5 e5ed3a83b4a9028a5277f47bfc6322de
BLAKE2b-256 63a36360104ef1c02e676dca5461813173d13d0596500033f954d2a96d181e29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 b2d3413f00b19b4405d218cdbde90c5690d96dd09be2497ed8c6c59674be43ff
MD5 acc2ce770ed3b09b4917ef22d7133943
BLAKE2b-256 5429734a0c55cae2dde4e70062541d3d48529d1a60baed9a9e6588b7052aee7e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.6.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 31a221bfd4f5643cbcc7826ec2381073418f7952cd879838d9e1dcc6dc0364ad
MD5 3046bdc50dd37fb4cd4bb37dfacee5af
BLAKE2b-256 3b3e78cca9481c8a129a6ea20dc8c1b9ef921f909d578aa09faf6a833459e991

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f6f3ff82c5e13ba4bd242ebfd436b27cba49f56adafc86c3de5032849c221a55
MD5 678786df8cd76645b23d8c8c0639e13d
BLAKE2b-256 73fae146927391d8156df1dd223b0a19630db1f88562bff7e18d643b0b2f60f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 598e39de74ad628c90da95f6c52031575b6e309b4e2c909cb24b72d911e21057
MD5 d1c2eb733a26b769f9b11a334f761d27
BLAKE2b-256 0afde19d293e94cf0c04978d2324871fea88d685e866c9748c1bc0f674bc7036

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 3bc7bdc963165df38350bdf6e023b60e4df36dcfb2d2e0c7f73fc5e3ad562fa5
MD5 617b55ccbc7e10649ce3bb6c27647e24
BLAKE2b-256 80dfb3fbc1494503bb34f5483145d58d5a97d11bfa7edb53481c5116413dd9ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e4ccebec82b79d9604494185cb057d4ff7af8d6b38bbaac7a899f544667c2e2
MD5 a47585e6377361ea773efeb5d4384897
BLAKE2b-256 e1f9d6c3509e58a9eb0519ddaa43935a1167b24c2c990540714d716e6fdb6d2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8730a54cdda1c3aa9d552dffe3d2b390cc238b6e4ec90e233bec40b3fc285530
MD5 e0f560711ee02242ad5b492544934554
BLAKE2b-256 3b7267f23a68d98d10cc57117a4b7f4b8ee38cd1bfa0cf363c5eed885f76a545

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3e9fb73a23687811d155fe1ab72f6d7640a44edfb488b72836db35ac3fd3a5b1
MD5 1371a00dd4fc5992fd9515687d3347c3
BLAKE2b-256 2778d49457667721898f719788b9f2aca0f7e0cf44ebdd82dfd5822a1aaa6a69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1c5bb1443351344e8f8e9c69613ecc85164fa65c0ffddf29a94ce298496b186
MD5 243b9ec03ffc34a4e0465bf091ae0fd3
BLAKE2b-256 53c1664e12064d7efbb0e06f336aaf31317c131a5f4f1b872fbbf952b734274e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f1cd2ec84138aa82ce18663ffc4c96bfaae82b272b4bc56f81640f061ed41e5a
MD5 617a15bc82a7230ba7065f70a730ec41
BLAKE2b-256 052f5469dbc70724fac2ce7a3171b1958a89d444bfc4c70b2aeea54e0267749a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 2997dd5551804606a63e2613f2d33d9978e38e154ecd3b89bda2e7301e75a42b
MD5 36d21cfd6a0c872939d427ccb6e10b02
BLAKE2b-256 53766e36e0acbc43d28513fc04194c69136f5cc6bbf68b7ea5c749dc221bc775

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.6.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 93634ddc8299aab006f83a7047ac7f68b1a1f3b32743dd5bc280835cd5136b96
MD5 30be2bc4d8ab555c5e9ab4c57cbb86f7
BLAKE2b-256 9867d6e7ec2935492f9e44833e8588d5f7727b7b87799c7a2386f3f7b90d36e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 70c4ab022caca9b21450862192e2e801ce58d4c4cfe4191c44d69e6491a605b5
MD5 4eac7dc19b4d014372b6bdeb9ae4799b
BLAKE2b-256 849c908cd62f0444c34b8c7ae1f8611da914e1e511d53046112bb5ad7ac6d789

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f1f0bb068d6b06db34be25cded8bc2c52e918e7aca19d4a2f9c708c602b362bc
MD5 dcac3a7a0ad01929ce0287adc4d78785
BLAKE2b-256 ed59ed16927a0db408055c7c0f082de0b9155d0c709c326de622bd4d0a061363

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 87f2e20f1878b4c4ce3611b8e0ee940e9ec33a889da00e295f2b1c1a119398d5
MD5 f2ba49390230f65572f3ca9d2a3a22ac
BLAKE2b-256 69fee9d8446fe29ef703c44f9148ba5ebb9105e1ac139da4a617c9102c6527f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc28f5163ae69860df68a7166e0912a5e1a788860ea2449ffb4ee0552dbc7bc5
MD5 f69810ddb55437a69b00c53d2361338a
BLAKE2b-256 5e7817df4e639bedcc551b3a7563288201d13fb990707c137e0425b24fe28175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 28de48dca3c7e4d0bd67b484565cd29568f384ea1fccf6d2634524930d4969b0
MD5 4ab139e598a753b279c053c8dc9399a0
BLAKE2b-256 6dac13bbc5673580b0ac6917eebc3cdbfd40aea03bac4c50b7da9a24e793563a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 24bc9c0866e5894678558d455f1052bb04894a9b0166161faa6a9a6c3a1e626e
MD5 35e0afd1d6d9e08cd5587bbab04c4849
BLAKE2b-256 095bce64bff9d7862c7c25dbc6337406d8efc34b75828b2a08a2ceb46f353cd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cb1fcc9d0565bc75b8e8435476589bbf660230d59fd49b075c0117c1fdd11e60
MD5 2f9e19d9c6afc353973151255d9fab36
BLAKE2b-256 4bb9a343dbde7820bc8d4c3048fb41dfaab206fa336055f68d98825909c5c8fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5c20bf331882c769c2b6dbd24cf03ce8f9b6ce7a5c6c47b933e15e5bd6c88c66
MD5 3b33b119453c34abbd4dbc44fa72c1c3
BLAKE2b-256 a7b46a481cdac1f890c647d58081604117d8dffe9c7d5954233c1f4b3b88618f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 375b412fbde3e1be852a4d74d892348485f8bddb6ac70216c148f1d7033c2dca
MD5 ee0312673a9ec8b6b87bf33c40f0f2f9
BLAKE2b-256 921969a117b6656863d4571c0f615f0d531d250a60a334343ca798928c5ece74

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-0.6.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 3dca6d543edfdc96e844fa25bcd78729d2a29693737f5a24484bba0fa2b906ed
MD5 8f9b532068283187d30f5823ac0e7fd2
BLAKE2b-256 a3d2358a98639d4b9f86d493957594c00cc80a029ee404b2f482c2f59006c309

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5e6fba65e97fdd234ba53be28f4991f990f79352d74f6f1ffd142a6e917fb513
MD5 be1722db0c14b568a1eec9c23a6cf6f6
BLAKE2b-256 8c05dd80d1d9b95c010034c2f96707b9e4f7421937b5251c96b73f584a926051

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5ed95763f2cf34df2c07dca2e7bfa9ed5055d98a32566fc9d2b6de7020379553
MD5 412fdc9630f05c1f2a36ee053dae20c6
BLAKE2b-256 1843c0ebdcffbe7464ee114a073431a6c3ad6c3efe5caeaedf235c86d085a538

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 47899da84826f5e6bf6e5155f8617e880c08e3a21b98676d924bfd38dd3e282c
MD5 5f859862d12b4993fd12d71e981b8b34
BLAKE2b-256 2caae7b961828084918d124c24dd8ec0e7b745709e113e8b773b80a181335810

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a0afbb01b4a8ffc5268519343d68951a7bdcbb80b7300892471f2014850236b
MD5 27ac5b91183e69add42167d3c71a31a9
BLAKE2b-256 80ccab325a6a7ad975a1499713e3432a31db1e3d5b706138bf8103eb15fcf963

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 536c5e7bee97c4618ec86c63689cac237dcca61776ef685ad0476290a5dc1b45
MD5 4220e6d8d73ba5d5adf49232b404c774
BLAKE2b-256 11deeb86501a4928dd99f478d3a4eef8fbef74c20c883fecb44c03fc84b39657

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7915c725c7f86cf369e0d9b3f405a5a54d2ed95c37a3f5d2fb23a8b485d84462
MD5 12834d58a95f5266a38ad06903a1c106
BLAKE2b-256 1f8e6c6cfe4a8ebe48551b89e1a353bd353bd1931e4162d0288e9e2c78ac0ad7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac63dd1c1fde2fc88302afdfb4ca6ce614f49d0c0ec8e33ce24d79f43f538459
MD5 0868dcc5f77df3fe0f2a861dcfdb77c1
BLAKE2b-256 e4cdf7486603f3ae2b47351a6074c35ee3bb33c778f0950bd1dec5b1cb30c664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.6.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ea80c2ddacae26a1f934cd4bfeb30eb0ef1a9b6ba41c16ed775b60773ff1c0ba
MD5 ae107215a0e0c4d340020b840f4df045
BLAKE2b-256 b22d23cfaefafed041658b59ccb480dd88c2e830d273a6d70939ab5ec6be7a78

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