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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.7+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.10.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.7+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.10.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.7+ x86-64

pydantic_core-2.10.1-pp37-pypy37_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.10.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pydantic_core-2.10.1-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.10.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded PyPy macOS 10.7+ x86-64

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

Uploaded CPython 3.12 Windows ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

pydantic_core-2.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pydantic_core-2.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

pydantic_core-2.10.1-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.10.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 Windows ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

pydantic_core-2.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pydantic_core-2.10.1-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.10.1-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.10.1-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.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pydantic_core-2.10.1-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.10.1-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

pydantic_core-2.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pydantic_core-2.10.1-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.10.1-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.10.1-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.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pydantic_core-2.10.1-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.10.1-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pydantic_core-2.10.1-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.10.1-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.10.1-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.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pydantic_core-2.10.1-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.10.1-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.10.1-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.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.7 Windows x86-64

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

Uploaded CPython 3.7 Windows x86

pydantic_core-2.10.1-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.10.1-cp37-cp37m-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

pydantic_core-2.10.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

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

pydantic_core-2.10.1-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.10.1-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.10.1-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.10.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7m macOS 11.0+ ARM64

pydantic_core-2.10.1-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.10.1.tar.gz.

File metadata

  • Download URL: pydantic_core-2.10.1.tar.gz
  • Upload date:
  • Size: 347.3 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.10.1.tar.gz
