Skip to main content

Core functionality for Pydantic validation and serialization

Project description

pydantic-core

CI Coverage pypi versions license

This package provides the core functionality for pydantic validation and serialization.

Pydantic-core is currently around 17x faster than pydantic V1. See tests/benchmarks/ for details.

Example of direct usage

NOTE: You should not need to use pydantic-core directly; instead, use pydantic, which in turn uses pydantic-core.

from pydantic_core import SchemaValidator, ValidationError


v = SchemaValidator(
    {
        'type': 'typed-dict',
        'fields': {
            'name': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'str',
                },
            },
            'age': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'int',
                    'ge': 18,
                },
            },
            'is_developer': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'default',
                    'schema': {'type': 'bool'},
                    'default': True,
                },
            },
        },
    }
)

r1 = v.validate_python({'name': 'Samuel', 'age': 35})
assert r1 == {'name': 'Samuel', 'age': 35, 'is_developer': True}

# pydantic-core can also validate JSON directly
r2 = v.validate_json('{"name": "Samuel", "age": 35}')
assert r1 == r2

try:
    v.validate_python({'name': 'Samuel', 'age': 11})
except ValidationError as e:
    print(e)
    """
    1 validation error for model
    age
      Input should be greater than or equal to 18
      [type=greater_than_equal, context={ge: 18}, input_value=11, input_type=int]
    """

Getting Started

You'll need rust stable installed, or rust nightly if you want to generate accurate coverage.

With rust and python 3.8+ 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 python/pydantic_core/_pydantic_core.pyi and python/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

Profiling

It's possible to profile the code using the flamegraph utility from flamegraph-rs. (Tested on Linux.) You can install this with cargo install flamegraph.

Run make build-profiling to install a release build with debugging symbols included (needed for profiling).

Once that is built, you can profile pytest benchmarks with (e.g.):

flamegraph -- pytest tests/benchmarks/test_micro_benchmarks.py -k test_list_of_ints_core_py --benchmark-enable

The flamegraph command will produce an interactive SVG at flamegraph.svg.

Releasing

  1. Bump package version locally. Do not just edit Cargo.toml on Github, you need both Cargo.toml and Cargo.lock to be updated.
  2. Make a PR for the version bump and merge it.
  3. Go to https://github.com/pydantic/pydantic-core/releases and click "Draft a new release"
  4. In the "Choose a tag" dropdown enter the new tag v<the.new.version> and select "Create new tag on publish" when the option appears.
  5. Enter the release title in the form "v<the.new.version> "
  6. Click Generate release notes button
  7. Click Publish release
  8. Go to https://github.com/pydantic/pydantic-core/actions and ensure that all build for release are done successfully.
  9. Go to https://pypi.org/project/pydantic-core/ and ensure that the latest release is published.
  10. Done 🎉

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

Uploaded Source

Built Distributions

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

pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.20.1-cp313-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86-64

pydantic_core-2.20.1-cp313-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_core-2.20.1-cp312-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.20.1-cp312-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_core-2.20.1-cp311-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-2.20.1-cp311-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_core-2.20.1-cp310-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-2.20.1-cp310-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-2.20.1-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pydantic_core-2.20.1-cp39-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-2.20.1-cp39-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-2.20.1-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

pydantic_core-2.20.1-cp38-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-2.20.1-cp38-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-2.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-2.20.1-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.20.1-cp38-cp38-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.20.1.tar.gz
  • Upload date:
  • Size: 388.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.1.tar.gz
