Skip to main content

Core functionality for Pydantic validation and serialization

Project description

pydantic-core

CI Coverage pypi versions license

This package provides the core functionality for pydantic validation and serialization.

Pydantic-core is currently around 17x faster than pydantic V1. See tests/benchmarks/ for details.

Example of direct usage

NOTE: You should not need to use pydantic-core directly; instead, use pydantic, which in turn uses pydantic-core.

from pydantic_core import SchemaValidator, ValidationError


v = SchemaValidator(
    {
        'type': 'typed-dict',
        'fields': {
            'name': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'str',
                },
            },
            'age': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'int',
                    'ge': 18,
                },
            },
            'is_developer': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'default',
                    'schema': {'type': 'bool'},
                    'default': True,
                },
            },
        },
    }
)

r1 = v.validate_python({'name': 'Samuel', 'age': 35})
assert r1 == {'name': 'Samuel', 'age': 35, 'is_developer': True}

# pydantic-core can also validate JSON directly
r2 = v.validate_json('{"name": "Samuel", "age": 35}')
assert r1 == r2

try:
    v.validate_python({'name': 'Samuel', 'age': 11})
except ValidationError as e:
    print(e)
    """
    1 validation error for model
    age
      Input should be greater than or equal to 18
      [type=greater_than_equal, context={ge: 18}, input_value=11, input_type=int]
    """

Getting Started

You'll need rust stable installed, or rust nightly if you want to generate accurate coverage.

With rust and python 3.8+ installed, compiling pydantic-core should be possible with roughly the following:

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

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

You might find it useful to look at python/pydantic_core/_pydantic_core.pyi and python/pydantic_core/core_schema.py for more information on the python API, beyond that, tests/ provide a large number of examples of usage.

If you want to contribute to pydantic-core, you'll want to use some other make commands:

  • make build-dev to build the package during development
  • make build-prod to perform an optimised build for benchmarking
  • make test to run the tests
  • make testcov to run the tests and generate a coverage report
  • make lint to run the linter
  • make format to format python and rust code
  • make to run format build-dev lint test

Profiling

It's possible to profile the code using the flamegraph utility from flamegraph-rs. (Tested on Linux.) You can install this with cargo install flamegraph.

Run make build-profiling to install a release build with debugging symbols included (needed for profiling).

Once that is built, you can profile pytest benchmarks with (e.g.):

flamegraph -- pytest tests/benchmarks/test_micro_benchmarks.py -k test_list_of_ints_core_py --benchmark-enable

The flamegraph command will produce an interactive SVG at flamegraph.svg.

Releasing

  1. Bump package version locally. Do not just edit Cargo.toml on Github, you need both Cargo.toml and Cargo.lock to be updated.
  2. Make a PR for the version bump and merge it.
  3. Go to https://github.com/pydantic/pydantic-core/releases and click "Draft a new release"
  4. In the "Choose a tag" dropdown enter the new tag v<the.new.version> and select "Create new tag on publish" when the option appears.
  5. Enter the release title in the form "v<the.new.version> "
  6. Click Generate release notes button
  7. Click Publish release
  8. Go to https://github.com/pydantic/pydantic-core/actions and ensure that all build for release are done successfully.
  9. Go to https://pypi.org/project/pydantic-core/ and ensure that the latest release is published.
  10. Done 🎉

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydantic_core-2.26.0.tar.gz (411.2 kB view details)

Uploaded Source

Built Distributions

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

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.26.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.26.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.26.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.26.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.26.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.26.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.26.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.26.0-cp313-none-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows ARM64

pydantic_core-2.26.0-cp313-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pydantic_core-2.26.0-cp313-none-win32.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_core-2.26.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pydantic_core-2.26.0-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.26.0-cp313-cp313-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_core-2.26.0-cp312-none-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_core-2.26.0-cp312-cp312-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.26.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_core-2.26.0-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.26.0-cp312-cp312-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-2.26.0-cp311-cp311-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.26.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-2.26.0-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.26.0-cp311-cp311-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_core-2.26.0-cp310-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-2.26.0-cp310-cp310-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.26.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-2.26.0-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.26.0-cp310-cp310-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pydantic_core-2.26.0-cp39-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-2.26.0-cp39-cp39-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.26.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.26.0-cp39-cp39-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

pydantic_core-2.26.0-cp38-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-2.26.0-cp38-cp38-musllinux_1_1_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-2.26.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.26.0-cp38-cp38-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.26.0.tar.gz
  • Upload date:
  • Size: 411.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for pydantic_core-2.26.0.tar.gz
