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

Uploaded Source

Built Distributions

pydantic_core-2.6.2-pp310-pypy310_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.6.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

pydantic_core-2.6.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.6.2-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.6.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.6.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pydantic_core-2.6.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.6.2-pp39-pypy39_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.6.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

pydantic_core-2.6.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.6.2-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.6.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pydantic_core-2.6.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.6.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pydantic_core-2.6.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.6.2-pp38-pypy38_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.6.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

pydantic_core-2.6.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.6.2-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.6.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pydantic_core-2.6.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.6.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pydantic_core-2.6.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.6.2-pp37-pypy37_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPy Windows x86-64

pydantic_core-2.6.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPy musllinux: musl 1.1+ x86-64

pydantic_core-2.6.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.6.2-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.6.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

pydantic_core-2.6.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.6.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.6.2-cp312-none-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12 Windows ARM64

pydantic_core-2.6.2-cp312-none-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12 Windows x86-64

pydantic_core-2.6.2-cp312-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.12 Windows x86

pydantic_core-2.6.2-cp312-cp312-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

pydantic_core-2.6.2-cp312-cp312-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pydantic_core-2.6.2-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.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pydantic_core-2.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.6.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pydantic_core-2.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

pydantic_core-2.6.2-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

pydantic_core-2.6.2-cp312-cp312-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12 macOS 10.7+ x86-64

pydantic_core-2.6.2-cp311-none-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11 Windows ARM64

pydantic_core-2.6.2-cp311-none-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

pydantic_core-2.6.2-cp311-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.11 Windows x86

pydantic_core-2.6.2-cp311-cp311-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

pydantic_core-2.6.2-cp311-cp311-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pydantic_core-2.6.2-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.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

pydantic_core-2.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pydantic_core-2.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

pydantic_core-2.6.2-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

pydantic_core-2.6.2-cp311-cp311-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 10.7+ x86-64

pydantic_core-2.6.2-cp310-none-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10 Windows x86-64

pydantic_core-2.6.2-cp310-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.10 Windows x86

pydantic_core-2.6.2-cp310-cp310-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

pydantic_core-2.6.2-cp310-cp310-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pydantic_core-2.6.2-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.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

pydantic_core-2.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.6.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pydantic_core-2.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

pydantic_core-2.6.2-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

pydantic_core-2.6.2-cp310-cp310-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 10.7+ x86-64

pydantic_core-2.6.2-cp39-none-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

pydantic_core-2.6.2-cp39-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.9 Windows x86

pydantic_core-2.6.2-cp39-cp39-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

pydantic_core-2.6.2-cp39-cp39-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pydantic_core-2.6.2-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.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

pydantic_core-2.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.6.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pydantic_core-2.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pydantic_core-2.6.2-cp39-cp39-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

pydantic_core-2.6.2-cp39-cp39-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 10.7+ x86-64

pydantic_core-2.6.2-cp38-none-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

pydantic_core-2.6.2-cp38-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.8 Windows x86

pydantic_core-2.6.2-cp38-cp38-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

pydantic_core-2.6.2-cp38-cp38-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pydantic_core-2.6.2-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.6.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

pydantic_core-2.6.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.6.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pydantic_core-2.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pydantic_core-2.6.2-cp38-cp38-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

pydantic_core-2.6.2-cp38-cp38-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8 macOS 10.7+ x86-64

pydantic_core-2.6.2-cp37-none-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.7 Windows x86-64

pydantic_core-2.6.2-cp37-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.7 Windows x86

pydantic_core-2.6.2-cp37-cp37m-musllinux_1_1_x86_64.whl (1.9 MB view details)

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

pydantic_core-2.6.2-cp37-cp37m-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

pydantic_core-2.6.2-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.6.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

pydantic_core-2.6.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

pydantic_core-2.6.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

pydantic_core-2.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.5+ i686

pydantic_core-2.6.2-cp37-cp37m-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.7m macOS 11.0+ ARM64

