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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

pydantic_core-2.11.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.11.0-pp39-pypy39_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

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

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

pydantic_core-2.11.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.11.0-pp38-pypy38_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.11.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.11.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pydantic_core-2.11.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.11.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pydantic_core-2.11.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.11.0-pp37-pypy37_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.11.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.11.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pydantic_core-2.11.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.11.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.11.0-cp312-none-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12 Windows ARM64

pydantic_core-2.11.0-cp312-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pydantic_core-2.11.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.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pydantic_core-2.11.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.11.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.11.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.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pydantic_core-2.11.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.11.0-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pydantic_core-2.11.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.11.0-cp311-none-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11 Windows ARM64

pydantic_core-2.11.0-cp311-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pydantic_core-2.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pydantic_core-2.11.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.11.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.11.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.11.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.11.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.11.0-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pydantic_core-2.11.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.11.0-cp310-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pydantic_core-2.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pydantic_core-2.11.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.11.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.11.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.11.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.11.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.11.0-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pydantic_core-2.11.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.11.0-cp39-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pydantic_core-2.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pydantic_core-2.11.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.11.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.11.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.11.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.11.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.11.0-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pydantic_core-2.11.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.11.0-cp38-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pydantic_core-2.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pydantic_core-2.11.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.11.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.11.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.11.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.11.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.11.0-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pydantic_core-2.11.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.11.0-cp37-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.7 Windows x86-64

pydantic_core-2.11.0-cp37-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.7 Windows x86

pydantic_core-2.11.0-cp37-cp37m-musllinux_1_1_x86_64.whl (2.1 MB view details)

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

pydantic_core-2.11.0-cp37-cp37m-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

pydantic_core-2.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

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

pydantic_core-2.11.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.11.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.11.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.11.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.11.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.11.0-cp37-cp37m-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.7m macOS 11.0+ ARM64

pydantic_core-2.11.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.11.0.tar.gz.

File metadata

  • Download URL: pydantic_core-2.11.0.tar.gz
  • Upload date:
  • Size: 351.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.11.0.tar.gz