Algorithm Hash digest
SHA256 4578d4914bdbbd18963b4c611fa39d912d0dbeeffef8211fb546e45176a72d1d
MD5 2b49e6fa58877d2de90a51da9cf2ff12
BLAKE2b-256 98850ac4f8fc632fa1bb3f473e4dfb1cd520ede11179f76a028edfd2ca989ed4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 56d163e491360cb7806f3b0c9325706b1794a217e5dea7bd6462730151e655c6
MD5 ee951d486f1a2adeb1a4386f41e6198a
BLAKE2b-256 9c81cbdeb96342d742f6ab1dd26f00154bebf4844069256a2c252ddc159912d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7daed5575b5163016bceeed0c6a31d508c4e4aca4eef6ecdb5266f07130ae988
MD5 a1c45853287b2e02816d94eff5be773f
BLAKE2b-256 074df1fc2f2075372cc1b0aa9a1ac77591ce32fc2dd9abdffb978566216569af

See more details on using hashes here.

File details

Details for the file pydantic_core-2.26.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 114059f663569af42d90d8771f33bb0526eb8f89dbd0ff0f448f7d549cb28c03
MD5 aa3170eb8bc4dff65714a601b390b115
BLAKE2b-256 574b7b05dcb18e69e250bf913d3276f26edf8263021f8cb9f48e7afa610de3f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 83fe1dcdf9faccfed14b60fd6ea0770814fb0510e7c5e9fb74d5713c2fa9f139
MD5 f32f2da1a8b2915cfe8422a668f68398
BLAKE2b-256 19dc230345e66e4ddb2949dc1c138f59c5746fce70a2ca913d3e0318d4a2b77f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47d85c60fe46d1501af0007137553ae5fc1b8c6aa72ebf3b4bce806a983a163f
MD5 196f1cd63b64975ff6bfb202e000036d
BLAKE2b-256 0b72b87a933aff11e4e2c66bff43f189f1a2e3c23918d0c50403254162128283

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8bcf674bad21e3a4e83b4f4e214a3a689f0a3ff49f0d858738b68dddb5c301f6
MD5 6f616446d7bc9f4cb73a45acab566613
BLAKE2b-256 7a82deb8ca067e6eab0107400c3fecc711832071e94b5cff32c2b4e5528e06be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b26d88c9c8677699a9d134e4eac063662abe2b1053c9821adbd000a894f2d5ea
MD5 a5a91f7f2fe9054e92e875172ecdc493
BLAKE2b-256 35b2a709852c2c9ed4319bafea82ca6db1be0d26e769cc5e0a3c5bad15680c4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 727282cc2ac6ab40861e8e461b8c75ca4c60b95faae631d119e780993a14c5f7
MD5 36ea5b5061293a1cdbda9b87bacf19c0
BLAKE2b-256 e2c14832a63ac62fef9cc4a9f0aaaafa6cd73c1fe52f1e9dafb08a7e08dacb7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 54c52a1ce830de3d93ec1d2af391a0d3f3255092c5ebf160be9e117796e3d472
MD5 4dea62c54912c299ba5d9da9db66f2fd
BLAKE2b-256 17b8b33780ddec0a314ed0b064bdf1fa4dca315cc802e1a529e67573d19c3588

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b42f4de434e6e7a57c127b519f907c4928be33fd1db8000f2b74992cb031decb
MD5 d71ffff69cc5e9982c653226158905b6
BLAKE2b-256 2ef19919d760255c94638a14b85626b021c127771e5caf787a7a43db47c2d11c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8a0300cdbea0d4568b39fc7be3436cc702f9ee1655b8dd899ec874ff2b663a4b
MD5 f891ce13b5e1b96d8c13609ba6485ee1
BLAKE2b-256 a657641001b6428e851562f873294a971fe24b04c7a7a65953723a1d2d49d35f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.26.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3c8e7e2f733a04cc96e7e0913b95906ffd6300cf84c9dac4433a243bf2d1aed5
MD5 317391c34ab9a9f823d8f1cd9fb5095b
BLAKE2b-256 26b43015c890ea6617efbec9be73d001a38db37833bd959ef6811c1574aa2a5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1ea69ae5c52fa6b1e1ccf9a278d5f8f1a9891f912693ed3c00b88b0ceea11d4f
MD5 ab8405b625ee547acdcee6a9ceecaa8b
BLAKE2b-256 a79c7919e081c9d8c3fddba19cb933790875d402bfb110cf34a854f100da9a93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 785d0b12c29f2b6cb5f1f0ce1a239bd7ac13fd978239b14e0e23a40487ecc212
MD5 bbfc8d615f82f6a75a3762d592cb849f
BLAKE2b-256 8f3f77636817418ef7e90050fd7fffe583991dcf4520360ac0395d649a6f2e7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3380e05787a7fc9a41fe0e343fbe8d160bfb28bcd1bc96d7671576e0ee5dea30
MD5 980b3ebd06d25643159f5229f4f3721d
BLAKE2b-256 29f317557f7a26de53edbdfa476d4d1c7889ae3a1045aacfedab7a297defbfb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 56c6607026c311169a079bc6dcd8f6a7a2e29ae4ad13b145893eac6f1c6941c4
MD5 4f35aa0a82703a45a658012241748dc2
BLAKE2b-256 ce11f3e042b37e43ea617f803ec04d374d6185622988d6652e0430a3e12188d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbc787251b9c6180202b8496ce5dbff51c1ec78e70f95e073a2f495455363def
MD5 1dcea3976a7866e536ffc4f49a31e226
BLAKE2b-256 e986a090c4bd828c8563522c308a287f9c0247c7c98b3eec9f07c9895a2ca6bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca8231f51600fa4f5116eeb7d491f0d535f2a3fe8d5fff7c40febf90d3ebccfb
MD5 7cd4a55c37c1cda4a40d0faebb485f1e
BLAKE2b-256 dd4feea9d19296819708cee80accaaf5c6ce4c050601b3e8fcb5c2c71a0bcdef

