Skip to main content

No project description provided

Project description

pydantic-core

CI Coverage pypi versions license

This package provides the core functionality for pydantic 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.7+ installed, compiling pydantic-core should be possible with roughly the following:

# clone this repo or your fork
git clone git@github.com:pydantic/pydantic-core.git
cd pydantic-core
# create a new virtual env
python3 -m venv env
source env/bin/activate
# install dependencies and install pydantic-core
make install

That should be it, the example shown above should now run.

You might find it useful to look at 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-hypernode.com/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.13.0.tar.gz (357.4 kB view details)

Uploaded Source

Built Distributions

pydantic_core-2.13.0-pp310-pypy310_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.13.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

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

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.13.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pydantic_core-2.13.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.13.0-pp39-pypy39_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.13.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

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

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.13.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pydantic_core-2.13.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.13.0-pp38-pypy38_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.13.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

pydantic_core-2.13.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.13.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.13.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pydantic_core-2.13.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.13.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

pydantic_core-2.13.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.13.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.13.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.13.0-cp312-none-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12 Windows ARM64

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

Uploaded CPython 3.12 Windows x86-64

pydantic_core-2.13.0-cp312-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.12 Windows x86

pydantic_core-2.13.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pydantic_core-2.13.0-cp312-cp312-manylinux_2_34_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.34+ x86-64

pydantic_core-2.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

pydantic_core-2.13.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pydantic_core-2.13.0-cp312-cp312-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

pydantic_core-2.13.0-cp311-none-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11 Windows ARM64

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

Uploaded CPython 3.11 Windows x86-64

pydantic_core-2.13.0-cp311-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.11 Windows x86

pydantic_core-2.13.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pydantic_core-2.13.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pydantic_core-2.13.0-cp311-cp311-manylinux_2_34_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.34+ x86-64

pydantic_core-2.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

pydantic_core-2.13.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pydantic_core-2.13.0-cp311-cp311-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

pydantic_core-2.13.0-cp310-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.10 Windows x86

pydantic_core-2.13.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pydantic_core-2.13.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pydantic_core-2.13.0-cp310-cp310-manylinux_2_34_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.34+ x86-64

pydantic_core-2.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

pydantic_core-2.13.0-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pydantic_core-2.13.0-cp310-cp310-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

pydantic_core-2.13.0-cp39-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.9 Windows x86

pydantic_core-2.13.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pydantic_core-2.13.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pydantic_core-2.13.0-cp39-cp39-manylinux_2_34_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.34+ x86-64

pydantic_core-2.13.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.13.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pydantic_core-2.13.0-cp39-cp39-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pydantic_core-2.13.0-cp39-cp39-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

pydantic_core-2.13.0-cp38-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.8 Windows x86

pydantic_core-2.13.0-cp38-cp38-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pydantic_core-2.13.0-cp38-cp38-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pydantic_core-2.13.0-cp38-cp38-manylinux_2_34_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.34+ x86-64

pydantic_core-2.13.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.13.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.13.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pydantic_core-2.13.0-cp38-cp38-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pydantic_core-2.13.0-cp38-cp38-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

pydantic_core-2.13.0-cp37-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7 Windows x86-64

pydantic_core-2.13.0-cp37-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.7 Windows x86

pydantic_core-2.13.0-cp37-cp37m-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

pydantic_core-2.13.0-cp37-cp37m-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

pydantic_core-2.13.0-cp37-cp37m-manylinux_2_34_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.34+ x86-64

pydantic_core-2.13.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pydantic_core-2.13.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pydantic_core-2.13.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.13.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pydantic_core-2.13.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pydantic_core-2.13.0-cp37-cp37m-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.7m macOS 11.0+ ARM64

pydantic_core-2.13.0-cp37-cp37m-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7m macOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.13.0.tar.gz
  • Upload date:
  • Size: 357.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.13

File hashes

