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

Uploaded Source

Built Distributions

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.27.0-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.27.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.12+ x86-64

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

Uploaded PyPy Windows x86-64

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

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.27.0-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.27.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

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

Uploaded PyPy macOS 11.0+ ARM64

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

Uploaded PyPy macOS 10.12+ x86-64

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

Uploaded CPython 3.13 Windows ARM64

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

Uploaded CPython 3.13 Windows x86-64

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

Uploaded CPython 3.13 Windows x86

pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13 musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13 macOS 11.0+ ARM64

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

Uploaded CPython 3.13 macOS 10.12+ x86-64

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

Uploaded CPython 3.12 Windows ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.27.0-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.27.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

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

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows ARM64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.27.0-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.27.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.27.0-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.27.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

pydantic_core-2.27.0-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.27.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.27.0-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.27.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.12+ x86-64

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

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pydantic_core-2.27.0-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.27.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.27.0-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.27.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.27.0.tar.gz
  • Upload date:
  • Size: 412.7 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.27.0.tar.gz
Algorithm Hash digest
SHA256 f57783fbaf648205ac50ae7d646f27582fc706be3977e87c3c124e7a92407b10
MD5 577afcaa532c09b32ff16ab3b1f4b425
BLAKE2b-256 d1cd8331ae216bcc5a3f2d4c6b941c9f63de647e2700d38133f4f7e0132a00c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c0c431e4be5c1a0c6654e0c31c661cd89e0ca956ef65305c3c3fd96f4e72ca39
MD5 7dc37e819398962475e7e70c5d4357f0
BLAKE2b-256 e9fd7f39ff702fdca954f26c84b40d9bf744733bb1a50ca6b7569822b9cbb7f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c5726eec789ee38f2c53b10b1821457b82274f81f4f746bb1e666d8741fcfadb
MD5 8e98e37ff5a9d161b49e847b832af6b4
BLAKE2b-256 cab05296273d652fa9aa140771b3f4bb574edd3cbf397090625b988f6a57b02b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 68ef5377eb582fa4343c9d0b57a5b094046d447b4c73dd9fbd9ffb216f829e7d
MD5 a879c2d7b5d8cc2a73cf8ac11e7d9794
BLAKE2b-256 d9a89c1557d5282108916448415e85f829b70ba99d97f03cee0e40a296e58a65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 91bc66f878557313c2a6bcf396e7befcffe5ab4354cfe4427318968af31143c3
MD5 e6d8201f4126d24e0143eaeaaa43a949
BLAKE2b-256 5f78815aa74db1591a9ad4086bc1bf98e2126686245a956d76cd4e72bf9841ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff63a92f6e249514ef35bc795de10745be0226eaea06eb48b4bbeaa0c8850a4a
MD5 12eac6789ddddae04b4e7245ec1f3018
BLAKE2b-256 120704abaeeabf212650de3edc300b2ab89fb17da9bc4408ef4e01a62efc87dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 153017e3d6cd3ce979de06d84343ca424bb6092727375eba1968c8b4693c6ecb
MD5 ed4ea32554cfa0b82b7e047c009b82ef
BLAKE2b-256 cba1f9b4e625ee8c7f683c8295c85d11f79a538eb53719f326646112a7800bda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5982048129f40b082c2654de10c0f37c67a14f5ff9d37cf35be028ae982f26df
MD5 035682304ba54ab41ca752d7d343a9c1
BLAKE2b-256 0f9d99bbeb21d5be1d5affdc171e0e84603a757056f9f4293ef236e41af0a5bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49633583eb7dc5cba61aaf7cdb2e9e662323ad394e543ee77af265736bcd3eaa
MD5 e117c692fb749ff39052dd315dd55ede
BLAKE2b-256 24bb069a9dd910e6c09aab90a118c08d3cb30dc5738550e9f2d21f3b086352c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4fb49cfdb53af5041aba909be00cccfb2c0d0a2e09281bf542371c5fd36ad04c
MD5 5b78a65dbedf124b5d783bcea7b8103a
BLAKE2b-256 d3adc1dc814ab524cb247ceb6cb25236895a5cae996c438baf504db610fd6c92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d29e235ce13c91902ef3efc3d883a677655b3908b1cbc73dee816e5e1f8f7739
MD5 1d6900016fa4e2d48061810f4989dc50
BLAKE2b-256 57810e9ebcc80b107e1dfacc677ad7c2ab0202cc0e10ba76b23afbb147ac32fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d8b5ee4ae9170e2775d495b81f414cc20268041c42571530513496ba61e94ba3
MD5 245af8bc6052360788b5a5089924f7ee
BLAKE2b-256 e81574c61b7ea348b252fe97a32e5b531fdde331710db80e9b0fae1302023414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 9fe94d9d2a2b4edd7a4b22adcd45814b1b59b03feb00e56deb2e89747aec7bfe
MD5 a6c47cb2e613ab9dd7dab56adedb7a02
BLAKE2b-256 3a792cdf503e8aac926a99d64b2a02642ab1377146999f9a68536c54bd8b2c46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c9ed88b398ba7e3bad7bd64d66cc01dcde9cfcb7ec629a6fd78a82fa0b559d78
MD5 280b8c467bedf437f8b80bb2ce07fe8a
BLAKE2b-256 a844a4a3718f3b148526baccdb9a0bc8e6b7aa840c796e637805c04aaf1a74c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fda87808429c520a002a85d6e7cdadbf58231d60e96260976c5b8f9a12a8e13
MD5 92db05c82e31ca132d47fc7725505146
BLAKE2b-256 1d68d1868a78ce0d776c3e04179fbfa6272e72d4363c49f9bdecfe4b2007dd75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25a7fd4de38f7ff99a37e18fa0098c3140286451bc823d1746ba80cec5b433a1
MD5 0659df190ab1fe5f56ce6f48f05b0123
BLAKE2b-256 5221e7bab7b9674d5b1a8cf06939929991753e4b814b01bae29321a8739990b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a150392102c402c538190730fda06f3bce654fc498865579a9f2c1d2b425833
MD5 a4a1973a88e9d181f6c42601e8788f52
BLAKE2b-256 687b2e361ff81f60c4c28f65b53670436849ec716366d4f1635ea243a31903a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b51f964fcbb02949fc546022e56cdb16cda457af485e9a3e8b78ac2ecf5d77e
MD5 4c789bdd3507c826ac64b7740940ba46
BLAKE2b-256 f3964ff5a8ec0c457afcd87334d4e2f6fd25df6642b4ff8bf587316dd6eccd59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8e21d927469d04b39386255bf00d0feedead16f6253dcc85e9e10ddebc334084
MD5 7cb756ccb005cef0a5613871239f8026
BLAKE2b-256 bb4f76f1ac16a0c277a3a8be2b5b52b0a09929630e794fb1938c4cd85396c34f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-none-win_arm64.whl
Algorithm Hash digest
SHA256 6f4a53af9e81d757756508b57cae1cf28293f0f31b9fa2bfcb416cc7fb230f9d
MD5 1730fe0e7f0dfb3644ffb32cfe7ee3d6
BLAKE2b-256 d718e5744a132b81f98b9f92e15f33f03229a1d254ce7af942b1422ec2ac656f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 d28ca7066d6cdd347a50d8b725dc10d9a1d6a1cce09836cf071ea6a2d4908be0
MD5 c8f12d431e2bcafd5deaf9e999c3a491
BLAKE2b-256 063d21ed0f308e6618ce6c5c6bfb9e71734a9a3256d5474a53c8e5aaaba498ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-none-win32.whl
Algorithm Hash digest
SHA256 678f66462058dd978702db17eb6a3633d634f7aa0deaea61e0a674152766d3fc
MD5 54c4b791c7b8609c5db0540f72580ddb
BLAKE2b-256 cde6a202f0e1b81c729130404e82d9de90dc4418ec01df35000d48d027c38501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 edb1bfd45227dec8d50bc7c7d86463cd8728bcc574f9b07de7369880de4626a3
MD5 65ff9132ff21007c095f202e76fd504b
BLAKE2b-256 68e45ed8f09d92655dcd0a86ee547e509adb3e396cef0a48f5c31e3b060bb9d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 e851a051f7260e6d688267eb039c81f05f23a19431bd7dfa4bf5e3cb34c108cd
MD5 c4ae9cf78a25b239bc4d3171175a1a8c
BLAKE2b-256 6309c21e0d7438c7e742209cc8603607c8d389df96018396c8a2577f6e24c5c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c6fcb3fa3855d583aa57b94cf146f7781d5d5bc06cb95cb3afece33d31aac39b
MD5 107485196b078a76e8eabf058fce093d
BLAKE2b-256 9a2c07b0d5b5e1cdaa07b7c23e758354377d294ff0395116d39c9fa734e5d89e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 abb4785894936d7682635726613c44578c420a096729f1978cd061a7e72d5275
MD5 5d879757c436ca6ca5d671ffbef42adc
BLAKE2b-256 41f9c613546237cf58ed7a7fa9158410c14d0e7e0cbbf95f83a905c9424bb074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58560828ee0951bb125c6f2862fbc37f039996d19ceb6d8ff1905abf7da0bf3d
MD5 aeb83fdff3547de1b63d1aa036806217
BLAKE2b-256 eec8f9cbcab0275e031c4312223c75d999b61fba60995003cd89dc4866300059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9ce048deb1e033e7a865ca384770bccc11d44179cf09e5193a535c4c2f497bdc
MD5 305d11796b5c7066a61aa40f820c5d1a
BLAKE2b-256 601ddfcb8ab94a4637d4cf682550a2bf94695863988e7bcbd6f4d83c04178e17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb704155e73b833801c247f39d562229c0303f54770ca14fb1c053acb376cf10
MD5 80bb9649aa2bc8233e07f4edf310e1f3
BLAKE2b-256 3dc2a12744628b1b55c5384bd77657afa0780868484a92c37a189fb460d1cfe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 510b11e9c3b1a852876d1ccd8d5903684336d635214148637ceb27366c75a467
MD5 b408c1ac61a0a66e98519422bde07b37
BLAKE2b-256 baf2755b628009530b19464bb95c60f829b47a6ef7930f8ca1d87dac90fd2848

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2883b260f7a93235488699d39cbbd94fa7b175d3a8063fbfddd3e81ad9988cb2
MD5 e8cf3c05a00848709f56c4622e02e1b4
BLAKE2b-256 4971b951b03a271678b1d1b79481dac38cf8bce8a4e178f36ada0e9aff65a679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c86679f443e7085ea55a7376462553996c688395d18ef3f0d3dbad7838f857a2
MD5 e6bbb5b48cc30ba73c7d1b3f752e3e46
BLAKE2b-256 ca2a2f435d9fd591c912ca227f29c652a93775d35d54677b57c3157bbad823b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5f2b19b8d6fca432cb3acf48cf5243a7bf512988029b6e6fd27e9e8c0a204d85
MD5 9b0a9bc6cab45b4efe868a5f9bda8559
BLAKE2b-256 9db2740159bdfe532d856e340510246aa1fd723b97cadf1a38153bdfb52efa28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 6e19401742ed7b69e51d8e4df3c03ad5ec65a83b36244479fd70edde2828a5d9
MD5 296da64d874ecfba097175a5c7df7653
BLAKE2b-256 c3c736f87c0dabbde9c0dd59b9024e4bf117a5122515c864ddbe685ed8301670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 2be0ad541bb9f059954ccf8877a49ed73877f862529575ff3d54bf4223e4dd61
MD5 ccaced3068acb59d94bb5e5d1491316a
BLAKE2b-256 44004f121ca5dd06420813e7858395b5832603ed0074a5b74ef3104c8dbc2fd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 ee7d9d5537daf6d5c74a83b38a638cc001b648096c1cae8ef695b0c919d9d379
MD5 99991b5e732eb9ad08684bcb99e21d45
BLAKE2b-256 0f93e57562d6ea961557174c3afa481a73ce0e2d8b823e0eb2b320bfb00debbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 359e7951f04ad35111b5ddce184db3391442345d0ab073aa63a95eb8af25a5ef
MD5 6d63849cf90e48c6381af66e14bd29ea
BLAKE2b-256 01932796bd116a93e7e4e10baca4c55266c4d214b3b4e5ee7f0e9add69c184af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 483c2213a609e7db2c592bbc015da58b6c75af7360ca3c981f178110d9787bcf
MD5 55ee84e2c4cbe1caa150871ba5eb9e4a
BLAKE2b-256 264eb039e52b7f4c51d9fae6715d5d2e47a57c369b8e0cb75838974a193aae40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2a51ce96224eadd1845150b204389623c8e129fde5a67a84b972bd83a85c6c40
MD5 39906d90aed9c3f0110c1e4bf6d6f9d1
BLAKE2b-256 a39c27d06369f39375966836cde5c8aec0a66dc2f532c13d9aa1a6c370131fbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 400bf470e4327e920883b51e255617dfe4496d4e80c3fea0b5a5d0bf2c404dd4
MD5 c6d50341a13deec143aa60754da6294a
BLAKE2b-256 1df0abe1511f11756d12ce18d016f3555cb47211590e4849ee02e7adfdd1684e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 78f841523729e43e3928a364ec46e2e3f80e6625a4f62aca5c345f3f626c6e8a
MD5 8ac4c3076303ae37480267ace5b91cf4
BLAKE2b-256 e14d8905b2710ef653c0da27224bfb6a084b5873ad6fdb975dda837943e5639d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0d06b667e53320332be2bf6f9461f4a9b78092a079b8ce8634c9afaa7e10cd9f
MD5 f4fbf1887a441993bd99306e409ef33d
BLAKE2b-256 3a7456ead1436e3f6513b59b3a442272578a6ec09a39ab95abd5ee321bcc8c95

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 58ab0d979c969983cdb97374698d847a4acffb217d543e172838864636ef10d9
MD5 a58d245bad7d2a5d8c5fcb66e447f881
BLAKE2b-256 3593a6e5e04625ac8fcbed523d7b741e91cc3a37ed1e04e16f8f2f34269bbe53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 84e35afd9e10b2698e6f2f32256678cb23ca6c1568d02628033a837638b3ed12
MD5 445061430f29cbfa82d2911df4fd25d7
BLAKE2b-256 3eb5bce1d6d6fb71d916c74bf988b7d0cd7fc0c23da5e08bc0d6d6e08c12bf36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 951e71da6c89d354572098bada5ba5b5dc3a9390c933af8a614e37755d3d1840
MD5 e7826675e2d7a57eca354f117344d7ca
BLAKE2b-256 c7901c588d4d93ce53e1f5ab0cea2d76151fcd36613446bf99b670d7da9ddf89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a291d0b4243a259c8ea7e2b84eb9ccb76370e569298875a7c5e3e71baf49057a
MD5 540065a9db39853bab67fb4266757e32
BLAKE2b-256 7edd989570c76334aa55ccb4ee8b5e0e6881a513620c6172d93b2f3b77e10f81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8117839a9bdbba86e7f9df57018fe3b96cec934c3940b591b0fd3fbfb485864a
MD5 3f6358f1c2ba62749d7f81a86a6f0f2b
BLAKE2b-256 829943149b127559f3152cd28cb7146592c6547cfe47d528761954e2e8fcabaf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 3eb8849445c26b41c5a474061032c53e14fe92a11a5db969f722a2716cd12206
MD5 57089094423a63fa0bfe4eef73b026e6
BLAKE2b-256 4e9e3798b901cf331058bae0ba4712a52fb0106c39f913830aaf71f01fd10d45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 68950bc08f9735306322bfc16a18391fcaac99ded2509e1cc41d03ccb6013cfe
MD5 3083cc8f751ea09e77d50d8be2b1a61c
BLAKE2b-256 ea48a30c67d62b8f39095edc3dab6abe69225e8c57186f31cc59a1ab984ea8e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 24f984fc7762ed5f806d9e8c4c77ea69fdb2afd987b4fd319ef06c87595a8c55
MD5 0b0eb904da5ee215c79beaea932a6ceb
BLAKE2b-256 59c427917b73d0631098b91f2ec303e1becb823fead0628ee9055fca78ec1e2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9a8fbf506fde1529a1e3698198fe64bfbe2e0c09557bc6a7dcf872e7c01fec40
MD5 76645ab7ca0988ad92d296abe90c6eab
BLAKE2b-256 8af981e5f910571a20655dd7bf10e6d6db8c279e250bfbdb5ab1a09ce3e0eb82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 eb40f828bc2f73f777d1eb8fee2e86cd9692a4518b63b6b5aa8af915dfd3207b
MD5 466055d8399ffcdc0ccea2375bdae08b
BLAKE2b-256 ddef21f25f5964979b7e6f9102074083b5448c22c871da438d91db09601e6634

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 82e1ad4ca170e8af4c928b67cff731b6296e6a0a0981b97b2eb7c275cc4e15bd
MD5 0d3797eb5bda400a4975b3ac122f0c14
BLAKE2b-256 7a431faa8601085dab2a37dfaca8d48605b76e38aeefcde58bf95534ab96b135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8e96ca781e0c01e32115912ebdf7b3fb0780ce748b80d7d28a0802fa9fbaf44e
MD5 2f3baf91a4b724766392fe108a34d480
BLAKE2b-256 3ea67fb0725eaf1122518c018bfe38aaf4ad3d512e8598e2c08419b9a270f4bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0aa4d1b2eba9a325897308b3124014a142cdccb9f3e016f31d3ebee6b5ea5e75
MD5 4a9985739e716292aa71c8ef5aa9f791
BLAKE2b-256 89b4ad5bc2b43b7ca8fd5f5068eca7f195565f53911d9ae69925f7f21859a929

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6bb69bf3b6500f195c3deb69c1205ba8fc3cb21d1915f1f158a10d6b1ef29b6a
MD5 6f3073175583c3e9713017dfaaddf2cb
BLAKE2b-256 987de1f28e12a26035d7c8b7678830400e5b94129c9ccb74636235a2eeeee40f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a5c022bb0d453192426221605efc865373dde43b17822a264671c53b068ac20c
MD5 a1a8f74535e787d5692cdf18bbeb3ebb
BLAKE2b-256 a4488e431b7732695c93ded79214299a83ac04249d748243b8ba6644ab076574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e65466b31be1070b4a5b7dbfbd14b247884cb8e8b79c64fb0f36b472912dbaea
MD5 f09a191b880476377e9e6423ad176a21
BLAKE2b-256 7d870422a653ddfcf68763eb56d6e4e2ad19df6d5e006f3f4b854fda06ce2ba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b872c86d8d71827235c7077461c502feb2db3f87d9d6d5a9daa64287d75e4fa0
MD5 89a8422fc68fe1c384b49d14c92bfcfa
BLAKE2b-256 a12c453e52a866947a153bb575bbbb6b14db344f07a73b2ad820ff8f40e9807b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84af1cf7bfdcbc6fcf5a5f70cc9896205e0350306e4dd73d54b6a18894f79386
MD5 7a755f7a2ff16ec0e5291e6d23a86a95
BLAKE2b-256 501e58baa0fde14aafccfcc09a8b45bdc11eb941b58a69536729d832e383bdbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4523c4009c3f39d948e01962223c9f5538602e7087a628479b723c939fab262d
MD5 81bc3d5ef67c86e98db8b8df246891fa
BLAKE2b-256 85ba5ed9583a44d9fbd6fbc028df8e3eae574a3ef4761d7f56bb4e0eb428d5ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 99b2863c1365f43f74199c980a3d40f18a218fbe683dd64e470199db426c4d6a
MD5 c65f4f8791fd9c3fa07338b12e818a29
BLAKE2b-256 0564e543d342b991d38426bcb841bc0b4b95b9bd2191367ba0cc75f258e3d583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 333c840a1303d1474f491e7be0b718226c730a39ead0f7dab2c7e6a2f3855555
MD5 46a83861d08c9b22a8cba765d5bc0040
BLAKE2b-256 614081e5d8f84ab070cf091d072bb61b6021ff79d7110b2d0145fe3171b6107b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6b4c19525c3538fbc0bbda6229f9682fb8199ce9ac37395880e6952798e00373
MD5 f0197e6f154f9fd3f7ad3b31df575029
BLAKE2b-256 d24356ef2e72360d909629a54198d2bc7ef60f19fde8ceb5c90d7749120d0b61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 35380671c3c921fe8adf31ad349dc6f7588b7e928dbe44e1093789734f607399
MD5 3572016f80bfdcd5a0448755e9e7411e
BLAKE2b-256 2f2d4e46981cfcf4ca4c2ff7734dec08162e398dc598c6c0687454b05a82dc2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7b0202ebf2268954090209a84f9897345719e46a57c5f2c9b7b250ca0a9d3e63
MD5 fefdaf7f1844cef34173438f75d8d45e
BLAKE2b-256 808bbdbe875c4758282402e3cc75fa6bf2f0c8ffac1874f384190034786d3cbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5ab325fc86fbc077284c8d7f996d904d30e97904a87d6fb303dce6b3de7ebba9
MD5 52aa2c38b6080c0a77b298d866e17381
BLAKE2b-256 7face1867e2b808a668f32ad9012eaeac0b0ee377eee8157ab93720f48ee609b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4bf1340ae507f6da6360b24179c2083857c8ca7644aab65807023cf35404ea8d
MD5 285e48dfaf76aff1604845d6ddc3cb24
BLAKE2b-256 127d0ff62235adda41b87c495c1b95c84d4debfecb91cfd62e3100abad9754fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 836a4bfe0cc6d36dc9a9cc1a7b391265bf6ce9d1eb1eac62ac5139f5d8d9a6fa
MD5 3317db06c528e02cf29d953a49543ca0
BLAKE2b-256 fc3462612e655b4d693a6ec515fd0ddab4bfc0cc6759076e09c23fc6966bd07b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df45c4073bed486ea2f18757057953afed8dd77add7276ff01bccb79982cf46c
MD5 252c524c0119dcf73bc2805061087d30
BLAKE2b-256 142490b0babb61b68ecc471ce5becad8f7fc5f7835c601774e5de577b051b7ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 db72e40628967f6dc572020d04b5f800d71264e0531c6da35097e73bdf38b003
MD5 6d51f9c6724d88f14de40c7f1376034b
BLAKE2b-256 88d7e04d06ca71a0bd7f4cac24e6aa562129969c91117e5fad2520ede865c8cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1da0c98a85a6c6ed702d5556db3b09c91f9b0b78de37b7593e2de8d03238807a
MD5 b17d38f8b2bd66a7f2d2808936997111
BLAKE2b-256 2f045006f2dbf655052826ac8d03d51b9a122de709fed76eb1040aa21772f530

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e015833384ca3e1a0565a79f5d953b0629d9138021c27ad37c92a9fa1af7623c
MD5 26ade2060c0030f36d2b0584b0ea799e
BLAKE2b-256 5b09ff3ce866f769ebbae2abdcd742247dc2bd6967d646daf54a562ceee6abdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cd2ac6b919f7fed71b17fe0b4603c092a4c9b5bae414817c9c81d3c22d1e1bcc
MD5 0ed8ee37bced8c5149cda05729949e84
BLAKE2b-256 ff978a42e9c17c305516c0d956a2887d616d3a1b0531b0053ac95a917e4a1ab7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 31a2cae5f059329f9cfe3d8d266d3da1543b60b60130d186d9b6a3c20a346361
MD5 fed87873c4cb9f2241c057efc29bb875
BLAKE2b-256 2e2781203aa6cbf68772afd9c3877ce2e35878f434e824aad4047e7cfd3bc14d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 bf37b72834e7239cf84d4a0b2c050e7f9e48bced97bad9bdf98d26b8eb72e846
MD5 3a8c4649372163f0e711719f58d5a47e
BLAKE2b-256 5cb8e7499cfa6f1e46e92a645e74198b7bb9ce3d49e82f626a02726dc917fc74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 884f1806609c2c66564082540cffc96868c5571c7c3cf3a783f63f2fb49bd3cd
MD5 a4a1f34c8b52b4982c6b83ccd99c5697
BLAKE2b-256 0e6c72ca869aabe190e4cd36b03226286e430a1076c367097c77cb0704b1cbb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3fd8bc2690e7c39eecdf9071b6a889ce7b22b72073863940edc2a0a23750ca90
MD5 48a89032b24ec94534c38e3f91699241
BLAKE2b-256 9912ee67e29369b368c404c6aead492e1528ec887609d388a7a30b675b969b82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 433689845288f9a1ee5714444e65957be26d30915f7745091ede4a83cfb2d7bb
MD5 5db5a77ce266f693609f1d9295b8d6ab
BLAKE2b-256 0f3d36c0c832c1fd1351c495bf1495b61b2e40248c54f7874e6df439e6ffb9a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43b61989068de9ce62296cde02beffabcadb65672207fc51e7af76dca75e6636
MD5 6aeec32a2150484693128ba65f36e3d5
BLAKE2b-256 9a372cdd48b7367fbf0576d16402837212d2b1798aa4ea887f1795f8ddbace07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7820bb0d65e3ce1e3e70b6708c2f66143f55912fa02f4b618d0f08b61575f12
MD5 3d07ed2c1f34374ddaea3be3bc0da807
BLAKE2b-256 ec19514fdf2f684003961b6f34543f0bdf3be2e0f17b8b25cd8d44c343521148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 33d14369739c5d07e2e7102cdb0081a1fa46ed03215e07f097b34e020b83b1ae
MD5 19779f6b6778f5f105231ddd6c7fc41d
BLAKE2b-256 b6178953bbbe7d3c015bdfa34171ba1738a43682d770e68c87171dd8887035c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 395e3e1148fa7809016231f8065f30bb0dc285a97b4dc4360cd86e17bab58af7
MD5 c3f7e1cebf3496fb602e2844afff62e2
BLAKE2b-256 2baaecf0fcee9031eef516cef2e336d403a61bd8df75ab17a856bc29f3eb07d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 185ef205256cd8b38431205698531026979db89a79587725c1e55c59101d64e9
MD5 a54b49dc75181a4541746d3bac41e4bd
BLAKE2b-256 a03a3a6a4cee7bc11bcb3f8859a63c6b4d88b8df66ad7c9c9e6d667dd894b439

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 15e350efb67b855cd014c218716feea4986a149ed1f42a539edd271ee074a196
MD5 687e5314dcf8040a5b01c4394154d19f
BLAKE2b-256 3a6cfa100356e1c8f749797d88401a1d5ed8d458705d43e259931681b5b96ab4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5fc72fbfebbf42c0856a824b8b0dc2b5cd2e4a896050281a21cfa6fed8879cb1
MD5 c69c1681f488524f2fef40ad222419a2
BLAKE2b-256 f4469d27771309609126678dee81e8e93188dbd0515a543b27e0a01a806c1893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4148dc9184ab79e356dc00a4199dc0ee8647973332cb385fc29a7cced49b9f9c
MD5 6dd65aee383b271b43c04a233427a651
BLAKE2b-256 00e44d6d9193a33c964920bf56fcbe11fa30511d3d900a81c740b0157579b122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 513cb14c0cc31a4dfd849a4674b20c46d87b364f997bbcb02282306f5e187abf
MD5 cefd2a756ddb630df6d0624b69a37483
BLAKE2b-256 90c1219e5b3c4dd33d88dee17479b5a3aace3c9c66f26cb7317acc33d74ef02a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 dfa5f5c0a4c8fced1422dc2ca7eefd872d5d13eb33cf324361dbf1dbfba0a9fe
MD5 f92bec420f6f50c710da01a4867e9265
BLAKE2b-256 8bfe773312dae0be37017e91e2684834bc971aca8f8b6f44e5395c7e4814ae52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e15315691fe2253eb447503153acef4d7223dfe7e7702f9ed66539fcd0c43801
MD5 bef9d5653a8a4c53743638ce14070e28
BLAKE2b-256 801e896a1472a6d7863144e0738181cfdad872c90b57d5c1a5ee073838d751c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-cp38-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5cc822ab90a70ea3a91e6aed3afac570b276b1278c6909b1d384f745bd09c714
MD5 1a61a03a184f4c69bb82a9a2797bb1a8
BLAKE2b-256 f2d64f9c7059020863535810a027f993bb384da1f9af60b4d6364493661befb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3e8d89c276234579cd3d095d5fa2a44eb10db9a218664a17b56363cddf226ff3
MD5 ad17d537ba8797803f279c8462d0c4c4
BLAKE2b-256 65026b308344a5968a1b99959fb965e72525837f609adf2412d47769902b2db5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a6ebfac28fd51890a61df36ef202adbd77d00ee5aca4a3dadb3d9ed49cfb929
MD5 e76057051ad02de056292ff2423cf87c
BLAKE2b-256 8ee1bb637cf80583bf9058b8e5a7645cdc99a8adf3941a58329ced63f4c63843

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c91e3c04f5191fd3fb68764bddeaf02025492d5d9f23343b283870f6ace69708
MD5 27b5b0fb5fcdc15257a600bc0c2258b0
BLAKE2b-256 5cd88f68ab9d67c129dc046ad1aa105dc3a86c9ffb6c2243d44d7140381007ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ee4c2a75af9fe21269a4a0898c5425afb01af1f5d276063f57e2ae1bc64e191
MD5 4041440603c869946b8c2db3c3ca493b
BLAKE2b-256 48a47bc31d7bc5dcbc6d7c8ab2ada38a99d2bd22e93b73e9a9a2a84626016740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6354e18a9be37bfa124d6b288a87fb30c673745806c92956f1a25e3ae6e76b96
MD5 4050fc207a5f0ed2fa98dcf371f31ea6
BLAKE2b-256 8031a9c66908c95dd2a04d84baa98b46d8ea35abb13354d0a27ac47ffab6decf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c921ad596ff1a82f9c692b0758c944355abc9f0de97a4c13ca60ffc6d8dc15d4
MD5 9b9009bf13ff259ef36db5f543add0fb
BLAKE2b-256 899685e7daa1151104c24f4b007d32374c899c5e66ebbbf4da4debd1794e084f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 36aa167f69d8807ba7e341d67ea93e50fcaaf6bc433bb04939430fa3dab06f31
MD5 8777fe621f9afe2fa293e87f2ec1b144
BLAKE2b-256 5082c9b7dc0b081a3f26ee321f56b67e5725ec94128d92f1e08525080ba2f2df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 225bfff5d425c34e1fd562cef52d673579d59b967d9de06178850c4802af9039
MD5 a42996c83ab3b07423dcad0847bfe9f0
BLAKE2b-256 5d62fecc64300ea766b6b45de87663ff2adba63c6624a71ba8bc5a323e17ef5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.27.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e9f9feee7f334b72ceae46313333d002b56f325b5f04271b4ae2aadd9e993ae4
MD5 cb2d1f3e37a83f067d809cea0098edce
BLAKE2b-256 e1799ff7da9e775aa9bf42c9df93fc940d421216b22d255a6edbc11aa291d3f0

See more details on using hashes here.

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