See more details on using hashes here.

File details

Details for the file pydantic_core-2.26.0-cp313-none-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-none-win_arm64.whl
Algorithm Hash digest
SHA256 3a4c5666eed3d8e9c9b89dd56a96e3cbc261c239c92a87a15fc55affe5d379f9
MD5 e535cdf72a6d9c2c16e9c0ed19efdf6a
BLAKE2b-256 1454ae6e6a84aea25c7def98a2f488c41e46318ccc2ce0479b0e4e697cb13263

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 2bfeffdee3175c2593f0e4371c5b44da2f8044d5f5dd98be665fc8a6464008c8
MD5 f38b80aff6c771bf8bade81bb869743d
BLAKE2b-256 1077b64e921a4c1ca734bc0f3434f5a2769533f7bfb2b77598c84af4f60954da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.26.0-cp313-none-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for pydantic_core-2.26.0-cp313-none-win32.whl
Algorithm Hash digest
SHA256 023bdce63154fa2285d236b350723c82bc76d051e60de6f761441e9680c8a940
MD5 45f4abf5e1dac5e6709caa1345349814
BLAKE2b-256 4d0c02259f30d769691b75e30c2fc50959a2a7a671988853e4f3d0fb591286ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 04d64cb57f9ebde2c88976ef7846a915e7a7e74944d7c1d674314bc1e38b404c
MD5 7ff4a6220c1c10cf2a602ecd228f6071
BLAKE2b-256 b5e3430cedbe34f300ae0448c20ecf95cff94214ea90cf47df93a16933149d1b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4e437d26da787b3ad8b96cac47d00d3786457d68b4e2f5d7ee03a9a2d4bc12ab
MD5 5a79d0eb8158c8e7c863e770f72dbd9b
BLAKE2b-256 a824c543164a6bb32f50f64c6a93baf1d746c3192516f75f1997904128ed2d59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 32c0c99180cecd8fb1c91b9695873b0ff9bf381518977776757b253291cf0235
MD5 5583640a7df344d4054d6fd0655f5b5b
BLAKE2b-256 1e8195768a47c03e931111ffe0cff174af3143cb35df5133a9b87ea9c5a3b6b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 997b1bd0605a5e7b2509ed5642f9a3fe3078abfca5e4c940dbd572df815a7559
MD5 1a02ad0fe7bfa653fc8b2dad25853c0c
BLAKE2b-256 ab4baae7b4d8cbf9542931ee03a7427dc1be65415b74952cce5acfb9b09953ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f2279b4086e698aa6c21a1e4987530492704d7bbee696b251c00e26bd37d9037
MD5 ce4f87f572ba23f894b569d3ff302801
BLAKE2b-256 7299a39255cd98a09926b4dbe4df3930b46f0ac2c821e50a0d799a7644150dd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9965d2b196e64f1a008b1ef6d1cdb7d4c9da1ea757f49428d0ec497c766f50ad
MD5 2708024427f0bd6213d58daf9e2985c0
BLAKE2b-256 93c779736d00f887f2c159328dcc968962eccd4ed3ba249ba2c5f2f952b86940

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f829f593a9ccb1fca8d9e98ef76bed89081c2c8acbdcf6ce230a27b8b5d7d9c0
MD5 9c74e58935428f9d9d5ead928135a171
BLAKE2b-256 97231d1eb0c923503b22688563e14b24c638a46f95fe690e74e7152d3a039825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 330d10f9112599863008d130a3ddba54e5bcafc5b9d24f62ace63e054b72f169
MD5 31a9ccbdfdc11e380a631c9e58b9c901
BLAKE2b-256 d9e089985a8a89ff0909739bcca1f498c0cf9c92ad59f032161a07e784cdff41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0101d0b5a333a14d95a109f82ca95fe2ce34b4e48fd7dbc0fbe1a4e623aa94c7
MD5 6a7d57f67358d80c4dce11a7128faa0f
BLAKE2b-256 db4d934a077df4e5b8423d9d01a4227696a207347e50e1aed0fe7fa16d9776a4

