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.9+ 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.33.2.tar.gz (435.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.33.2-pp311-pypy311_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.33.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.33.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.33.2-pp310-pypy310_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.33.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.33.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.33.2-pp39-pypy39_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.33.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.33.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.33.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.33.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.33.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.33.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.33.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.33.2-cp313-cp313t-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.13tWindows x86-64

pydantic_core-2.33.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pydantic_core-2.33.2-cp313-cp313-win32.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.33.2-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.33.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_core-2.33.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.33.2-cp313-cp313-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.33.2-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.33.2-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.33.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.33.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.33.2-cp312-cp312-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

pydantic_core-2.33.2-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.33.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-2.33.2-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.33.2-cp311-cp311-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pydantic_core-2.33.2-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.33.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-2.33.2-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.33.2-cp310-cp310-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

pydantic_core-2.33.2-cp39-cp39-win32.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-2.33.2-cp39-cp39-musllinux_1_1_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-2.33.2-cp39-cp39-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

pydantic_core-2.33.2-cp39-cp39-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.33.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-2.33.2-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.33.2-cp39-cp39-macosx_10_12_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.33.2.tar.gz
  • Upload date:
  • Size: 435.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for pydantic_core-2.33.2.tar.gz
Algorithm Hash digest
SHA256 7cb8bc3605c29176e1b105350d2e6474142d7c1bd1d9327c4a9bdb46bf827acc
MD5 b0d873418c930ff8021fd47478bbed76
BLAKE2b-256 ad885f2260bdfae97aabf98f1778d43f69574390ad787afb646292a638c923d4

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 329467cecfb529c925cf2bbd4d60d2c509bc2fb52a20c1045bf09bb70971a9c1
MD5 e940dfd527c89dd9a1a7f2992e268cfd
BLAKE2b-256 32568a7ca5d2cd2cda1d245d34b1c9a942920a718082ae8e54e5f3e5a58b7add

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 82f68293f055f51b51ea42fafc74b6aad03e70e191799430b90c13d643059ebb
MD5 ef490b64716c15e61297bc0154ce159f
BLAKE2b-256 3cb25309c905a93811524a49b4e031e9851a6b00ff0fb668794472ea7746b448

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 de4b83bb311557e439b9e186f733f6c645b9417c84e2eb8203f3f820a4b988bf
MD5 79f9f1e6121df140fb3ff6574ae2c98b
BLAKE2b-256 b8e91f7efbe20d0b2b10f6718944b5d8ece9152390904f29a78e68d4e7961159

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f889f7a40498cc077332c7ab6b4608d296d852182211787d4f3ee377aaae66e8
MD5 0e8e8d8b64179f7cbe5b899c22951619
BLAKE2b-256 53892b2de6c81fa131f423246a9109d7b2a375e83968ad0800d6e57d0574629b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bfb5112df54209d820d7bf9317c7a6c9025ea52e49f46b6a2060104bba37de7
MD5 e31cd3a87cb04da928493e567596bced
BLAKE2b-256 3e11d37bdebbda2e449cb3f519f6ce950927b56d62f0b84fd9cb9e372a26a3d5

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f82865531efd18d6e07a04a17331af02cb7a651583c418df8266f17a63c6612
MD5 ba5d16cb1347783da157f06c985af0c2
BLAKE2b-256 05bc0d0b5adeda59a261cd30a1235a445bf55c7e46ae44aea28f7bd6ed46e091

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 64632ff9d614e5eecfb495796ad51b0ed98c453e447a76bcbeeb69615079fc7e
MD5 a160a68d7f37267a16effa5a6e1a02d4
BLAKE2b-256 8c551f95f0a05ce72ecb02a8a8a1c3be0579bbc29b1d5ab68f1378b7bebc5057

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d87c561733f66531dced0da6e864f44ebf89a8fba55f31407b00c2f7f9449593
MD5 2a789af5f8812ecd29a35e8a90a9a8a8
BLAKE2b-256 f1b8b3cb95375f05d33801024079b9392a5ab45267a63400bf1866e7ce0f0de4

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd14041875d09cc0f9308e37a6f8b65f5585cf2598a53aa0123df8b129d481f8
MD5 65fa396134e6c7a2ea154de949110a58
BLAKE2b-256 7b27d4ae6487d73948d6f20dddcd94be4ea43e74349b56eba82e9bdee2d7494c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a11c8d26a50bfab49002947d3d237abe4d9e4b5bdc8846a63537b6488e197808
MD5 981bc4100f57e994eb5a4b00336d7af5
BLAKE2b-256 ce912ec36480fdb0b783cd9ef6795753c1dea13882f2e68e73bce76ae8c21e6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fa754d1850735a0b0e03bcffd9d4b4343eb417e47196e4485d9cca326073a42c
MD5 c708f490d3f1d92884cc50cb0da43a72
BLAKE2b-256 d4e74f98c0b125dda7cf7ccd14ba936218397b44f50a56dd8c16a3091df116c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1a8695a8d00c73e50bff9dfda4d540b7dee29ff9b8053e38380426a85ef10052
MD5 4e352cd4f6c16419061e792fb907737b
BLAKE2b-256 22a8dccc38768274d3ed3a59b5d06f59ccb845778687652daa71df0cab4040d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0e03262ab796d986f978f79c943fc5f620381be7287148b8010b4097f79a39ec
MD5 0f897c91572bb04ca55a7781b9aa277f
BLAKE2b-256 f1c500c02d1571913d496aabf146106ad8239dc132485ee22efe08085084ff7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa9d91b338f2df0508606f7009fde642391425189bba6d8c653afd80fd6bb64e
MD5 c31e4f0ed71e0b79b54781ac962672aa
BLAKE2b-256 12738cd57e20afba760b21b742106f9dbdfa6697f1570b189c7457a1af4cd8a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87b31b6846e361ef83fedb187bb5b4372d0da3f7e28d85415efa92d6125d6e6d
MD5 ad2d24e724d44c9f730fc02bc2dba030
BLAKE2b-256 41b1c6dc6c3e2de4516c0bb2c46f6a373b91b5660312342a0cf5826e38ad82fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2058a32994f1fde4ca0480ab9d1e75a0e8c87c22b53a3ae66554f9af78f2fe8c
MD5 0c8836b398b58aa4821853276c7790de
BLAKE2b-256 e3d50bb5d988cc019b3cba4a78f2d4b3854427fc47ee8ec8e9eaabf787da239c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d946c8bf0d5c24bf4fe333af284c59a19358aa3ec18cb3dc4370080da1e8ad29
MD5 9e4bde12e530a52d2f13a333ed4070cb
BLAKE2b-256 a416145f54ac08c96a63d8ed6442f9dec17b2773d19920b627b18d4f10a061ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c4aa4e82353f65e548c476b37e64189783aa5384903bfea4f41580f255fddfa
MD5 accdb8ac9fbef01c3bc4d559a8b01cca
BLAKE2b-256 3068373d55e58b7e83ce371691f6eaa7175e3a24b956c44628eb25d7da007917

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2807668ba86cb38c6817ad9bc66215ab8584d1d304030ce4f0887336f28a5e27
MD5 ba6775b8e0f4be679822b0176408d648
BLAKE2b-256 d4293cade8a924a61f60ccfa10842f75eb12787e1440e2b8660ceffeb26685e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3a1c81334778f9e3af2f8aeb7a960736e5cab1dfebfb26aabca09afd2906c039
MD5 5532d4d4734f22b141c28234d12f240f
BLAKE2b-256 801cfa883643429908b1c90598fd2642af8839efd1d835b65af1f75fba4d94fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3abcd9392a36025e3bd55f9bd38d908bd17962cc49bc6da8e7e96285336e2bca
MD5 bbd080d626ef287c0e0c26eedaab312a
BLAKE2b-256 1a1aabbd63d47e1d9b0d632fee6bb15785d0889c8a6e0a6c3b5a8e28ac1ec5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3eb3fe62804e8f859c49ed20a8451342de53ed764150cb14ca71357c765dc2a6
MD5 107109d6ef0a62c14e22f5ab5cf2d5fb
BLAKE2b-256 9aec4cd215534fd10b8549015f12ea650a1a973da20ce46430b68fc3185573e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dac89aea9af8cd672fa7b510e7b8c33b0bba9a43186680550ccf23020f32d535
MD5 22c4b360ff8add8ee0a5770c789216d5
BLAKE2b-256 f2409d03997d9518816c68b4dfccb88969756b9146031b61cd37f781c74c9b6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3f26877a748dc4251cfcfda9dfb5f13fcb034f5308388066bcfe9031b63ae7d
MD5 ef6a68e0df5e884600eab5f9231ca27a
BLAKE2b-256 d860bc06fa9027c7006cc6dd21e48dbf39076dc39d9abbaf718a1604973a9670

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 970919794d126ba8645f3837ab6046fb4e72bbc057b3709144066204c19a455d
MD5 5ef2ebad2bd2ff43885619a33321549e
BLAKE2b-256 d862d490198d05d2d86672dc269f52579cad7261ced64c2df213d5c16e0aecb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f92c15cd1e97d4b12acd1cc9004fa092578acfa57b67ad5e43a197175d01a64
MD5 7229405880b6af7f48b90a9a91e3d1df
BLAKE2b-256 8d997810aa9256e7f2ccd492590f86b79d370df1e9292f1f80b000b6a75bd2fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 87acbfcf8e90ca885206e98359d7dca4bcbb35abdc0ff66672a293e1d7a19101
MD5 f43039c6887bc2d0eb95019a17091d58
BLAKE2b-256 0898dbf3fdfabaf81cda5622154fda78ea9965ac467e3239078e0dcd6df159e7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 c2fc0a768ef76c15ab9238afa6da7f69895bb5d1ee83aeea2e3509af4472d0b9
MD5 0f9d687bebaec9207c1967e018045917
BLAKE2b-256 6f9ae73262f6c6656262b5fdd723ad90f518f579b7bc8622e43a942eec53c938

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 95237e53bb015f67b63c91af7518a62a8660376a6a0db19b89acc77a4d6199f5
MD5 dc7c701fac8590a34fdae1f527273f38
BLAKE2b-256 f13d847b6b1fed9f8ed3bb95a9ad04fbd0b212e832d4f0f50ff4d9ee5a9f15cf

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61c18fba8e5e9db3ab908620af374db0ac1baa69f0f32df4f61ae23f15e586ac
MD5 c8953447a50f93bc368636c8a0274131
BLAKE2b-256 a47de09391c2eebeab681df2b74bfe6c43422fffede8dc74187b2b0bf6fd7571

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e80b087132752f6b3d714f041ccf74403799d3b23a72722ea2e6ba2e892555b9
MD5 a2c17a55c46cbf30c1f02d25085e28ed
BLAKE2b-256 f9861beda0576969592f1497b4ce8e7bc8cbdf614c352426271b1b10d5f0aa64

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 c083a3bdd5a93dfe480f1125926afcdbf2917ae714bdb80b36d34318b2bec5d9
MD5 95ca174457a5c31938edd211288c51dc
BLAKE2b-256 a0754a0a9bac998d78d889def5e4ef2b065acba8cae8c93696906c3a91f310ca

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 52fb90784e0a242bb96ec53f42196a17278855b0f31ac7c3cc6f5c1ec4811849
MD5 4482fb6dec1266664f813d46797aeb5b
BLAKE2b-256 584d4f937099c545a8a17eb52cb67fe0447fd9a373b348ccfa9a87f141eeb00f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 65132b7b4a1c0beded5e057324b7e16e10910c106d43675d9bd87d4f38dde162
MD5 22a9772596fd95977066dbcac711cb72
BLAKE2b-256 42db0e950daa7e2230423ab342ae918a794964b053bec24ba8af013fc7c94846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 5c92edd15cd58b3c2d34873597a1e20f13094f59cf88068adb18947df5455b4e
MD5 b6011bbc001ca03bf56d3f89dbf50170
BLAKE2b-256 26bdd9602777e77fc6dbb0c7db9ad356e9a985825547dce5ad1d30ee04903918

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c8e7af2f4e0194c22b5b37205bfb293d166a7344a5b0d0eaccebc376546d77d5
MD5 050299b3177b5f485e0d8c770d14cdae
BLAKE2b-256 048f2551964ef045669801675f1cfc3b0d74147f4901c3ffa42be2ddb1f0efc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9fdac5d6ffa1b5a83bca06ffe7583f5576555e6c8b3a91fbd25ea7780f825f7d
MD5 4e8a541e2a395a416c4be40781433035
BLAKE2b-256 eb3cf4abd740877a35abade05e437245b192f9d0ffb48bbbbd708df33d3cda37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fb2d542b4d66f9470e8065c5469ec676978d625a8b7a363f07d9a501a9cb36a
MD5 767a0c657c5f6d5dd58eda5f9b6c23ac
BLAKE2b-256 aac3053389835a996e18853ba107a63caae0b9deb4a276c6b472931ea9ae6e48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ea40a64d23faa25e62a70ad163571c0b342b8bf66d5fa612ac0dec4f069d916
MD5 ada790ad2a7133a7dffa492357b97def
BLAKE2b-256 e655f1a813904771c03a3f97f676c62cca0c0a4138654107c1b61f19c644868b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2b0a451c263b01acebe51895bfb0e1cc842a5c666efe06cdf13846c7418caa9a
MD5 17e9e6bf8e62da75049a82220e62ff9c
BLAKE2b-256 3b2a953581f343c7d11a304581156618c3f592435523dd9d79865903272c256a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a9f2c9dd19656823cb8250b0724ee9c60a82f3cdf68a080979d13092a3b0fef
MD5 6d1640c4dd314420b77854008501e6ca
BLAKE2b-256 6f5ea0a7b8885c98889a18b6e376f344da1ef323d270b44edf8174d6bce4d622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 04a1a413977ab517154eebb2d326da71638271477d6ad87a769102f7c2488c56
MD5 331e9f25ed3fd8f2f3b4b768df41a4be
BLAKE2b-256 59a763ef2fed1837d1121a894d0ce88439fe3e3b3e48c7543b2a4479eb99c2bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f517ca031dfc037a9c07e748cefd8d96235088b83b4f4ba8939105d20fa1dcd6
MD5 780f3d1df39cf69d0abd529a08374046
BLAKE2b-256 3acc5999d1eb705a6cefc31f0b4a90e9f7fc400539b1a1030529700cc1b51838

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1082dd3e2d7109ad8b7da48e1d4710c8d06c253cbc4a27c1cff4fbcaa97a9e3f
MD5 55c27bd13cc0141efe4e5e252efa87d1
BLAKE2b-256 468c99040727b41f56616573a28771b1bfa08a3d3fe74d3d513f01251f79f172

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cca3868ddfaccfbc4bfb1d608e2ccaaebe0ae628e1416aeb9c4d88c001bb45ab
MD5 193898c6eeb7969ec05f12e3c3f43547
BLAKE2b-256 0d248b11e8b3e2be9dd82df4b11408a67c61bb4dc4f8e11b5b0fc888b38118b5

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f941635f2a3d96b2973e867144fde513665c87f13fe0e193c158ac51bfaaa7b2
MD5 608593d0ebf3be7fe6407ec7fe38de6c
BLAKE2b-256 43e45479fecb3606c1368d496a825d8411e126133c41224c1e7238be58b87d7e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9cb1da0f5a471435a7bc7e439b8a728e8b61e59784b2af70d7c169f8dd8ae290
MD5 3d1b63c4c5d28cbfe5f293440f5bffdc
BLAKE2b-256 b06aadf5734ffd52bf86d865093ad70b2ce543415e0e356f6cacabbc0d9ad910

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5f483cfb75ff703095c59e365360cb73e00185e01aaea067cd19acffd2ab20ea
MD5 4e7d3a7c5f85d51c278711bab8e94080
BLAKE2b-256 27b99c17f0396a82b3d5cbea4c24d742083422639e7bb1d5bf600e12cb176a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 fa854f5cf7e33842a892e5c73f45327760bc7bc516339fda888c75ae60edaeb6
MD5 a9f4248705539bcf7c0112b08c38e1d5
BLAKE2b-256 016c57f8d70b2ee57fc3dc8b9610315949837fa8c11d86927b9bb044f8705419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 db4b41f9bd95fbe5acd76d89920336ba96f03e149097365afe1cb092fceb89a1
MD5 011581f7c0209ff8fee51cf7ce6228d1
BLAKE2b-256 fe36def5e53e1eb0ad896785702a5bbfd25eed546cdcf4087ad285021a90ed53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8f57a69461af2a5fa6e6bbd7a5f60d3b7e6cebb687f55106933188e79ad155c1
MD5 d8a3bd3537d5dc549c6e2bc1cb594bd0
BLAKE2b-256 f9414b043778cf9c4285d59742281a769eac371b9e47e35f98ad321349cc5d61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96081f1605125ba0855dfda83f6f3df5ec90c61195421ba72223de35ccfb2f88
MD5 ca1f10f6187dd1b84a1e3ad445b4b1e7
BLAKE2b-256 e0942bd0aaf5a591e974b32a9f7123f16637776c304471a0ab33cf263cf5591a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c52b02ad8b4e2cf14ca7b3d918f3eb0ee91e63b3167c32591e57c4317e134f8f
MD5 bc432c39b4c07567ceb4a24e8234e2d9
BLAKE2b-256 2d1d6bf34d6adb9debd9136bd197ca72642203ce9aaaa85cfcbfcf20f9696e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb8c529b2819c37140eb51b914153063d27ed88e3bdc31b71198a198e921e011
MD5 d695b6911b898baae81e2fc0b85722fa
BLAKE2b-256 ec6b1ec2c03837ac00886ba8160ce041ce4e325b41d06a034adbef11339ae422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4e61206137cbc65e6d5256e1166f88331d3b6238e082d9f74613b9b765fb9025
MD5 6f603b14c27e904456a7b12601ed77cc
BLAKE2b-256 d6466dcdf084a523dbe0a0be59d054734b86a981726f221f4562aed313dbcb49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 572c7e6c8bb4774d2ac88929e3d1f12bc45714ae5ee6d9a788a9fb35e60bb04b
MD5 1de10dfc9b04cce6a0d1162fcc55601f
BLAKE2b-256 cbd57bb781bf2748ce3d03af04d5c969fa1308880e1dca35a9bd94e1a96a922e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c6db6e52c6d70aa0d00d45cdb9b40f0433b96380071ea80b09277dba021ddf7
MD5 0b491265c5bf2f60325799e2a413fe95
BLAKE2b-256 a1026224312aacb3c8ecbaa959897af57181fb6cf3a3d7917fd44d0f2917e6f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a7ec89dc587667f22b6a0b6579c249fca9026ce7c333fc142ba42411fa243cdc
MD5 79f81766921f1153b858b5b11486a1b5
BLAKE2b-256 188a2b41c97f554ec8c71f2a8a5f85cb56a8b0956addfe8b0efb5b3d77e8bdc3

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6b99022f1d19bc32a4c2a0d544fc9a76e3be90f0b3f4af413f87d38749300e65
MD5 5b46d50b0597743ff1bd6e8ffe485789
BLAKE2b-256 49a9d809358e49126438055884c4366a1f6227f0f84f635a9014e2deb9b9de54

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1e063337ef9e9820c77acc768546325ebe04ee38b08703244c1309cccc4f1bab
MD5 4198a8238dd0c6fea5405b674dc56ce8
BLAKE2b-256 fe1b25b7cccd4519c0b23c2dd636ad39d381abf113085ce4f7bec2b0dc755eb1

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 6368900c2d3ef09b69cb0b913f9f8263b03786e5b2a387706c5afb66800efd51
MD5 b1991ea1fd37d705f66f2e6d56b99f4c
BLAKE2b-256 e0ed55532bb88f674d5d8f67ab121a2a13c385df382de2a1677f30ad385f7438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 235f45e5dbcccf6bd99f9f472858849f73d11120d76ea8707115415f8e5ebebf
MD5 8babade0ef37e70426c81607283d7f74
BLAKE2b-256 163f59b3187aaa6cc0c1e6616e8045b284de2b6a87b027cce2ffcea073adf1d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 bc7aee6f634a6f4a95676fcb5d6559a2c2a390330098dba5e5a5f28a2e4ada30
MD5 141d37d84f297f3e16bb3b574bc12751
BLAKE2b-256 12e76a36a07c59ebefc8777d1ffdaf5ae71b06b21952582e4b07eba88a421c79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fe5b32187cbc0c862ee201ad66c30cf218e5ed468ec8dc1cf49dec66e160cc4d
MD5 9c20611fdbc71b00ba3f8692613591d8
BLAKE2b-256 ffe6e3c5908c03cf00d629eb38393a98fccc38ee0ce8ecce32f69fc7d7b558a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 881b21b5549499972441da4758d662aeea93f1923f953e9cbaff14b8b9565aef
MD5 c06d7a57422bacb5dcb3101a2afe5d08
BLAKE2b-256 47bccd720e078576bdb8255d5032c5d63ee5c0bf4b7173dd955185a1d658c456

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3dc625f4aa79713512d1976fe9f0bc99f706a9dee21dfd1810b4bbbf228d0e8a
MD5 26a48f7277b405b21664ac0b7cd0dcf5
BLAKE2b-256 2b9fb8f9ec8dd1417eb9da784e91e1667d58a2a4a7b7b34cf4af765ef663a7e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 73cf6373c21bc80b2e0dc88444f41ae60b2f070ed02095754eb5a01df12256de
MD5 523e107150f98a6ee374949a3d4cf5b5
BLAKE2b-256 d57acda9b5a23c552037717f2b2a5257e9b2bfe45e687386df9591eff7b46d28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a144d4f717285c6d9234a66778059f33a89096dfb9b39117663fd8413d582dcc
MD5 261f85a59a77a33e51c942b92275d011
BLAKE2b-256 f4f3aa5976e8352b7695ff808599794b1fba2a9ae2ee954a3426855935799488

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dc46a01bf8d62f227d5ecee74178ffc448ff4e5197c756331f71efcc66dc980f
MD5 e43fcb2ff32b767f2b95a5ddb79ab737
BLAKE2b-256 b3d34ae42d33f5e3f50dd467761304be2fa0a9417fbf09735bc2cce003480f2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bdc25f3681f7b78572699569514036afe3c243bc3059d3942624e936ec93450e
MD5 664954d2fd3e63f992397beb9589c720
BLAKE2b-256 ca223602b895ee2cd29d11a2b349372446ae9727c32e78a94b3d588a40fdf187

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e799c050df38a639db758c617ec771fd8fb7a5f8eaaa4b27b101f266b216a246
MD5 055be3504cc0de5671fef982dd48f40a
BLAKE2b-256 242f3cfa7244ae292dd850989f328722d2aef313f74ffc471184dc509e1e4e5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4c5b0a576fb381edd6d27f0a85915c6daf2f8138dc5c267a57c08a62900758c7
MD5 ef89c5d768a223ddf25d9c4878c0aff9
BLAKE2b-256 3f8d71db63483d518cbbf290261a1fc2839d17ff89fce7089e08cad07ccfce67

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b0379a2b24882fef529ec3b4987cb5d003b9cda32256024e6fe1586ac45fc640
MD5 332c1c105d82504ae69263ddfb9fdd18
BLAKE2b-256 66ff172ba8f12a42d4b552917aa65d1f2328990d3ccfc01d5b7c943ec084299f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0a39979dcbb70998b0e505fb1556a1d550a0781463ce84ebf915ba293ccb7e22
MD5 090ed2eb305fed572663eb7bbe7d32f1
BLAKE2b-256 0bb0249ee6d2646f1cdadcb813805fe76265745c4010cf20a8eba7b0e639d9b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 73662edf539e72a9440129f231ed3757faab89630d291b784ca99237fb94db2b
MD5 5b87da11fcdc17dfb02778d3d2f5d696
BLAKE2b-256 d87a925ff73756031289468326e355b6fa8316960d0d65f8b5d6b3a3e7866de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f8de619080e944347f5f20de29a975c2d815d9ddd8be9b9b7268e2e3ef68605a
MD5 2f3de48fa393223ed6292b61089f4f4f
BLAKE2b-256 77fb2258da019f4825128445ae79456a5499c032b55849dbd5bed78c95ccf163

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 031c57d67ca86902726e0fae2214ce6770bbe2f710dc33063187a68744a5ecac
MD5 894f1d86e247e8269741964f6591a87e
BLAKE2b-256 ff84daf2a6fb2db40ffda6578a7e8c5a6e9c8affb251a05c233ae37098118788

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6bdfe4b3789761f3bcb4b1ddf33355a71079858958e3a552f16d5af19768fef2
MD5 47e411e8dd7bb93613ce4710de747527
BLAKE2b-256 310dc8f7593e6bc7066289bbc366f2235701dcbebcd1ff0ef8e64f6f239fb47d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b25d91e288e2c4e0662b8038a28c6a07eaac3e196cfc4ff69de4ea3db992a1b
MD5 f41e04c31ccdd304b7c6a3ea5f121080
BLAKE2b-256 e4bb71e35fc3ed05af6834e890edb75968e2802fe98778971ab5cba20a162315

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0405262705a123b7ce9f0b92f123334d67b70fd1f20a9372b907ce1080c7ba02
MD5 0bd550a311c915414d108e5c1d736c7b
BLAKE2b-256 de8ea5b882ec4307010a840fb8b58bd9bf65d1840c92eae7534c7441709bf54b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d53b22f2032c42eaaf025f7c40c2e3b94568ae077a606f006d206a463bc69572
MD5 46fda37e30530dd8d8637b2b802ebc93
BLAKE2b-256 9ba399c48cf7bafc991cc3ee66fd544c0aae8dc907b752f1dad2d79b1b5a471f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0069c9acc3f3981b9ff4cdfaf088e98d83440a4c7ea1bc07460af3d4dc22e72d
MD5 6bf61b46c5f4d11ffb2ced948c0ad921
BLAKE2b-256 3097e8f13b55766234caae05372826e8e4b3b96e7b248be3157f53237682e43c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 efec8db3266b76ef9607c2c4c419bdb06bf335ae433b80816089ea7585816f6a
MD5 09b512277b799cc8b06f5a0e7b1e639f
BLAKE2b-256 d27a996d8bd75f3eda405e3dd219ff5ff0a283cd8e34add39d8ef9157e722867

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e5b2671f05ba48b94cb90ce55d8bdcaaedb8ba00cc5359f6810fc918713983d
MD5 65fc32040cca9d11c1c0046d3a511727
BLAKE2b-256 a3443f0b95fafdaca04a483c4e685fe437c6891001bf3ce8b2fded82b9ea3aa1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2b3d326aaef0c0399d9afffeb6367d5e26ddc24d351dbc9c636840ac355dc5d8
MD5 11af2094e3d2b0a8f6f6eb0e1fdbbdc2
BLAKE2b-256 e592b31726561b5dae176c2d2c2dc43a9c5bfba5d32f96f8b4c0a600dd492447

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f481959862f57f29601ccced557cc2e817bce7533ab8e01a797a48b49c9692b3
MD5 0e7fa7fcfd9bbe5a4ba41051fe87c378
BLAKE2b-256 5b907edc3b2a0d9f0dda8806c04e511a67b0b7a41d2187e2003673a996fb4310

See more details on using hashes here.

File details

Details for the file pydantic_core-2.33.2-cp39-cp39-win32.whl.

File metadata

  • Download URL: pydantic_core-2.33.2-cp39-cp39-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 83aa99b1285bc8f038941ddf598501a86f1536789740991d7d8756e34f1e74d9
MD5 f3ba0290a792120bb3ba5abff55b0463
BLAKE2b-256 bb933cc157026bca8f5006250e74515119fcaa6d6858aceee8f67ab6dc548c16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9fcd347d2cc5c23b06de6d3b7b8275be558a0c90549495c699e379a80bf8379e
MD5 e942b5a22e693c8c6f077a175a8b0c6c
BLAKE2b-256 b68dbbaf4c6721b668d44f01861f297eb01c9b35f612f6b8e14173cb204e6240

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 eb9b459ca4df0e5c87deb59d37377461a538852765293f9e6ee834f0435a93b9
MD5 089f0e123fbe9e7beee785c911b6242e
BLAKE2b-256 2a0731cf8fadffbb03be1cb520850e00a8490c0927ec456e8293cafda0726184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 44857c3227d3fb5e753d5fe4a3420d6376fa594b07b621e220cd93703fe21782
MD5 1354af2372cf5b69c258255a06053a23
BLAKE2b-256 547a7be6a7bd43e0a47c147ba7fbf124fe8aaf1200bc587da925509641113b2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8d55ab81c57b8ff8548c3e4947f119551253f4e3787a7bbc0b6b3ca47498a9d3
MD5 696165dcd7bd05fa31fe12fc578af441
BLAKE2b-256 4d98f43cd89172220ec5aa86654967b22d862146bc4d736b1350b4c41e7c9c03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e6116757f7959a712db11f3e9c0a99ade00a5bbedae83cb801985aa154f071b
MD5 a66ad30cc557e28e2d265a6d8bb32ac0
BLAKE2b-256 5cda44754d1d7ae0f22d6d3ce6c6b1486fc07ac2c524ed8f6eca636e2e1ee49b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 09fb9dd6571aacd023fe6aaca316bd01cf60ab27240d7eb39ebd66a3a15293b4
MD5 f52fe6a9c83634473a0caf83b74c23e7
BLAKE2b-256 011a1a1118f38ab64eac2f6269eb8c120ab915be30e387bb561e3af904b12499

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 53a57d2ed685940a504248187d5685e49eb5eef0f696853647bf37c418c538f7
MD5 22920602b4fcbf2ca422cb2b4c80e620
BLAKE2b-256 ff2e1568934feb43370c1ffb78a77f0baaa5a8b6897513e7a91051af707ffdc4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c54c939ee22dc8e2d545da79fc5381f1c020d6d3141d3bd747eab59164dc89fb
MD5 291a1cfc38dd8f500544d0fbb032c0d9
BLAKE2b-256 239a2e70d6388d7cda488ae38f57bc2f7b03ee442fbcf0d75d848304ac7e405b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c20c462aa4434b33a2661701b861604913f912254e441ab8d78d30485736115a
MD5 9fc90dc2e1c6df131abf408a8d951845
BLAKE2b-256 2bccf77e8e242171d2158309f830f7d5d07e0531b756106f36bc18712dc439df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fa6dfc3e4d1f734a34710f391ae822e0a8eb8559a85c6979e14e65ee6ba2954
MD5 6cf36ce05d253afcd19019b45affe9c8
BLAKE2b-256 491d4ac5ed228078737d457a609013e8f7edc64adc37b91d619ea965758369e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a2b911a5b90e0374d03813674bf0a5fbbb7741570dcd4b4e85a2e48d17def29d
MD5 c51215ed1fe0709e2bf4fab7dccf883b
BLAKE2b-256 53eabbe9095cdd771987d13c82d104a9c8559ae9aec1e29f139e286fd2e9256e

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