Hashes for pydantic_core-2.13.0.tar.gz
Algorithm Hash digest
SHA256 723b963d6b30dd2c90ce8f614a9eea5a6f703e13a40e69c32fa6e8e96144c972
MD5 65b81d3c623045d2987164e3de8bd7ac
BLAKE2b-256 69c1c8a9ff167f449153c86f681b89bcd3799ac7aad0c68d7ec65f8399c17c35

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d392fba9b5f9f8f785666aad96f33c17be16638af5bf1f49b50d9e18b0f2dea5
MD5 ccb9e9dc0fd55c57dc1f92abbe4541de
BLAKE2b-256 1183895b07abe66723701ecb7d87288ab2cad54b3364ded6726a1144162aa5d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 966dd3c248f83d69cdd0f70f47c5cf519aa0f90cf1ca1f2b338bacbac3733a81
MD5 2810fba21b0160528a64fd29a3d7fbd5
BLAKE2b-256 63822a9e567bd4ea83c05654e7c1aafed0078dfa19ff7eac6289877c8094daae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 77c07da053f608bb727e240c696b0d2dee4afb6c11f5b3f6aa38567f650e4e0f
MD5 48b81a5807a244272d90326f5b4871b3
BLAKE2b-256 03164643496110696746342c72e7365be210b014e071f92d9e7e1132ee4d6c7a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6de88df4dafacbad4a12b4ca784e7288db067ca304e8ba0a7d9860567061084d
MD5 394b0b9e25a681577d9cab7e03051bb1
BLAKE2b-256 4514bac563e43d7050f806c5d935302381a773ec2e3defeedbbacd207c0fb6b0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fad043731869d59ea4175b6a77d55358cfc9494a862f65270dd9697c2e647121
MD5 b1221e5f91aaf10f1c64851ae8173f74
BLAKE2b-256 8ad56b807b7b681c3ed8555c54ba80b32a89c82e163f08c694dd568e6ffc044e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 faa09fd2d9d6c453257cccc684732a590c33246753a34cee9058b02b95f6da46
MD5 1dd43ad8285db32421a53be2052a6865
BLAKE2b-256 8e7c45cfb3ea444b3799fec0af323cb0fc852e0359befd917d98e086c8f9e307

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a5ac3bd8a26a4c270f181ff392e6f56794a09ca3af67817bca21cdd26d83013c
MD5 7dde1f110d0400ba0a944824a35c4054
BLAKE2b-256 3b118bc135f932876d8cbe67e8b6763615e0bf7d8b79d3e348ad9bbc624fc3f5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 70979bac682230cde8dd156bc3b6d69e7ef0d14f1950cf8dfb99e12df1ec1ba3
MD5 db8cf1ca692db0eeedb461a88e581b68
BLAKE2b-256 0a7f9919d4bce5dc83fc977f8a7e038668d2dc9d119c6c448f0a3d3b41eba7c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5fa229f84fa652c18cf93ae05e91c1a5cfe10891ad8a1921aab1f8bb24ce4c89
MD5 2af5e022e256b73491f5b896c5898e0e
BLAKE2b-256 eb8bc9d4d661d6075b123518700cdd3cb8f40563250a5b861f4e6a90d590bbc2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b0d1aedc21a4dd27c716799d0b76cfd6b879adc78da87da3ee7a70119f880598
MD5 ac5c05c5b8d4f1f7a81de7c6222e97b4
BLAKE2b-256 a1c3d8ce56d0e31deee205ea6e6f689e00e576cd32312b55114a4796927d3a60

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5acc2d47f796a42b3469ff0b2a17e22c743180d6d9f569d52257bea7844e51b2
MD5 8a687bda68e124826982ecd5ce2d5ee1
BLAKE2b-256 d80f423334fa310938e5e340c59833d3d3214ee310aaf6381a3464c311dd9ae2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2f7ad16a9dbf8d9a5f0639917d1ba853599c91a9e9ca7fafc91564d9f2a5ded5
MD5 723c749b6d81b008db17f27182b1ad86
BLAKE2b-256 7a04b2019473065ec2ce39419454f4f55f101024c4d912edf531859ee40de285

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f189b7e779aa3b05dd17704c5512eba9b7923f469641ef2146faa7d025c1b856
MD5 2e190bedffb3e8e6b068eb73972f8d80
BLAKE2b-256 552fa4c0517eb4a97752c08e454f057a7bf246d2d9c538ec92bc012cf0b04227

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 10d53c925c5d3ea45e46575ce4f1f36b09fd7b58bf5d4068137c554fb80d611a
MD5 8e1be2d87680516df290d21911727d74
BLAKE2b-256 53d4d9023ab29da83d155619e122317e23d186874925a0e501db48a9ec9c835d

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c2e3e860ef9ce85cbca5f18a2ec4c78afa78eb7d16bdbd14428a2556f2b7d999
MD5 b2fee2d9fda1b6a5a5f0131aecb2f543
BLAKE2b-256 e7a805b7ae4da561c58cfe760c87351238c7d7ae0baa7555fe2fe805dcab4384

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 12cdd963848920be757ac097240ddc9aed1d1920d6fcb7be1809d5829f34076d
MD5 f0fd0f0b9fd35368a2049bfd2938055a
BLAKE2b-256 34d855f5a4caee24115c9ae2958baa5fad4a02a2b46cd07d5df2c8ccd268d5d4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 66ef5ca17c4e155cbb65b1dfd4158580c3428d6e719dc9734d2e43304bc390ac
MD5 d6cfe3a0ff384b2d424336f7c91b0bed
BLAKE2b-256 740fa265705e286664ac5be863d73502af8af86ebb6f6193067359527d1eb211

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39967136cc63bb66783524ffcc7bd8255ac35d59f3a48109311a9a3d61639882
MD5 3be10032ba0dff56938d98c397f2b61c
BLAKE2b-256 a8b60dca0094aebebdf14a7f6d56d064fe605b9a6640448eb6addaaa2c84678b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ca2340a5887d3272e59fbf0b9e4770cee372cf949dd77b552a1ed034f9d29b2c
MD5 7899213b44d6e6dfb79b57c8ddadf34a
BLAKE2b-256 1ea91a6bfb818d034317cca93b9c9e833ae6e86ff40daf81febb82140a85a691

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db585b685a4b5b01e7beb6880f0990ff73284890cf5aa86d44a4ded085772f3c
MD5 8032d244d25ebf38340ed0688ddfb15f
BLAKE2b-256 d52a96811d97960079a9744c263b0d5e259be62512f472d80cacaf440a685f85

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8368e9438a982bd0a0a437e663a7c08c543927146d2cd424604d5738d0daf4ba
MD5 62c668dd03764b3d21bd2b5b97e62994
BLAKE2b-256 bea5cb0548f551370daa2ee0599dd6c46764d29c261520e136f3d47acf18671d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 466d9b8f1bea7ef97ef344870b25781f52b97d7f7e202bb73b7a3ca621ab1ecf
MD5 e60eaf9f6a8e666694911622107061e4
BLAKE2b-256 f35322cbc39be4c66a39c4c31968831aaa80d8cadd2964f5b1a02d2e5868c49d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 613b50c11101915bc007a0db2d845438485e09972b8a9409015b90cc91731c5f
MD5 e82c196730f233ba93b0490aa69d0b3f
BLAKE2b-256 7d9347dc4f5b4def6a39daf1eddc5f1c5d061241631155e66c96840b3bdb8a17

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aade23894c2ebf7681a8e11de93ee52d7c687f2f4d6ccff782b0b057b87efd62
MD5 b43b1300f90198d83671db72e367055e
BLAKE2b-256 f32e27a2e09d9704cc24a5a7ea2947a207bca42a5d9000af393ec97eb38695fa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 43df898612aa7f379a0eefad62c2b3c1fdb4148ee33a2a8b81d0df269010b88b
MD5 f03a55f1ec342a17461feafabf8447e6
BLAKE2b-256 545b87bf7f95fff7f04b7a30b6148b631018d748aaf6cad20b12f52acdd3e20b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e5158f9d126d9a91ff80cd8e95f19307faa1c8e88629bd6e8b3970587c8f28fe
MD5 15411108e0d0a032e00690224138a3e4
BLAKE2b-256 5736f49ff660589b8c8c3792adf3799523527749f676021a7cf89a457780e0c6

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-cp312-none-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 144582d5a9e9533fa522ed78d9127dbe69b0bc172b836ffa9a958aec912ed69a
MD5 58ec55e4752a2965b1ba6ccf686d4cf6
BLAKE2b-256 83c8e9c08d315382f2b516f07f13b4c42842589a44d9b969ccf735708f0a9f78

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 b2c89fc58e15ed2e9f07935292bbadfa1507f4d10cd85b79b24b14ba7a18f716
MD5 5c0e3cb46f683054b5632852daf35cf0
BLAKE2b-256 1b54c658cffacab6771c586cd8536faa2791a810e906d65d7f21eeea3284dc4b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 cbb473f169d016a32a36ac4710467e9d9e4f88d349e9d8ce94be0e0984d979c7
MD5 3891aa528c432a19dbe1db2e30ddc31d
BLAKE2b-256 44b872a411a5ac2e505002677003056c6a01a8dd2e67ae469bf0388f9e8a541a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4d5de8b6bf6c16e69264e414c24be1e7d0527d114d32bf741c5e7407f3bd5083
MD5 a8fa191c9a08bab76ab20be2224db1e4
BLAKE2b-256 a45ff92cae5eb5bf6a28a7dcb2cf2b953d20fb252f44d7ba7bd6a0eae35ab4f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 944cb6fa07f40f7298a611537942c757af6ddbebbe28c7b4d552d78a7f60f6bb
MD5 774df6b3edcc1c6c2c3890f5685d8c1f
BLAKE2b-256 731be86093996dcf19642341465fab5ee64138bfa062c36a6bb73825bb4df2ed

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-cp312-cp312-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-cp312-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 74dc837d8f5e5ee8975a32a4e3bd2d6a054d302e2eef749621ac12a34d575dc9
MD5 eed2035e9b6ead4f184d04d2694a3c4e
BLAKE2b-256 30c433eb683d48fb80572c9615c530e82bb53b792a55e6221c3b4ccf63be82b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3f496ce65fe5929ef954eb6a16575c029881068a3fc8f4d0ebf70fef468f8830
MD5 dced247259a33563c972167748b00e0b
BLAKE2b-256 894d0e961f25206ce84cb56572b71774ff1838a204cdf538db8c25c0bca357da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4317950dad5f39923fef6f094172e2296e68afcfd90429b990f1c5b1ae5af701
MD5 baf6ea4f407754d8654c34f5d2c8050d
BLAKE2b-256 c6af8181983ffe0683ba6bc0e0f4dd5efb6b322145c73a0fbf70c975c8ec546d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7d01b5a8a2e594feb5a80bd73e3423e97069f3066800b70a14a2f35d5d236fcb
MD5 267e5cd56be59f711aec8882a0798ded
BLAKE2b-256 8e72db73ea273be6b30552613214e44033fedc5dc126813620c6759e43a7c122

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 553bb0ae431af26a598602ff13a7aa4917d10ebb23b1b13322b400bd452c2871
MD5 67303ee066514fecca32b1eae0f4ffbd
BLAKE2b-256 b4d6608e8f596f69071889da35285d60abc186d348b05dcb26e605a44c1cce38

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 95da0acd205fc3e8571ac698e71a3fec7692bfed621e19de842a5d910ec2dc43
MD5 de420227606670b6cba652979cc2166c
BLAKE2b-256 6631c14a75146bcedea282e67876465e6fafada53418e45d1890329aa1125eb1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18168a58f7f94b75b10d6c1444951a769939ff8504d4efee38ce3467f8afd910
MD5 f8a9339d170e7a8f1dbb936991c9932b
BLAKE2b-256 f1886e92dd87e372fdbb7e3da2acf9ee232ed94df1af6dd07010cf29732bc4e9

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 38870fc3fbebfbf390af1fc50d9f670af73b41d68ed13752b9f42d3617bae704
MD5 4c291995012e03d9d74af8e93f94efa8
BLAKE2b-256 62fcf89ada433c3ec2419b860c7acb7ed212065134874e41c551aa1a560645f4

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-cp311-none-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 cba24bfac4e4e2f9bb28641eacf9ce6cfba79c43e2672da10807448732564758
MD5 2264999ce12ac18a8d50b47c5d422f69
BLAKE2b-256 aca7f5c7ac0391d599de4f470972512f8f9eec7d8e3406186a715fb30a0ddb58

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 6712549a85e5d68791ab5f03657bb7693ad3aa83c2b86932a785f39d39fd5120
MD5 8ab5349c7acc8e9ffea3c171478a96fe
BLAKE2b-256 905c9ba93a47ef991383f701c6aaa657e75949ee78d4f582ea58dcd3b1984553

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 903ea3137734ba01664c37f1fa1288e1f4294c91484712e9025e133dddcff64c
MD5 95ce6e151789311c9cb01ea3da166dca
BLAKE2b-256 0d8649520841057d6bb9aa706158f1b9802dde67aef0a3b8f5f5e80ccffe400b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ada4217ea1f3ea80da4f6708b7b704d66df0231b6f0fd3f8406fffefb233361
MD5 25cab124aa6caa8af0a03f90288e73fe
BLAKE2b-256 05c0fbbd2ff1fa26b669461e450ed1f5901a140b10b36b0371ae92e8389e1488

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 387f2226653dd4de0e2c1a55b35f58ffcfda053fa251fd96f2a7bc6bd2b21559
MD5 4ea5efdbc2a22be1845dda093749429d
BLAKE2b-256 12cf20bd05eb86b70973e0d285f0987c9a0aadd77dbd157f066d5f92f53fc719

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-cp311-cp311-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-cp311-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 6f1fbf3eb1bf443aa7e235226d5bb3a30707267dd6825a7098f3b6240cb7f5d7
MD5 8deb3f548e98c4afb656cd69e5bc2567
BLAKE2b-256 b295dbbecea0c8a3df864f7a539bc81ccdcec19e3370fea707e110c913d883d3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c769380600c2add21864823b7244b5f1225a8a45b29464630f03d53ada26c5f8
MD5 c1c29611601951c7a4ff0e29e29fe831
BLAKE2b-256 f6a387decec5d5bfae369e81a5b737b03c4058da5e6dba775c1e41f72f29608a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f68f5b7b296d4da984c6052986601c8ddabe4c0a7624198fbeac520d59b0fe93
MD5 0595fa696c902f011a6703f4ddd535d1
BLAKE2b-256 21b7cd9eef7c8b770ace564501c792c7d51c14896d82c5908481ee88ef0de8a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 039b03b9391eb1c1ab0269432c53a156f3c058557a44ff836dadb8d2027858e1
MD5 9b4ee142c14f5b5236a1843c36fc0ab6
BLAKE2b-256 e825dd0a829db2a01b0a3f5f7127d84b7aa0078408e26a270826f256938537d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c753a4ee1ecd0870cf8560b5cbf3f5828a895c3ba219ade0e46d3f2f666c854b
MD5 049fc82598e0983086f7c6cf113ac8e8
BLAKE2b-256 1b6e72bd680e4f02cf15a925ee699b26fdfe2d0455957a48aa365d9eb9e77162

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 abc3315bc92f0120f15fc9790dc856a078f3c8819c6beb582bd4ce177e9b8f0a
MD5 e2fe6bd7bd502a45769dbaf29232d079
BLAKE2b-256 bb2a20f8899b877f15874bbc7df826267fd7859e4e24da9435a0468ead0f5d75

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb9a9dbbeadcb644f7d149d99c6b7d90c43368f154bc570b71c703a2a332c06e
MD5 78f16bbd9d8fa331d237e4781e584a28
BLAKE2b-256 e0b706e8733a92d300a511e2ca0ed79008ec35a58be84abc8efa67518557f1c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8569d17c81fee017dd39448138e32e1f4a403ead6b859a73f137df6595eeec37
MD5 ede5df994c3019fd0f03fc542342f43f
BLAKE2b-256 f2cbd8ab5848fed06bc7c16835fc430fcc1093012d4cb4c8d17d52c60863a3bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3d29bb8939fd5915e0dddf1360a0132a46af05cd01dbb01515e67eae647bc6c0
MD5 31de54c88ba66e6a0932d3d55d6a0dd2
BLAKE2b-256 9cbc98337fe53f299a99364b35a4ddc5c5901a2b51357e57dd5883bf23371a7b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a6b9f0bcc36c4056f1e820a3742eb0dfbd89ea1ab58237dbe21163ebc4ab0a6f
MD5 c9f0564d77d31af409ac33a87bfac11c
BLAKE2b-256 0d4d89a6aa8552e38f469254e5b1ede026607e122683ede680b125b7bae0df8f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 61103a1f4b093e63ea88552a5b7f3c32f98dd4ebcd6e9aa56557b87f069376e2
MD5 0a214ae8fcbb2609154cdc9ccc621e91
BLAKE2b-256 95682fe8c9b712bcd645748aab0ca53fde8614a19636615216e0aba37de3d632

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 afe8abde4afb13d28c1d08d8f5bbaecd595fae2dba2581056cf557e60608bc2f
MD5 969e740de8859997c99b87fc20b71bbf
BLAKE2b-256 ca8da3665326296627a75f93acc33f10ea5aaff956574aed5daa46dd7d271ec2

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-cp310-cp310-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp310-cp310-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 1fe12b66ba9c81ee3ed06a1de12d8aed5a608cce639f23364dfd0e48dde2e86a
MD5 2457c053e756a7417ba78546aa6ebc58
BLAKE2b-256 00d507c631265a2ca2d3f67ce5fe92bf4f0b5ffa27268c4ce757e03b5089f10c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 773238cdd95b49cd5f139ba621754e75a17dfe4ac391770c537c8f47ed5a3f56
MD5 6f4f0213c78602b80e10187e88d02ff8
BLAKE2b-256 76457e7a8c4078006adaa8da12a94c1675e83582235b662ebdc7e2957d7686ff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5e87e3cedc97b166d888d45756ed8cfec06a4e5d53a4d2ecb18b2afe1862bafb
MD5 f4f50be3ba254da9dc337cf276ab38d6
BLAKE2b-256 e64eecad4c041050d152520e1768d9b277dec2e4d039a06376dcd2d9cf70692a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 430664f1c81be209a84b11a07fdf19af1f298e275d3602f9fd6f7e80a0ded944
MD5 b48c222cefeaa3fc9c326b69bb470d5c
BLAKE2b-256 9c9ee567b4707a0bfcab61bc8f97cc6b59a42898fb0ca618a5ce01fd13dfc943

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77b3efd0c4be71a904af677db623528eacbb2ca2bf27f22083bdf50eee85e7f2
MD5 541020d9a16dfa9194821083d24cd4cb
BLAKE2b-256 04589ecbe8a877e0171d600e35ef998df90bb07536d7e1c0eb2070d22984783a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 67831fc54265052fc48282bd1545ce9e8bb9a0e7fa899d0082ce1e976e752cff
MD5 93d46ff2210592607357d81fd39cf537
BLAKE2b-256 67144954b29bddaed224aa72009cccad4ea95a5d414d8d9cc9ac65d1b40f01e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a545b8e397a2e998f42c8a3441f55a54b01680a7b78898518d044455f024ff59
MD5 3ba40e507fead2e50dd4d295470fdd43
BLAKE2b-256 417fe086a68b4a3a727fd53bec689bfe61ebc597d3437c22f18ac4eb5cbf4c1a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 110437e0b4594b1a78f6bc8dcc1c99ffaecf5804c1888edc54b2bc616da8647d
MD5 3e238c6dff589d2ffab1f957b0354593
BLAKE2b-256 05b641a022a41a3be8e01bd733e7ad89e6d51aae358d56978409ac27180b2499

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 fb96615b7f7fc5a98f61cba77e3a0ca1aa5bf50939c6fdcb8bf246e4ec5a5e45
MD5 d8beca5553c317d64fbe8af41a3c09b6
BLAKE2b-256 aa5a5133748325c3d82e5f8c5acd014127cde5ff183ffffa758d362951df6eea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 406aceb1bf86b9a27f66abf101c96c163ad87eaeebec193853a16f176fdfd1ec
MD5 adeb220b81137419ac7dc258982fdac8
BLAKE2b-256 728e51ec1db0be24dcb15e30b67fbe2036c8752f84fc05e9ab7c00b7f3e036f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c5d9904f725dcb5c132a24121ffe7ff82709b2181d644459c3eda037f252cd10
MD5 0357246397eb4b5da48019f2aa51fe12
BLAKE2b-256 61186dbf8992fa4102e6aa89a5ee87c0a26a8dd9b66bf1d50630c4e582efbe02

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8ee585f0ad7bf337a85f4b6760f616873275227c8bd576b1060466299867ef50
MD5 114c6a5ab1106cd688d9996b81fa090f
BLAKE2b-256 a79fce04c635cf9ce8c2c15922b169e78a92b62d6fa5fa330a447cf6fc6e9b24

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-cp39-cp39-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp39-cp39-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 473fd9bd0f5ff086e832e3ecdb45f634179316a59f7e768fdf3067ebd6a10995
MD5 a8d559eed57155e2020452de80c8efe5
BLAKE2b-256 ff6c7fce9bd60fbd38ed7a7d15e3776c27b0cad03e9da8be6ad0720ec72b7d76

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8326c7be69223081899b62e72cb5f772f13b31649155544fac2c2036217b0e21
MD5 694217893c6a5463a58e9e969daa4c65
BLAKE2b-256 60619af30173eccf4461d83470b805e1803f6653726cc6bae72fa9bbf3e175ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 187d30da7d4513dec0a7f9bd0a9fa73f8671543a919fbb822dc3fe20420ae0f8
MD5 e7b2b7688978ad94bcac61461492b20a
BLAKE2b-256 ccad1b09af3fb128275ee65f7e6c2f880a8cf789f56ce3f67c044d366787b13e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62c629ebb727cbc055060770014f0314b5ebd169449a29fad023f98aa1495eb1
MD5 558045c4839ca1966dc1a4045b1cdc3d
BLAKE2b-256 ab06b22fb280b1d1698b72857e3cdf0430a09071423cbbd6c4c5df64e317b31f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9c18b3270c6f5f91340a8f105e3e4b55deb0afebd6466b87eba526e86836d3bf
MD5 cb790081dbef969853e2cb0ae4e79d11
BLAKE2b-256 988a44eda8db973a9cd158bf0ca097070ad8cb4bcf2cd89d430386b500394213

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 68517c08a8d3fb0841625f0ca5b17e61b822decd74ca636114df9a8072b985c2
MD5 3496efa44032b95877ff8f94127fa0a0
BLAKE2b-256 60a6ba0b2d925403ac83450c1e4a26ec0d93c84247a07caf87ee3ae085bc9ccd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 250099bda297453b1e4db28f79780dc3aebcf0381c753111a4fb4eccdfa2c4fc
MD5 ecb8cc1e7b9c168eec1e44cb6368a40a
BLAKE2b-256 f2284f30021c90e6f08e98f52e5d3e2706b2d10fe1b4736b5a5e7d6c080e3377

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a2ba5978c4a85483655419a53401eba9ada73767ff79fe8755f80086f2767175
MD5 5326d1e432c994e7e6c01d6451a47b7a
BLAKE2b-256 3c2fd46177638dcb63f56e30dea97ed2dad1fc146ae061230fa0fecf7ca0f61b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 5ee420b3f5750016f00ee064e4fd47f6d7d4ecf58044b259065cbaf2d46131f2
MD5 e4fd4c3e9c06b0d0be26079ea8ca160f
BLAKE2b-256 8619b18c08bdd2ea5024f5a9a1e9c6bfb0f43bc789d1dca99a9232d5bfa8e7ee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 3ffe09ef78fa82c3477572564e76c7f0f3cc011aaabb1715530ab2803921e4c6
MD5 4221c6415c49fcd1ea0fa34217587b69
BLAKE2b-256 8e22768326f092a99482a8a66d7240364519a0749a2118755bfe2dc243eec9a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 60c3a533e2c2abe1cb8e1783b096ba7c1de470640811ea2fd77dd2f4ecfbf20a
MD5 d28d85c2f6061973e5d7959d8685ab08
BLAKE2b-256 4d42306088ee6d208f260d2d1ef795b3bbede5dfd395cd1bb9a52b6b62d40cc5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8f9999acbc68c7f1c7915188194075495cd3419baf2813f792d95e3246807bce
MD5 0d6f24dfca30c7dff21ee36644930b22
BLAKE2b-256 bcf56b873c6d8fc030a210ab2ad4c4171ea9245100d1ed164f626c300fc7b30a

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-cp38-cp38-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp38-cp38-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 e1c89c03f099e4685391e18aed1fada26bd1ffdae0471ce166f2fdb5af353258
MD5 f99d27b2629002a05a48570a809c9d25
BLAKE2b-256 75a31d6a79224e2958804f822a7995225fd0c218cfa588aa5478306bec409c1c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f3a37f7ef5e28499ef078696dd00fdc68c0e362edfcb5e6a82a7a0a02164b448
MD5 26066d8ccf88826b480c14fb1cba759c
BLAKE2b-256 42919e38b76696886377323d8ce1b78b3b0761dfe073de06d9c1894012f9164b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec51b22f640b28628b66a157f1dbdc85f5379ccf5c4230dc044e50de52b9cdce
MD5 44e07da053fd7526112dc21dbe5041ef
BLAKE2b-256 80bdc262af71d620940bfbbdd40c6b59834b35677d2a3091f04df9604f80eb4d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c28fe005cc9184397a766eac1c848396e2f13e3c1758568f63a1a482f7dd42fc
MD5 3427a0ee9c25aed795734f9d6c763c4f
BLAKE2b-256 288e00fd2544d6d4c9f450af1030261bcf24cb9eb58a3a9e47fad781e1471aad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92be0e31cdf21416693eb4a960960308adadcab58786533262ce4333f27cfbf1
MD5 267b340ac8d284b6b3c800c1425ce4fb
BLAKE2b-256 579d4920652501138417b4c4c640f9bc6590a10732fb440e8722982af8d462de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f979e0549476217e974b49d8534c5e0b5bb52afda539f1b06fc67a62515d5698
MD5 d701528f056d04ece94938328abeabde
BLAKE2b-256 57670c0847dbfaca2bcb3ff61a855eedba41c55e6de38d6fbf4d922fc261da15

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 efe3f2a58d009824220c6abaa0a9dc134a453c7ec7e0fc3d8a14b36cd47e5e78
MD5 4b804f441929c743ffb4133918bf2a54
BLAKE2b-256 8deb493d60910e79c13cbd0da53401a34bfff07b36a7f58d68baae7c49ea6ee3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3f1a9170972aa307742efdd016c368310e909dce4550f4dbbc8df87f4481cab0
MD5 17554e827a43b56a2a728ad177118217
BLAKE2b-256 e9ae8727967858ad7737b1933ecfd3c5830da4bb745d614e3ad5de2c9b8eb57f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 bdcf2bc83d168b4d042c4cc87b115b6170b66f5f79d5510485a7b3cf2a0fc0eb
MD5 ef7c3870a38ee2dc68019117ebaddcc6
BLAKE2b-256 4092eda1938ff00a84a9466f228ed0214e32ce5aeb20248975a1b860c802dfd2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 2cf94c6be926bc40453cb3d6fbf7c072569fbb8a73c2117d69e58ed61cb0c5b6
MD5 cb8c57caf447a666690130243ccff56b
BLAKE2b-256 fc49d6ba65e9aec91363e951a6b1f15e8af6fc0f3d71ca66f72f28bdffff14a6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8d34f8d95e5cbf7d2032bc2835a6383cf5570a8b18ff6677a72efe5ab555d1bd
MD5 0cc9c878a4e4670b82afaa3ea9ce27b1
BLAKE2b-256 c4016deb7a28aaf7ae5cd338f55b497726c2a0a1c49e0c1203d325eb9e0b41c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 62f233fe1ee87a33cf09947ce35a5618c4268b3e5777efdad8619bf3083435ec
MD5 72d3f9f5369a8d35f2775bf40b2a3866
BLAKE2b-256 8f51ceae2c5c08fd548d1412417378bcf15e0bbcc360f4628c9984bde8066fee

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-cp37-cp37m-manylinux_2_34_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp37-cp37m-manylinux_2_34_x86_64.whl
Algorithm Hash digest
SHA256 84401501c75259665aa6f3484008933ab726f941b7f933c9805479f9c68afef2
MD5 0ab14aa299e65599497d6b1447ab9633
BLAKE2b-256 6943876413c25cdb8a0e3e93dd96ca71667ef99ace0d72bc1284f49aa5472174

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c787a857bc12c91c8bb72a6cbd52b8c8f723f01f82fa33b051455b2648ea2c54
MD5 d6780862af56918f349108b6986944b2
BLAKE2b-256 9df4ae78bb53b2fb6f4226ca2619883f298b2ea031f4c10fa8cd883510170bc7

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 71280b54d752a0fd31f625fc116f0f268aebf733f0f2d62681d071a02be664be
MD5 0d60e6d7f5f21e288d23deb7d235ec3f
BLAKE2b-256 eaacbaace9ecf043e5198cf67832b8fbd77921eb98a5ce337510e330a57bd22d

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.13.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fd1e7d543520cb8f2cc113d31674c9b2f1fad7eb1fbaafed90942e5ba6cff0ab
MD5 1169e7dbfa9e81614340da07cc5b0a71
BLAKE2b-256 ce9b538d5df8ea8ab14446d42ca9b4b51e3caf990c4ce773e90d7ca86d0a1679

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b070d900e665cc9cb0c3ee674fb6c77b1a5a8cc0f817a39e1ec550d08ef53de5
MD5 93dde731ba914722d66102acdf493010
BLAKE2b-256 2ba159e9a1144d3805ef2ed07f43c757cef98686db2febc9ed1522835f7c70a8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 72176436387f34b85f6e29c936a2f1fde9b7c1dcab5f1d0d9b78d26193ff4767
MD5 a82d6f604a4f396a514725ea56be7ec5
BLAKE2b-256 27745ad81461ab1003c3fbb3b4415e20f68345b5ceacb5a6dbb0ad5923b625d6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 122c1f4bd4c9565288aa665be17602643de65f6e907d81a0f580eacec247c288
MD5 bfa7b350ea0ded2bcdc6a01d1645fcdb
BLAKE2b-256 d066166fb68b83789c0b925a40eec339bd516488955aca6afedd5a3c826dca89

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.13.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7710a82a2a209b3b398eb2ee9672f8752053f2c31b2aac28dac502a9fceb67ff
MD5 891d1a6320e8041ad6999ff67abce6f4
BLAKE2b-256 f088abd6a9b7c29ed1df8e4285ccaf30261f4f6afb9d94442ea025b0310db759

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page