See more details on using hashes here.

File details

Details for the file pydantic_core-2.26.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 036fdd55f2f435dcb06dccdb9e1074fb8b9121560e5bed19f40a56c807b878a7
MD5 d565b7d83d58f5086deb265bcb357b2a
BLAKE2b-256 38ed271fcd6fded541dd607b950ff61bb541ca838a724e43639130422dd4ece7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 18305e996cac7053c82f10bd945ef67a8f6e80acc947f8929ddc0af87d5eb3cb
MD5 28af428894195b0349e1f9f9bbc7bde9
BLAKE2b-256 a4bc994f23913e10019d1b5f38ec0ac8241352e8517a05ed4da29e3db6c948f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 9e0330e20adae0571934ac745b240a0809eb2d85ee76e786bafe0d30a6ccd8cb
MD5 2addb54c969615a19a793ad6296d9905
BLAKE2b-256 015325702f8441fcf65f8ef521f28e66a3463d84a9ceaf4eb69b28ed3968e82b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f615cba236fdd4b3f366d42427d447856b1afa19f5e40e24aa1da56b6f042e30
MD5 52889288db750dd6e22ce9424f07c579
BLAKE2b-256 d7185f4408084f498ebe0a0e21c03138731a600ffc20f41cc368aa734c348617

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.26.0-cp312-none-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for pydantic_core-2.26.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 3f411e6d6d3fb93af5bb111313bb0cd68a6e38bae5afb79f2de530b3b44fad33
MD5 e0ee8ef6d9e4c0451b1d3ad15aa62133
BLAKE2b-256 0cb098ae65886b1c2526a88b73c9c313d5d9fa63b24607515bd800f498e0addb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 42c005173da25bb76c54373374434d922ba3888f430879fdaf749d7abb4d8ea3
MD5 b249d1fa4d15f2e25a86bc45436520db
BLAKE2b-256 4d0dba145c804aca4475c6a2204255d993afbdc4574d32ac3a18f6fa090dab48

See more details on using hashes here.

File details

