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.

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.12.0.tar.gz (237.1 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.12.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.12.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.12.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.12.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.12.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.12.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.12.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.12.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.12.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.12.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.12.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.12.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.12.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows x86-64

pydantic_core-0.12.0-cp311-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-0.12.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.12.0-cp311-cp311-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

pydantic_core-0.12.0-cp311-cp311-manylinux_2_24_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.12.0-cp310-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-0.12.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.12.0-cp310-cp310-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

pydantic_core-0.12.0-cp310-cp310-manylinux_2_24_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.12.0-cp39-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-0.12.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.12.0-cp39-cp39-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

pydantic_core-0.12.0-cp39-cp39-manylinux_2_24_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.12.0-cp38-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-0.12.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-0.12.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-0.12.0-cp38-cp38-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

pydantic_core-0.12.0-cp38-cp38-manylinux_2_24_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.12.0-cp37-none-win32.whl (1.0 MB view details)

Uploaded CPython 3.7Windows x86

pydantic_core-0.12.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.4 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-0.12.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.3 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-0.12.0-cp37-cp37m-manylinux_2_24_s390x.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

pydantic_core-0.12.0-cp37-cp37m-manylinux_2_24_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-0.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.2 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.12.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.12.0.tar.gz.

File metadata

  • Download URL: pydantic_core-0.12.0.tar.gz
  • Upload date:
  • Size: 237.1 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.12.0.tar.gz
Algorithm Hash digest
SHA256 d5ae6e645f05915cae852838ad399c19177f9ed2659c01fe4de2772197dfed56
MD5 0a8fa9bc9d422447fd022bc5e602f5d9
BLAKE2b-256 8d1c1e676bf8b237828b56ef09e2c7b5fdafb11690eb519112b80375a117237a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 71502eb1d035208778079177f5aacaceb93b58b1a4a69be69735b57a8b289688
MD5 8e412466d4697fb72f6180623cca26ab
BLAKE2b-256 a389bedc67ecc6af20269fe4abfaf2a5d2f5d43cceebca3e2f21058cf41780a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a9f0593eae1855fab638884209722e447d90d614c5116e5b14adcfb2c585f222
MD5 117625b8283e86c8e3d8110e8296689f
BLAKE2b-256 cce628109d9f6c9228a2af54017c3bb04ee2b1d4992eca3de24da8716083b41e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0ec2633846df8cc64710aef6cbb05d9ab7adc7baa722d853c28bfe8605d4b2de
MD5 bac3247c868d4ea07b34c062247a9bb5
BLAKE2b-256 40bd1a1ee21cbd7585b298e9ba73b7ff8e9bdd38cc4f3747e43266be979be4e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 753259d3118274d2b069a432fb480025b7b1185f69fcd75b8e985758db5e48c6
MD5 87cc138d450f76295a43b945b0fd18c1
BLAKE2b-256 aaf974e2f457b8685843aada5ddef3f17fbe99385bac6d3ee1b25e02b8f2060b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d96006f6d7ec90aa464bec77876bdd3dd67a5401a2e6cc200334192c48b2eb0
MD5 4b4d1da15a049a1135a41106947e4f2c
BLAKE2b-256 a1dc1fd04a3c9f20563a78781f669e28aa2b471c7047a34657501ac270c646ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 434111857e513f7ff3c8c12377376d6b172f6c98e774a436e3155b8270f0e0e7
MD5 01582e9cae6115564be9c9e457f150b4
BLAKE2b-256 77254f2ae384b72fac9c4695b6da27e89d339ca30fe3bfae4d0799134ed2bca5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9832d43b0a676af331ebd7faa2bb0088d4a17f8d2d87e27b3ff4caa057df9a8f
MD5 99767513efafca74a3f507e4fbb14642
BLAKE2b-256 a6ed248b643edbcd5681e397313792c987483327cdc86c909d1007ffcd971bc0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2778ac8db88d16c733c42a09a4162c631475268f80bbc95d424486edaf5395cd
MD5 c129891decc254d820f429ab20e085f5
BLAKE2b-256 f79f35e75d308128b36dded2b4956ed3c4191cd07354ad964444606bf11d9117

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fd956c6fd3ae1716b5894b40e4d01ba72094a926a05ac059828ed6c45cee862b
MD5 0b051924e5c0d94146337a57c29e8b6f
BLAKE2b-256 7d4e40a9e7a05db24ed6224f17f33586e2ac4b7b9def9cedf7f918823eb43e53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a75c708419d3d414df99d0ca75caa6919d98a7ec37536639d73a67c599124f9d
MD5 6987e16195ff086fdb1d26ea426bac9d
BLAKE2b-256 ed164ba334349c5b9cf0f9b5b87ecce2a70015d29249fb90850e47515282a7da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4ac7c9a9f8e383444b468bcbf7d30608ef3eef876b8a59189d8d40c9ab7a5ce
MD5 24a2320e993e9e5d588c0741ef607079
BLAKE2b-256 fada82319530d1d2f123570d8fc6ac63217b1b83b39649ad7d338c591103c500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e708e78b01ea526c6e8b1eca7d52b5eee3a6499d935c817973267e38e3ce267a
MD5 a3de0f4e18153b88f0d6fd789d1204f6
BLAKE2b-256 4254837c1e1233cc7cf67fa11f3d9e6b64f691a18652ffc47e506095a2189715

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2a19ea20990b9d56376fd28415f7be66546c760a7d4bf0a2606eb94bd8fbd0eb
MD5 70665480aee45c5acc0780467e22eafd
BLAKE2b-256 e3c84b0b146fadf4cc159039ef87939d527c13b42c833866664d67e53c627512

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 65dcca26fe54dbad07eccd62dbefdb905bca7c58387c46a4d674042fa77a5eb1
MD5 3698654dfe258b041b19b3fe939445b0
BLAKE2b-256 02d57de8cce34f1c5923c4be1b88e84d3d3cc775a8d687c74857eed3bb7f498f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc430b27d8ab9fb221ef9f26b53bd701f2da9b1367dd048c832f53a8f2f86255
MD5 33629d85f07328ad17c06de922c79c65
BLAKE2b-256 2dda07f96bba8dee07eb5df352b3e55f29679ab34ae44fb98c433747225901cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8b8eb6dbc2a0f804cc51fe7024d7fb379a53eec7f247c88ce250b8fc3293ef61
MD5 a3106ee619837c569a5584ff31e0a37d
BLAKE2b-256 378501485c8d467b019992004d901964325a03f82869426e41b0751b7b4382e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6221e973ef2d15af0923da42b0d68d4a1a9c6728f9825c2525f7d4c4f6b9ab65
MD5 6f7ea4f8cda73743d02c190295993376
BLAKE2b-256 f54782186b50974f88d6a466815c9fbe2967f8cf3f4e778939131504cb36fb5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 52aabf111977c4c4da4082bafe5cb3b16bed9488ba4e8295a26536f4742163e4
MD5 28f4222fc1149058f2225f0aa3271781
BLAKE2b-256 5345e8e4f78634c05babfba6531aa2e82b3d94b214195888d488663d9e1c54ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4c4ae7e8038ac647be8db301f81cc62083ce811b2e088c064af4210eaa230564
MD5 4bc951032184cde05a4ffdcad12cadb9
BLAKE2b-256 d70e520cb177cd758a7f070b4ffe7a8aaed7223b10d2597a3c176079ce678c68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.12.0-cp311-none-win32.whl
  • Upload date:
  • Size: 1.0 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.12.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ab2623a742d54ea2be2872fd01c2451550c346eb472b900954c936fe867f47da
MD5 22f2723dd8fd1da13e1eef439f2f110a
BLAKE2b-256 636085e7671ed754013570c7422982cdf891fc48bfea5afb96b4476e8e1caf6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 93815a714cbaed200cc222c3f503a1640cc50d164385f4c1c8b6bd562ab03937
MD5 6de9102cbcf3fa708b4a1196b343ba81
BLAKE2b-256 7ec4b254f8ee7e9f0dd51227eadfdf3d7240b513d710b4e4fbe04872f9deeeb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cb3bcbd06aca5b01ded10fe710643b535dfe17357b1c69b8f80c284ce61c88f2
MD5 059d9e82b225f08531cccd013e2abad5
BLAKE2b-256 993ebb4e9fd34d0fa3b4df9d258f9e8242fa1829641f6a9b4b8726268fdca99e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 0e7b19f10de69cd645f5f8dc80ca8a59bce7cd3323c32d30123a3598bbaab7e7
MD5 5a80c83caaa3fb6450140c82801a8055
BLAKE2b-256 1f5113b5da3c34004d455ec0fe6756c4c459147ec1ed345d2050d93ba5966ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 7da713621ff6a6ec95a741fcd32fd82272573a5ff050966a3f848367fcc2f3ed
MD5 a1fc8b818366f225859f581d336e64e4
BLAKE2b-256 6b151696d3ecb0fbfa78e2bee886c2f7243a9c2dc6da47d4aca4bc17b92b90a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 cbae2fdfccb590a7fd329955d0a0c7c3e60bda0aed76253788130604a207b7f2
MD5 a1a02689fcd9bddb77a8f5d30549d653
BLAKE2b-256 a8faf47391d6d0d517f8211ec4a6cc433cbde7593426c7e34f5bc806e9a467d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cb56c836952679edec89291b33e4c5be4f2d40e3fd0716734316496c343d2e1c
MD5 1fe6c23a879db315dcd525f60841c2e9
BLAKE2b-256 f92b0302744737b8840e5d542eb4597f795f226c58c2176aeb696e8fc8b356d3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6305f1615a422365f4a6317b8cf9c6f9b5ae0cc1fe8fd86c33b0ac4b4267fd77
MD5 2dbdaeb37b586c57e2abd1bf3443de87
BLAKE2b-256 8b4d9731e5f557436779ea3fb347579dab3aa9cbda58c1893cab8714023cd390

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fed510da9a9e5152f462220c927b848c0c0ca20e5bb4d8ce0054aa7166b6e86d
MD5 7de1c97a0239d06610ec1ab16e74bafb
BLAKE2b-256 55061f668d2ff42d0fec3b56748c48e5811f291be94f052e9ef97a92e2764c39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 926eff8eb3b233c0fe1d52ad136114165a50272558dc10763ae3dfd4125db2ac
MD5 2ea736eca3cd861e77d7527a244142a3
BLAKE2b-256 8708d4196742e482de4340b712fdffcbbc7a6e890d8d0821461536494925af88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c3382761a71f1e3ed29f62afb808647b4680f15629f5966d1c7238046be3802a
MD5 6c2e2f089e14737e300474d10e7994c8
BLAKE2b-256 6e7357763032054dfe1b7ffa93e69121c5cbc9cb2c9018608f7a751b4966c35c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 5bb218ad661fd70be875ad9409fca50df2ff2b1375e39a5a862c60cffc447582
MD5 ff6186847c9b3d8dfe244118e5c2d472
BLAKE2b-256 eadba678d19d0ab1abc6ffb1ba56633e96da9fd2e2c99eac6de698d957f772d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.12.0-cp310-none-win32.whl
  • Upload date:
  • Size: 1.0 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.12.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 e1160d7dd3970dc295d1a7549ba007355fa33a8a1a8903fa695143e2cc60368f
MD5 e74ae0a4eb443b3f8730ba9d51f8e14c
BLAKE2b-256 16e1174b81450ee894219cea6fc5f10e6295f52a893a3cdfd73b23b7dbd96324

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0bfe9678a1d6ca34c30d60e5b6b1903b4da09269c4555d9c5ab986fe04861f04
MD5 5227b02912ad788b64506c4d154ea6d7
BLAKE2b-256 4eef78924f2433282f94cd6bd6fb6585b007b371886a7e3dcfd564554a2b53f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 440e8f29608bd7a651645ca437ffb74ee51f3bc0ce832634a99e19744b59271a
MD5 7f446f47e888a6a247f560c1a6de0af0
BLAKE2b-256 efd355a7e8ba9e3cc3b9df462cc8896db29a68c5cacdcd6862026c516412db0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 d9030884efd8098cc580f3acd81f23e83dfe66cb181ee91e8de20426ea0e1097
MD5 1f25c73ccd26668690bb5ce6733ae979
BLAKE2b-256 a48accede2ad10cbffbe39e1efdf38a281c69cf97fe7c8a5f9a0f4e0030b449c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 3af61543c64029fd694ef11661b3998a68b64f673dc8d7c5e560279df23ab01d
MD5 670ccfce08782c2965fd92b3b7e6f9c4
BLAKE2b-256 40d99a3b807e93ebbc8988a9192fc0241f966ded26fdb3a33eb2ad5eac9fbc13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 854e55adceb90bf06aa40937f1c1541dff687ecf72ce63af0da9755ed96ba511
MD5 4a1f0a22c21340df964568d61c6cb41c
BLAKE2b-256 83fa72ee7fb15e0c4f6a717f34083dab351804caf420225f24ae0bbe7bf09ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fac1c8b2438935718189d8b625a1b9ce7f1d182173981f7f39b606f418fe009
MD5 a06d416568b88d0f0d834aacdd55252a
BLAKE2b-256 0b63408e89ac73c574314581016c60e2837bbf3ac48d4e2d1a8d08cd92c8369e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0a390bd291c40c4f1e6cd52245f046a32f0c7ccb5215073fb04e27b47db53aa
MD5 9bb62be0c22e053efab2d874a0c32b34
BLAKE2b-256 3b01557eba1ce17daf0d4b9f075a533fee9e07d7cb6c81b29d98ea1ce9cc3bf2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 681abd38319faa476d87e142b5b0b185a877e2ffe01d6ff55039ee36db145dde
MD5 cdbc98cc471a56d6131c508048e3543b
BLAKE2b-256 8f25bf568e61e684aa4188e1696397769d847176ab7adabab908fad73905fd5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4d0d965c23c88162477b31c790d343eb221be33dfb310e2e4051140dc98320a
MD5 e5e5cd668ab0354e3b464dd1d14941d9
BLAKE2b-256 13da86d92a258cd58771a085bcd12fcce74c50865806ceaf2277da75167dca3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1f9e7f01a8118228e092d4bea387c1cbf257c215667aaceb65cb49ccecad89d0
MD5 6f3c2cb21df4057e2b2bf58f71ea5282
BLAKE2b-256 1697821ece15c3d0b08b12e6d739d50d25f834bd631c7efdf9c0dc1696a2e347

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 80e702938c93e44814768de0c2da81cc7772f0d1544a1496a1418cff455fa288
MD5 b4c8ff9bae4118d0ab80dd53e8ea3ed7
BLAKE2b-256 df2c0803f4c53d380f5898039f1526232ef56664227413d7c66e39e6f6449851

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.12.0-cp39-none-win32.whl
  • Upload date:
  • Size: 1.0 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.12.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 bca1cdedd799f86f5fbdd9810c0d46b0c1f408c2891e13a1f2b9493753a4448b
MD5 c7832b54c48edf6b234e9a9a09bba35d
BLAKE2b-256 dfac47c70fd7974c4302992d678896289507577c9b4912d16dae14cccfb78ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b147de900996a5a16d8bfe867354a3442153bc71df100de9b43c125fb8a5ea76
MD5 1a265d3eccf68553aaf48e6e46956bdf
BLAKE2b-256 807909b5c2ffb9cac4e73fa8821e23e8fd662aef8b2409064fa1636adca5735e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 002896a3a25a20e4dc3682ebb5dee864e56c0b45d7c1389a21d1194e4eac2607
MD5 1e4d7fe042c05969a5d10379574f5bf7
BLAKE2b-256 ef113e2cf2fb334e18c10e0bcd8194704826c096e84974fdf5d5e7a27582a439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 11ea53ad5d9d8e2c6896fad257cf96f67c096544362df8922de263aa6c362d47
MD5 e37dd6ebf9a293e6d17502a690dcd4ce
BLAKE2b-256 081eacaaacbe264b8d058d980cdd3aa950c94639c461c482db968ea3f055c4dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 0e867dae25822e26ecb1e9a0877edc423c0bd20f3d716a146ba21adc1f6d4cec
MD5 c93e6d910c8312016075417549ceabac
BLAKE2b-256 8ebe3b3c9c55d27174a4223f225021f2629d7877fb14ca7f4c92c226e9db878e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c04866c11041c98d52ac7612f7ae0b9b89e9859c94e8bc3f374fe8cb90767b8d
MD5 45b1b1035edbf4695f56dcece1b00602
BLAKE2b-256 cd8da3204275436dcc123405f2bb376ecc2bc6331185cfc0798cd62f30f0eddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc807bc23883f14437bdb5af3ab9759ed5c66d9422f6ee7ab235c6d02526a082
MD5 1c6ce9c1eed334e6d2b46d67dd632871
BLAKE2b-256 b2aaf027236aab94967b2c58d3d5c2fd7eb0726db878469343321f483bb6975c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 257801ec208b422804b4f3e631f167148dc9ef64bb67bce2008273ffeba56c0c
MD5 2a64f151d55de343877a41fd7c37daf9
BLAKE2b-256 09baf138523864e5d3db5950c27679a23975a1aaa23160311ad7b5349fc88766

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e267c74554c48fe0c33fe5d4e8369b0ad27047fff2c0dbeb353d154a426afe82
MD5 fb28a426d1396d294ae20db93966f756
BLAKE2b-256 f520d146c2af810506f73fa8e1edcf7bbf0028f601e60eac001705c598e95d5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9f98a25aef4e29687865c33422249d19923cc4a0042e7b92094d919ea60275a
MD5 ecf4a5d4b054dae81fb7d442a50e5254
BLAKE2b-256 9f7193ed87a2fae7a98bca6be9caab5a8d3b7d7ce992e502b0e02e8f4e75d72f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a67745631bc42bcf298bde353c652050da6ebff75f4b3588653b0ddd181c7814
MD5 67ce97057e609a5559ddec6a8b66bd24
BLAKE2b-256 1983c91e6907d8cccd0db9937d38a9af52e035e0c18ba6646e856e598360e3fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9e46836f3abd3637b02df5e4529747b3556034df0b61b98cbda127b1e591d38f
MD5 e0933ccd5291871475a277e624f96d97
BLAKE2b-256 c29c80b2a2c3b3ca4d7ac6d1192d623f1e01edcbd83c9f8e4a36bfae668b32e4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.12.0-cp38-none-win32.whl
  • Upload date:
  • Size: 1.0 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.12.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 f85f14313b5003d88c026bfed3f39ec1b39bab41173fd564e8b92e1b04b4eb9e
MD5 be85f9814f04de5cee792cba36950953
BLAKE2b-256 8859e857d4ea6368eb31311d658fcc1c49fd7e90689bf464f9709cc05d790966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 360da66128a13766ffd08e9ebeaec1698be0d72ff92092711d8b4617ec86055f
MD5 60b6dddc268eddf13c55c59b81a47975
BLAKE2b-256 e42d432263c3fbf61883e0fe38e4322e3d912e1ce4804ca9c98f928d506189f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f86fb25d5b13f277209443c6a52e110769689da0e24501e843e9c177486ed2c6
MD5 0a4e572f9c9ce589b270896a8796e151
BLAKE2b-256 678ecf8dc93df5693fc417b7e83319065206c90be12ef05662c7418866dc3f8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 d921cbfeab60776b70e9d030baaba74a964aececdfdcd38a16916385a7e51a43
MD5 2539656af4057d95417d2be15d1fede7
BLAKE2b-256 f48cb4b16515053baa98e74d4d72a2434673412f70340c79ed673430c00400b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 ecd42e9c14b1e5188e37f1b8ebce610820b6241ca35e1439e0c6437e1e19b790
MD5 676e41f9ef335fe86e47a6ec49b4e7b1
BLAKE2b-256 f8e849fc4c2c715c991d5eadf61188a38f4ef92be0711cf49b7d406ca29669ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 b6f4bdb141d1d27144aa75e2d4ebc5fd8733b19e9af32ebf0e8a44c48bfeb7d0
MD5 32625e9a9fb6711bc2bf7599c46f0244
BLAKE2b-256 ea3aad3bf77c962f96d8fb0e8929d15f9632857c21b6774e2b7e767e7c6e1fe0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cf016b57ec6e7e30a0bcc5bcd833b15a829d1f24eabd1df4dcba6b9cdbec5ffe
MD5 f6aedfb4867c5f362a6f897680b93b14
BLAKE2b-256 d4d89adcf6df0f99b2d1050a2034f97a9cba36b02d3a3d70696c5a10b61b8fc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8522f903800383ea10b953b8e4e67701d5747d0bbda092312bdec290207def05
MD5 a6dc5c8289452e502984a87f07f30ec5
BLAKE2b-256 3b236212641f70605023c4ba375754d12805bf6d7dce94721370b4b865f678b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ce4d6e4aceaf04e3d8d28dc7845148ab611a1eb06f0bb10835c5ea071f7ce126
MD5 24276ee3ce072a46bdd9edbb9a3e0229
BLAKE2b-256 87fed399b4da8221cd75d660c7a8e4bbc80824f9e85c98e5ba6a4a12fd33e54f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e8148c3b3237abaa51ab4870bf434cca9e402368ad088240e14e14ba8e9e4750
MD5 4956c8bad51acba1dfb23556b1510ade
BLAKE2b-256 280caf47d325f1b8461020f90064e1b624ae051f16a96b382ab86faa56750e55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1f851f3328821008db2ea440ae49ea9a42e615c3ab8852c76bb6693d025a3a9c
MD5 d6bfb3ee6af2ab031e8f23df999d9c28
BLAKE2b-256 ee4e57cf188a9f3df6785a7c2b876df6ead7073286ed6a12a0d053028ea7ba65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 db2876e48a38a4b0b99c11a9ae0811fd829beec28678704eb542f052ef1e0f7b
MD5 9c0e1f188ea696c8682133d5332d580a
BLAKE2b-256 22e17d9ce60584c660686d3e446ad8cc7b089a0f813aa1904eea6766f7496eb8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.12.0-cp37-none-win32.whl
  • Upload date:
  • Size: 1.0 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.12.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 7acfb6432eb0f6933e531cb3f26a8aa5df17c61641ec56755fdd0fbc2270ce44
MD5 5942e6fc9849a9af47ca82e1c8babea2
BLAKE2b-256 e51ee3ea40f97d455ef0dfd1b328653ddea2f67c9f626f71941a5141968fdb94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0c04f9386a6a8b0c049329f9c6e1950ffb6b8b970f8eaef6d4f5f2399cf9cecd
MD5 898a67093cc69c405ea3eccfd795f97b
BLAKE2b-256 881c91ce0e4eddb34df116c80c15a4dee1c18608d91b2f1bddb1cce5a961be96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e698325308b39fc883fcd3656c3b9d505a0c66a679614f38e3bb22355ba04b0c
MD5 3ee80791915ff5a91ad9ff274455554c
BLAKE2b-256 1d9bc5ece2ce83e70a9e07873fcbc596b94de3a8dd14c83b6d241e60f082ec92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 329cf25ac8efea92d54b2c21a373cdaebfff20a3b5db61de1bdd30696412455d
MD5 acbbe3e4ffea665ddf7c2e86637d4727
BLAKE2b-256 bd21e40ed2e42e47244c55436b7c29abadefaf70537351abbe8f3746b17e20b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 133b7b3f651717218847317f9f389cc83389ad34ec6ddb1cd801d8a9916d6cb7
MD5 802e0fb61ea1b9b4fb62f7020d2c9c58
BLAKE2b-256 b588cb3431e431bd48b2417003711705230ef25937fcd63198c4ebbb165da940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 df8287221e5ad2b46c246195e1c9958160805ec0a75313b7d4c079cde80c40c4
MD5 e2fb251835e8b975d9533bcd78c77079
BLAKE2b-256 125b46fd891e5ddbe9e4be02c6b66a239cbc1325471e59fbe8a8a904aa707e31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ed1ef55b44035bca1580bf87ec01e8bcd1bead769054f77472f537449357f496
MD5 f2f96c5fd52912509ba525d22d8968a2
BLAKE2b-256 a5c7a3cabe7ac4fef28b9f8b4cf9064cb70a964d81b79eaad8fef2e8826e0c9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47c127a55ffb8dc73102831b2e1da743aa67ecd60f186811d589347f7e1be2b8
MD5 f997ca5e020a56ab5a5e9fce1ba9b032
BLAKE2b-256 a2a335ad643616fc8d93d5f8863c2a81ed7c258e95ca37e1e675a676e5410e95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 22a9f0793f8a0301cde219ab94882bced872663eb14067e85e514534323a7688
MD5 7dddbc5f325f83fb8d685a6b12be525c
BLAKE2b-256 057f94469d87d65d10f0ec628bbd32d638387af46ff042b937860df442551e39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2c879d8217ad72e4ecfebe365352846d785508bd3cca2ae79f858d2cdcd12bf7
MD5 52b221c01972c5daeb10b742bc43c009
BLAKE2b-256 64fe60a5fe7069bdc991b13543f4e146095632bdcc81874fa7cac4616d4a77b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.12.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0b4ed74903ed5c5bbe741c6942b53ff7a9374b03d6a781cdda0cf18d8abc89e9
MD5 982717290933174ee035018427477a08
BLAKE2b-256 dc6a3ced8a7ff7b5e654ae7c65f5c6716aeea22a1931fc838fa849298b060a60

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