Algorithm Hash digest
SHA256 55c6d7fdc94a98e0551870774e27be1ec5cd847230015463853d27a73b05ba13
MD5 5312d42c2ef344823f6956e38fbc99b4
BLAKE2b-256 4bf8c074b0bf58166b803ce23a18b33be12b04930d590278eccbb262aa92ca38

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 83f0973feb8ef8c51b1739157ff0c77ae1f8f6ac90238fdd0046d002b63ba426
MD5 fb4d5c41fae12b06dea6f4436978f673
BLAKE2b-256 63bd915411a3ccf70613cfb415ef5ba7858a36d87917b5ae8e0ce4694f6d6784

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 71136c78efea61dce144a4daf7cb49e1f764e8ecfba5b9e1964929130372a9bf
MD5 6acfed7bd901d82045188dcfababa6c8
BLAKE2b-256 72155b822f00abcd75b41dc8aa81322826cfbe78e96bc5e3bf5de84c81e4cb77

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 64d1c728ee879b3cd8ac3d9efde1655d063dc7f7ed5fecf7b8f40d35806e12fe
MD5 f88ac17a85e88aeaf7cad98638211019
BLAKE2b-256 dc669002de058bebb8fdac25c3a9ca1e91b808802b327b14fb53cc8178536d2c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ef5e0fb01d8f28060a0bd5f42b4335362a5bbd9198f5c1e48449b96d29e1c7b7
MD5 3fb1b396c898b2e4fe66d7edbf40acdc
BLAKE2b-256 3232e935037e7ad6b81e1a567be8503b6960278c8f24c575da62d9ee0267736e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa7c30efec10ac12383bd9f39d4ffe8d09f394a97ea6418b079a364f48312771
MD5 8c318f28a901d7edf687f26624859fab
BLAKE2b-256 90ddce491f1d81ddecf17a6b455667c2b514dc9456b306dc17bdd6e687c50b56

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 100195553b264c16a724fec008924edc14881000eb6626e17322433447938162
MD5 0fda781e77cb5261ff4a9031b4505282
BLAKE2b-256 31ba5a17b17341c1c59a0b943b6b0a71491edf403cca4a9e98c8912005760459

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26efd6c86d467dff1981aa5e28bbe4cca9e26ef6e5349f0ef3a8834d597d9b44
MD5 1bf23019491f77119eea58f4e9590518
BLAKE2b-256 bb108ef41ab293583d69fc42a28411459ba436344e279287bec12ae7e3648784

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 72bb797fdca5db4c8768247c7cb871a3556096e7146282c05fa70180df3af772
MD5 b7c7c3aed0755ca6d001e8ff2b84488b
BLAKE2b-256 c8515c85c904378101994c62b3283625f5c6221c9c728f8fe3e67b69632d87c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e40d828c430b09b57fc67a06125f6efba76e86a21739908cd889ba7f5000ddf4
MD5 ca0900ec74647fa977480cc087ff255b
BLAKE2b-256 6faa84ff9562c7571054f853dbf35ca2d69e0e2944bcccb3fafeb5b73b85a3d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 981d42939e93dfc3fbc9162ebc7b1a377563d9197b43f9dda5d141c5618a91ac
MD5 0e56b68dfd1c856acd5d9af656411dbd
BLAKE2b-256 1d673344ddc6d966310fc0dc0484d41003ba586967b29dcf9cd0453e3ba7f63b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 583e5aa258edb9e78e355c5875114f6efd8f9ff8bd89151cabd013f56e23dd0c
MD5 08e9f1da991ae5a6b68cc35ef44ae610
BLAKE2b-256 5bcacd738a0675e1417c889a172636d0383159429093676afb35724528f6b54c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e500205a0e83f211d1d726a5464bc47856ad46aa45d6ae90689e4fe39b016d8e
MD5 0769c32d7ae7c4034db4372848b61996
BLAKE2b-256 0ae4822b3bcaf0a0957915a952bb440a045fa72931e2338563bd08811111e145

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98107f2dd096bea4b164f72da38303f5ae317f80d672f901a1df7b5b6a216682
MD5 ff92c96ffbc7f98df831bcbb1a72f788
BLAKE2b-256 a8967c96a99864e801999f3a6bf58c6aba343a1f3612d052d0e921ee95998f6f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e93585c482f2da52153a6110d0ca530d060e8fa8a9b8147ac97e65bad8ff2df
MD5 c8e4e43b36946896e022cec9100a5e82
BLAKE2b-256 5725bef0c28592b904868c1e812bbc4df5c445a7011bf75fe0423cd6c575c075

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6eebf8253a4d4e5cd0a9921ad61129fba7047168c65b9b231951f04c20b2a1dc
MD5 c32da5367d145cd6a8e23b74cc17b6ad
BLAKE2b-256 9696e4b5409b3e1477bf989e760fe6356cb72a2f0e18ce9e0a0565ef2d554e2b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b9199f54f8e9f0c924206968a89517971503c41fcf23dad9d1841d0c69cc3ed6
MD5 d9c547d780f556982e10ecd70b646804
BLAKE2b-256 f5f2b331411f4ad428fc90a8757358e5efa3fb5a1740e17e07befcae6002e6ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5d2b0630f95f9a5c04a0b459f6ed0ac3bdd4c33cc17884977630ac6f98cd7593
MD5 a32fb6cd219bdae177e38fdf8c305259
BLAKE2b-256 a314599fb51308ef1eaf24f88f535132036f208d2a9fc3bf62b3974efd61e770

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 763b4a35fd462aa4f29119bbd59d663d24d7478a01c44d63009e92c5d5f7968e
MD5 674b76239705d37f766c1e8663ffec73
BLAKE2b-256 c608f7f8627bf82cf5e741a1865eefbec7f6efee0a0243494bb49f03f36ce3a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0eac8e413d79c8c5b5eb9dbb19963b6528c0f541119c40ee71e6255e6522a119
MD5 b90ba5ce497d45201627c19ef0f2f910
BLAKE2b-256 113a0382a277997d3fe107f92d505162896f0af62d7baff1358bfb98551f949f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1128e9e28b4b3585daeae6cdc4a0538f3d6964e0525784b55a96e2aa8b835869
MD5 848572857c916a0e8312c0e2fd6897dc
BLAKE2b-256 4dbe9626530457ad75db97cbb907b6219fc6920ccfd256a84567c03bc20029f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f97f5398594530506cefffacbe3ce162b6e56407ff3e2d39d5dd2660b291269b
MD5 e7f33d9f0f8f2247436807a720b45d86
BLAKE2b-256 9a286cc04db53496fd5dd36ea1805193c63b619c49d56b0ec831fb508d9d7be2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 70e697ce8c47dda4bb99c819419594a6f4fd117cf6a58b47d6a228afee852ce2
MD5 4dcc68db24639e8919879ddec772412d
BLAKE2b-256 39dd946b14fd1868bd419c06fd832bfc577d38ed17e96c794f5c1f0c016c3d28

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a18e6c17bc003b7d40c522f1025d60e2eda25737a58be99db27110b4ff33043d
MD5 33a9e58334c59c82518ebd423fa9fb7c
BLAKE2b-256 3c91ff24e235b0a3b4ecefa4139e52bd674ff22ac36bb2edeee215850448202f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 23309b344c272bb6c69db74f7780e71cbe2c36c61e45e20eddc7f7b73b500536
MD5 66d7b776bf296884327fe4f773ef5e95
BLAKE2b-256 6ccbb5e7b2d4727574b04996f44aafd63dcbd325b75ebd7bc5d2180af0cdc1dc