Details for the file pydantic_core-2.26.0-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d9651e747f64017aaa9ed8eab70a9ceada438b4395c8379614032dd178f96d57
MD5 8d86a54f84e2ab313fc52bd5d740d96c
BLAKE2b-256 1c4c3db65e61934614316f416f55a4098ff09d6b754d565b3b11180587d9a03d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6bc9eb88b2b48527b9b6b7a79a80a8e48b07e1334f659d09f5dd26ebb19cfd9c
MD5 98a4ce1e841a67cdd49602f830e9ec8f
BLAKE2b-256 1a060550d70ad74f40be19c77c3afe2316de39fc6f060764769d8ba4188d139d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 550f622b247b1209b8880043834be7f1ac24c33f63f54cd53ee4a6f62c80b9ec
MD5 0d7cb6631f219c4935c555a47d50fb11
BLAKE2b-256 fb3779811738df4553c92e6b06bed69af992669a3635985765d829e54e468cad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da5090641c03599317079b258c99a13c15ed2e4de334d6e4b5c39e5555f3f296
MD5 c8fc23e6473e2fffc310bab13e7790a1
BLAKE2b-256 a0b9382855644efb005cffe46228545fb5115e37bd5c43d6cdbe27fc20dffb3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a33391da35242c051004e23dc6ca138237943b1c182f6f7d7cd73b784047a76
MD5 0bc5b0c9538ac70b982ddf99707f85f8
BLAKE2b-256 0d970a4fed9ed818015bb90a13ff869f3f155d47f66f59690c92f2a89ee3816d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2076ead709b2e2f6c32677822a53d72c3aac0a91c9a189256390a67990fdd729
MD5 d6c951e4fdbd630d764771d529183551
BLAKE2b-256 bc60e4bc9a389124c1d67879f6fa947e5ace9c9e514799d1ea0ff9e2d55db787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3525264ca53dd25de397584fe83aa949042854229bbfe940ff7cb19ef5238691
MD5 aeecadcbdffbce4042f095de01071f39
BLAKE2b-256 9f9d4257382832cc97fcabd6f3350e2638c807a696221575ae35af2eba34e12e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 48ef296842a01398305d2901c5c60347f8508d2f7d83bcfd9d3438bdfad96f5e
MD5 e1cee3ae3ac8649167dfbe87a27115a1
BLAKE2b-256 2ca9412b2c261ca9b0462a0546b0d98360da346470f6b67d6b4a0aec83806ea9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a91967938a5dd16d2074307d98a2232cec494d6215d97f5c0f09135be478517d
MD5 fcf89c2824ffb5c3b356faa2089e81af
BLAKE2b-256 0cac9903cc69c4db2101d5fa1ae1102051c144377d77c47a6a18dd5ad95c57d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9401038c16d560ae01551319141c0ffd2e1b80f9659ea535e076ca23ae55e866
MD5 caba19c4c009c933e135afe2d6e13c5f
BLAKE2b-256 77f24520ff4f451ce85d8fcea4381ca4d690792433c01a973bb72cf0d0d5a21a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 b1fc2653ccc27bf7917cb70f13c64f4122edc4bc992e8be8c04ee9306dafce57
MD5 0cc7f4f877d7079b04e507021e86a1fd
BLAKE2b-256 ae544f0d5c38b54182e6ea40392ddd6c120644eae90e96bfe57c3470c7b466a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 7b35ab4a675b43acfb483dcdf9e11ef845b68ac9d8b6ca81dbaa522f38da0ed6
MD5 eef6cc00fd4f246289f7e4b28e72d211
BLAKE2b-256 5c3bf633bb9c93088427b4247fb5abcdf594bb2f03f8b9f846113d820de3df6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.26.0-cp311-none-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for pydantic_core-2.26.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 82a803d0ae210f3f7dddbd774ad5a2cb53e40676cda7c91f670cf8297832225c
MD5 00358051eaf22ea2a51d6ff41d82d074
BLAKE2b-256 c651f4b03c1c2a0e00e6104fe8e581e4afa85d765d5e0c3186226431d2ab8b81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 063a33d46af3593978bce031eac378c9603ca0a11719b0f7bd1969aa9e870a8c
MD5 ecd339c9c1a9b3643b9d056d2eaa3609
BLAKE2b-256 f3360082a0e5e1fad6f303a47ccff65b65b6bd7c9902e1a54a13b0afd8883f10

See more details on using hashes here.

File details