Algorithm Hash digest
SHA256 0f8682dbdd2f67f8e1edddcbffcc29f60a6182b4901c367fc8c1c40d30bb0a82
MD5 169352f09231705c31cdbf868879dee0
BLAKE2b-256 af318e466c6ed47cddf23013d2f2ccf3fdb5b908ffa1d5c444150c41690d6eca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a1254357f7e4c82e77c348dabf2d55f1d14d19d91ff025004775e70a6ef40ada
MD5 4813006ef7fb89af09391649f51b8805
BLAKE2b-256 e9bf0358af0fcbfcb2aa67057fbf5405947bd5eeefd7622d9718ae705f69f4b2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 53df009d1e1ba40f696f8995683e067e3967101d4bb4ea6f667931b7d4a01357
MD5 dccb2d899e479ec04adf9338ff7e3272
BLAKE2b-256 0e50d03292a5537a237a0ccce6613749fd9b88e56d98c6cc3a39e768002a5867

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c0877239307b7e69d025b73774e88e86ce82f6ba6adf98f41069d5b0b78bd1bf
MD5 50da753d53fba49867707b2d52fed34e
BLAKE2b-256 d5dedec5a958a906da5376b21743006e682e41b4a5725a06d1519b62bf9a8427

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2cf5bb4dd67f20f3bbc1209ef572a259027c49e5ff694fa56bed62959b41e1f9
MD5 09647778b936efb60ae8388d3c1cacca
BLAKE2b-256 f97d42cad280f2952f3c3a68aaac4133d2d3749102cf2ded9dce6cfcd41d61b6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 962ed72424bf1f72334e2f1e61b68f16c0e596f024ca7ac5daf229f7c26e4208
MD5 377e15b26cd943377c054607a3ade8b2
BLAKE2b-256 cc7db51952bbabf35b766088544dac44a88f4dc8a00f4a5235ac3955c7aa4285

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e544246b859f17373bed915182ab841b80849ed9cf23f1f07b73b7c58baee5fb
MD5 5aef5c4e17625231c5b69d22d6a69f52
BLAKE2b-256 4108a03df23464230390171e195804996548325e0152d02c287e8eac047b11cc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcb83175cc4936a5425dde3356f079ae03c0802bbdf8ff82c035f8a54b333521
MD5 2625356018afdc288d0308184c51707c
BLAKE2b-256 bf1338cbe60e0f8e5af4cc84e61e45b589f18c6fa9b0e6eae05005560d20b267

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d43002441932f9a9ea5d6f9efaa2e21458221a3a4b417a14027a1d530201ef1b
MD5 3dba5d0a8f062d2067a9e7586056f3c5
BLAKE2b-256 569411edcb82202d15559f451f842175356368a06e9aaaa996cf386e5b28c8b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b4a6db486ac8e99ae696e09efc8b2b9fea67b63c8f88ba7a1a16c24a057a0776
MD5 aaa90574cbe92dc4c1d4d77db7bc0a1d
BLAKE2b-256 3329be841774e59e7d355ed9a42b799984576cbdf7b92dbaeb5e01c68c9b90ee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f64f82cc3443149292b32387086d02a6c7fb39b8781563e0ca7b8d7d9cf72bd7
MD5 b74b35225ac3bfc0ed69c939bfe84e51
BLAKE2b-256 1b5df3d45e0147af991484e053da020bfbb151cd30bbbfe0538f13342cf13754

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f36a3489d9e28fe4b67be9992a23029c3cec0babc3bd9afb39f49844a8c721c5
MD5 ee2c85c0412e4db4fa5a5e0ecb71cabf
BLAKE2b-256 bc99aa826dab5fd0f6aa49d91ed12e7f7ccda343765198ad3ebdf08b3e684faf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da01bec0a26befab4898ed83b362993c844b9a607a86add78604186297eb047e
MD5 55f2561ed6c4c2e71b56c2a0b9b8e409
BLAKE2b-256 c5f722bc55b9f675d0ea46abb3b0f7599958ac6302ed5ecca45dd9235aebc977

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2e0e2959ef5d5b8dc9ef21e1a305a21a36e254e6a34432d00c72a92fdc5ecda5
MD5 cdf6be960efb2540c99138bc7e52e8a5
BLAKE2b-256 356e9dde2f91a1e95f986b1e137fbb61dcdfe3217b7aad1c1bc8b56894258816

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f2e9072d71c1f6cfc79a36d4484c82823c560e6f5599c43c1ca6b5cdbd54f881
MD5 d2fa1195b957cdc2f3f3ea10f611745c
BLAKE2b-256 b890f8841bb866c1fe080eabc784c79641f25e280ab9a4d77ac719d702749af9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0523aeb76e03f753b58be33b26540880bac5aa54422e4462404c432230543f33
MD5 211f22c59d1474277827fe3696ac7848
BLAKE2b-256 70bb9d8fdd27c7cfb3d9c37e6a03591d0fb1fefd97193af108c389ea48d3a0a9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e9121b4009339b0f751955baf4543a0bfd6bc3f8188f8056b1a25a2d45099934
MD5 d96e88673cfae83021a8fa5566330d1d
BLAKE2b-256 2728fb4d1d9da89a9a920ae7ea18b026aee548d1129264db9447a465083931c7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f23b55eb5464468f9e0e9a9935ce3ed2a870608d5f534025cd5536bca25b1402
MD5 495a6080b2a32d204e80a6ae1073091c
BLAKE2b-256 f9819f6f19e4763a684713c128d4cd0597d5a31ca625ebd36e8e44fcfe3814e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e562617a45b5a9da5be4abe72b971d4f00bf8555eb29bb91ec2ef2be348cd132
MD5 4c73c3a3ab8eee321687581b8041b35d
BLAKE2b-256 c84c1435b9c71e6f00ee4d866e9e4acd1d679cb512afe406efc0983a0c13fc10

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 154ea7c52e32dce13065dbb20a4a6f0cc012b4f667ac90d648d36b12007fa9f7
MD5 bc37bae77be7a65a17984c0bc4b13b94
BLAKE2b-256 c467a5c3f28ccf231cd3d44abab76b719e923767b50ec7c62f706187c4f5b14e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4d966c47f9dd73c2d32a809d2be529112d509321c5310ebf54076812e6ecd884
MD5 481ee0d57f2f0605258ed2a07a4bb172
BLAKE2b-256 933515886e78deced0b90b1d7869ab7b77ba32549f15a608cce0788f6377660e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 149b8a07712f45b332faee1a2258d8ef1fb4a36f88c0c17cb687f205c5dc6e7d
MD5 dd030a5bfa21cded00f597e3c4603694
BLAKE2b-256 aac9e007230e7989398216a427bcc38b92f72eb1938e3fcf1e22834c9df53882

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7eb037106f5c6b3b0b864ad226b0b7ab58157124161d48e4b30c4a43fef8bc4b
MD5 d4676cdfbd7070c56f12c7fc153f5c80
BLAKE2b-256 3f82c50cf91f9a89f38e1519d6d4024cb57c9a42c15b1fd64f8b1404093d9a7f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bec7dd208a4182e99c5b6c501ce0b1f49de2802448d4056091f8e630b28e9a52
MD5 93a57afc29eefb9ef1ef28a7f671da68
BLAKE2b-256 ce8ac8a1b8bc5f89ca9b3a1777b6b66cd0ec7a204bbc81ecd7eb3fba8133f461

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 631cb7415225954fdcc2a024119101946793e5923f6c4d73a5914d27eb3d3a05
MD5 c2e9c4a3a5f88bc121594362cf8e94ff
BLAKE2b-256 53f72319b5d77bd725180269a8c6157f37dd0cfa335b47350800574e7484f3c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 14cfbb00959259e15d684505263d5a21732b31248a5dd4941f73a3be233865b9
MD5 c5f99395a0369c39abfb9321134a678f
BLAKE2b-256 b2c308750ddfa34666b929eb1cd37bd38cc3c75cf8a10703cdbdcdc0ee954571

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dda81e5ec82485155a19d9624cfcca9be88a405e2857354e5b089c2a982144b2
MD5 211e98db0e058f354f2ed4cad48bcd67
BLAKE2b-256 dbd7510c3d79ea9e8134f951629011a5f9fce5be2f4f65faf6c8666077e0212b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 417243bf599ba1f1fef2bb8c543ceb918676954734e2dcb82bf162ae9d7bd514
MD5 0134c1923b283c3628b024146f6fbdd0
BLAKE2b-256 28f35d62112cfdfc076d8c4e02aefc0529806fe6579b4e2200045b63863e60ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 320f14bd4542a04ab23747ff2c8a778bde727158b606e2661349557f0770711e
MD5 50a24955b9073a1036b494b4faa26dd5
BLAKE2b-256 575bf8d8bc3523065978eec7bd2e43d5e335e1993cd708a941440a0e71d21fc3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f0ac9fb8608dbc6eaf17956bf623c9119b4db7dbb511650910a82e261e6600f
MD5 268bee00d7275a5744d1328cc334a34f
BLAKE2b-256 e73ae08a51157b4777dd0e4546a626dc7581c2ec910e7513a3f3d840e785e121

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 63974d168b6233b4ed6a0046296803cb13c56637a7b8106564ab575926572a55
MD5 19c3742b4a319419c449684a76821464
BLAKE2b-256 e8e7fe7fc52d4d3107e24b2e87d184fa46ca27a0bcd2d505b55baf6420ae2714

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 524ff0ca3baea164d6d93a32c58ac79eca9f6cf713586fdc0adb66a8cdeab96a
MD5 1b5049ffc84f7f45e9acb336cefdc480
BLAKE2b-256 84a14ed094546618713168de952b2d39b3a99df186ae9cf320e979497c5a2cd9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 0d8a8adef23d86d8eceed3e32e9cca8879c7481c183f84ed1a8edc7df073af94
MD5 6c1843f1518ec70b591a17142bea48b5
BLAKE2b-256 1e3f86b9209f6a68a28a90327aed12a3cd62f0c124bf9186d294de3c5b90b935

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 5994985da903d0b8a08e4935c46ed8daf5be1cf217489e673910951dc533d430
MD5 521ceded41e0b484cb4efbd13bd4e73a
BLAKE2b-256 a45ef8436267bb9a35099a75237325107beb640a5a8c8b718492381e9b836719

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 7c4d1894fe112b0864c1fa75dffa045720a194b227bed12f4be7f6045b25209f
MD5 78a5b841f43ff4c9837729423c76ff61
BLAKE2b-256 4953c8efc99c928083e2338628adfa1d6985ec622a0b348247611406a77640f2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f6defd966ca3b187ec6c366604e9296f585021d922e666b99c47e78738b5666c
MD5 b712881ddd88023b78ef1a4095cbc258
BLAKE2b-256 b9b6c13996fe8881ee4ec4e0e41006d6fbd98d346ff4dfa1972c94a15dcb19df

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aafdb89fdeb5fe165043896817eccd6434aee124d5ee9b354f92cd574ba5e78f
MD5 23752e22460918a4f29106a232fc9049
BLAKE2b-256 fda56b9eca1da69b6c51442422d8fcc8453c838a712c01fbedf260e2b0124203

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14ac492c686defc8e6133e3a2d9eaf5261b3df26b8ae97450c1647286750b901
MD5 6cb5466dd590b4679de836f770ff2cfa
BLAKE2b-256 53ffc76665d6724f556e81e6bbedd8a0966be84cea838c2f29249cef5140cbed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d6495008733c7521a89422d7a68efa0a0122c99a5861f06020ef5b1f51f9ba7c
MD5 c1945fd837db3f49cd5c5b4ec6bdc77e
BLAKE2b-256 2f4d212cac1a005bb34bc24ca13469c062fb96e5efd2683999acca4a23f10b75

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05560ab976012bf40f25d5225a58bfa649bb897b87192a36c6fef1ab132540d7
MD5 16f6e8b68cc627d77a1835d69d9f6c87
BLAKE2b-256 a2380d848085c1e70ac83ea34a6798eb3e0d5f28c9659f88222a89c71c480cc9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e2a35baa428181cb2270a15864ec6286822d3576f2ed0f4cd7f0c1708472aff
MD5 fe374c6ed3c2ce042045d00767aa39db
BLAKE2b-256 c5685ae011884f1e8eda0bd56db36a021b79891da9f10d64152b569e2a76bdd6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db9a28c063c7c00844ae42a80203eb6d2d6bbb97070cfa00194dff40e6f545ab
MD5 9977537aafc83f938e9c68f8150e7b74
BLAKE2b-256 bc45bf9598373902a270955850dccb365f8a9706c11356e2d4a087fe47cbb93d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8282bab177a9a3081fd3d0a0175a07a1e2bfb7fcbbd949519ea0980f8a07144d
MD5 fccf9d0702b5f40e11f8575c73c899ec
BLAKE2b-256 46d229a7aaa07340d3f5509065167f33ff4241c9b9f1496ce326434a8ebf8d7d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8572cadbf4cfa95fb4187775b5ade2eaa93511f07947b38f4cd67cf10783b118
MD5 82c580dec8352bab12c3166c8f077bdd
BLAKE2b-256 7e320f8afe171b96c264d2c3bbf7986763699edc7f1156265f1170cb9d978155

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b1f22a9ab44de5f082216270552aa54259db20189e68fc12484873d926426921
MD5 0a75a8625d10bf4d62a3b0ee18f246a1
BLAKE2b-256 1e5c8e9256d3e72f0f2f213287bd08753a0fded4164f907f5e0232269b548bc2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 5fdb39f67c779b183b0c853cd6b45f7db84b84e0571b3ef1c89cdb1dfc367325
MD5 0f7eca171a5e807a7d42a9647ce0a008
BLAKE2b-256 582e8f9abc988bf25385e6418c607ba21a311b48ca0ff24399387f6a0276221c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 4a5be350f922430997f240d25f8219f93b0c81e15f7b30b868b2fddfc2d05f27
MD5 f2caa60c718aedf6d45104bd808e4e4f
BLAKE2b-256 7c49bd863a3d7c5412d739f3a28da0f437f25ccfa92413675c93412e64b812ed

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 6db2eb9654a85ada248afa5a6db5ff1cf0f7b16043a6b070adc4a5be68c716d6
MD5 8a7040999ebac7fc1750febdaec70632
BLAKE2b-256 ed4b54ffc25d0807c3c1f2381b1a285dc19d931e644425756dd8054a226b3c5e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8f1ebca515a03e5654f88411420fea6380fc841d1bea08effb28184e3d4899f
MD5 4c3ddfa6485f8bf8349204b34a825d75
BLAKE2b-256 b857a90587737429561f1917d034c6db46b17bd560520ac6ef8dee261f7a421e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e6f31a17acede6a8cd1ae2d123ce04d8cca74056c9d456075f4f6f85de055607
MD5 f3c8b13cef7cfbb706887e2967e770d1
BLAKE2b-256 6c18d73a329b97fce152b991c0fa7686f247820a87cb8cee5f1e731913a926c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 caa48fc31fc7243e50188197b5f0c4228956f97b954f76da157aae7f67269ae8
MD5 10d20590c12b99ad6013d993dea6c763
BLAKE2b-256 3909120c06a52ed4bb1022d060bec0a16e5deb4ce79a1c4c11ef9519bc32b59f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3625578b6010c65964d177626fde80cf60d7f2e297d56b925cb5cdeda6e9925a
MD5 4bf1ab63c8ef45be8b5dc9d945b74735
BLAKE2b-256 c4437c6f10654facb41938e3296ca982a912900ea16e1f223b1fea2296c6c0f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a7a7902bf75779bc12ccfc508bfb7a4c47063f748ea3de87135d433a4cca7a2f
MD5 f27aa80ec32167f544ce16a2d7b88d93
BLAKE2b-256 064e3f8f1cab0b0cbf97dda7d4e9e4e97d5543b2cf51655809dffc9b43ca8816

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eeb3d3d6b399ffe55f9a04e09e635554012f1980696d6b0aca3e6cf42a17a03b
MD5 aecccbdd5edab34ba9d325feefbdcec1
BLAKE2b-256 b920d2beaa2b2935de6dd4212d3429680ec1da3fecda7c6230bafa866a5c3a1d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39215d809470f4c8d1881758575b2abfb80174a9e8daf8f33b1d4379357e417c
MD5 dc599a4b1814ba3f4f41faba92cff49e
BLAKE2b-256 a64e69413225ad2530bc468fa049373c48da12c7e27dc21915124c5d2574a593

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 07ec6d7d929ae9c68f716195ce15e745b3e8fa122fc67698ac6498d802ed0fa4
MD5 a818fed5ab4d135a0ed42227ba2b621c
BLAKE2b-256 1e7d1d9aca00181f223388f439d0cd1c20c6a99d37ae3a00640c3e7da09dc7f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 600d04a7b342363058b9190d4e929a8e2e715c5682a70cc37d5ded1e0dd370b4
MD5 9b7dd6a7331d1e7c5582cd6ec34fb7f7
BLAKE2b-256 8dabbaf66342f1d18228ed3e54a05308b967c3de3692517f3237c570447e6256

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 073d4a470b195d2b2245d0343569aac7e979d3a0dcce6c7d2af6d8a920ad0bea
MD5 eeaad15d847a21299a01de7f510d75b7
BLAKE2b-256 0b0e65f6de84186c694ee8345d58cc625fe347ae7682374e2d6538bfad04a649

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 0880e239827b4b5b3e2ce05e6b766a7414e5f5aedc4523be6b68cfbc7f61c5d0
MD5 05c969dcda6a03b3951a295efe47737c
BLAKE2b-256 45491a11586e2e4bc052581cc7f9d3090c23fb49c2572536dd26004764603959

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 420a692b547736a8d8703c39ea935ab5d8f0d2573f8f123b0a294e49a73f214b
MD5 d4ed858d7ee1ce1a25afb2c82aa8580e
BLAKE2b-256 3222d010091430a0a43ebd5ade2abe69727972b53d872ecffbe9ab3aed1f3ea5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 92f675fefa977625105708492850bcbc1182bfc3e997f8eecb866d1927c98ae6
MD5 b2dd097781c6907be251b4bdfe602003
BLAKE2b-256 0dd053f3bfc6be4d7a12e4314646c3e8c6da5d57495a5043649edb687bc7a1a1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b3c01c2fb081fced3bbb3da78510693dc7121bb893a1f0f5f4b48013201f362e
MD5 ffc062e49ad590738933644b32e4944a
BLAKE2b-256 72eb857c94a1fe04724ca3cf8101b795dbc345ccda1093c9c402bc234494f8bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f6e6aed5818c264412ac0598b581a002a9f050cb2637a84979859e70197aa9e
MD5 e409c9a6e1b1871f7c238660de02e112
BLAKE2b-256 8667d36e2237d84ac96f400e29586da1e21eabf9aa227fc9c3e4410fbc6408de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 128552af70a64660f21cb0eb4876cbdadf1a1f9d5de820fed6421fa8de07c893
MD5 755c1d7f00b9e3e5817b27705308f5fd
BLAKE2b-256 237bebce15ffe162a0b2e6b3f4f07e6d884c52da418b6b8cdff6382e1a5958ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0675ba5d22de54d07bccde38997e780044dcfa9a71aac9fd7d4d7a1d2e3e65f7
MD5 71906e7f97ee5c486a49427b802a0883
BLAKE2b-256 3cf0644ac22b5d3e0b6a79c0c9dcbb26784de3939baef0ec0c21f10db2283d83

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a1392e0638af203cee360495fd2cfdd6054711f2db5175b6e9c3c461b76f5175
MD5 8af35626255a0973ae1cb14333813cc9
BLAKE2b-256 e659050694e5cf10528f964c8e4a44e5b449fcd64dd37517d1e281c675072af0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef337945bbd76cce390d1b2496ccf9f90b1c1242a3a7bc242ca4a9fc5993427a
MD5 da257fdd13552e2706b3730b5b3be42d
BLAKE2b-256 2d1c735cfef9c07cd9b03d75b3b98c86692e2913fb06cb04738faa9fcedeabf3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ecaac27da855b8d73f92123e5f03612b04c5632fd0a476e469dfc47cd37d6b2e
MD5 b6262fb15e01402cc91dfdfee8545e77
BLAKE2b-256 2f2a280c5a4fdd54749c4efcb455b324658cf341313469617a987fb0bd178e47

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 48525933fea744a3e7464c19bfede85df4aba79ce90c60b94d8b6e1eddd67096
MD5 d3b4e77b5d5dde3c95e18c8bcfd7c155
BLAKE2b-256 e0ac699f0d88ac642a6ce87fa412940e95b020c12188819bedff465ec2ba7aff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 d64728ee14e667ba27c66314b7d880b8eeb050e58ffc5fec3b7a109f8cddbd63
MD5 576a6eb4b2cfb7f51d243da14c12ce89
BLAKE2b-256 3350e9ed10546bc169f49240e1bd5642fe2235a60bccfd5ec9e8f3dadee8932e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ae8a8843b11dc0b03b57b52793e391f0122e740de3df1474814c700d2622950a
MD5 eb7be82b6b8b2fe6057bf12405717b7d
BLAKE2b-256 9f9a321a73f6f1483b1ddd41fae7bb7cf9465461bad8fa132880b97ca462ee1a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a1c311fd06ab3b10805abb72109f01a134019739bd3286b8ae1bc2fc4e50c07a
MD5 fa983c35b7d8a95cbbd15d4baae321e4
BLAKE2b-256 b54216ea5f43da4528747947eba4dc1fddf798adac189297784702b028025ce9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f1365e032a477c1430cfe0cf2856679529a2331426f8081172c4a74186f1d595
MD5 acad93faaacb7b16b9f4a941cfa054df
BLAKE2b-256 bf8e7bc10d457262fffc6fa934bfdc3f318dca4e06ef4cbd7ee10ea25c617424

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0c27f38dc4fbf07b358b2bc90edf35e82d1703e22ff2efa4af4ad5de1b3833e7
MD5 80e61b6ff1a77904a62db9058ee8ebda
BLAKE2b-256 43e97f504abc12a6b143aed087b38b1648c39a534bda918d4b929a6fa851d1f5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25bd966103890ccfa028841a8f30cebcf5875eeac8c4bde4fe221364c92f0c9a
MD5 11dbce096933076e71fe1bd46e987846
BLAKE2b-256 7e79ce020f23d8e4e874aa95e4097a90804912b933145aa870818fdfd8c86739

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5cb87bdc2e5f620693148b5f8f842d293cae46c5f15a1b1bf7ceeed324a740c
MD5 ec05c0dabf2ee741d66acaf78e5fcd24
BLAKE2b-256 ba3a24d971c152d8d9c8768558e9ee2f4861e0e2a17ba1713a12ebc8f13ce2cd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f7c2b8eb9fc872e68b46eeaf835e86bccc3a58ba57d0eedc109cbb14177be531
MD5 e77eae3c1c9e249e6b9784b05410fd48
BLAKE2b-256 5d3e5583d9a606ce3884c2d624d7b1114a4572c17cc26b6601f09a6be2a3f918

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 485a91abe3a07c3a8d1e082ba29254eea3e2bb13cbbd4351ea4e5a21912cc9b0
MD5 710100e97c64ff84ce3d44b79099fbb3
BLAKE2b-256 4207db979876f056cf635bda6befd2ae36c70c7288f5ce1d359a9d69fce52e85

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64322bfa13e44c6c30c518729ef08fda6026b96d5c0be724b3c4ae4da939f875
MD5 c53284c83cf1a21fe7657dd1099718b6
BLAKE2b-256 8468e543eb8279c6f3bd83938c4cbfe4b7b52ac82840bc47f658ee3f98d06647

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f323306d0556351735b54acbf82904fe30a27b6a7147153cbe6e19aaaa2aa429
MD5 ed8a6daacdcc047f093574369b95a7a9
BLAKE2b-256 0f9b268b31c715ab6d059488598529481ec82285ef9c04241a093dd56926df16

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e570ffeb2170e116a5b17e83f19911020ac79d19c96f320cbfa1fa96b470185b
MD5 c5c543a8a4b11f3622dff3b624cbf925
BLAKE2b-256 1df89b27ecd02750f02e30d0761a2bcc688b7693d1c0edac35c5a11ae6dc9c07

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 655f8f4c8d6a5963c9a0687793da37b9b681d9ad06f29438a3b2326d4e6b7970
MD5 a2b0444693d7b272c2c8aaef2d094f8a
BLAKE2b-256 cb1b069642e5091a5c36ef4a89f98acd0cde0bcad5d019d9e4a5a467e7e6ff86

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 9f6f3e2598604956480f6c8aa24a3384dbf6509fe995d97f6ca6103bb8c2534e
MD5 ea17b6f724d011d8845d923020be0029
BLAKE2b-256 8a0db5dfdc0e944964270d7f481967a8f58b0721a15fea8ff811d01825555e69

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 8cdbbd92154db2fec4ec973d45c565e767ddc20aa6dbaf50142676484cbff8ee
MD5 e39e71f1970fe7d0dbcfbb5423e9990b
BLAKE2b-256 a80b68680fb71a4b0e044a7c8719fd5fee8a4b5746ade2cd00399fff7f881545

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ed550ed05540c03f0e69e6d74ad58d026de61b9eaebebbaaf8873e585cbb18de
MD5 7c941dd22300037a221bfa0f5ba3f686
BLAKE2b-256 f127dd4772d6ca3edd7fad8276ecb1386b5a950ac1c5421dc59b8be743bf26ae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ecdbde46235f3d560b18be0cb706c8e8ad1b965e5c13bbba7450c86064e96561
MD5 d2ac0d31539d09ccaacc3f96bd97542f
BLAKE2b-256 b3034231e45a795f9637f03bf494c408425302654f41e78800c69937c758bd9e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 443fed67d33aa85357464f297e3d26e570267d1af6fef1c21ca50921d2976302
MD5 ee597359c307b6b33fc96f732734862b
BLAKE2b-256 da824139ea7aebec9e22be42d8a5342df5022b7b6b6deb10126dc3ff80b4d6fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aad7bd686363d1ce4ee930ad39f14e1673248373f4a9d74d2b9554f06199fb58
MD5 e64bd4948361f7ac5cab5be16e5c1e64
BLAKE2b-256 d8e1f5b1466ffa7ab31db11655f52ba3bd98a9959e9b9ea94ddcc38ecccdb3d6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa7db7558607afeccb33c0e4bf1c9a9a835e26599e76af6fe2fcea45904083a6
MD5 80ddf12a1f7474b4d8914b460c439bf8
BLAKE2b-256 6994134f22de331ff0f612cd246523acf9ec8ce0bce84bd2d9054d61a74166dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d99277877daf2efe074eae6338453a4ed54a2d93fb4678ddfe1209a0c93a2468
MD5 ca925d3421797404d54743f319aecfcb
BLAKE2b-256 1268c7aa1266bd4e23d95a7fedf5874baed39c5b9a60c5f0a97d523ed8356c44

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0fa467fd300a6f046bdb248d40cd015b21b7576c168a6bb20aa22e595c8ffcdd
MD5 8cc10977b5ab30ef5c290de0de6c7fda
BLAKE2b-256 9344cae38dcb9eed4e7e5b6ae1a26d99097a3bc32ee959a147268abcb54a6c89

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 042462d8d6ba707fd3ce9649e7bf268633a41018d6a998fb5fbacb7e928a183e
MD5 94f0e5084d114ebdcf59c478d2de5e4e
BLAKE2b-256 7b324c23d835f1aec938debae87527b4abe98bb65d49c7a48505167e03f65ec9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b00bc4619f60c853556b35f83731bd817f989cba3e97dc792bb8c97941b8053a
MD5 06da4e9803802cc524510df77d578d24
BLAKE2b-256 1995cd2e41b009ef5ef35001567115456c80414e723932dfd26685ee420e0cbf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6835451b57c1b467b95ffb03a38bb75b52fb4dc2762bb1d9dbed8de31ea7d0fc
MD5 8f2cf96a99d5f9b9a4e50bfd2ae54b28
BLAKE2b-256 becc66adc75728ab224d7907cbea1c56c6ae52dfedc32a7097aec9a139e41f70

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 1396e81b83516b9d5c9e26a924fa69164156c148c717131f54f586485ac3c15e
MD5 ce78e2029082444613cd9f598fb1cb9a
BLAKE2b-256 25b3ec5f941873a70afa8db9f15e6e36d3cb4ed71005ebf7f76701d230b5cec8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 14e09ff0b8fe6e46b93d36a878f6e4a3a98ba5303c76bb8e716f4878a3bee92c
MD5 cbec6de6498a3c7acc128797af2d78d9
BLAKE2b-256 2cd3be75d6e8521720f75e7c8c068b525f7556a683ad77f68da8ebb1eb704a90

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1d40f55222b233e98e3921df7811c27567f0e1a4411b93d4c5c0f4ce131bc42f
MD5 d4e371f1f69cdfdf9576650ea9a378c7
BLAKE2b-256 444f0906a1469b281800a4a7a4d1a986f129cdf2f922df115b8981f34e03bf05

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 82f55187a5bebae7d81d35b1e9aaea5e169d44819789837cdd4720d768c55d15
MD5 c007978bc7edca13b7348535ba980290
BLAKE2b-256 2ba40da1a5968ef277a7d5cb63010ec03af779863691fa020b6720a004a3f885

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 15d6bca84ffc966cc9976b09a18cf9543ed4d4ecbd97e7086f9ce9327ea48891
MD5 44e8c2aad1a9131098e116ea2562a30c
BLAKE2b-256 92699c74485cd3ac2c9c1d8ab9336dd0ccd23d3f24449501116684561a8eff76

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c120c9ce3b163b985a3b966bb701114beb1da4b0468b9b236fc754783d85aa3
MD5 cf5070c2eda6c2107c43f7215a6b17a2
BLAKE2b-256 e5ba099acbaf08a78bddb5e857e3a25b5544a5391109b60e0600447b4161e813

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3dcd587b69bbf54fc04ca157c2323b8911033e827fffaecf0cafa5a892a0904
MD5 600506ec2c7281835050abad2c5e158b
BLAKE2b-256 b9512f69af3df07b9bb0f69599f688eb196f45487742ec2fb06f933f04b5a91c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e357571bb0efd65fd55f18db0a2fb0ed89d0bb1d41d906b138f088933ae618bb
MD5 141fdb6147520b158b629955b6b89542
BLAKE2b-256 0064a8521cfc5f5f857190b761022ec1eae7c714a9d8ce02a9388affd007fdee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cfe1090245c078720d250d19cb05d67e21a9cd7c257698ef139bc41cf6c27b4f
MD5 e6e67d49802e198538ec572d78ecdf57
BLAKE2b-256 b3c27995f1c63b8bf0d74a04a40bfa6438d9efb65eafd49f29bb3a604424af83

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5cabb9710f09d5d2e9e2748c3e3e20d991a4c5f96ed8f1132518f54ab2967221
MD5 2b0187d32464760ebfee0a342e0997dc
BLAKE2b-256 d4618887e44c3f4399d872223adce03bc0c235bb3aee168c71f120398cfe1fcf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebedb45b9feb7258fac0a268a3f6bec0a2ea4d9558f3d6f813f02ff3a6dc6698
MD5 0c585164ccf419d0b16a7aa95f0c9c8e
BLAKE2b-256 dee1794b3cda45269e6f957849820bce0bde24bf9be91dd57161a7baf6fcf143

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9badf8d45171d92387410b04639d73811b785b5161ecadabf056ea14d62d4ede
MD5 0da768529ca9a7e76bad8f1393242c71
BLAKE2b-256 149e73f8d78835857518df4af04be11669b5a7cfd3211d66aacdf7e67eaed1c4

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