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

This version

0.7.1

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

Uploaded Source

Built Distributions

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

pydantic_core-0.7.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.7.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.7.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.7.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.7.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.7.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.7.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.7.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.7.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.7.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.7.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-0.7.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-0.7.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-0.7.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-0.7.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-0.7.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-0.7.1-cp311-none-win_amd64.whl (950.6 kB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-0.7.1-cp311-none-win32.whl (893.5 kB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-0.7.1-cp311-cp311-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-0.7.1-cp311-cp311-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-0.7.1-cp311-cp311-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-0.7.1-cp311-cp311-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-0.7.1-cp311-cp311-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

pydantic_core-0.7.1-cp310-none-win_amd64.whl (950.6 kB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-0.7.1-cp310-none-win32.whl (893.5 kB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-0.7.1-cp310-cp310-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-0.7.1-cp310-cp310-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-0.7.1-cp310-cp310-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-0.7.1-cp310-cp310-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-0.7.1-cp310-cp310-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-0.7.1-cp39-none-win_amd64.whl (950.9 kB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-0.7.1-cp39-none-win32.whl (893.7 kB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-0.7.1-cp39-cp39-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-0.7.1-cp39-cp39-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-0.7.1-cp39-cp39-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-0.7.1-cp39-cp39-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-0.7.1-cp39-cp39-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-0.7.1-cp38-none-win_amd64.whl (951.1 kB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-0.7.1-cp38-none-win32.whl (893.6 kB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-0.7.1-cp38-cp38-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-0.7.1-cp38-cp38-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-0.7.1-cp38-cp38-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-0.7.1-cp38-cp38-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-0.7.1-cp38-cp38-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-0.7.1-cp37-none-win_amd64.whl (950.8 kB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-0.7.1-cp37-none-win32.whl (893.8 kB view details)

Uploaded CPython 3.7Windows x86

pydantic_core-0.7.1-cp37-cp37m-musllinux_1_1_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-0.7.1-cp37-cp37m-musllinux_1_1_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-0.7.1-cp37-cp37m-manylinux_2_24_armv7l.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-0.7.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-0.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.4 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-0.7.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.5 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pydantic_core-0.7.1-cp37-cp37m-macosx_11_0_arm64.whl (1.0 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-0.7.1-cp37-cp37m-macosx_10_7_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-0.7.1.tar.gz
  • Upload date:
  • Size: 168.3 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.7.1.tar.gz
Algorithm Hash digest
SHA256 fc95768b42a9937e6d26b180166cc7b662a779145790cb553ef56a23c94a6e4a
MD5 a9cfef2fbf2ee77e64f074ff402b6783
BLAKE2b-256 10695e2fe5fd8179eada8255369050079f25135892cf16598de42db72695b894

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bb8b90871777646807bf6e6aa967f894ff43b06da09aa99db53356a156204c09
MD5 19c811a3aada019d929752d3d4048055
BLAKE2b-256 924d14af39e59d21e711f15245d9a555fdfc648e1643fec83685e5af25b86225

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ee04608128b71690fa209ae28b5675d792831ebbd2d2d455955fcc271bbe51d
MD5 a5197a2b7cb7e18d5d866eae8fd46daf
BLAKE2b-256 e9e26ca9fc0e2cc56f29073219211024c778d53bb5c11f886ef4247b38cf8057

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e5758e42beb4c4da1a065225c2937524a1af99d3657442b488eb27f37285f493
MD5 ee1dc65da74ed849155d965180cad464
BLAKE2b-256 914147bda175d57d37f1430a747d124696a3a60b6eb6b84204011e7114d58040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dde7cf17427e84887e96f391c3d3db6240358b20a870461deed9829e004f1b52
MD5 f2a150a0a8ca2a8e8863882b1b2c5670
BLAKE2b-256 7d037ec0f52460117c67a320aa077b01ac001abbcb476e759c2f152976b0bc85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e711692a2d1b72ede2fdd04410bc1ee26baea4d46eca43b901a9c2be723cf3c8
MD5 3ec0d3c555c1ca487ff90ad7b6581094
BLAKE2b-256 175390eb4f4ce94fe2f8a5de7c6333ae81132ec38996a3e88bda9455cb55bf83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d1d4657161c1d55e825690385a57c715987f15706deae1ae5f6833142bf91bde
MD5 012d8df86edcc4adfc9dbb094a495ae2
BLAKE2b-256 c5e6aa6e56c8154dae2756894c96123622a123de0cdae30ff36254fa61151439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d19581794f09940a056238840f5609016bb1ac12866f99d716e5042b80f97a85
MD5 d30d967d3c13e65d07075f8604f87c15
BLAKE2b-256 9fb68a95ce2c952fd23cc3a3097eed8eb90f0ebc75c90df75cf8acb9675ce1cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 37ec48caa89ff0e6f73bd06a3a76511216f5b8a1415df175c79baf9b3a77d610
MD5 6cb2693b5d0f1f91a7bbfa9e8ac61877
BLAKE2b-256 bb2a02ca6c282d0bbd81ba2ad88368ba4a87de148c3e851c20c147e5acc986f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c63964a6b78368e5e07ef2d932d73af48ffe675489cd5af4c6eac596839c8027
MD5 928e114e60d80493c836323001781bbf
BLAKE2b-256 52801250189a3c57a6dc53a596f75da70a5d2b9f71f877edad9fd8b2a4b6efc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d2efc278d75bb0f2717385f7ad6ec5de3ad2c1741a5b20c6970d8808201e1bf
MD5 34e0508ca3f2578072e0acacd8659928
BLAKE2b-256 73dd6a3e451767192546815c320ec0bd422d53c0f1d5c6d8987213b024a82a72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d697fbbc81bb40b71c58ac582d72721df8f5e5a8b3aa5a0b1778a54a1d6e8c3c
MD5 c1b3447e4048a51b07f2a2d5517522f5
BLAKE2b-256 303959df026b5b3c58e206348af6c3eba7b89212ca91f61628dd2e0db11fd00f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9bd630f7b7ec7ebc12f79ae9cea31bac6612bfe790588e3412c7833589c07ea0
MD5 65eb81b05b6796c4018a10d560f48b12
BLAKE2b-256 d8ea3bbe5b6165ad2aa3ccc8dee015fa40dc86b31021fe80c62d056d5ea78703

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c4cb27672471b2dcdd0ff7c34f1369b5b901f0f53fc5be9092a1b612dbe1a0b3
MD5 fb91409da2574e1999478f42a1e46ac8
BLAKE2b-256 b4cdfde4da8373bcd7ffbacd19580179b55037a880be2c96d2605bc7e18342cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5bb96b1135a3789d7e251922f4b42ed126f77b1117fd4e7675aba206bdc05250
MD5 dd29084267fa7755b2a5bad26ac6036d
BLAKE2b-256 a1b4f5b87f951907ba7956ffca58b6c0d2f5de03e9289e5f4994b09dd07e0b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a01e0b76e46b169a1a28cc41db029e9c39519c859d7a40b2f117d8dab6b0ccb0
MD5 189e3fe7735f3d7f8a0823552598e8e0
BLAKE2b-256 8e27232d4f774cb93e007e080bb0e2cd985a7675671acf1eb2d0259a247a4011

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 934791bf14f222d8a454221b64c226c5dbf857a2d01917be7bb477ff41c0c8df
MD5 1be8417d0b7428c7d80a49cf3dbbf3ea
BLAKE2b-256 c884f663a0c1e20c9bdde0b67e2a93853d08b392fbb6754f8e4f77529c37766c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7969b8e6a530829d63bd0a8b8b00f6a23329d66a43e567fefc4655cacc367a7
MD5 74d63652ee9d008b747bfe14cd7ef9b1
BLAKE2b-256 ccfa438c08d0a82dbd27a788d21dfa23a677b9d16f082ce37d37366bafc91d9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 565d28c7cc14b36d2d7bd4a6d710910eb1a7b6e8d90d95ed20b448757b2cc0c0
MD5 7193341d27079840c50f4fb929f7dd00
BLAKE2b-256 51b802962a65f868ccc4d210c3b0c1fbea205a5f29e1c880aa8e2517b0c83fbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 780dc5ac124aaaa3431434453431e4c47c2eaed2dfe30c7feed8b8692e6d110c
MD5 c56daa6f650c4f1ebf544f2c129cb193
BLAKE2b-256 185da188863018195101a3e224e94f2e4cb87836cc444c269473cea4db1950a3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.7.1-cp311-none-win32.whl
  • Upload date:
  • Size: 893.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.8

File hashes

Hashes for pydantic_core-0.7.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 8b2cd20e589f4f33c4ffba73cef646185b0f20a254ec337c6eb59e464cf3fbd8
MD5 1e36a6a7ebf2184bf88697ed79e614cf
BLAKE2b-256 e52fd0f0bc5b97ab38a3524be5e103bdc46c959cc125ac3f4bee05478c3331f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9f93dc9592c485caabc649afe5ba5ab4534667207cb8a6f818afb528decf705d
MD5 228a6e8149be0129f690cb5da5ee98d4
BLAKE2b-256 9a3a468cececf15989d5361a85634c9a7908a97719ffc1a8128b3a26c946cbdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8a7ee49820ac154a7da28f0ab131755e8074872b1dee4db5b836ecda6bf58d82
MD5 686299f6c93d89690b927636ff50ae08
BLAKE2b-256 05a7896192bb17abb6f46cbac611320e49a259dc8b7483e31728d55eefc4bb5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 088e9fb60dfaed155d4eeb735eee496abd3aff5e05c8d485eb5593bf43770058
MD5 38cec878bce72e2393fd7798a039cdae
BLAKE2b-256 b4f8e961c99f0c8e6d7ff374149ffbf44d0a3ace5713f15814bf5b13212259d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6911e50cf891902ab418a73b6c58a7b14a397cab9d61de1d115f56d59404c25b
MD5 58161f502613383aab4fc1757f6d6935
BLAKE2b-256 1cf9928383165723ce50c4afa8969e1e3ee84bcd648e571ef0b57cb05f88bdd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6909c4708e70062cae20c4091628d6b45a2cce454d724771d60c7025a7e54db5
MD5 da71caadd3e961e000ab7cb32f8c3fac
BLAKE2b-256 c41dd800617a8ac391867aab2b1443be48f3a801e2437d9ca9b3926d6b58213e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 260853d668708e3c418015f460b6edaf4b584f866fcdc6defc49d58b7e8d88a5
MD5 ae9e755c674931e54a9df985b2ffcbe1
BLAKE2b-256 1d49955330412ddca6e6b71615df7aa1faf9e67376b02753dc33a99622f18392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7aba56f5feb040fb0ba039dc55c0d2405cb8e9b778534c8407c47be0464987e
MD5 78bbc34624c081db69b51615f1d5918c
BLAKE2b-256 a0e490c03ecc5fa9ad99f7a6f15e9ac0c11201eeeeff2c827875462087b767b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d49444d0d02689fab90519a932e297025566e47b65bd13f88da8546f3894778a
MD5 1d1cbf4ea88c291b960d086f8dea7457
BLAKE2b-256 878e71b7ff324db93bfd6560d836ac78f64ccbf3849d3d989c6f04ee24d33f70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3cf5caaf2f5284031b8719ba978cedef9618402f2aa9ce9ba7394646d8628ed6
MD5 100137c37e9dff922ce6ee4828999d58
BLAKE2b-256 4443922158cd05c0786bc0c1b53e648c9d6361b0c4e206e4c82165a21ff0a6d2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.7.1-cp310-none-win32.whl
  • Upload date:
  • Size: 893.5 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.7.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 77828786183d07435e6880b14b0c1b22fb605f064e6c6bce007f7eded467d85d
MD5 3e9a2f592b0d974247f8f5965290aff0
BLAKE2b-256 133ef5db12056f9745ff51c369b2b41abfa4d5ba6adaffc1c61104937fa5e87f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 50f10c5254d499ac42e49343da1bfc764b079cb93d20ab71f005ed6233e30431
MD5 6a4b47f078b52398dfd9c82af71fff62
BLAKE2b-256 f79aa972e45c5cd708c8b6dfca9e161de5ed4094d608e493d02f83e04d2836fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eebb9e84397ef60ecbbd47dabf22a1fa907cfa7392e2a2f11ed69423e8d470d6
MD5 edbabe7062a3bf7003ce758f0081c1aa
BLAKE2b-256 152c8f69e292c211bad04f72fb754edd26e9189fb655d748823598f9a4113a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 6f7a7128566324539fabd6ccd07639b5e479fd7b44d79f073753deea52bbe012
MD5 d9957b716fe2c68c6848dcfa15c0e36b
BLAKE2b-256 119e92db5d298e23bdde7ddbf5d52c8d9ae4079aea46d55dd9e726c529c21438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdd83505834f9c50ccbbdbe090db7286542b37ed3b32cdbd77053596ae12166b
MD5 c01f6a2ba150de415299ebb12c2c5b61
BLAKE2b-256 55fa777ba8338916814aadb9a97e3ec2b08fa8d4b7076e7e27d01387f01d5f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7c10cd9b05787e6f7c7c806332dcbc65ea209aa683f44688889999cf842620b
MD5 32fd4070b9ef4e80a6efd712ae9e4745
BLAKE2b-256 2bf1cd97237ead25f114b04673d2b761916db771e2c971224627f51d079ed34e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 98dd6e9c93b7767577c3c9617a6b005308e51490e4f3a9ce87f15acbfe531eb0
MD5 5fd60906b4f238b29dab19e41c03b8e6
BLAKE2b-256 ca6e689c63cde4e46f9ae89c0103cf303ad853c0576694ebfcdfe6b6907cce73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 572c2cfabda910f5d505ff43cbddb2233fed2c49c79fd053b8d66d0f43ed1d0c
MD5 7bd19f0409c3c49b02a8dd43614c0679
BLAKE2b-256 40f290bd453c8b4403dae180ce8cab607d082ddccfb3e6f4b704f37489044fc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 69f39f49b812a32aeeb2c2d821d71072e1c55b3a28738a54c63ec70ad8befb25
MD5 230d7b79f17deff173e5f41301b6fb33
BLAKE2b-256 a715a98db546e0b627652616194de42e7c14d15e41dd8c3777d7d1c03d531fc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 1849baa19c81609d51b566540c25416d589ab5c05a07089fb94e6dd855654ce7
MD5 7f2069113792e4f405df8f832c9f84a0
BLAKE2b-256 b39df93b1a8f4493ce4d43c2991f526d6c1407b89154135adacbfc05f6acd0a6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.7.1-cp39-none-win32.whl
  • Upload date:
  • Size: 893.7 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.7.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 f76e65f9d76aa8b6c73fe8a1aead7d43f8b08a513f035e7c4783c60a7955a60a
MD5 8051651107653c1236bddd1cdbd1293d
BLAKE2b-256 9839c4ba61fab83b1de646e7c4d2acebccb78aef219fa1cd7110ba149aca417c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5b74d1ef29a97c4900daffeac1c61e736c837548545f0ff36d408fbfed72fba1
MD5 e3a908a5598c66d9dcd4f847a68f3a56
BLAKE2b-256 66a5b609cdd162a511ae3db18b5d95d905cec40026f5e8fd69c4c57fc5d97f2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a0df225fdc76c99d34775a40ae1e4b70da4fcd2242d7c9437ec07b0ba45e25c3
MD5 4a1fbf34925ed8817ae7728dd4204061
BLAKE2b-256 bfa45cf1a3ef64ac146c479334892104e50899d96f2c36baf5d241e60ab19137

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 7161d530305a0acbb08aacd496e785cad73b0a00a3cfc0b33f313ca8e664cec4
MD5 1f051bf2df7e5673fb1887028725f846
BLAKE2b-256 8859a6b083eeb57e1a2b6c0eb4f170f523f33a6b28535fc401dc6197e0762b49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2121aa8f66d1f5c36a63e778805b088b36051f22998939cf9f74fdb976f0322a
MD5 1d63a4406cdd51b8144927be4a965add
BLAKE2b-256 c6ec8264e28eebf6f8faafc6226e169614c927d1cb14ea68a19fc3573cf9b3c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c898256ebac9b7628dbb0e48ac8ff2e7fa79fcec0cf8108e3de568c9fe7c43a
MD5 721ee990873108d1d179c84d11164614
BLAKE2b-256 542d4b278184d143fa46d8095d7bc0e6a582b47985d849883219315ec13e6348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 857725c4ff6a97d37c0ecf11a3b122a22fa58c25d28bf2fae0f4fc929ba61ba4
MD5 1fce2b096631fbcf8d50d17f91e5a174
BLAKE2b-256 e186bf6f695a44320b9bc3be14f1e29fc030553b554d9e7b4a8ebfa99bb4d502

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9a8d93fd400e04e496346e2ec5b128a6e8ac94af9321fc6ec29b3bf26d398fba
MD5 766fbf68ff814657295949973181a460
BLAKE2b-256 1b05d80a43981ab1d231696a7f0d43495a2e05a3befe455087c4debb7ee1fded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5af5cc4951553c1b7dde6108ac6b0894e680622564514df81b0c490a8a2dac44
MD5 adc5727669e7f53a90a2d3844bb1ae8f
BLAKE2b-256 4fdd99703103efbb507a71f8aa4f81cc17b69f87898d944a13ead3cd3bdcbfb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 cbb631d69ae4c1f7e8c9302a0d4b53007b53a1895f33c856325a37c9673a4acb
MD5 8ff7b39dbdab0563b897920a895b8227
BLAKE2b-256 65d9de6ba3a19818eabfb84ead1484eba96cb8e3c0d8e66b5ac26fc67290da18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.7.1-cp38-none-win32.whl
  • Upload date:
  • Size: 893.6 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.7.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 14a1c32ceaf39945fb499a683255696e88d20b8d381f6f7e65c786740cd0c12d
MD5 71ba6deb8de14726c63f7c796fe3a17e
BLAKE2b-256 8d4a68728b0046a28a01248c35dbb18011486f2429efcf7fe72544cb87a7bd05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2e6c5049268395d839a92e087e1bc48745303b84c629531f59d9b60509a0141e
MD5 7c7a266994faf4086e83fae840dbf6b5
BLAKE2b-256 8fffe75be9115905b16cfc5f9ffb2e4c8941dc44a18b56e1e004bc1a755487f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 de5566997875ee0ed9319102e066a02cfc19b548eb1c2496e9519c4b229d745f
MD5 65b370af35fd833a86f1b13684750684
BLAKE2b-256 86d174ac4420e75677748f90e0e8e5f03e533b99ee060fc64203fcbc11387900

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 bd2842f60b66aa06c248db71ae7ec3471eab96cb520767b9ce7ca1cabe5e2c90
MD5 e298cd53beca8ace0b88ce5b1f0258a3
BLAKE2b-256 bf0ad650e93e3d8b8a99f9d14e6014d4413a3191155df324f9bace035637d2f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f9a4e6b5872d8f3c44a26dfc4adba29f073bc8d6f08e58ed88c2f1596df65f9b
MD5 ebf53eabedccb720c8df3c405881e288
BLAKE2b-256 5aa759e9752f4744bb848c960e3dca226efba74244404c51acd65715399d6a6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f19245ec104f226c89dea03e3da1cf4e6ffc316312f339b1d052c100c38869ca
MD5 9e23d360a82165fa5081ee08f5f869c1
BLAKE2b-256 9ee0284c1e1da4f4e304129fd05cd18807b51af4aa7550edf7ad5355cdfc2dba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d524261e223ca1c2ec82ba9219006f10efb5d69f79ae520d49a51a68e6946d21
MD5 956c2d4b9e59b780efd0fe049bd0f101
BLAKE2b-256 5712be700de21a6e3454e5d3ed0365e9cc4601c10aabaf3520820dfa7695e1be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bda944e51fff4e8bde6f7f9b0f3d858770562d72c9435d6f1898283d97d98f70
MD5 690c19911ab35a233307c5b7016a4b07
BLAKE2b-256 c787bc623456f9f13bf2c50f6b1b20a0ecee16b169a85030642acd28c363cd3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 53beda29227c58b6be9396b2bc95ec95188edbbc6a1d70cd21d74e3039a4cb92
MD5 2eaebea53eaddfedec2e6851c4262aa9
BLAKE2b-256 ae7b9f9f1bdf6d849ca6ceff97579fac2cbae0218f4a8b5137969f8a0ad97a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 b93ba11bff1740dba096c8f260da318534302fe5447ea9a472de599232f45b4f
MD5 974468b623884dbc13f3010ee86c00dc
BLAKE2b-256 06f97419289b32f5d5f5683484c9d9700a70db1f4c005ae01af3ef4d70dca1f4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-0.7.1-cp37-none-win32.whl
  • Upload date:
  • Size: 893.8 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.7.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 e8cbbe70c155cc25d719c631cc80e79f9c397633e0db0c7424fde4d90facca9d
MD5 1db5bd9c07b14837f7c889f15830e386
BLAKE2b-256 22bfe183aec33be0210c3d1d3cf19162eb455f5eb5713c903508446d5834c01b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e93b71127158c70715f897e1ce12ab705884b31bb9315a3e07159677ae13fc75
MD5 6277b7971f47b1df6ba4a6b1476e5510
BLAKE2b-256 d27bfb88b24b0111a831d0d8f023867efc905f832bec7f7b5b7dfa43be982748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 07eec0f264563b208f84194930e6760014ce7027c1d8ffdb8d0465ba90c0e2b1
MD5 f09c88a76b25409656ce4b431f6a4022
BLAKE2b-256 76df0baa12e5ea7f48540d4520c069d18c165ade96b52c9272faca47a389a4d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 72d6d5c991239a2324dfbc1b108609ee74dd29d55d26d66c326589101397efc7
MD5 29faf020eb2222fefb38e9813c53c3c1
BLAKE2b-256 99e80d03e097eab96ed8b490300a0db9c560f7eaf2fb601c344d79dd288d9097

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7db3cc3d4d56b65c158d53c4cbacb16ec51911628727a3f70f31a9ce82bbb162
MD5 a33c7a28a8268d61a3c30cdfe597c9db
BLAKE2b-256 a1bf6a14f1276beef29ac64bcf3228d32d07cbb8fd7bb08705b001ed7ec83be2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de1548e02db6a52ec19149e5578c8e797727aab60a7b718232cea0a0fab6cab6
MD5 4550907b9eaa4d99b2ba5df64c48e175
BLAKE2b-256 dfac3c383bad6eaf20da11ce07f3af268d5b9acb57b994d6dde064f818882ee1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 47cc78c29e76fddd3b91cea6ca00871a18c53fb66fa113af68a9957550452f87
MD5 8fb0d6b76f7f4e9f4482d7ae48135b17
BLAKE2b-256 1283ba94e00a8eeb421f01ca97ebf59327d877742781ce621691faf4c5a79710

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d0900ae4463075288c99f045a3da70cdef3a8a80cf51f4d559420a0a0981359
MD5 ea8a2749e2546b4a8ecd686226ed3c75
BLAKE2b-256 582cbe54d3ef83d6d7f93607ae43b8b4c66e180be398af7f1ab5cf6b84e619e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-0.7.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 43b898f32e82ac510d8671f6e5ce3fcfc04359da60be5933b1fd705f09c52d24
MD5 9d27f724a3d3b1948b1e6d860eff60b5
BLAKE2b-256 1a2f0c8b3e75f15d3878cb903033f6852c20362f45452d27d740459f85ccf42b

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