Details for the file pydantic_core-2.26.0-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3867f3e474aa9191fb40dd413e7fbcaa1e2099603aae3da0d66141d9eb83b937
MD5 7aaeb62ff50f96127af19ce45864c006
BLAKE2b-256 e8fef0af13d45ed54e9ba8af3550b59272f93a590522be613f3d901273df21e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d736f34c75600020739d57ffd1a106e36e4afecf6f0d70db804fe9612195f0c6
MD5 8da8cebbe4b4030d8eddb2bcf688851b
BLAKE2b-256 4d6acc39b1921e25cc9458420a351faf3478f244187dff1a2d36f8866684858d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 616be5b07fb64d23a8ed6b711732d3038698b89f67d76f97248819626415bed8
MD5 a2d84432bb7195cb8260e53a86b99814
BLAKE2b-256 a59e47214b4ba1e279abfdd02c2e4d6cbbabf3e67653a131f317bbb22023009e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d81b369d40e5077624e22ddbd5d3a2090b5eeab1fe836552019718f93c114fc0
MD5 1ade52ecf7ede0c8e049d572e65002b3
BLAKE2b-256 9b6ae2cbcf69b58a4ccfd4884d6c09f9b0f2adfc67789cb224da59aef6f39ca4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b105bfd776f303e61b8d12f73dd8613be93d3df634d0a6a7d435661038530d8b
MD5 77e5cde61ce0ce52dbf9272bf1d33669
BLAKE2b-256 9183712065f81634608d710ec741f91236765b7206d02e81b70e6f0ad12ad0e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77411c34d38c3fd0998d34e7a4e2a46432511f6b96096438691d08dfe103d40d
MD5 7a820594262ef55c1a3a9b98c411a434
BLAKE2b-256 45d4cb94d20c32a74060439ca60237e63ba1d673d84415e73ba20e2dd87b0b08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d561fa3a7b8267645f678a114105c4b91906da70fd4772cd0bf15f5b35987149
MD5 8537024590b5ce47828f2536675a80d0
BLAKE2b-256 a1bef92ad3cb55f3bac785979dcd82cebdaa3bfeaadd4a88676f876056e63d32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2e4de25be2bb212057f674ce211f395baa6181cadcc83ddf014bb29148515bef
MD5 ef4c1b0c0e822b58030612516db08d50
BLAKE2b-256 66d23bcd9bf966ff3529cb4ddfeb7a3ff7a044f1c5eb4ddcf4372b8cf6b935f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61c6b18e7cc5ab80a8f78b1181cd1fec18ea7b8e3b871995b337d6e5622c5a9f
MD5 577451163c81433d386230c18983be5c
BLAKE2b-256 5655f2e38ad590cf22253ec588102eba734ee4e7e1f1f9db98a6d118f468e84f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a784ef6bbc8f3086601cba9fee29b6e608889a823762af5bb0b92227298d376a
MD5 1eb7816aed6365cd5798c200c31710e6
BLAKE2b-256 9faa66ad7d6d4afc942356bd1e8f2f5924c3da93d9b17fce6aa6a63d7781cfb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f7b7f4ff5f1fc67b4bab2cbab5d5bd321a0bf40ed63bde9a0d439d78ad97d9c2
MD5 9f2d618232b5cfd369fe4afcde8e55f0
BLAKE2b-256 ccc37edc270ac44b6d16918de608e42209fef24414bfa310f9ada27d9fc8b73d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.26.0-cp310-none-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for pydantic_core-2.26.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 5a2e33c88c5f8d96d56e0c68e95f87663cc3ce4c20f207d0b382533bec836610
MD5 7062189747c16073d32f00551fcfeb9e
BLAKE2b-256 679a953ed42f0ab7fbf1b3ad89fca1ad2a1cf93443a1fdf2fc7632f300f0f268

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fbca9dd66c7d47cc103288c93fd1f472626236c5d015dae1cbe236ffd84d7ebb
MD5 08e8cf6d674e7665f48f4e18918fa783
BLAKE2b-256 01890b0fd850658f8873a70d4e9206a2f6c4e25ecaecc3e622b19526a8fbb36d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.26.0-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 579e67fbd86d9fa9941198b0642e988d7e169df2e1f1d07b93bcd555c8075670
MD5 fae17817be4eadf98d947779bddb88ca
BLAKE2b-256 9c1cc1fd1b620758de4c793410cd11b374231832dfea6b89d3bae4111a984f77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ffb4278eb5e1aefee951e18332ff5d8b2e76f40efc7f4931755525871de2dbb0
MD5 832a04afd4f231836d8f2af16202ef95
BLAKE2b-256 2d75a2f1cd12903936798ff1d981e2ce4d8be371f7acb374658e66be9689d4a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6e7282095ce7e535ba187f04171a9b149d244dfd4ae27b10953966fb1bbb7938
MD5 1b3fad1bf1c3e93fd43e54c56a30ddb2
BLAKE2b-256 4ac1a2fae016d8019150f8e4226c28eed2917ca868e5d2a0eb842f7ff920a958

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69f94e23cf93f487962eb5fd2294ca252f16b4f251b5a06b59f471777d842d3c
MD5 02f28b1c75f82d28e83d49cd6f072a64
BLAKE2b-256 ddcf190d6ea9750ad7196858fe42a43a55833d4221d1242770ba23ae5565c317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c71d75e49d3d566f73389289a6470983a01e580ddc1d06105a31fd87410211da
MD5 9595d02e75325cd301fd5bb87d77fee1
BLAKE2b-256 3ef7a1d63d2d2956ce633b68a615b219c5c470c88f5610f826255db7d5da983b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ebd2ad03dff9a72952972cf89eaf62afc110dc4efc920b3ab1d1fe4cec350ebc
MD5 9966095c1ea5385dd141c6b447318542
BLAKE2b-256 7835a10962382794c4b086e33451ddf7a32f4330ca366833d8959662419290e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d717b3ee2208ee80a91382fd2d0d000c50f775a2a3a9b59b05e70063a82e767
MD5 00312634c62d6f5b346164c0b7ce0781
BLAKE2b-256 bacbb8068c08dc56d3a3af1757f806111749d3f9fcd467382d6baebd669932e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6bcc8f7f54a80aca5347ac540e2bea327114bbdb13ca1523c6b7672b0863c2a
MD5 e6486f05149e4634f0e484c27b621282
BLAKE2b-256 a05de47e1bc52cb173d58956cec64f47e5f1bd68731068707f37fe9c688520d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e06ea3a4d2dd8213de98abafbd82455997daf5ed2c9ac858e13f1fe929e8ebff
MD5 6d049e16f1b5187bba7d5c89834dd733
BLAKE2b-256 250d010474b9781e9eb9e85b927cf7ce463491f1641ec4f5813d9d8104376c56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fa77bb565223821cedb59e1fc4e9654fc55c3cfe8bf35cb6a23ceb3e4314ff1f
MD5 72e7c7530498800f39307a3be3e87ce5
BLAKE2b-256 37834255ccbc1c18f7dea161ecc8c14ce4d9d3a896821929825ba831c71ca067

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 2a8af9ada5bb86016cbe18861aacdea64aa2572e6d6ec8a9ad687f97c4cf50a5
MD5 ca334caccb8208ba289a4021ec109771
BLAKE2b-256 8d2cfeebdb8ff9ea0fa07873351af763051d29f3022590396b65af9c33003f83

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.26.0-cp39-none-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for pydantic_core-2.26.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 8f3622aee8d2411c894721110a196abc1779eb0b271da4700bbf75a3e7b0c535
MD5 5bd16345eb7f474369c450e7d8fd67ea
BLAKE2b-256 557b4e8717fb6e769fef903d8b7fe534687a2aab6ecca277d187fc1d462fd239

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2d816f3f80e5ccec2c5ffccd2fa57f36e9fb6b15d7c210ad793cdfded7feedfc
MD5 83ac78af6994e061488505413a513cdc
BLAKE2b-256 bf4b77a84430977389640da6c934ff01849ea24d60fffff15c8dad17d5826e23