See more details on using hashes here.

Provenance

File details

Details for the file pydantic_core-2.11.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0f364d514573be1f5e65fde1828f124b03295b43f242b20ad408ad6e99f23d98
MD5 4261ef7fba56f60adcbfb34add0ce178
BLAKE2b-256 4d9032c7042bae33d0ad0fb1d97ce4d1644b4a2c8d241f0d296edcd82e6a5784

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1d8585bbfc9343b99aa926162830c7b6ec654916aa566c3af2c3de00b9536bb2
MD5 e645467292bdbacd798e24091616254e
BLAKE2b-256 201c1c82f643daf0333d864988ab2f4bc7230d6d7894c1f63ffcfa3b9478de66

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bc9268ead5112802f3645d29ada6d70201034987a62e601e54d7e758112120b5
MD5 d200a25b9fdfb7d5441f42aa24351a6d
BLAKE2b-256 94a9be219a23b202a9deaa1eba60b34c2b2b6cd2f63670e0075af122cb810f6f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c985959b7073d1ebf2eef3bfd82d29874e52425e2489876a3e87ec818c56dbfd
MD5 e0495037c21b682d0fe8cc39a92d1bac
BLAKE2b-256 eedc90187ba621db008dfb5c9ed429bacb65d92874f584a7654f0f9f3f9c324c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8379f6e208a3184fe094ebc275758a72df7f0eca7c816aabb1278f1684b1679
MD5 a54b69f725ade4010920c587a7800f9b
BLAKE2b-256 fc7bc03a53cbbb96af8adef4471e690bd11bc39b2c2babd159d14fc05501ce6c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 456c8499750f7e2e370d6555da7df0a56bee1440ce0c8d557135af75aa25f873
MD5 69f535d5c2b2dbed28cde0fe55759826
BLAKE2b-256 b4710967281d05c4ec00d501041aec8b6088a92e91b3cc4a233f4f9694f61113

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5107d064aa293e785c899818c27ab1f356e8ef456362c30b60714e6962fbdaa8
MD5 24104132fca3f05d6d64190e81be0198
BLAKE2b-256 497e842d13958fbbbee1fa90824764ba9c686bd36923a5147afd97fa6346486c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 c1634371dd13c952a7603fa590b450706594753ebd7eba7d874f0d02343591f5
MD5 e0e0a5a65e9752fda5aa8273d8234513
BLAKE2b-256 8bf4210e8e86edd9387ded29772d8ed251ca36df6ce80f400a0d5c66c4368e50

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 59a313daefb9fb68bd71e036fb99cfb22a973f0d96480b7d1cd9e3230956e785
MD5 2c02db35844ab235eea949a140fd9444
BLAKE2b-256 a7ddc2786c207ef22722bfdeb30aa31ad915fbc23ce95c6c2ed5eb8e4876dcee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 81826fe487f37db22adfff03b02697430481fa7ad697f4a9c84d66f6439495da
MD5 3901962bd7c2869c8877922fbacd2ea5
BLAKE2b-256 5da9c6cc61901dadbdf0e214f0a0c5b6a217f9d0d8cbcacef665cf65b2799e32

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6268c40a82feb03d2b04449a87c90eda591b0399c66d4856cf6762646e860c09
MD5 a30170deb5152a7ca7dca209db4278e9
BLAKE2b-256 3ab0248bdfa209185f4b90c1bb175a128f120757db9ebe2a47df6631376692af

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9794d0a371d030674d02ecd5a3706c749ed97da0c56a6203063934bb49e9b8ed
MD5 76c0c8dc0d18d3afa984ccbcba61ce2e
BLAKE2b-256 cdfc7c949e40cbef128533a416f0600ada23ff0e51364039732d040fdcae23c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5c50d144d2f4656071b08bd4f205d550c0abb211e87e203c63a1a145008db4a
MD5 76886c37c0a9ee6855ae344359c0b34c
BLAKE2b-256 198968fe1ea1aeb4f18a3851bf672ec1d9b474e39ccf660e37f31601c2fdb867

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9346cb27e4a64941b2e25bd56791aaf6b55ce6f16ee556027bc760c04d8639f1
MD5 3888970e9b5c16bcaa667ea44c362a01
BLAKE2b-256 63c19a02bd1ddf5cf4cd40621cdee3a84d55eae3b5484df36e7bcf876dd8d7d0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 102e34e8e52b17b3a3a649f86ff69d3c980519b7f8ed8027991c712574736db5
MD5 d679fd0413e63e70c9f7aa6068c3a286
BLAKE2b-256 80387cf3b6932b3e5b42f28959ea86795a5dd6ffb9ee0b723827ddf367717560

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e45dd2a28cbdca2b0379ee0a3638fd92b55301f74a1f970e3643d300430bc03a
MD5 578ecc141e956847bd3647135e9bbe92
BLAKE2b-256 31d4b01823ebb24db287ca178bb2a308d30cef2dafe5e91fdc9a7aa0d12a2fb7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be68a717575432b34da9c3f010759cd414b417aec200cc1f552e86cc4224fa06
MD5 6b4482665315fa78fb9b9591b199d019
BLAKE2b-256 2fcc2370cf0d0ee3c551f5292daf6d1de81a6e737a512bcff4bbc5d79f358392

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7073d36978f47e6a1227a6c828336bdc1a11e65d37ccbc6f0d8006faf29354e0
MD5 b64dbf8fdfa5bfbf246119a7d404bc05
BLAKE2b-256 a9698e406673526cf9060fe7d8064d89872981ceb3a2f37d5364a8c92d108734

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c49606d44c3ee194950a111b60c505818a51d549d18a02a78658b4029023598b
MD5 9a6adaba3eda37c24944093ee3068828
BLAKE2b-256 a2a4e2b78f02139b68113674aa28135b364c615cad6bde0be5a303b503504106

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 bf505f536ca0b0ba267137918266a2342d38ac975ef18e0a0c60818c1bce23b3
MD5 9464d087bf9c10cb88304fd32b3ddd7f
BLAKE2b-256 3d94d2886c15dbb7c07edcb6cc4adc2447f9463a1b422d5e5bef8b858808b7b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 97b4da34e696b7d18d97bc6452f939245149c1e004a50b00e2008df355be1082
MD5 5c794aec0cc676ae65ecf40559e6034e
BLAKE2b-256 4d0adcc9e8c1ea2b3dbd5bb6886ae1fc086439ca614be2942755094e9b644b8d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 41808f2f9733b91aa8f702e75c6377de1b19fd59c1dff1bc9c966a2880b250bd
MD5 50dff63476718831ba955556820148e1
BLAKE2b-256 af63f044bf9ca111baacdac52f4dc5809edfdaec120f46b98917f0ef3e9faf3b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 84bb5434a39de59f2ee3798d6c4e707e861cebc1949b4dda49d2718d711c437d
MD5 751141dc54d0ed8cb62c712cbf3f5ecc
BLAKE2b-256 2f2cc456066b3e997880be61cf85614bb734e7ee1753e079303d44a41c5a2f3d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8bea50ba5120176834c0dcba0ab639b8cacc88e4c3ebaf4405cc5b1f9da72205
MD5 b701c75ee744ae6f474b51bea1f7d6d2
BLAKE2b-256 44f5d9548490640f585702c1a6083b74e598898bc0684fa77bf8b998f14697bb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 219f0dbe08d2bf771b5c22cbfa5a579aee070deb18148dc6fd6c6f778338be85
MD5 2f29fb9e215f2c03ae50e3402dd6b9df
BLAKE2b-256 c9219aaafca370e41cf1658149714168cd996e23e26307125f44a34d78bd4761

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0d67451423c18188184c6d0706938ecac31001606933fc958a32dcae557d2cd9
MD5 c2d5397289a90a27b692e68dff9694dc
BLAKE2b-256 16ebc02624af7a631b81c92a7f9c491e8dac32aa8d6e93acd7675cf82d9a7918

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65eef535fb0cf121255977a6b0926ac87e655e1678e4c889fd7ab68e0f5f4ca9
MD5 a693a0011012305a1ecb7ea6ab0201be
BLAKE2b-256 23eaa6832d9b8251587ce70984f808cf3300bf619e1d4bef06750e8afb6fecc8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f08cade629c1e35e74f85fd86ddf20b1fa7987cc24ac8f8e0d7a54a81a17fd44
MD5 ad8a85aef7323a9a57ee6ed63de3bd3c
BLAKE2b-256 96fd12d331bcc63905658f88e6172612d3974f01c70a69c83c8693f075b547bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8fa120ad65b9412ef3d6ca138e0fe08547aba340c29369ea0e1c1d503cf7c762
MD5 0b06bb3b04f9b52aa2ea8beb4e3c4437
BLAKE2b-256 513864fae5c9e06f1e7af350867051d6f9761dfcb4909aa7e24516557b60291f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 da38dc3304cdf505e0481fb1b7dc17938d263461d994d0ed84da37577e76e87f
MD5 0765b047e33c782da0765c06747ac4e6
BLAKE2b-256 5ded068f88865fbfe5be63499a420383f33891062468884ebed30035dd502dbf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0f532a8a9d69353e341b85a392cfe8955a7b462e83d60d825a9577224692b91b
MD5 4b405f9ac1b4d55c0a1e1dc026cb791c
BLAKE2b-256 18e62636d8d12642f1c2f1989757b18c00c93d3bdf3a6ce6f11cfbf72ba4658a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f94d687f8d1d9bd92a2d5ae9be1f88d58e6d78e8f69beb8c1d7cb87ad2bec033
MD5 74ec210b158ff92946bd217f12208304
BLAKE2b-256 4117bf6c5f30ce374d3cc85f391a77e4820e5526559ee3ec979cb3ff7e912f9a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 88274ed3d4e2af282d0fa8041a812fe6c878d4f4732ee753c330a82e2f263a73
MD5 d5edc35a0f464275e929ba9774c2d261
BLAKE2b-256 ce1ebabcec6eb72ceb13e78a0cf7ad28c8788351013bff8dc055a9cc137ac145

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3452ffe79c1ffa50caeba2dbfdd25417b121829571c45b1b45fb879880454324
MD5 4247e7c4e5bc9e7c1c91833cca845a0a
BLAKE2b-256 0122696921fab5d5a5d43522ac2c458594f8951f4145dfaaeaf099ecb829e92b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 a9977aa7f65659d8a8b8f8684f76eae5c06a7afa0628d52117d62a1bac395a9f
MD5 b22bae65d2156e770c91d31aefc25f55
BLAKE2b-256 382d700918df48b3d1c171bc07673d41fd55344012a35e85a65ceea038b41904

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8d840ca8cee581afa2737729b9a87b0f046dee8844d116ce90b74d68ca4c7937
MD5 f824fd6e4b4fb4700093490dcdc6acaf
BLAKE2b-256 4f5d04b1343f0df5f7fc6db7dd388daf8118b2c1600b911ad6915896c60aa701

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2315ff647407797381c1814f000b42b5511b22b0b4ce53fc4dafcc658b25407f
MD5 9df0463380d7cc86c4c6024c7f6241a1
BLAKE2b-256 067b9367b6b247b2de98b44d2b84754e4ceafb62b3f02a72bbeb3e59d3e59e6f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0873987bbf69b7affa61606f88312ad7fd5fd3b7dc897240070ad70b6f054c7
MD5 9e2aec637b016f78f2bfe68b1fa2d047
BLAKE2b-256 f15d1a640b2c7ac94cd6dd84a7a2fd9c132369e9560e0b7308776bcec2efe85c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d0af8dff6f0eebc16633c7bcf861bef3a2ff5f4cb8bb5a9568a84aa0554ab403
MD5 01a59e28c31e1afc036618cc7b8246e8
BLAKE2b-256 8f96377bd15154de002974573a83395277c920afded928c0772ee8623f18d2b6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 147f938e71a20aad3b76dc34506731f62189ff2625a7b01225d0344b0f2d0d71
MD5 a095e8d5733671ccf970c953449ab4fe
BLAKE2b-256 d5958a0708a0d0b8b757117eb59c6077b007d8e0f2363653c48987d652fca7f8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 80ddf4439b14a34558bc7d8e11db2d47e5d836250c8110558600f96c5fbbfdb8
MD5 2b23c00a565818105a97d5239bc946bc
BLAKE2b-256 ebb066cd1bc477fc4a2ecdc50948ac8aee97cc2e2b869dfdb1f0db656ce7e328

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 522fab907828e0fa69c4c9220b1777cfb6af981cb826f5af842348c878085dba
MD5 5b12bd03e658eecfb05468f76b8396c7
BLAKE2b-256 ee5140c29c2c9457960948632ea8ee75da0a4c63f65133f97fe45cf50370ee3e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8e2d0d979d3e56d7b5dfc922bccfc2d69c9c16d0e2f79267b9c12c23a2ddeacf
MD5 384db242b61d87ea35768d75a49a1782
BLAKE2b-256 23b50f37b14095072ba628c9c62dfe7c8a9401f87971d23ce7ffe300b75464cd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0398d72c854419fc9ddf0b3b4e6f6125a561bb9c089eea9edb35f9f04e27521d
MD5 77d8edd96b6e2f36fd2a96328e5e05aa
BLAKE2b-256 10927171e60935fb836aef45d3780ef8b96a0acdac1bfad1dac19e58a4c04018

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2cfd3e74e78a86b980ae27ee5c49bc68f27b5fa0e450ebfa425b421be1154ef0
MD5 392f62677762cdda08b76f31bef83dcd
BLAKE2b-256 3cb9f24fd2ce7d317736fc570e7a1e10562100280e0b51c5dab75373bd64ae1b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 322734f599b5bbb0cae22a7e79f2ccf3f0bc0b4e1069fb2d59654f79ab875d7a
MD5 8ec09f6b742c99cbdc1483b1bc42b491
BLAKE2b-256 5bc577d257c942b1dc883a81a03b0e11406bcb861a251c25a9c0c1a6f07564f8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1a8585d19009f1fb9d6c648e3d4ff411741d9c56da1112bd0f9e9d674daa7426
MD5 aa859fbf67561e53b1d0854393ef2829
BLAKE2b-256 ac3b2c1bbcffb79bfe780ecd69f52565094d6647fa85f0ac3fe25f272c3e5d7f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f1be882ff53cd627540e265af11e113e62c2ef2549dc7d242f8dc3747d555b78
MD5 d5e06d8e809d2376d5c6d6033034b0dd
BLAKE2b-256 587fb9d4fbd8adc0d0bb7c6c5a34c8dc18039dad5f53be1d3c98ce118b74e2e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 676086c59fce667bd417ee29f7bb6eba46dbcab1f7007feb5fa7cbe215056d80
MD5 7dc5dce9aaf91e90f4b9c2f0f7a91b04
BLAKE2b-256 39104059a78656f73f2857e36b9c4708805beb0c0e550922501dbdcb3a3e20ea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e546ee4f149b12374d04cbf7d5f28aa1988c1984cbdef0abeed407956ab0d49d
MD5 ea267b84e2fc9a81a4459173035e1a27
BLAKE2b-256 373f79acfeb6daf00a49e057ee8886f99522e19a76d7d2fcdde0377317888c58

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 342e192671bf2fe0c770985520634e887c1c5ae8ed792f1888087b2548d5a4ce
MD5 aab7ade0a8d7ce6e1a18d6dbfd4bbbbf
BLAKE2b-256 fda14e4458920721c1d40c4d6cc4ac80312c0b3a282bc5c12611579acf6d1c73

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a5ffae4662139229734225dd88294cb19e317e62a7545962ae318824644f2fa3
MD5 e43ecaff5e37d44c271ad68f5172d9d6
BLAKE2b-256 f74b8355d157e591111c8e8465d3e0bcf88705c41eaa5a7068cd65d83370dbcc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5df2fddc5a8d37961319442c74984654a3e4ff7bf6467fb1bb7d7d58a5c024ff
MD5 76cf669f00f63bcca680703eb9e2660a
BLAKE2b-256 3581a72e56544d8356bc13e022fd85e630f591de03522b46f80bb49deaaf8c63

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df27744b44379e2d7ff93b9d8b4fe3e800177acfad4d6799046b56e8991e6151
MD5 7f39a2a9dd752107b166c1a0a47a25a9
BLAKE2b-256 7720fe937da11ebdf0c5265f6de17e97947d8ea493104b23fbf8e047e0c04dc4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 16cdfd5c31def4a3f083a26a43267662bd49d47d8a20d25d0fabac93808df078
MD5 73b88f6dfe10ac10c09e29ac55e98c69
BLAKE2b-256 e9328ac4cdf9b1ca79cb6fb935923275a70da2de6292b6ae3dd91b2c0ba41b0b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5bb9e807874ec659f5e3714c69c8d6d962b4b81aea23206b4f3808ccbcebcad
MD5 91133919d37e008d6f60fc500a7b974a
BLAKE2b-256 a8bf2289bcff01c9cf094393e2b61ecd99e5a564d303022905733533c72c830c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 73cd720755339b8a6599d28c9782436f01980a530052e3d41b32888dc3c7c8ba
MD5 c6a27d09d67ae1842c6ac866567eb8fb
BLAKE2b-256 e6287ad0ee8bf6e9844821f082923707cef2d3ea1c7f50c715359be63e6d4f7f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 79b5b4cfd33b7d3568babf494ea26b9e8a95c7b6317e12c251e1142e8a8e3aa6
MD5 75a55a3b6a418ec3c80867a674756065
BLAKE2b-256 949cec4d770d6e8a18ca06a376f14a1d6bf6393d134359a0a0f9cb23c0795a6b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 285d92da33180e081f2e48f653ee809c982ce044030c3d51b7115f9297cb2513
MD5 900e4b9fafcd4bebb89f30985081b22d
BLAKE2b-256 a6f2d3a91246ee0babe70bc6c16dd0fa46dcc52c94bd7211ddf22f03e3d98d19

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 481121e006f15853e87b541138f93ea2b664c964691cd7d7b24eebe632408bf2
MD5 231d861cb205163652fa39d37f21ece4
BLAKE2b-256 216353f9ddc25bc9a900a86889336a691ebff5449dc38251d475cea6890c0f48

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f5c51eea3205286b5479aa00260fb83e05027325bac4dc09bbd6bc8d6b3101a2
MD5 21a0ef17b4705122d6268ac91dc63368
BLAKE2b-256 65c986ad79c7d3589854b24b8edd882c775c66a14c74b20741851bb311ed1e48

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 77962a3df32685b71e0e7b1088b55d8e2ba8daaf4e78d32f703c2af7162eb125
MD5 6bf0b0e5dd95b09f9eed6a90bf1065db
BLAKE2b-256 026ec73f2dca5d6087c9a41cae7f8eb2f969c9d9981d840fa08f639eb6691248

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa82d4ab37f7a0de1606e08bd442fed9a3381d9de39903ed0140ec70afaddfc7
MD5 f0fd6fc2f963aabdcd4036f0e281504c
BLAKE2b-256 71e89ecaf1b0bf56f998e6835f0a40dee79e3e09ee40361edb0f70550ee8526a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f4ecf0516db101c337590b7a2bc1949c29921686971769d0d9cce456df15ed6d
MD5 8b2a3085a0225b9a083da717ffa52801
BLAKE2b-256 d08877ad93bba24c2ff4c3431c39df5ceb501ae84b557122c2a3f762b9004ba9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5a432848f0df0baddaeaf1f32aa9de7b8206220f7e22e2167adeeb7b1438af55
MD5 c1b0884f1e61c7c4f9dc961ce7ed6cd3
BLAKE2b-256 9854c8ce3e612cdb3ea7045a3fcee4ac55234add64f7814246f4eb371246bcba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86c3c52d292ee27042edb4f126afe81d58db26824e114c864d4d6e1462e276d5
MD5 97a371772122b07864eb980375ae6f4d
BLAKE2b-256 053cecbe07cd85c2ee4f74c11288fa4bddabad247c7dc459024ade79b021ac0e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bbc39c3fb19c2c8b0520f361ffd7081d41625e0b36baf4bb892bce3e7b4a96f
MD5 f3855f716a1dc6217536b2c403d378b3
BLAKE2b-256 d2f6feb6d182c80dd90fb8ed4392d5d0939868f58036339233e6430a5e5fac18

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dd73b0338c0834f6a71b278db5c56adb70fb0190e81cf71d332f07e57bc43f44
MD5 7c75c7300e42ad65f5f397bff189136e
BLAKE2b-256 23fe1ef1836c3210aa4883b7c23d6217d6f68d81c61440eeb71f0ae9d38cc760

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 edab4245443b9dd1c3366e550334fb3660f328acbace8682fd058753128b3ae6
MD5 f4b3381ebb9c5c4fc0c2c3b49d34fe6a
BLAKE2b-256 924fb908c1aba19a7568505a7d75d49dce9ba0ccc4eb1d4108d0cca9c553ef35

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 16b205271a7cc6e5f5ed94999f4db8a0b95f0d32e27117f77a8a47d92ca9b4ed
MD5 7f192b98db84777c565e059de23f8c24
BLAKE2b-256 26793cf995b1f651f6c065a92f82e1a41c1db6da1e6283e4b8b44fa21d6b49d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 5c1af2ab1c167f860e8e1645bcb632457d8813627b06739c389a8102c822bd0f
MD5 a2a8278023bed98e70c074b86881f968
BLAKE2b-256 6dc3093626b27eb3cbada3dd201462b92307e32f0a5d0460db33e0a294ce2b47

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ef623958bb655d0c67a41ebc3fe1c0e37a309fdbb860ea2175721dba5b53be1d
MD5 54bfd717db535cc61a2ddbd79be219b6
BLAKE2b-256 516fe13bec31ca348c33bca80be5ddaf645cb7fe24e56373bc0dc6a797e0e4dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 802eeb9cdba035a59c6fc2b81da3d62b685207d5683fc2d51f4921919a57e542
MD5 cf900298117faf99f021a35360df9e38
BLAKE2b-256 60bb59bf99e87313ff702efeda40180c1fd3eb9ce0dbcadf52eb99c4a8c2234d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea3de55e337746d52c737fb2583fee25a42e6ed508e0ed8de57eb884bfb1ea6e
MD5 200e07b4c28aa784d5c9aa2b8be67382
BLAKE2b-256 299de656fae742d7606ec680dc3153fb8f0b8d7ddc85f483f4010f0c1b7b1e64

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fbec3126a0df991c2521aa4c6cd33679b057b590a81fc79ece39a8afc2c21528
MD5 1697ac7864f9400ba981fa0e56865ae8
BLAKE2b-256 90e1f0566d06e04762ff0af8161512472665658b6888ae0b5bdd5dca82581321

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0081793c658d67cb5391c0d178f81cc7280faf5b3b032fcacd55e460cd802b6e
MD5 bce7c1b6d6be9abbe5f6bb0adfb12c9d
BLAKE2b-256 596a181ebec0a908d23bd0e548ad30673a3741c8618780961122236ec8a00df9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6c75dd9e5fa9825b2f4a99afbf0df7edb5fce37b4fd6458df826bc798929f430
MD5 d98bed08298388399a84e3ecf8e972c9
BLAKE2b-256 7e7aeee75241a89bafd9252f445149ef48fd0e8fb857ca3e47f68fad1323dda1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a6e671281b58909ad3ebb1dd8cd02c483c5d25d8078186c79ceab70a0f5770c2
MD5 f386afefcbe9385620ca69a469162a56
BLAKE2b-256 5124d4ba2562ac6a74a46acf1f59b1826a89366d8c66cc3c552d0181a4d4bf10

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b2b59792deeda9210dffec62bc5a1a20ee8b03068c14f20de6cea34805bf9ab7
MD5 59561c9d1e04b6f796f74089746240b9
BLAKE2b-256 a65c432521f0e98af3a155c48a2e1f49826a999644cdba60c51b92d8a97e3f4b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 aeb6f442ca285dfd545307bbf68b44c4c1833fa800b6152806fade2287640609
MD5 d4e4c202bab4dcecaf00854a7c44502d
BLAKE2b-256 2b9d4183ec847710612546770f7335e31e6f28deff018303db5e0b6ebb83eebc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.11.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 11cadb4ea4a0226b44b07e790879c1d982fccfdbaa92ead29f06668285e7bb26
MD5 e26ca8678cd4508f0ad3114f077cec77
BLAKE2b-256 294a334164c4da0d2a05f9eb32d0a2f2144f279525e29f1b9d79d86ea76ace39

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