pydantic_core-2.6.2-cp37-cp37m-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7m macOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.6.2.tar.gz
Algorithm Hash digest
SHA256 477124ddd98f7db9f9b4e83d7d54a66e4f7e403202ad77ce9ecb6f113955594f
MD5 e8d0179f847ae6a3347b7f93f88d93ef
BLAKE2b-256 396981e7a3cf14fb104f43f8145c85300188af3b8500be54d008dcefa077a184

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 29b868d7fddaeeb45921a3538fbc3f4ba6e1ad119dedbe3de12484a7d39e6965
MD5 c03192794a41004b8b6b3d2dbc1985c8
BLAKE2b-256 739713ceddafe3d2781339b7dd7f9d2bb7fbdec5b5896ae0f5ede8eaf7c6ee50

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d7d2bc9c49dc5706924ee81418be7b1f905261b1bc2fa7e0abd3292bf7188935
MD5 110a8e05f82275275bf14a1aa45d8c92
BLAKE2b-256 fb990faa7edbc21d1f59b63558a0d82a178d71804acf8b08e68f4e836b97973f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 301ab972391abda3bbc81acc159a97d15ff732afb5430374fb1e818da4ef3ceb
MD5 4f46716652656689273cd11c74d38cd7
BLAKE2b-256 e0284298eb837922b783021642a2fc5e4ff70bded8eb9bbd4f2314eebd06281a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 44224d7204e29ce6a0ebdeb18b66cc6af22c88fd2525b4702d763f20663523b3
MD5 29527761bb616a951d027905e6b28ff4
BLAKE2b-256 cd51d121941db8452216091834bf05d780b9ca95c62dbedb45090b2b3b2cd3dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e7fe5d3ca08333f58776a24b3c347131b3470a1adef02a4f0aa74f9e46df896c
MD5 2a6ae7b9e8f1b3be5e7963f8b4444826
BLAKE2b-256 123db67f35bcae3133783977c14debbd0d11287c8f5c465f7419fa719d904743

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b8f1eaf2419e82d15cca6af537186ebb0edb577504821d2ad2e91f05774483d8
MD5 0520ae67af63822f1ed5feff5151a5f7
BLAKE2b-256 13e5c71346b94935e7c0f46b46d9139777ff7eb0e82e4cea5dd527b47fe3201c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 091d387bf3a483c15687763128c7b5530193438035c6ffed1533df2e94853c7c
MD5 e6bd9f7a3187103bab8b6c3446a7b5ca
BLAKE2b-256 bc68787fa63624b588e7ddcbabb79ac55c23c9632f1df5abe501bb06b09aa0c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 296dcbf4fde49b357404018b27c666d50585ea7419389665943a6362d7f644c4
MD5 4b1cbaf70daac24c2879664c9ee8ac3e
BLAKE2b-256 adb73cb885273ad445a589dd4ae938c173232ceb288f1aacfa0b583239e07e02

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 11ca5b7086e3b6a53eb319f3606c22dfc62217ae6755f1a4d9edafae23e7ccf5
MD5 720bd7bdf6499545e79f1f6b33c78d3c
BLAKE2b-256 6c82b2a202bbe1b17186dfb2325fee591a94767749a66510399b38d559b86b9d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b8b24209269ce2202a58c5d8f256a824eed931ee7fffd433f7065d9c2ec311c3
MD5 ffee89a8ed8fd38046a79511c2086286
BLAKE2b-256 00ffb79f2733e4cd689cfd96850d229359682eb8ccdf52e62e39d31c8c3b0414

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1d3b9bca50641fdbf2dd7335e73408f859f1aeadfd4d58bcc888c5f851e74561
MD5 a9d046e74b978eb83e9402b1c16f2539
BLAKE2b-256 258880b3c7fe8058ce64d3d2e816c22cf6facc5389e920100c14b3a7d59325dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76e73bb3cc91f4de486d67ef94441f93df0584045b74335c0fd75d666b8f1985
MD5 beefc8a6f1e33a1d074af9bd63b78c1b
BLAKE2b-256 99f1c86a5ec34a72b4dd9c0bbd7221e7a26c87621deb7f1579f92fdd3b146b81

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 887e2aedf93332982c7a3e0c9116be8e97608388a59f005f9e9ebf3d6561f636
MD5 3a039f130bc3a4a3a200a1165184f374
BLAKE2b-256 89fc17db54e06be92f46a3393f1ec006a063a9069c2afc958732b26778a2c2a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8cae9e7d9299b0c1f1db172c181ebae323cc0cbb4a98a03c9466c000fac6cdb2
MD5 3a9553449a58ae0e0e9e006acd424cba
BLAKE2b-256 3675cd3d15487223312d5388f4b131f1dbaf6a4a83a1bdc4a79f0a31a69180c6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0872c87881e03c7ef8add4cbc7238e80759c82ab4dae2c379d470c14bb670301
MD5 a7433e1134dd6014bb5e96901adccdb3
BLAKE2b-256 8c70624f13c1fee0950fc27e6d31aa8776d4f79312fd5441339a7082bb1c119e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 1bfd1dcbbd4fbcd7d1a766ce4e9c8a13c340597ff7b56c73ee615c64923136e9
MD5 e2b8b6703bd8d5bad1860af977853e9f
BLAKE2b-256 9f7f82ab380c06d3af84e123e260fbe8ef1dcf8dd28e87e1420a05562017bf90

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1c378e993a853d6422c37f61d402fd90be261d8e581b60737ec39d16d16e0505
MD5 a82abb86b5da46435ced81cf0bb18f3b
BLAKE2b-256 bbf5d54bad4402f94628074ab6785dc97ddda66d090f2c9ec741bac2979242e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d642b3c0dea8197c59a77d03a5e24826e5d85efa77a9dcc19b56ac74921a8d4b
MD5 2f97462d93849bbd1cdf2b5fec2e51d0
BLAKE2b-256 17b1c4c002a7aa1bd7db2a1b2fc4ea561161e3de4b1e91cecfe7812fa9c08146

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 768924becbc40225df61a44bf1037d31b3b0f4a231d5ba5f789a91484247a698
MD5 2bbb7f29f32e3b5d4731e6817c8327c2
BLAKE2b-256 7d94de1de5e63a7356c366a1bd88a19cc0d283e4577ac6b01a4cd429c4a81694

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5c1671ce08ab12ff2afa514549283d1c4408d8bab9934832862783f0af0ee3f
MD5 af0040915aecc683044ff7a6cd99ba38
BLAKE2b-256 f0009d2b91bade1f354e6e0cebef660807e120ea0a0365bdd9fa80dccb7b91b6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 68e0b047a54ca47379a9f70f6ba34e60e800467cd590f412251ba591c3116efe
MD5 915b67c032f305fcdcca38df5f97a34a
BLAKE2b-256 d820e01accae059358f32fd85e5f9f61de3b4c7476bdf6d601b374baef7ee07f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1a28de4d01e7d321146d59f305c4c5057b369b11619ce54f34c2a46d9867a71
MD5 d36fd8f6b684d7efc06727fdff602d72
BLAKE2b-256 6878de8d7418b7b83d747ef4502eed95655b8bb0bf68e7cc552f6a272c507eb5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e9e3cddd195cebf788908980718f4994cbc294dcd47a069944e1970ef56e001
MD5 d42485d22b229542656bfcbfc80ee57a
BLAKE2b-256 2c17364e5d1ae0cfbed5c0d6901cae3310a4a858982eab8cb2f326cbc9903ac7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 876e8134926764b7c3073baf37a7c7bc985bf731117ff823bb16009fa16ea30f
MD5 fc191183510dc922cdd92dc7c31461ad
BLAKE2b-256 2bd6b01145cb78764ffb7efca4676c8f990c265df930c986b437de9e15e52398

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bb428ce61d473122386fac33fcd5b6ba7978c98168c5a86020158c436bb0318d
MD5 efc5af3a7be493b9736fa7d3208da9bf
BLAKE2b-256 22ef0f8b1881bfd6b23c323b221dd6ebf983d0ea8ad9f26a9c96903191721a40

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 af6904154d91e8aae6dcb06326004440b7577c9abe63f387950d4429487a186a
MD5 05e283c3584b679932d153202670c7ca
BLAKE2b-256 5a988a25152bdba4d8d8044e142363e5fcfbf3f423aa98b11d1038a318129652

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cc54736a0a8ac87b0da65c9d151cb8bea48c05b2da7dd3eed21754b272bacf78
MD5 78324baba6836d4394540d47eed6bc8d
BLAKE2b-256 1179a43d7da9eca581eebdf6244e4e121864352deea2272ef872e0cf23d3f39f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4124019bbb8360828ce80898fdc0c85aaa56533758428b74f50f2dcdb49b901e
MD5 e038f217b1f0fcaf303c51255313f830
BLAKE2b-256 22e6b8fe4d4091a1e1d06a5002c5189e2e9903be96348458802ae760203e6976

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f3117ab89c52718cf611d1a8445d785fa0e0fdca86473bdfe2372842ba6a7c15
MD5 bbab520d3f94f7665760a4ced467e781
BLAKE2b-256 27f22a4d5b265d299534f23cb8fe870d7350260148d2c77d59b8edf1ab2d9d44

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7e5699c360d60d8cdc3be657971100a45054d436ea75ffdd9facdb387ebacbee
MD5 9f205915ef8bc166fd9bd8be9f28395b
BLAKE2b-256 6479d7477e8928bd139c789bca5d3a956a7e65ceb5c0896d15c19c1730e21cc8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 33e78a7362ea1d9e215da8fc9a8b6ccb70420a36e51b3884faa81b7ceb34fa68
MD5 1bc41480b60a41e28de04170669341d3
BLAKE2b-256 740174c6f098ce4f4607d0fb663fd41fd3dfcc20951943505b2db871b61d7087

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 3ab76d5c0db622ab011a49ed1db59398a5bbb02781fb01e30c688f3087379ad1
MD5 b133715034738f4ed97ac7c65151c54d
BLAKE2b-256 d5cc278b73a31ca2131e2c7332b189a31be6352d4c8cd45db8e1ec4246649c48

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 863f06dfec4e035111b7d7cbafe8bd39546ad92146f4e4a55f6211656f9c0ef6
MD5 ee1e953309dfcad1bb0b424c4857fc58
BLAKE2b-256 46dd1ddc1c1aef777c3ffbd63c40d168237c064e266b6ab84c5f9ea3b4a8192e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 590cdfa2155b6b4004740a8af234539f33d23db5990e3f4e3ee650a90ed9e95e
MD5 aef8463a555d28c29f8bab90d12f3589
BLAKE2b-256 11ac1541e0d070199aeb2bcd9e81bd1dac7c94039f0179571fd169777e31bc3e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8a585164c88449cb1ea2b0741f28aae3c776feaf7cfc963330c31b131f08be95
MD5 9b3c3aaad1a3c1f8d48d464e0cf11805
BLAKE2b-256 a05d694277917d3e62e627ebe13fb34f5358928d7fc5a1aaebc27b618f50f95c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6b03aa128160b3ebd008fb1e6bbc045d09b4a23573cd98c322ef9ecac6ed023b
MD5 d5fa4b261064b37a2fe73c762a3c6b72
BLAKE2b-256 ab6dfab9a1b94474d98b82a9a76312da89a724dbdc643991afffcc389d644bc3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1ceb2e6db4d2f433bf971a1a2e4157bf5c2ca28a21cb5246367e25300c417bc8
MD5 66a1a997dab25671b282ba134cf49e59
BLAKE2b-256 811faa378b25e52f04490035a7deb53b0a4d4a4cc8fe1eb3491820ee08eccba7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 02aef444c7a981bc569c513e89cb8474fa12772c89b1ec9654831bf5e02bde2d
MD5 abe08d9b199ba089501db719766d049a
BLAKE2b-256 c4b79eabbb231cc17a6861f4c5a0492c99e7ac69dede3f6deef017780978f3bc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0f32992aba29a82b6f6afda5df8ab4e4260fbdb3479a2b5e6846eed23bc1a117
MD5 33bb543c33558281b3a87aa90244ac73
BLAKE2b-256 39d2401f6f463b2ba31a234aba01d2d3c9e37fcff6b5466f9d5f05ebaea9bf9e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 90c9658ed0523e2e61767376fdf7b6db7f38dcd58f3ef28685eddbc444eb0d46
MD5 f56df141be8090262783c534a057fae2
BLAKE2b-256 2828376d6b447683b149e2154d370a7e8b36ed53df5ee5f247d705a80b59ffd5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6dd0d3c9c41b85766798d01f658ca070012f04cd852012aaf7f1a057aef05955
MD5 a288ac2701c9676478fb04d8fb745164
BLAKE2b-256 9e31cc15b99cdcb0f10a11d080c8bbc536d4c88902d588e1779e5a864b96576c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb6deba0508a566ba7396f3a2347bbf84051390ad92d500096df05fa61b9f17e
MD5 83f79e1f981a7f688159e6110f0de3ee
BLAKE2b-256 00113e2feb07e6ac3c0582ddafe4def0430537cf13a45de7b0149b38a47702be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 748bab63c02c9ec170c52a12533cb653852c1281939aab5afcb7e551f9c3b3b5
MD5 09a78c9915df8d449fc04bd8833cdce8
BLAKE2b-256 f6c06e210f9a1aea0eab2a23f1514bf4a6633832aa6765098a7d0bf01dca6e38

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d2d67352c07645b1644529f2c6bb6bc43bc6bf5ccbfb07f15bea66fb54968cfc
MD5 19830c671a95a0498dec14ad325ec20e
BLAKE2b-256 27d2d5dc6c2d4b4151a3b6227eb3d9ff0aa4597a13af576a2206e5a73a07363e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 06128aa4b4e4618064c0c3d27c976e410a055128674e7f254ee6df113e639a83
MD5 4ad0055e25274a925f6d9b7e8880f823
BLAKE2b-256 5d1f688019fdedefc9bf649a309f87e148714503e348deae98208c7fb1d5ddbf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 94c6e1d9f41a464abca5626d2669cac6e29d783db7dc2695b5a9113c9b6cab0e
MD5 4f0e73093a607cb1899bb95cfae7adf9
BLAKE2b-256 eb668223b42088bd5cd756c6c17b1b0207a75e9f22e620b80c032464295d4556

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ca790a3c1530168fb2b430512a88b78a9a31a4171ee0c253b9d1ce81bbe258d5
MD5 e5e22af7ceff3b0479e8449594d0187f
BLAKE2b-256 77ab516f47a1046ac4cb60d35000d62d5d9b56ba44eaefa5d119504173081c69

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 468ef46b540d118b512b2c9958a65e0fa89beb9df2825a638466761a42a2731f
MD5 578e9845285b78e2b17b6d666433cd48
BLAKE2b-256 bb56e63b715a4d1978532ca8e021fd0e43e77a7265586d831293b18140e43292

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2e544e16876790be693e0c5643979ea8bd582789f1d021891e7655bfa3407be1
MD5 6077042d8cd2085350e49408a41de45b
BLAKE2b-256 2c3c52b5460a03a48ca1970b04db23372d085c0a092993a07c3d850b057ba43f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41a86ffbc2f6f66ac5d0106a2c15dd12cf69d26fe46506f7c6349597aad9f577
MD5 4ae4257ed08442b9ca1664100e44f9c4
BLAKE2b-256 30a0dd73dbc3dbf2aa7c9e98e1b506d8769b6cd97fe39ede7ebc28ca41d6c7a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b94991d66955ef0c35c61f087b36803a5083f2e2e6256c9ff7d39fb2963dffeb
MD5 8cdd3b30e9cb65567ee19d05b0b8c96d
BLAKE2b-256 0ae7dde7d8a7cbccd7c91cc57abd44f5fb5b84bced95e77dbbb02a2c98dbb9c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 022eb4caf844260f3af9d19236a5e3ea9dfefe02d577380606efd91f80fba14e
MD5 c9e308bbdfbc29b586b2e1d5dd95f8db
BLAKE2b-256 43383963824dfbb7677823ee3b3f1e6bb3a2a55a34bec814b6614bdc1125d27f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 98bc2a3f6d51788883c15030888a00fd9227b7ad0edc1923907fdbc3ebc65472
MD5 1018f1f45b6fe7c77679ac234317bd75
BLAKE2b-256 1de53eafa3c221b93bfd5dbf50fcf8b02c56e01c792b95bccff6bbbc6cf34fd2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cad7a659d61958daf0dbe7421de4a4cc9cac2ce3b8cf101014a34532642026db
MD5 05887c0d11d979722dc1f72391b60e43
BLAKE2b-256 4d8bfd6d873288e3b1396b8f985209fdc7e0938e6b7a7af162dc1a028cb55e88

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 adb1d035cc08f3b3e976ce68ca02349a558f568b4210c9afb73fa29613779c76
MD5 0ae612e8657ab25bfae1b068c75e0c6f
BLAKE2b-256 5d9f0e91026bde881281c4323739adf5584c92135d9ac37bfb76092ae63611f4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50392bc6b636f4d62edd810e4af9edd890cbdb43ade2820f9ab8509cab69f177
MD5 699633a50a00e55943f61b9d82d430de
BLAKE2b-256 976d2efbbf4b7ed1038c6a5cf00ebf1634271bf8f167684b9184672b2e70d8c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 28fa83e2e3d2b32ec0518921300b8de11bd2ad362f1ebadd68b1b3d0edf591fe
MD5 00937abedea190ece07a029c5c6d8a5d
BLAKE2b-256 f9b6dc1b93202fc365e883bb8c3f523213e8596a0bd8f6282d1aa6bcc0325783

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 c6b31e5969fd94fc3596c93da0d7ec65df910e99e21811757932d5782efaca67
MD5 1952a548a230ae9e50cca21d659bf5ec
BLAKE2b-256 598bcad49c9455d2f144ad4475c08d57693fb012b61f84780f88b1895ac0b9ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 d91800a914cf295c926cd42a55d338ef4aa02a4aafda476599926709c2c71b77
MD5 79dd98602db18d5a960fb151c5178f0b
BLAKE2b-256 1ae8af55edd856f932b382c6e763b05e60d18154cb99ec791f83d0aa121a22f8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4ffd183baab97a9ca6c8b693d59d68796a3d2ca2a4203297bea34567f8ff6090
MD5 fb25d8b45f5b1fe66513ade8ce80330a
BLAKE2b-256 d6562d1eb4e454b89a862981c15047cce833be576c726d19d30044e689c53690

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c59ddec48ca20506cc80862a584db4b2aa07a4b7d62b7ce53d5edfc754728930
MD5 890291ec06306a4e69ff0b9384b6bcd8
BLAKE2b-256 a2030cd6856d0d833d069a7196f6c193f5af6251d879fded701d81e10bffae43

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c3f0df92293c009c6e9699b6e1619b49f21220951be7a45c4f2eeffd82bfed5
MD5 3652644d6bb331b1a2a52693c67f878b
BLAKE2b-256 503c09e7d12137943c5385fe47eec414f08d2a041678a069c53ab081d4263525

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 febdab2050e5cf12a9310f3494bb37907a807f7c5b9329bf553c1272b4c2ab93
MD5 3a61b7497fb423effbdc5ab1d5ac8567
BLAKE2b-256 b732b9a17baaa86436e16333f9c149ec1956585a27b3ebb27a0d1664c4728308

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2b4b5e9869d57add993f03d2f28e39ec93e0810dd07a390ad6a90637448658b6
MD5 e33faea7dca6a7abbb944a4d39d2ea31
BLAKE2b-256 0aecf17af01ddc6922b588aba593957b75d43e70c9d2c855ba3e3b83aaee1f84

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41c5592346f066d889c090d2fcc407288971b66c9f6769379875bdb88bbc8cf2
MD5 618eb85036363789b07da784a9c09157
BLAKE2b-256 b705424b1f88f6bf1632429c504c50a7f00935cafae1e8bd5f337813323537e1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bef8aebda494a977faf6b7f17f08d15316f7f55c0ce1595091a3245643ff70a4
MD5 5633306256bf5959afde026d6d879a2b
BLAKE2b-256 9452d5b2813d0cde60324ca6e49405374b4b4b0bb3d8a26263114c7284097360

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec172544f002e3b3ca41ad948f9ddd409c087c45e8393a77c01f5cd690575a1c
MD5 d402f28c86f58f0d3a915d7bb153a5cc
BLAKE2b-256 73299f1bb8db2cff8885bb09509346d0a4eaea0287372323b4d3379ca1d1665e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a54bd03401fb653c8729784b3a1b0dd7674638058539fcece4ec6cdfdac8d7a9
MD5 85f1fc198649ba72cccde1dc8dcbc01b
BLAKE2b-256 50a4cd6af30a700293fc67e4e6f9c87360badee081e9d2ab9ed6b9a90e772e03

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9121603ea41e00da437756950883f63a2543995a04b25704e5bbeafec327fe6a
MD5 815f0b78804f6514da31a7e42036be7a
BLAKE2b-256 387fc00b8ab41b76b87c0bd9c242c0d0357a88cf7c8be895d564b8a973fd6c68

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 e2a1a0b66a86fe745425285bbdb639f8e86704dad64c88d745ad37522eeb46d1
MD5 513b83e2e84ae19a117bb7bd00f38e64
BLAKE2b-256 da5a305d16fc4c4429ab03a17ac4e670058c2dfc78064666d0cb0e30a0e9ee19

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pydantic_core-2.6.2-cp39-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.6.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c253f539d8a67989cba682229f00d80bf44f8845760faa7b2cb9ccbb11585ef2
MD5 466eae0c9e4fc692ad165cdc811f4647
BLAKE2b-256 4de518118f7abc299bb113ee4468bf6a27d9183c4d53d2b42363d8351994ed20

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ba93a8385726d30f229d77fb82af4287ee20916ec8fbe078fd530b39aa8a7022
MD5 b94c8b78770e4a353d05ee0660f96380
BLAKE2b-256 76fd55dd433d2713423bc4db4e7b1f40f4dd57660e38cd4c6d6c1d3f0423ab65

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7b33df7cf1e74d6578554948b6d7e898f1a3e122b93ddf61ea969d7fa2bfc63e
MD5 d73208e3859360b5d549aa5f98cc2769
BLAKE2b-256 67a0bd1136f9af1cddc01d0ec10f1eaf065818791e01e40a2617ca5ace851ae2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc7af711b3c597ef1a1233c901b2a5288b76d72af474c16062a4eb73b263a0fb
MD5 e1eeeafacfc27c189bae0e3611a75949
BLAKE2b-256 14861a615de5ea185f0cc68f90e17281f20b94c45bf0a4ed5d54610208102070

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f1b67270ded1739c5dc4b1f188e6a3260be94e78f09ac08ac30b4a6874d7e43
MD5 971247042ac70a3ef9b780631afdfd26
BLAKE2b-256 7959b105385a7786f729eccd0a55d42d1a1b22434c6f9c6d2b59826e5cd8dc27

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ccf7b2480bcb5561b4fc9668b9cb845517c79dc2830ce77fbf445f1c4558227d
MD5 cc537672e8b6462715620542edee3315
BLAKE2b-256 e1839082f588528d24413800cece49e74bcb46ca15f1f5bda11d460e63877abb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d7ded10a938fa695f9546ee6962cdacce57fe764bb3d1afda890ec82488ccb8
MD5 4de20b85f84a6624a078f22dcb59f85e
BLAKE2b-256 5e9d201c2cf8ecc5c48e7a248124205e24ba709d5fb3a5abfb841874f1f65053

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 160ec8a86d3fcc1b631e9a656cceb8e8a5cd3774f6b1d5b8ba03294bcbfd290f
MD5 f9124760622156c5db8ba74aedd88686
BLAKE2b-256 c1085fb673d9d9f519e9f0174bb1ebbd36575ed0296cf7768d1b0b691fb552db

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 27962e9b5e45e3e89f65a0a04aa9f5a0db8371764fdac4e4fe55777b2020d9aa
MD5 af49165a85ac0238dcffcc90593a0765
BLAKE2b-256 658f431fa385424d019d56eb57030ac97a30a70fcdb1590c62f21db78d21bd5a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd0d1c9d7c4bf5a40ca9f1f3728512830e0fdc99116a4b762f0c10a08cbe0f7e
MD5 6d516a163203cbb223a9c2f6097e02dd
BLAKE2b-256 981c30c2becfaeec1609cc900c5257f94d066e3a4ae54ee57051cd76649f0605

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6025c3429924cb47fa99487e4f9c92403369d88da788b5ef8fd26de87b353077
MD5 2364bb351c566652e60a9c07a66b8bac
BLAKE2b-256 da5f3060ea5561424311eb3716b20b5bf4071e9500bb593ccd89681e9aee47b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 f8cacf043dd0ffe28352eb63a0f47fb3c8eb5f44352cbe77936fcf2c21f3c26b
MD5 5900efb297812022e8c370aebb3579ef
BLAKE2b-256 785a9caecd38a8d2424b1a910bc37694ad8f9d2cdd193f83a0c18c6d797a2368

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pydantic_core-2.6.2-cp38-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.6.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 07cff33c8a4ec6b7c834cdffd2e0accf1c858c516d3e5f729c93c1e40c86610d
MD5 d5ec1774f083ff1d54137472c249e94c
BLAKE2b-256 fcd5e53c7ab611a9b185d6b7040cbc7e13bcf61a7360ab0e21ba1b580dcad762

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cd2fc321af2b6c310784f8cb4c2485e98b20e703697f3d8cef666346a9223432
MD5 d6cd01b009a9a7b14cfd72043b4a988c
BLAKE2b-256 8f5af8067056af7351bed371b9660e4fbca99d22748e629f6d34666bccbd41e1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d2815ea6360e3f10ef2afe0992819497013ededf3e628ada2f31215d7d8fb19a
MD5 7cfddce3a4b95c41c48e7f2423f7cb30
BLAKE2b-256 d6884efa4e26ca1a28f293bebc5d7181efc4189d34fbf4698994f95e4468834f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fce4aaf546fe52f8190674b06d00b210be7510d62890d11b9dd4a374d540e2c2
MD5 f6ca15174b23a9e98bd6ab24cdfcb8e5
BLAKE2b-256 6090895344294016e90e0bed819cc6a4400958f5eb4aedef615b56186af564c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 143055a72d22577e6c5cbfd5f767a7fe432fd71aaa7657fcb862185e0222dd58
MD5 4de08a08e4cb3790a289b801a6393068
BLAKE2b-256 fd437fefbe971705dd6aee157675bd16e23b3f76c8d327646b885d0b814e3efb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5aa50dc733a65044f58129047715af3c2ef3ab9253a21e85396d82d972908ba
MD5 e2dbec057cc6962df68bf427597defb0
BLAKE2b-256 7a8cbb5553768c18649c0eeaf4cf8a19b78b88e7441fe063884c726825599db4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e432c76d8459a37c7a5f3745ab9764e8edc59d434b1f483b9bf60c0ad5acef3
MD5 65a3b21b12fa0f213950146d763ae6f2
BLAKE2b-256 90825a9ec44e79254854c9c5f35bd67fa778afaa518aad5ab94ec0a0981c01ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 861da2264d8938f26386e28ec4410a134d3af42360952af745f1b4d9277b078f
MD5 943588673ac3cd16d21041a52d45966a
BLAKE2b-256 c3f959d23cd3283ade6355cca9f2d9a1a9eb0cffbd23c8ec0477c975ff610ed7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1573892c055e53d442ac55baebabc8f43b78e9ba8daa73955bc32396b6e6d42f
MD5 8bf74adff24f5afa5c0949175b190449
BLAKE2b-256 3a1bf4cecfa19ec05f4b5a507a590ab4d384326a0ad68c03a1aec59fd98a389d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77b63fc2974c4ae66975c860ae93a44293b76b2d925c61a69d98ca30ff99b9e6
MD5 9423887350b188068f690d8fea1200a1
BLAKE2b-256 fdf4193702a4f1b1756dfa588290ad6050c5a48600e3539ce1d5fb296ed21c6e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 761f76ae175211fc492628a62b266a61562702139f1c8076b9a792416432e7aa
MD5 1637f0eba9710c9e2a0f3cb000502091
BLAKE2b-256 a233184a389e60439102ce5a1b46cb16e7babe5e0a6a6aebd266740aa090bcf4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 4e3f585e512331c39f423c17813e17ac3b034560d5b58273d60c65223a54c002
MD5 e5f21c3a85b2a207839cf513134d9bff
BLAKE2b-256 074d2e463413fbbd1b67ebec36d9b295ce439ee4ed11e6763b179d73167ea2f4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: pydantic_core-2.6.2-cp37-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.6.2-cp37-none-win32.whl
Algorithm Hash digest
SHA256 d91e879b416e4507a038950df8552342e2138b8ec9556b7def969775d97e6cb3
MD5 4484e5313b7104d3866874ebe1171d5b
BLAKE2b-256 7a0f13e08c64143261b6c5286af8cc2c8c09407ad728e06e3dacf8fb70286ea1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5a868cdc49ec637b62cf042b921897dc8cc0264f0b653a018e893f84f8932a32
MD5 2236e3c6390613f60baaeec2e98c74cb
BLAKE2b-256 b8a687ae1378741dfda9ba304ea93d3a261abde17500be8b306233fbb1b1b6e6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4988e89b595d78904616048e063d5b81a91632638977f99196fb678a8e042c12
MD5 489f9ac93e0b8f33ca0ee22f80ba8024
BLAKE2b-256 44edbf741b547aec8b52ebdde18e36d0d063c61bb61a7ea3ed90a88b160ac58a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cee969d0158b9bd2e3f7f957440d1a483cf0da1acc19f23a6daf109cbb26486f
MD5 26b18899ba102baa87b3d033ba2aa774
BLAKE2b-256 b5230660903c3872cb6d9b8d93ed1e5f44a4f4d2b3530449a2e380cdb56e6ec6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7a0f691aba51abedca768147a3d3315a1068d69fef9bbe761ea591b00b742448
MD5 b228f16f4d81d035e7a1bb1d61484402
BLAKE2b-256 260879d8d0ca9a48bc476f95dcab362e517f21cae3036da4f8f75a3288bd288a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0fbcefb1824daae99338e6327442b0fd5767634f056fba47452a3839b5921422
MD5 598f913f6f056e89e248c8894be67d9c
BLAKE2b-256 f1540bb4a2830aa730d055e64300ba39f05a2efd9efa9f280fcfcea392bd8bb2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7a0a71033e1ca637fefb37dee0fe67b2e7a5dcbdde770543c8d432a782813dd1
MD5 6e5f73b067ba9a3f2678d69bde918a77
BLAKE2b-256 13b873b679c40be0b29a645f90c38deeac82a39db0d14325f28b1ee721c67bdc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 389a70d79550c373f4f3d626a9ecb16208f0cf698c0e819a7b2f0d8bc5f6cf3a
MD5 61c58aabc8b12ff3bff2ceec54dbfd6a
BLAKE2b-256 168544179b937f1bc6f57be8af93a3c0272c82f723a400e635f63fcaefdfe1d8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0d5092cd1a976982ca0aa56cfbde2fcbc57ad41e3df3f33caa5da4b23804388a
MD5 d3d281c3d8da4e6364c0fd137e1ff81c
BLAKE2b-256 49eb0212aa94d980217990085192275c34480d348fb0a7ceb7e1b5baf4b1b226

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 778e257834e35f7ca12714a83dd235374c5efc77240546aaf734af1568ff2485
MD5 3a43b368bf0a9fb4952e56f189db9342
BLAKE2b-256 053cc249e5e2e1f2a083820ec4c4550b66900b5e5cefa4facc9a9c6e45e7c0be

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.2-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f8ee571d189b78bc761fb0276db786195bd7c0b392f4dcb801e82079ca90a7ef
MD5 b4be3a6e9702f1261ebadaf02c50818e
BLAKE2b-256 1ffbc635bdc539246bd911e6f49cbd4c15d1df1d326ae8f94a9a032a7d0b21bd

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