See more details on using hashes here.

File details

Details for the file pydantic_core-2.26.0-cp39-cp39-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 af445f7740ed3549f9478e3665273c47532c17ffa8fd5f6e20742fd7ae7fe487
MD5 ca9bd2cac11b6be77821695786eabf39
BLAKE2b-256 4dd648f6e6e362093aa0d66a26f304fd7b31363d8b645966335fbec00430c952

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f6b1b04c4c0f56fd7dd8d95475bcc4da816a79cfcebd5eb030794fe293c23203
MD5 9225a5cbf803c834b933f5c46d397aba
BLAKE2b-256 0961f648f6aea97129841ae26de6b6a32057aea37d2c26f4f897533e70bb469e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6c39003ca3411e150dadd991ff0c12e15c01609ad3c387fc4b92b5773eebfa9
MD5 d09f33f7d45427d983f13b5991bb273d
BLAKE2b-256 6e0ebc173a2cd7322464dabc6a535c79f4e5894244066dbfae15d375b6fdc492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a860c3fd2bd3c521c189b4af32a12c3f16e342c97b395f220a0822bc5c18374e
MD5 f5c42cc11f9962920c703f357cc90a8c
BLAKE2b-256 0b8067a293562fb3bb403aaa479dfe743b5223c6716445ead931736e53cdd94e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 204cf1a3aac1339ac2926cce415f5b5e4a2cb1eb7bd6c92aef4cd3c0040b0faa
MD5 b9faa79af21822ff05e44588afe22de0
BLAKE2b-256 e424f461a6bc0aa524eb8674a56592bdcf94a42c0e7989731eec16080bc85dda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 27e0ccdad2db7159b766061e947b568ef7cd3c209f7722b36867a5a4184c0a1d
MD5 593a8c34174e332d21f28ca5285a4cf2
BLAKE2b-256 86b8938de6cfe430a57b3d080556352c99479f6b9687ed578e03c27b74999db7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b1fc6d44b5fa4f5805ff8beb03250bd4c3d014658afca73926d1a0ea06cfec9b
MD5 dc9a3664d296048d6dd16976c1ecc05e
BLAKE2b-256 acba8a4db06773ee738ba7856a17cb739ee89e1453dc95248dd4cbfb7971e749

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc607fad021f699f6891056a39d419cfb572dfde2d59c5062f60dc1508264e95
MD5 e30e84867591010b8fb07d142142b72c
BLAKE2b-256 0400818125d9194c7ba7f2f573e147446cb164a02158131f7c3d96cb5ddd2ce1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8e9bd70d40d2b6d91186e886e8634e8f4d29122fb918f36c88789f0a8dc16f08
MD5 21cd9c5796f3ba6580e24c396cc4a381
BLAKE2b-256 3f5ff5b44c10765da87b888525bedc3933efd1c3b05e6fa6bda86e87aadb5214

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 df2054459dd0373cf6d9b6e374cd952c8018fb135b9162e1c8e1ee60456c3c22
MD5 5374868b0fd20dd8ce97c29980f9a83d
BLAKE2b-256 495398b7ce384bcf62c4298e0eb5102dbe532990f5328454ab1d0feba5d9f85f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 27b71639a044c816b87498d006d2a6887a8fc1f56ffabad34c54da97eca69aae
MD5 2e24a3c46b82203e0d500f022ff3d748
BLAKE2b-256 e47f3cc5e8e2ac02542c5a0f1eb6959d7c32cc7e331ab23bc746d07d001bbf98

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.26.0-cp38-none-win32.whl
  • Upload date:
  • Size: 1.8 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.13.0

