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

Uploaded Source

Built Distributions

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

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

Uploaded PyPyWindows x86-64

pydantic_core-2.20.0-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.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.20.0-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.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.20.0-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.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-2.20.0-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.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.20.0-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.0-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.0-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.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pydantic_core-2.20.0-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.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.20.0-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.0-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.0-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.0-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.0-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.0-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.0-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.0-cp312-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_core-2.20.0-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.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.20.0-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.0-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.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.20.0-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.0-cp311-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-2.20.0-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.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.20.0-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.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.20.0-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.0-cp310-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-2.20.0-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.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.20.0-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.0-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.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.20.0-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.0-cp39-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-2.20.0-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.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.20.0-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.0-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.0-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.0-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.0-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.0-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.0-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.20.0-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.0-cp38-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-2.20.0-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.0-cp38-cp38-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-2.20.0-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.0-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.0-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.0-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.0-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.0-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.0-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.20.0-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.0.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-2.20.0.tar.gz
Algorithm Hash digest
SHA256 366be8e64e0cb63d87cf79b4e1765c0703dd6313c729b22e7b9e378db6b96877
MD5 43f281e9ea389fd52dfeadeb89c95cdc
BLAKE2b-256 7dfa9802d053f33dbcf110d46e3f28667b06cd764b164f1e3f4189848cdd6e78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 05e83ce2f7eba29e627dd8066aa6c4c0269b2d4f889c0eba157233a353053cea
MD5 361961b4effd1c8fa83b3871c6a1d402
BLAKE2b-256 356f2b347ff78671b7ac4ec2ab287f23de887de070f8e46cd1b43b8798ed2b9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7a3639011c2e8a9628466f616ed7fb413f30032b891898e10895a0a8b5857d6c
MD5 4f82cfc26b3d018786719e42390bd992
BLAKE2b-256 18d8e26c1bdca3298691d3c7dd38a18aab170d311588e93ca818611601c98656

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d08264b4460326cefacc179fc1411304d5af388a79910832835e6f641512358b
MD5 30ad33108e405a01bacf08345d3a4bba
BLAKE2b-256 3c3089a713683a36edfdd7bd9db1bf5bf436c34945a7aa31c6e0a8360bc75195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f8ea1d8b7df522e5ced34993c423c3bf3735c53df8b2a15688a2f03a7d678800
MD5 2303a723e6b5cade85f8bb60fdb59bde
BLAKE2b-256 69ce1127811849ae717be97143e137c1954554d4fcd8722d5839a4355f5ba704

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 840200827984f1c4e114008abc2f5ede362d6e11ed0b5931681884dd41852ff1
MD5 a1e7f31351899d591a71110327b5e20d
BLAKE2b-256 471942b4be12a4222c527b788b765ebe510b076c52221d9cb064a36770ee4b93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d5b8376a867047bf08910573deb95d3c8dfb976eb014ee24f3b5a61ccc5bee1b
MD5 01b898bae8a2726544bf5a57070d1a37
BLAKE2b-256 877f18672b79d601b510f423c00c945b1b310e8aa2d8f5b259fd0bf7f9be6680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2aec8eeea0b08fd6bc2213d8e86811a07491849fd3d79955b62d83e32fa2ad5f
MD5 b6c585c77bf5a764474492bb8f2ae3a3
BLAKE2b-256 57db582304cf68497a45ebcc4c018a1b08c3fbf1e694cbdf7b0a0439452f8d62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cafde15a6f7feaec2f570646e2ffc5b73412295d29134a29067e70740ec6ee20
MD5 304133a2cd7a3dfd4f4a8bc0601d2ca9
BLAKE2b-256 088b531f5415417ff7332889dbc4f66bd98df64d1399f9d4d7d138111302c0c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 116b326ac82c8b315e7348390f6d30bcfe6e688a7d3f1de50ff7bcc2042a23c2
MD5 6d2b8dbf97d68778f80e01a9544aa8f3
BLAKE2b-256 7fba032f074a8150d90ac2064de9c6e113c55725e79c0a69bbfee3ce2e915e7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b4a085bd04af7245e140d1b95619fe8abb445a3d7fdf219b3f80c940853268ef
MD5 7a471063873edb603f01dc7ccf8ab274
BLAKE2b-256 d7c8f0b5ee2b887ff4cdc169651d962ad11990b9221e079aa7a65b64cdcd66e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b8c46a8cf53e849eea7090f331ae2202cd0f1ceb090b00f5902c423bd1e11805
MD5 9ab7260cbdec91984c2433de8cd888e7
BLAKE2b-256 789b816ebb98d3e4207dcb2c68861b6c7f4847a69d002ff2aeffd6fb00cf379f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2761f71faed820e25ec62eacba670d1b5c2709bb131a19fcdbfbb09884593e5a
MD5 3422abf6b35aba952a60e2f122d244b6
BLAKE2b-256 615b5ed7fd215f2a1de9e67f5b5b486f11dbee39b5a7052ffe64d319f5804e30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22e3b1d4b1b3f6082849f9b28427ef147a5b46a6132a3dbaf9ca1baa40c88609
MD5 af8be16195f6497a4219fc198ec59e91
BLAKE2b-256 b04ef10dfbd84f95ce60a60baa3cea4a256883edad0252acb04a6f2b755f4a0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a0586cddbf4380e24569b8a05f234e7305717cc8323f50114dfb2051fcbce2a3
MD5 b6ed1976114e4e388a43ad841fa843dc
BLAKE2b-256 d451dc947a8d4dca69f8f14e30837c738dfb242f6bc0ef13607220c033839e70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac76f30d5d3454f4c28826d891fe74d25121a346c69523c9810ebba43f3b1cec
MD5 b0e1b13c0e8437c872b4de6be0e36965
BLAKE2b-256 3502e45fcbce79481212dce6af4abcc8388f89c4c8f91b9bc3182d7cf98b176d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 603a843fea76a595c8f661cd4da4d2281dff1e38c4a836a928eac1a2f8fe88e4
MD5 e551bc0b4e1a4ba33d30617c3aa47def
BLAKE2b-256 92ba8c66a29cdc7480850d45e6472fcd9635bcdc183ff8236e69af2560daa783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 03aceaf6a5adaad3bec2233edc5a7905026553916615888e53154807e404545c
MD5 ae52a54ad4f7b71cf99c77435486a3ad
BLAKE2b-256 5904475e9c2013aeb8d130d40818466b1f8eee017d2e3a5ecc3324211fe69c8f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.20.0-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.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.0-cp313-none-win32.whl
Algorithm Hash digest
SHA256 a3f243f318bd9523277fa123b3163f4c005a3e8619d4b867064de02f287a564d
MD5 e9021218216379569ba86a630241c37d
BLAKE2b-256 608c1da883ec849c75256210db8370906a151898e5dce5be85ced7881e980a44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 763602504bf640b3ded3bba3f8ed8a1cc2fc6a87b8d55c1c5689f428c49c947e
MD5 8dd63f03986b81f43ca4c15ef4f6c4e0
BLAKE2b-256 10a81ce3a2af38c87890ad27d97f405cadab56aecdbf7e8e88dc39f45eeb63ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 16197e6f4fdecb9892ed2436e507e44f0a1aa2cff3b9306d1c879ea2f9200997
MD5 941711f2d816eb2baaaf38a7c85076bb
BLAKE2b-256 104ea4808cc751651329b7f0372454bbe486e79e7189b974748fba361abadecc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e49524917b8d3c2f42cd0d2df61178e08e50f5f029f9af1f402b3ee64574392
MD5 785c937242af2098f1b0a8d6e7aef354
BLAKE2b-256 2afb379309fab9af69d30c523978a971f8050d96bd3e36fb317b2c57bfd65548

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d70a8ff2d4953afb4cbe6211f17268ad29c0b47e73d3372f40e7775904bc28fc
MD5 4f3b3ffce51a768a6577d71a66c1392a
BLAKE2b-256 b8d19148ea8c18212a297c6b256e0197268523f30e02057474157784c9f5835e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 72432fd6e868c8d0a6849869e004b8bcae233a3c56383954c228316694920b38
MD5 3c11db37fc57806ccb5733e854aa5104
BLAKE2b-256 f5fda07dc6fcdf9e0b2f5e4c016dd74a188fc19311aceac89cee1fd2471e3b06

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b2f13c3e955a087c3ec86f97661d9f72a76e221281b2262956af381224cfc243
MD5 5bae0380890d8a7e25ef72407f7bd54c
BLAKE2b-256 0b3ed93ae7810b35d44d8777768b561001eff279040580aebf71ce9c8e9a613f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b6a24d7b5893392f2b8e3b7a0031ae3b14c6c1942a4615f0d8794fdeeefb08b
MD5 d66305187e7859e55004ae259d26d7bc
BLAKE2b-256 cbac42aa7ee25d816c9fed9fe1bf4ee11472ba8057814262c8f713fa010ed4d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a4f0f71653b1c1bad0350bc0b4cc057ab87b438ff18fa6392533811ebd01439c
MD5 6cd95ae8e4f706c1ea5e6c3c46d14bf3
BLAKE2b-256 6f23f100db088bb343a4a9e8d3085cb84d349bcf6004b101eebb5c8812226e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d43e7ab3b65e4dc35a7612cfff7b0fd62dce5bc11a7cd198310b57f39847fd6c
MD5 cb9d4b88517204863761df9b254206e4
BLAKE2b-256 820d25e4087d8380fa696cbde556fa2694947038872d50cb01f86909d59fc4b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 7d4df13d1c55e84351fab51383520b84f490740a9f1fec905362aa64590b7a5d
MD5 73094ef494407985f541fb19045d6a8a
BLAKE2b-256 4ad4ec35826073e92b0b37c2df2075b0aa7abecc2d8217480a90e864f7f3e39f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.20.0-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.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7e37b6bb6e90c2b8412b06373c6978d9d81e7199a40e24a6ef480e8acdeaf918
MD5 934b50d39045a33a38c05ae736256989
BLAKE2b-256 a8510d66a7a600f0e33eaeafb65ce5693a90130d00072eaecb184881dd5bd37a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0f6dd3612a3b9f91f2e63924ea18a4476656c6d01843ca20a4c09e00422195af
MD5 10c730bdeee95520c4da6d6392f68f52
BLAKE2b-256 dedcbc741bf0a400f983cab9e5d4feac936040c0fc7665a65da5bc6c8db275a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 35681445dc85446fb105943d81ae7569aa7e89de80d1ca4ac3229e05c311bdb1
MD5 4d84f45663d1ae642aec89eb5365fdff
BLAKE2b-256 0c00fde56cd48a4ebb9d7dfe9e38aa14737be7349dd8d30de162955182e38e16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b0eefc7633a04c0694340aad91fbfd1986fe1a1e0c63a22793ba40a18fcbdc8
MD5 a27753dbeaccd1c868381b328cc69cb2
BLAKE2b-256 996a8c9e41bd2848e6f2a970f93f4cf0f2f62ce5248ab2b23b85dd7247069f1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 879ae6bb08a063b3e1b7ac8c860096d8fd6b48dd9b2690b7f2738b8c835e744b
MD5 a299c84a9704a1c9ee790984267abbee
BLAKE2b-256 7c23f8a75d2f766f9fbe4a080c1ca2e00e2eb61f237b9d930976d0aba95cd691

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2ba34a099576234671f2e4274e5bc6813b22e28778c216d680eabd0db3f7dad
MD5 57a0e17c529c39d0d044bfdbce57af1f
BLAKE2b-256 bec33510274ee06bc18c7c43923be40a0fcd7510daf6df5fab41a70463302130

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d82e5ed3a05f2dcb89c6ead2fd0dbff7ac09bc02c1b4028ece2d3a3854d049ce
MD5 d0d8e962a3fe94654856613ef4275335
BLAKE2b-256 dcd00686c898da81a339701fca5669bd8496c5923755d84dacb65c4d71dd2ab0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed741183719a5271f97d93bbcc45ed64619fa38068aaa6e90027d1d17e30dc8d
MD5 c241fc4f0ab4a2cd1bc59f1496d0d14a
BLAKE2b-256 5105b903f4fd7f34d8548534b1e21f972664f9a5d03b884781b86d3f422997ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 73deadd6fd8a23e2f40b412b3ac617a112143c8989a4fe265050fd91ba5c0608
MD5 73d7613dac0effa6c970a6d531fc432a
BLAKE2b-256 34a933f27da3de0dfff881beca6c2e19b05f928f24ff3346c1ff6faae85f6cf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad1bd2f377f56fec11d5cfd0977c30061cd19f4fa199bf138b200ec0d5e27eeb
MD5 56f9828da938e79066588948d3df5a34
BLAKE2b-256 df20e1a1a03a9c116bd63d68dabd51250e76e45e3a849456b32dd8fb5148c817

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d6f8c49657f3eb7720ed4c9b26624063da14937fc94d1812f1e04a2204db3e17
MD5 aa5c6add7ef4d72867484cc404147d1b
BLAKE2b-256 c3d7b748dc1e92f019d0bf49dd62762425a1d4c713250b5dfac82616648a0e8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 2d06a7fa437f93782e3f32d739c3ec189f82fca74336c08255f9e20cea1ed378
MD5 a2a4c38eeff211f8ba8b92e97ceaeed3
BLAKE2b-256 12f5500f4122bc7db651c2823ba6dea7867236a496a75053d4b334e908a4434e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.20.0-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.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 316fe7c3fec017affd916a0c83d6f1ec697cbbbdf1124769fa73328e7907cc2e
MD5 8f0857876656344dd7d141324f77b544
BLAKE2b-256 f058467880d9fa4ecb9e21c9c6a2170a5e64a712cb66b45bfdb70d50928d1c00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3f0f3a4a23717280a5ee3ac4fb1f81d6fde604c9ec5100f7f6f987716bb8c137
MD5 150baf7c8bdddc6f8a98ec04e1f7660b
BLAKE2b-256 f4a91d678266f19c578ea86650681dc536865d32cf119c52382a36472d4c56e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1f038156b696a1c39d763b2080aeefa87ddb4162c10aa9fabfefffc3dd8180fa
MD5 416ef65528d23a67c7e281942209a747
BLAKE2b-256 329b28765372e25037dd64aba65cea18d33efad53a0f6e4d3e3bd5bcf5f4403c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d42669d319db366cb567c3b444f43caa7ffb779bf9530692c6f244fc635a41eb
MD5 cef453180533f92ec797e15738d4cea5
BLAKE2b-256 a73da9c4ed153fb970361738ca2cf05bfb12b8af08377c0bb9426dd48c98f83a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b34480fd6778ab356abf1e9086a4ced95002a1e195e8d2fd182b0def9d944d11
MD5 f798382f9ddbe30814293a3ccfcfb6d6
BLAKE2b-256 864579694531d7be2754cbcb1fb1e42b18a6249186113425d05c498c8040ad88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1def125d59a87fe451212a72ab9ed34c118ff771e5473fef4f2f95d8ede26d75
MD5 8f7f6f53407377f19d68cd8595770a00
BLAKE2b-256 3537625760ab6e25e797e4b6a7355773313ae65a5f628b07426c7cb7830ced71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d0f52684868db7c218437d260e14d37948b094493f2646f22d3dda7229bbe3f
MD5 ed8b3cf9dd26c34bb1d8c70d8b26a253
BLAKE2b-256 352a21136f0ede3d553bedd4cf2079ada97f2a9c927718653a1cf9b5d365ff2b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5084ec9721f82bef5ff7c4d1ee65e1626783abb585f8c0993833490b63fe1792
MD5 1aa2865b2e43f61fa702238ca8118a29
BLAKE2b-256 9d949e0cdde287a1dbf53ccfbd62efd7c988ed00cd4527669d849393ce2c7e1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 53b06aea7a48919a254b32107647be9128c066aaa6ee6d5d08222325f25ef175
MD5 497e1d60fc28809039ea3d4a18357f56
BLAKE2b-256 743f07a7d4e4a9ad1af69d72649b6a9628b9e0b01bf2940ec04a86c7aead31e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 78d584caac52c24240ef9ecd75de64c760bbd0e20dbf6973631815e3ef16ef8b
MD5 f41cfc80317bd950597dfae9fdb21949
BLAKE2b-256 9e56c85fc77e8005049831898523d5d8abe1fbc00da89b4c7f3baf7aa4a2ba9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 58e251bb5a5998f7226dc90b0b753eeffa720bd66664eba51927c2a7a2d5f32c
MD5 505be74cad30adba86e9a8efd59e1b4d
BLAKE2b-256 6a3af566287670d33b8807b6b33f4b830ba76366870b231f14251118e2d014a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 85770b4b37bb36ef93a6122601795231225641003e0318d23c6233c59b424279
MD5 fcc3c24e2b5908c2c7b4f543d59c8360
BLAKE2b-256 9dca7ab0e4bc6a446f739e1d2da64eb013f8ed62971991a69a416f00c5c7f63c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.20.0-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.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c3dc8ec8b87c7ad534c75b8855168a08a7036fdb9deeeed5705ba9410721c84d
MD5 fb4160bdaebdddbb2e1ad32bd9b5146d
BLAKE2b-256 b25d6425cd57eeb5d3f4cb3bc60668ac76ec0f63812a71357dec359ed4ee5335

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8b315685832ab9287e6124b5d74fc12dda31e6421d7f6b08525791452844bc2d
MD5 9183a41d3ad3f8a6b95d8df307216ea8
BLAKE2b-256 a712402e5c6aab03fe16b7dedb82724e9463a02d5f9f04b2b2c622ec691636b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 21d9f7e24f63fdc7118e6cc49defaab8c1d27570782f7e5256169d77498cf7c7
MD5 6ccb1a39ad0c222917dfe4fb19d3a29e
BLAKE2b-256 7667c0a6a043a73e2d6319928e785e7e028ce34955926eabad2e8ac337272111

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c4a9732a5cad764ba37f3aa873dccb41b584f69c347a57323eda0930deec8e10
MD5 da63f5f70f210c546656c8a062d66cc4
BLAKE2b-256 48dac8205b857dacc2d17a4be86875a7b52d0f3322a348cad8bcccb37e755c04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b81ec2efc04fc1dbf400647d4357d64fb25543bae38d2d19787d69360aad21c9
MD5 225a3aa7eb1d34726fa24deb4432f3e7
BLAKE2b-256 cd6c8b8f1e1f97cc6a4a27c82081fd04c5601f518bb323aefd748c77ad4a1802

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cb1ad5b4d73cde784cf64580166568074f5ccd2548d765e690546cff3d80937d
MD5 ff18cf80a515f8f619199ea056717a17
BLAKE2b-256 32a24f32c6641be12bbfbe5ae319f771b500313fb732ac4c79b168cffd2b5133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab760f17c3e792225cdaef31ca23c0aea45c14ce80d8eff62503f86a5ab76bff
MD5 80f9b883f1a05bf076a0d70593d74930
BLAKE2b-256 37477fcb881ab4822df14b437a35db45272a271c7f2dde02e47559722a9b20c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7701df088d0b05f3460f7ba15aec81ac8b0fb5690367dfd072a6c38cf5b7fdb5
MD5 81daefc52f13d7efcf7e1ff96a80f245
BLAKE2b-256 7374de4220c899a55a377051b7b673ebcb20f592670e08d4a2a50dcb0ebb32d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6dc85b9e10cc21d9c1055f15684f76fa4facadddcb6cd63abab702eb93c98943
MD5 dd1db9c83e259aa7d34121e8b8d4081b
BLAKE2b-256 bb771711e8d005e35182702526d710e1913281037045f5446a07970251dc2d29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 649a764d9b0da29816889424697b2a3746963ad36d3e0968784ceed6e40c6355
MD5 2526c5adf44698cc00e424ed79a1de9e
BLAKE2b-256 fd64eb15006815b1ab2159a8b406323a40ab3fd0cb431f947c387a5771c62581

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9dcd7fb34f7bfb239b5fa420033642fff0ad676b765559c3737b91f664d4fa9
MD5 4be0dfa1eb074d1b1d16422f23f8832c
BLAKE2b-256 453880dc6cfcca1317a974be365ff0c4095bd825c60fea9b318ff1f7c3ce633b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3a7235b46c1bbe201f09b6f0f5e6c36b16bad3d0532a10493742f91fbdc8035f
MD5 39d232c7b3487c2072ffee9ba5a93fec
BLAKE2b-256 27fadd46e33eb2b8fe7423d77a4612ff6aa5ffb8a8a1aef6783aa70b3b6cc015

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.20.0-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.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 22b813baf0dbf612752d8143a2dbf8e33ccb850656b7850e009bad2e101fc377
MD5 353e9335bb2c3d9ce5c86fa83dca97a3
BLAKE2b-256 f44930090660b68fcbc4e3085f8cd67c2913396c8eb6c1c77383cdcd3738ae4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c867230d715a3dd1d962c8d9bef0d3168994ed663e21bf748b6e3a529a129aab
MD5 cc368a6bdbaedbcb76ab836183f1c654
BLAKE2b-256 d159fcf45738310f0f352c92b7989d75da4c5628c4c9a2f91347141cb66fa01b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3e147fc6e27b9a487320d78515c5f29798b539179f7777018cedf51b7749e4f4
MD5 aa102a8c93fbf351f70e68aed61394c3
BLAKE2b-256 d44bf0b6d12e51e383ff5c1397af4d798166b1472f102e4eea28c3f42c7012bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 658287a29351166510ebbe0a75c373600cc4367a3d9337b964dada8d38bcc0f4
MD5 0672bcd03caa5765f4a2e850a68da4f5
BLAKE2b-256 57df9436028f40fcaa5252b53c4278e867b49f65b5f241f44d798d88a55f25c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc7e43b4a528ffca8c9151b6a2ca34482c2fdc05e6aa24a84b7f475c896fc51d
MD5 a93ecfb6f9d58907cf368dd13bf8b1c1
BLAKE2b-256 d0e055af3989927bb51dae9eb59b993d880bbe1740464600b568289ab90469f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c05eaf6c863781eb834ab41f5963604ab92855822a2062897958089d1335dad
MD5 4e40ff3f6ba694c81a64cbbc809388ed
BLAKE2b-256 ab54a201c9dc1270cbaf51cef4a856a4c6f02a897f83634b00a6ee0511fa72dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 978d4123ad1e605daf1ba5e01d4f235bcf7b6e340ef07e7122e8e9cfe3eb61ab
MD5 2b73cbc5b2367ebcf33fc73faa6bc58c
BLAKE2b-256 69f9b8e956974b8afa4a2234a1d401a00b8da38322247fb1175b5f80fe0a18e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 344e352c96e53b4f56b53d24728217c69399b8129c16789f70236083c6ceb2ac
MD5 4551cdbad75c2012bcacb6a287d8ca16
BLAKE2b-256 53ff8a1843c7e3e66652d94862509452b5373bb4e20b43b965ab98254e28b41d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1dacf660d6de692fe351e8c806e7efccf09ee5184865893afbe8e59be4920b4a
MD5 58de5e427e57778342ae603487db4272
BLAKE2b-256 59885a7ef8a2c2b8ef7848d4eb8c28e7271abd1aed5a4089d8456ffee3aad3d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e75794883d635071cf6b4ed2a5d7a1e50672ab7a051454c76446ef1ebcdcc91
MD5 b4372c045397c304cf62e56c665d145f
BLAKE2b-256 066d9cb3d795877292494926c572741e28753c5852e4c15e60dedba3c44eec55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee7785938e407418795e4399b2bf5b5f3cf6cf728077a7f26973220d58d885cf
MD5 c1cb437175c904e3bd2b67040d8efb91
BLAKE2b-256 57c6828a2cc7941475aee2743cf7a54c558f938e7dda6d8953f1e6ae4df07374

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 8093473d7b9e908af1cef30025609afc8f5fd2a16ff07f97440fd911421e4432
MD5 31819de3a72d7304f4b241740d7d9bff
BLAKE2b-256 a3b0cf8a2a01559fcac08ad5640834accb9c1b33d3d96a49b53e83736d7756c5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.20.0-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.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.20.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 1c3c5b7f70dd19a6845292b0775295ea81c61540f68671ae06bfe4421b3222c2
MD5 81fc2a13f6b71f19cc6f9906e0d230ac
BLAKE2b-256 99ff0b449aadb98b092e2e914c755b375ddddf863d6e821cdf732d83da15ea2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 52527e8f223ba29608d999d65b204676398009725007c9336651c2ec2d93cffc
MD5 572a2342380c87fb14f9674fbdd43e83
BLAKE2b-256 4b03d73261b7bc22b9e8ba283ff2cc335683d84e146bf62c0b487b670cd2d145

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 23425eccef8f2c342f78d3a238c824623836c6c874d93c726673dbf7e56c78c0
MD5 5847a165d8668d36e70b9ee83a899c87
BLAKE2b-256 7e7bf682fc0dc3054b528f0a2a3c7f03718262cca8ab30ba1a86dec81c5475b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 616b9c2f882393d422ba11b40e72382fe975e806ad693095e9a3b67c59ea6150
MD5 ec7bfa9ac50b06f24ab3fe35fe3d99d5
BLAKE2b-256 a8f69893b8d939e4ed4b653d24b50113ac33767d21913891037ef0a5957290ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a340d2bdebe819d08f605e9705ed551c3feb97e4fd71822d7147c1e4bdbb9508
MD5 9cdc9d4674173c9648fabbe385b49825
BLAKE2b-256 d8c555458873846711ae4e15c7d2314e486684035646f574de31cf3951303d35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87d3df115f4a3c8c5e4d5acf067d399c6466d7e604fc9ee9acbe6f0c88a0c3cf
MD5 9dc04554a8b7c1d5a9844bf95eea77a5
BLAKE2b-256 8dc3d879a3f7c6beb02bc5775e99bb29bb576d53cf81e9a9c3d0ff33fbbd36f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e4f46189d8740561b43655263a41aac75ff0388febcb2c9ec4f1b60a0ec12f3
MD5 6708f216988570da95c1386069000382
BLAKE2b-256 96f0903ab81e381cde51c2ed22b34c31f2dc386918d9764efb3b9f541688f223

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efbb412d55a4ffe73963fed95c09ccb83647ec63b711c4b3752be10a56f0090b
MD5 0dcc6f2ea96d3e8781137f8df06b8718
BLAKE2b-256 f7efa59643cd037d27de9ac1e6e7b350463036cde0e998498bcd1b2ec587925d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 25c46bb2ff6084859bbcfdf4f1a63004b98e88b6d04053e8bf324e115398e9e7
MD5 973e4aefd7708e19ffca5edd8e851107
BLAKE2b-256 10f202ab596bf2b966b5b82314c0ed28d3c1aab484b3f2d21caa74a489534561

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a272785a226869416c6b3c1b7e450506152d3844207331f02f27173562c917e0
MD5 08cd115f60d4e49349edec8481c869d9
BLAKE2b-256 32260fdb31ed1aa0a0431e46bc06acc392a9215044c44959c2c99833ad433ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.20.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d6f2d8b8da1f03f577243b07bbdd3412eee3d37d1f2fd71d1513cbc76a8c1239
MD5 8c51be4a290ef7461ed34f191c7ca668
BLAKE2b-256 085464e70f27209158553b1bdeb3b8da402c9c44e9c49de24db0bf6c049b7e77

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