Algorithm Hash digest
SHA256 26ca695eeee5f9f1aeeb211ffc12f10bcb6f71e2989988fda61dabd65db878d4
MD5 55b6b95808ee4d1e3b08ae654ca2acf8
BLAKE2b-256 12e30d5ad91211dba310f7ded335f4dad871172b9cc9ce204f5a56d76ccd6247

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 254ec27fdb5b1ee60684f91683be95e5133c994cc54e86a0b0963afa25c8f8a6
MD5 9678c89442256886a0496c90c3f2f5e3
BLAKE2b-256 af9306d44e08277b3b818b75bd5f25e879d7693e4b7dd3505fde89916fcc9ca2

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e0bbdd76ce9aa5d4209d65f2b27fc6e5ef1312ae6c5333c26db3f5ade53a1e99
MD5 238e5f3c3c6d718f48fa2f54a187314c
BLAKE2b-256 dd9e0309a7a4bea51771729515e413b3987be0789837de99087f7415e0db1f9b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 38cf1c40a921d05c5edc61a785c0ddb4bed67827069f535d794ce6bcded919fc
MD5 4e467caf4ed103e820a5689455033694
BLAKE2b-256 ac76450d9258c58dc7c70b9e3aadf6bebe23ddd99e459c365e2adbde80e238da

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 084659fac3c83fd674596612aeff6041a18402f1e1bc19ca39e417d554468482
MD5 56c891237f34ac2fe5bae891b3278034
BLAKE2b-256 9ef5f178f4354d0d6c1431a8f9ede71f3c4269ac4dc55d314fdb7555814276dc

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d2b27e6af28f07e2f195552b37d7d66b150adbaa39a6d327766ffd695799780f
MD5 8545f820f31e0139834b022ad7967ee5
BLAKE2b-256 283dd66314bad6bb777a36559195a007b31e916bd9e2c198f7bb8f4ccdceb4fa

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 242b8feb3c493ab78be289c034a1f659e8826e2233786e36f2893a950a719bb6
MD5 f72c79d9d13d33cc0c50cfdebb6855ef
BLAKE2b-256 9c511f5e27bb194df79e30b593b608c66e881ed481241e2b9ed5bdf86d165480

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d02a72df14dfdbaf228424573a07af10637bd490f0901cee872c4f434a735b94
MD5 7da1d86e716041578e3a154e333baff8
BLAKE2b-256 275560b8b0e58b49ee3ed36a18562dd7c6bc06a551c390e387af5872a238f2ec

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a45f84b09ac9c3d35dfcf6a27fd0634d30d183205230a0ebe8373a0e8cfa0906
MD5 63f466cdfa5527554ed3eef337b229d6
BLAKE2b-256 73730c7265903f66cce39ed7ca939684fba344210cefc91ccc999cfd5b113fd3

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a6d511cc297ff0883bc3708b465ff82d7560193169a8b93260f74ecb0a5e08a7
MD5 0313f54fed05e1a1374658966593e296
BLAKE2b-256 078b30233f741e16b35499fa2fad2f4a69eb127eec6c850a1b14af26e7b08b73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f6d6cff3538391e8486a431569b77921adfcdef14eb18fbf19b7c0a5294d4e6a
MD5 eceba55bc76f99a5afe6d0c3a3140c97
BLAKE2b-256 deee322cad098a0cffc81e985ac2a298d3f29a1da25efe7dc1fb5cd2615c5b04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4dd484681c15e6b9a977c785a345d3e378d72678fd5f1f3c0509608da24f2ac0
MD5 6323c95da88dd97140652c696e7af7fa
BLAKE2b-256 3126b670bd58f1de902c099ff623fe62b9820448a20d70437e7698a57b922d3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 177f55a886d74f1808763976ac4efd29b7ed15c69f4d838bbd74d9d09cf6fa86
MD5 41830bdc70aa7b4fd92effbb682912a7
BLAKE2b-256 d53e9af260156f79347ed3e64149836d69bfe1e0c5efadec6116a879fc31c9ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b5ff4911aea936a47d9376fd3ab17e970cc543d1b68921886e7f64bd28308d1
MD5 5ed2acfde7fba744aed210d78cfb5b95
BLAKE2b-256 2fc6f80ea0fac8c241c066245fe918cdc9d105985a1a8726aced9478548c9e37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 964faa8a861d2664f0c7ab0c181af0bea66098b1919439815ca8803ef136fc4e
MD5 56fab9b6b9447ac84a2777fe5f5e53d5
BLAKE2b-256 d1fe8c3e928e10a97eb8e85b18a53ed3288d039cf0fd7b0fe8d3258f14e8500a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c693e916709c2465b02ca0ad7b387c4f8423d1db7b4649c551f27a529181c5ad
MD5 9b5d713d0bf51562966733dfd3306906
BLAKE2b-256 f1803b9d7fb8b4f8d36e24373334740c0b88d9ded08342543a72e9247b4fa410

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 407653af5617f0757261ae249d3fba09504d7a71ab36ac057c938572d1bc9331
MD5 452b76e0fc505208b035b074f2dc5350
BLAKE2b-256 ffd0639b12bc7c81ebcbbd5f946327e8970089b23fa5b11d7abb56495cbdc0de

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp313-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 65db0f2eefcaad1a3950f498aabb4875c8890438bc80b19362cf633b87a8ab20
MD5 74f8fe1f53b4b397c6e77509267cba13
BLAKE2b-256 1363b95781763e8d84207025071c0cec16d921c0163c7a9033ae4b9a0e020dc7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp313-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.20.1-cp313-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.1-cp313-none-win32.whl
Algorithm Hash digest
SHA256 b91ced227c41aa29c672814f50dbb05ec93536abf8f43cd14ec9521ea09afe4e
MD5 1a168ad7797747694f05f1b7ab09adca
BLAKE2b-256 7aeae4943f17df7a3031d709481fe4363d4624ae875a6409aec34c28c9e6cf59

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c81131869240e3e568916ef4c307f8b99583efaa60a8112ef27a366eefba8ef0
MD5 dadef929c1153cb26aeff29a05593eb9
BLAKE2b-256 5d1ff378631574ead46d636b9a04a80ff878b9365d4b361b1905ef1667d4182a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 270755f15174fb983890c49881e93f8f1b80f0b5e3a3cc1394a255706cabd203
MD5 fb793e1d083cda29f4e9a61aea03288a
BLAKE2b-256 fe50077c7f35b6488dc369a6d22993af3a37901e198630f38ac43391ca730f5b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e9fa4c9bf273ca41f940bceb86922a7667cd5bf90e95dbb157cbb8441008482c
MD5 06b45349c8db9228f602361493372c00
BLAKE2b-256 ac88ca758e979457096008a4b16a064509028e3e092a1e85a5ed6c18ced8da88

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 70c8daf4faca8da5a6d655f9af86faf6ec2e1768f4b8b9d0226c02f3d6209703
MD5 4ef3b320f8e4784daad1becabe88d861
BLAKE2b-256 792d7bcd938c6afb0f40293283f5f09988b61fb0a4f1d180abe7c23a2f665f8e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7eb6a0587eded33aeefea9f916899d42b1799b7b14b8f8ff2753c0ac1741edac
MD5 2d5ea8eba466acd9902fa5958f4f0806
BLAKE2b-256 a2bed9bbabc55b05019013180f141fcaf3b14dbe15ca7da550e95b60c321009a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c336a6d235522a62fef872c6295a42ecb0c4e1d0f1a3e500fe949415761b8a19
MD5 4cabf4b02be47fbf151b2ebef000fe8f
BLAKE2b-256 7a8072057580681cdbe55699c367963d9c661b569a1d39338b4f6239faf36cdc

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4aa223cd1e36b642092c326d694d8bf59b71ddddc94cdb752bbbb1c5c91d833b
MD5 e5efba0b1eb1135281de917235d443f4
BLAKE2b-256 91ae25ecd9bc4ce4993e99a1a3c9ab111c082630c914260e129572fafed4ecc2

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 11b71d67b4725e7e2a9f6e9c0ac1239bbc0c48cce3dc59f98635efc57d6dac83
MD5 53ece8074101a908b7bdac79cdf91002
BLAKE2b-256 ebde2fad6d63c3c42e472e985acb12ec45b7f56e42e6f4cd6dfbc5e87ee8678c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19c0fa39fa154e7e0b7f82f88ef85faa2a4c23cc65aae2f5aea625e3c13c735a
MD5 702dff30377a36ac203cbc2bed10534c
BLAKE2b-256 7502d8ba2d4a266591a6a623c68b331b96523d4b62ab82a951794e3ed8907390

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0827505a5c87e8aa285dc31e9ec7f4a17c81a813d45f70b1d9164e03a813a686
MD5 ec1201e940f61a374033704e9edd328e
BLAKE2b-256 497540b0e98b658fdba02a693b3bacb4c875a28bba87796c7b13975976597d8c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp312-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 035ede2e16da7281041f0e626459bcae33ed998cca6a0a007a5ebb73414ac72d
MD5 69eaaddaf5abc12972f694cc7b522e35
BLAKE2b-256 d536e61ad5a46607a469e2786f398cd671ebafcd9fb17f09a2359985c7228df5

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp312-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.20.1-cp312-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 469f29f9093c9d834432034d33f5fe45699e664f12a13bf38c04967ce233d688
MD5 061ae04badddfff3f0f79631d0a03136
BLAKE2b-256 06fc6123b00a9240fbb9ae0babad7a005d51103d9a5d39c957a986f5cdd0c271

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 516d9227919612425c8ef1c9b869bbbee249bc91912c8aaffb66116c0b447ebd
MD5 7e382a3f164ba9463daa4b9661a70019
BLAKE2b-256 465e6c716810ea20a6419188992973a73c2fb4eb99cd382368d0637ddb6d3c99

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bebb4d6715c814597f85297c332297c6ce81e29436125ca59d1159b07f423eb1
MD5 e32517bda29c0c55857d52e906e61c94
BLAKE2b-256 8ee69aca9ffae60f9cdf0183069de3e271889b628d0fb175913fcb3db5618fb1

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26dc97754b57d2fd00ac2b24dfa341abffc380b823211994c4efac7f13b9e90e
MD5 2b7c692c5ed02f8129d20f5e209197f9
BLAKE2b-256 09b3a5a54b47cccd1ab661ed5775235c5e06924753c2d4817737c5667bfa19a8

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d573faf8eb7e6b1cbbcb4f5b247c60ca8be39fe2c674495df0eb4318303137fe
MD5 ff78271f099492dec8b5cb8e16f1f47b
BLAKE2b-256 c86541693110fb3552556180460daffdb8bbeefb87fc026fd9aa4b849374015c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc633a9fe1eb87e250b5c57d389cf28998e4292336926b0b6cdaee353f89a237
MD5 5bccd3f0a9af5146d7eb1cde5c4993bb
BLAKE2b-256 5edabb73274c42cb60decfa61e9eb0c9029da78b3b9af0a9de0309dbc8ff87b6

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e97fdf088d4b31ff4ba35db26d9cc472ac7ef4a2ff2badeabf8d727b3377fc52
MD5 9645c887862c1a038b02d6121d95d4f0
BLAKE2b-256 64b038b24a1fa6d2f96af3148362e10737ec073768cd44d3ec21dca3be40a519

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f9aa05d09ecf4c75157197f27cdc9cfaeb7c5f15021c6373932bf3e124af029f
MD5 a45dcc91042bf82020899ac12f294452
BLAKE2b-256 9e2bec4e7225dee79e0dc80ccc3c35ab33cc2c4bbb8a1a7ecf060e5e453651ec

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33499e85e739a4b60c9dac710c20a08dc73cb3240c9a0e22325e671b27b70d24
MD5 f4c1f72e3483819d90fb7c9761cab950
BLAKE2b-256 52fa443a7a6ea54beaba45ff3a59f3d3e6e3004b7460bcfb0be77bcf98719d3b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4f55095ad087474999ee28d3398bae183a66be4823f753cd7d67dd0153427c9
MD5 2374cdc937cb3f693e87da12ed3e566d
BLAKE2b-256 6a23430f2878c9cd977a61bb39f71751d9310ec55cee36b3d5bf1752c6341fd0

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 595ba5be69b35777474fa07f80fc260ea71255656191adb22a8c53aba4479231
MD5 17c0ba35d27477619b58c6dda557a0ed
BLAKE2b-256 6f47ef0d60ae23c41aced42921728650460dc831a0adf604bfa66b76028cb4d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 40a783fb7ee353c50bd3853e626f15677ea527ae556429453685ae32280c19c2
MD5 5b43a72abbab53e6f10c2569c75a06a1
BLAKE2b-256 357f58758c42c61b0bdd585158586fecea295523d49933cb33664ea888162daf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.20.1-cp311-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 fa2fddcb7107e0d1808086ca306dcade7df60a13a6c347a7acf1ec139aa6789a
MD5 d3d23f0f6728a903f7f21f9533b0c314
BLAKE2b-256 701a6f7278802dbc66716661618807ab0dfa4fc32b09d1235923bbbe8b3a5757

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9dc1b507c12eb0481d071f3c1808f0529ad41dc415d0ca11f7ebfc666e66a18b
MD5 8106eca20b3f0e0591c74ff55a36b05c
BLAKE2b-256 4c5bfb37fe341344d9651f5c5f579639cd97d50a457dc53901aa8f7e9f28beb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 faa6b09ee09433b87992fb5a2859efd1c264ddc37280d2dd5db502126d0e7f27
MD5 241729a719ee377db57a88ac7ad806ab
BLAKE2b-256 ceef5a52400553b8faa0e7f11fd7a2ba11e8d2feb50b540f9e7973c49b97eac0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3f3ed29cd9f978c604708511a1f9c2fdcb6c38b9aae36a51905b8811ee5cbf1
MD5 4fd0f73decdaf5d0ae4aa25aa3997a19
BLAKE2b-256 3caefc99ce1ba791c9e9d1dee04ce80eef1dae5b25b27e3fc8e19f4e3f1348bf

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ad4aeb3e9a97286573c03df758fc7627aecdd02f1da04516a86dc159bf70121
MD5 67183b54458674cb402c6bbd9a9c1751
BLAKE2b-256 1559b2495be4410462aedb399071c71884042a2c6443319cbf62d00b4a7ed7a5

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 150906b40ff188a3260cbee25380e7494ee85048584998c1e66df0c7a11c17a6
MD5 c04e9625a35013ff31ed51fdce48b56f
BLAKE2b-256 46a408f12b5512f095963550a7cb49ae010e3f8f3f22b45e508c2cb4d7744fce

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25e9185e2d06c16ee438ed39bf62935ec436474a6ac4f9358524220f1b236e43
MD5 1c954414a78255a89f617b6b0643967c
BLAKE2b-256 310aac294caecf235f0cc651de6232f1642bb793af448d1cfc541b0dc1fd72b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 37eee5b638f0e0dcd18d21f59b679686bbd18917b87db0193ae36f9c23c355fc
MD5 1458a80c31563a406deb3564226dfe59
BLAKE2b-256 93ef513ea76d7ca81f2354bb9c8d7839fc1157673e652613f7e1aff17d8ce05d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b0dae11d8f5ded51699c74d9548dcc5938e0804cc8298ec0aa0da95c21fff57b
MD5 64a1982878e7250d8eb6e60a341eaf0f
BLAKE2b-256 44bbeb07cbe47cfd638603ce3cb8c220f1a054b821e666509e535f27ba07ca5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 175873691124f3d0da55aeea1d90660a6ea7a3cfea137c38afa0a5ffabe37b88
MD5 e05341ec9a6be28287ed7f46e40bb7d1
BLAKE2b-256 9b836f2bfe75209d557ae1c3550c1252684fc1827b8b12fbed84c3b4439e135d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d2a8fa9d6d6f891f3deec72f5cc668e6f66b188ab14bb1ab52422fe8e644f312
MD5 b841242df21b553381073a943fc9e729
BLAKE2b-256 61dbf6a724db226d990a329910727cfac43539ff6969edc217286dd05cda3ef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 512ecfbefef6dac7bc5eaaf46177b2de58cdf7acac8793fe033b24ece0b9566c
MD5 63728e4ce6677917d1e0cb224eec05c6
BLAKE2b-256 be4a576524eefa9b301c088c4818dc50ff1c51a88fe29efd87ab75748ae15fd7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.20.1-cp310-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5e999ba8dd90e93d57410c5e67ebb67ffcaadcea0ad973240fdfd3a135506250
MD5 861187fe8a1127e93b538aa492083f34
BLAKE2b-256 bba01876656c7b17eb69cc683452cce6bb890dd722222a71b3de57ddb512f561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4f2790949cf385d985a31984907fecb3896999329103df4e4983a4a41e13e840
MD5 04b1742af7fcca9fa5ca951d620e5cd2
BLAKE2b-256 ca2ff8ca8f0c40b3ee0a4d8730a51851adb14c5eda986ec09f8d754b2fba784e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e7c4ea22b6739b162c9ecaaa41d718dfad48a244909fe7ef4b54c0b530effc5a
MD5 50fb4533fd3027447864ea5b781d3d30
BLAKE2b-256 ce23829f6b87de0775919e82f8addef8b487ace1c77bb4cb754b217f7b1301b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3d482efec8b7dc6bfaedc0f166b2ce349df0011f5d2f1f25537ced4cfc34fd98
MD5 001e35a13d4b23ca62e2622e4f777484
BLAKE2b-256 ae498a6fe79d35e2f3bea566d8ea0e4e6f436d4f749d7838c8e8c4c5148ae706

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5d41e6daee2813ecceea8eda38062d69e280b39df793f5a942fa515b8ed67953
MD5 ea008d3b4870334637856586b3af230d
BLAKE2b-256 413ef62c2a05c554fff34570f6788617e9670c83ed7bc07d62a55cccd1bc0be6

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f1f62b2413c3a0e846c3b838b2ecd6c7a19ec6793b2a522745b0869e37ab5bc1
MD5 230b3288781091bcb66855d86ef44e5e
BLAKE2b-256 c9c7f3c29bed28bd022c783baba5bf9946c4f694cb837a687e62f453c81eb5c6

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53e431da3fc53360db73eedf6f7124d1076e1b4ee4276b36fb25514544ceb4a3
MD5 69201581eec9525acd10f68773a9ccd1
BLAKE2b-256 c7e5f19e13ba86b968d024b56aa53f40b24828652ac026e5addd0ae49eeada02

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f239eb799a2081495ea659d8d4a43a8f42cd1fe9ff2e7e436295c38a10c286a
MD5 27912ce29484e75acd710f23a238a6cb
BLAKE2b-256 18505a4e9120b395108c2a0441a425356c0d26a655d7c617288bec1c28b854ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e93e1a4b4b33daed65d781a57a522ff153dcf748dee70b40c7258c5861e1768a
MD5 ea559f5ab9705ec16564c1f74e16b7bc
BLAKE2b-256 51c6585355c7c8561e11197dbf6333c57dd32f9f62165d48589b57ced2373d97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41f4c96227a67a013e7de5ff8f20fb496ce573893b7f4f2707d065907bffdbd6
MD5 aded8946a5f65c07398b032589bc334d
BLAKE2b-256 f28977e7aebdd4a235497ac1e07f0a99e9f40e47f6e0f6783fe30500df08fc42

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3acae97ffd19bf091c72df4d726d552c473f3576409b2a7ca36b2f535ffff4a3
MD5 bf0beb04011768338306ec2594e0445e
BLAKE2b-256 6b9df30f080f745682e762512f3eef1f6e392c7d74a102e6e96de8a013a5db84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 d2fe69c5434391727efa54b47a1e7986bb0186e72a41b203df8f5b0a19a4f669
MD5 4043c0372a4c8e57492c368d20d0e8be
BLAKE2b-256 ed3667aeb15996618882c5cfe85dbeffefe09e2806cd86bdd37bca40753e82a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.20.1-cp39-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 784c1214cb6dd1e3b15dd8b91b9a53852aed16671cc3fbe4786f4f1db07089e2
MD5 fd89ad7843a6ac37f38c05516e46b4fc
BLAKE2b-256 ec26998c9b8dadcdeafbc833964ef5975cd0c7516b0157575b26300d078ae239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6b9d9bb600328a1ce523ab4f454859e9d439150abb0906c5a1983c146580ebab
MD5 f6bf160d705ffef992748c1f5004e80e
BLAKE2b-256 2f3a80df9b0b5ea5e5b8939285c600dc9ce4a185317f5fb065a37e77a20cbdb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9ebfef07dbe1d93efb94b4700f2d278494e9162565a54f124c404a5656d7ff09
MD5 566cd539265b485ca63a139506284ae7
BLAKE2b-256 ac2234ce27579901fcca525f8adce7747760407cf284c4f0fec6d4542265b451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 10d4204d8ca33146e761c79f83cc861df20e7ae9f6487ca290a97702daf56006
MD5 178a14ceb54ca67ad396af94a81ed11e
BLAKE2b-256 9bf1a006955715be98093d092aa025f604c7c00721e83fe04bf467c49f31a685

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6514f963b023aeee506678a1cf821fe31159b925c4b76fe2afa94cc70b3222b
MD5 6f77baddddb1f26bef8ac2c68fa2b183
BLAKE2b-256 0e9f3094afeb286c60ec08088d938b661a561f3d23cd2e88a90a92ab0ecfce4f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7ed1b0132f24beeec5a78b67d9388656d03e6a7c837394f99257e2d55b461611
MD5 635fa0e9f579c10802b06637e57a1097
BLAKE2b-256 0f0cab6df185529c0ce1a6d916f9d159de389cc7de44eaa9362efc76495fb821

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77bf3ac639c1ff567ae3b47f8d4cc3dc20f9966a2a6dd2311dcc055d3d04fb8a
MD5 8ffd3670f2509d29463089a08e16839f
BLAKE2b-256 1380d9c698486f8fb64b0945e0844c95eef3bcff920941eda30d556deadadbdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 635fee4e041ab9c479e31edda27fcf966ea9614fff1317e280d99eb3e5ab6fe2
MD5 9348d72f25a913616996ce0bf36e0621
BLAKE2b-256 5753fe2e1ae3795b7a69f81913584174f8ed36446b56df734565260830a3632b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d036c7187b9422ae5b262badb87a20a49eb6c5238b2004e96d4da1231badef1
MD5 8d9c2a8855f7143510022919a937b135
BLAKE2b-256 32f6cd2e7bd0a52e2a72841f60c32e62b269995c34bdb13e4d1e799be834338a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1eedfeb6089ed3fad42e81a67755846ad4dcc14d73698c120a82e4ccf0f1f9f6
MD5 470b79021d15ce9036dfe67485b927c4
BLAKE2b-256 77f725f1fba7ea1ae052e20b234e4c66d54b129e5b3f4d1e6c0da6534dbf57c3

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b03f7941783b4c4a26051846dea594628b38f6940a2fdc0df00b221aed39314c
MD5 c78670af818a07ecc64da49f095ac993
BLAKE2b-256 17c3803028de61ce9a1fe1643f77ff845807c76298bf1995fa216c4ae853c6b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 6b507132dcfc0dea440cce23ee2182c0ce7aba7054576efc65634f080dbe9434
MD5 5c38eb92ac195461237cb1256718d554
BLAKE2b-256 34643dab2979df4ae6b3edcb732e589451756c6baa987def03ff9cbfaef59d40

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.20.1-cp38-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 225b67a1f6d602de0ce7f6c1c3ae89a4aa25d3de9be857999e9124f15dab486a
MD5 4345601bbfc6133ba8ff16ebb73f5233
BLAKE2b-256 f240336cb14f0d506314e33c1f9f844dc581c11a4f362c49f082ab409113d1c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aa2f457b4af386254372dfa78a2eda2563680d982422641a85f271c859df1987
MD5 ec1fabecce71015a67b1584669a22993
BLAKE2b-256 c8f8f7c6b4539f08711e298a0e67b5a9a744f45213a27d197566ebd6ce716ef9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4868f6bd7c9d98904b748a2653031fc9c2f85b6237009d475b1008bfaeb0a5aa
MD5 c7d4c1da080305db1e6494599930a048
BLAKE2b-256 023f105cba365f6e94079237a3dd793bc1536dd9a1415556433bd6f10d39f7ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c5ebac750d9d5f2706654c638c041635c385596caf68f81342011ddfa1e5598
MD5 3b863ca63d233e2a0bf03805aa908ff2
BLAKE2b-256 b3e1d394444899ff3bbd694151563c23fbde90ddab588482db5e702ca0715edb

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26ab812fa0c845df815e506be30337e2df27e88399b985d0bb4e3ecfe72df31c
MD5 6982f0dea75fd69539b71ae30a9048f5
BLAKE2b-256 490fbd68db4679cf799f7d979684be322df3bfb929096e569320ab15ba617111

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eaad4ff2de1c3823fddf82f41121bdf453d922e9a238642b1dedb33c4e4f98ad
MD5 17770f31788b223275ee228660044d04
BLAKE2b-256 2d911082e7bc436e79d30f43ee19182bd33bbf4ed5f6c189304438dbc4c59ec3

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 04024d270cf63f586ad41fff13fde4311c4fc13ea74676962c876d9577bcc78f
MD5 b1091cf42e92d07f36fcb40f2b8a870b
BLAKE2b-256 7ec2499c4ad8df5006f72ca8b629d6ad71bebddda9399cae47aa3f17ef808dd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41e81317dd6a0127cabce83c0c9c3fbecceae981c8391e6f1dec88a77c8a569a
MD5 493e001fa3c4ccf465bf3869396e6037
BLAKE2b-256 cdd61e99209168d0ac308e40a9bff1f70778d8feb9f14af60a4af0902d919706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2aafc5a503855ea5885559eae883978c9b6d8c8993d67766ee73d82e841300dd
MD5 b488934b014f512ca96b25a96c831628
BLAKE2b-256 979086d08ec2259e7b83f3883a1328faeeb95fddd0292d62012ea5e1441e73d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a8ad4c766d3f33ba8fd692f9aa297c9058970530a32c728a2c4bfd2616d3358b
MD5 b8dac8217c03742a9715c3046409c4ee
BLAKE2b-256 6fb26d84fa138fd98d6af0d68d90284a0866a16d6e128dd9638f92239342f457

See more details on using hashes here.

File details

Details for the file pydantic_core-2.20.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.20.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4745f4ac52cc6686390c40eaa01d48b18997cb130833154801a442323cc78f91
MD5 52bc4c5e715c6c84d5c338d51a021dbc
BLAKE2b-256 ba45809b121a22a7bf578325be5a35ea98e2fb69c7d497859a4e28659df8f685

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