File hashes

Hashes for pydantic_core-2.26.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 1be8973dcda3f6336acf1939e9e948f2611b27ddd9454f0ed58586710c248d75
MD5 c063ec8de7b534410b4120d5410bb688
BLAKE2b-256 800d7c3898ea74cc1b978fcc3d3c1f807506c1450f5b0e906e40b4799a9f4cfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f994cfd732d56e2ed5b44e018d131c8d2273b00121b720d84a3d8b88f2a7d1c9
MD5 682e7df8e2bb4aea27c5641d02ac7ba4
BLAKE2b-256 7807e88127e3842c4da952647f003e3877d44b079e19c51c5a73e656f2eae565

See more details on using hashes here.

File details

Details for the file pydantic_core-2.26.0-cp38-cp38-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp38-cp38-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e2255b4b90746666e4725c7b8e26747d5396ef1ef724fd88be8dde8e9a8f5029
MD5 bc6a04b7da57e6a870fc7e1f715078b5
BLAKE2b-256 521732440909ff99cc9eb0e4dd929ead0dd7a886b2ebeaf2aa4f02d8380da429

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2a3051216d2e1daf1ee22426452e05c8fdb5f476e9806cec67b1534391d2d549
MD5 39f15a3d5958f401c59a9c9e527a2b07
BLAKE2b-256 2fcb590f38669630b5f0cda71423d1420df774fbb6467c2b345b67efc12edcbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bd41f98f58819d6bf16b2e50c5f67d8ece09c99e41a950cf5ed76b5b4586814d
MD5 624c840a701954dfe0fbef6c4ec810de
BLAKE2b-256 c396a513873852f4e51a4dd0ab5ae1b1a8a781ad2761beb8d6313484677b7fa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6b38f53dec01ea7e203b211b33f4019100e83465d4d935ab9120d820a0ea4d3
MD5 2b7fbaa355822508ad1f691a15fc9d51
BLAKE2b-256 c835fca93497d74c1d8ab15a5b09a70b665bfa485a1be9fa1b75cceb6165382d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3b608c1b08671c111ff41aa167994438de0633bb321fae1700bcbe4608b5a6c
MD5 a35aaf300bd393744f381e72459c5a38
BLAKE2b-256 3dc249b38fdf8e0754d4526e26b7ada6bce652676cead013ebdd3c08f03dc048

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b26991a3fb41ebb73acba7a7811787ba5ed8176c557708c68aef46d9fcbfed20
MD5 4d27c9dbd511495ef170fd58fb5302e9
BLAKE2b-256 1ff68252c851fd46bb03238aaa959904b8e3ae81a4e2f53a31e18783e86e6e9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a4a8a96b6a228c597fa232ba3e4ddc482abb1cd69e340ab0418195e4c520cb1b
MD5 1e2d5dbd64aea1cf2b3feaddcf867f6a
BLAKE2b-256 4337f80490467635088e7b7acc4403720349d71b29ebca3c97fa8b1ffa0bd9e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fae508dd35f42adc03dba8bd0f6b18bfea23edc41ca5c6c75cc6262800929556
MD5 3b6f5a96f11881802a2657d5854dd46d
BLAKE2b-256 b04483552a52f48fac7a9f8b20f013ba097d07d48b74aa9e5ca1e651243e770c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d6bc543db35ddb53995e0f2a0f18fb0f3ad55e73c38c414a23f4ae8592bd42c0
MD5 0bba623d69c9c47cc8629fdf8d4c42b5
BLAKE2b-256 c611ee18dc180c4be2dc105414255c5dbb1305fc6d7bce8d6acf61f24c7d63a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.26.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3d8b599013a80e591eff37ec3e0151b2d86d7feeadd77f1b11061bd7987d08b9
MD5 f764651da9c9e25e0932532e06f08d6d
BLAKE2b-256 27b98d3c2eaf5adbf12fe1d7e076e0996788d118f1a9f971644dc6b572079fc3

See more details on using hashes here.

Supported by

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