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.1.tar.gz (434.4 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.1-pp311-pypy311_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.33.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.33.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.33.1-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.1-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.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-2.33.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.33.1-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.1-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.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-2.33.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.33.1-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.1-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.1-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.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.13tWindows x86-64

pydantic_core-2.33.1-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.1-cp313-cp313t-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pydantic_core-2.33.1-cp313-cp313-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.33.1-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.1-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.1-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.1-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.1-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.1-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.1-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.33.1-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.1-cp312-cp312-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_core-2.33.1-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.1-cp312-cp312-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.33.1-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.1-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.1-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.1-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.1-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.1-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.1-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.33.1-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.1-cp311-cp311-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-2.33.1-cp311-cp311-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-2.33.1-cp311-cp311-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.33.1-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.1-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.1-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.1-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.1-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.1-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.1-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.33.1-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.1-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-2.33.1-cp310-cp310-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-2.33.1-cp310-cp310-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.33.1-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.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.33.1-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.1-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.1-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.1-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.1-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.33.1-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.1-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-2.33.1-cp39-cp39-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-2.33.1-cp39-cp39-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.33.1-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.1-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.1-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.1-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.1-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.33.1-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.1.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-2.33.1.tar.gz
Algorithm Hash digest
SHA256 bcc9c6fdb0ced789245b02b7d6603e17d1563064ddcfc36f046b61c0c05dd9df
MD5 40831b5b4fbb1f17557e579dd2bcd503
BLAKE2b-256 1719ed6a078a5287aea7922de6841ef4c06157931622c89c2a47940837b5eecd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f995719707e0e29f0f41a8aa3bcea6e761a36c9136104d3189eafb83f5cec5e5
MD5 04b1c9e3101b3168452a050e15bc5622
BLAKE2b-256 126f5596dc418f2e292ffc661d21931ab34591952e2843e7168ea5a52591f6ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1b30d92c9412beb5ac6b10a3eb7ef92ccb14e3f2a8d7732e2d739f58b3aa7544
MD5 c0f155d8908e1cde7f043d54629cd136
BLAKE2b-256 8432e4325a6676b0bed32d5b084566ec86ed7fd1e9bcbfc49c578b1755bde920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 52928d8c1b6bda03cc6d811e8923dffc87a2d3c8b3bfd2ce16471c7147a24850
MD5 7bffe299ce938667d2bd9d73010443c8
BLAKE2b-256 0bcdc59707e35a47ba4cbbf153c3f7c56420c58653b5801b055dc52cccc8e2dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3a64e81e8cba118e108d7126362ea30e021291b7805d47e4896e52c791be2761
MD5 529f9a6879a9e5800a0ef10e699cc5a2
BLAKE2b-256 3b6772abb8c73e0837716afbb58a59cc9e3ae43d1aa8677f3b4bc72c16142716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bae370459da6a5466978c0eacf90690cb57ec9d533f8e63e564ef3822bfa04fe
MD5 5d032607d05ebbe4803fae69811171b9
BLAKE2b-256 d1a83194ccfe461bb08da19377ebec8cb4f13c9bd82e13baebc53c5c7c39a029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08530b8ac922003033f399128505f513e30ca770527cc8bbacf75a84fcc2c74b
MD5 1d79144268169bbe924e25686e7bb675
BLAKE2b-256 e1d79ddb7575d4321e40d0363903c2576c8c0c3280ebea137777e5ab58d723e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e3de2777e3b9f4d603112f78006f4ae0acb936e95f06da6cb1a45fbad6bdb4b5
MD5 d26cf2878bac1a7ccb6a93bf7d95de6b
BLAKE2b-256 42c784cb569555d7179ca0b3f838cef08f66f7089b54432f5b8599aac6e9533e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f59295ecc75a1788af8ba92f2e8c6eeaa5a94c22fc4d151e8d9638814f85c8fc
MD5 7c187a4cb8f9ea2930ee338e234bc900
BLAKE2b-256 73b49cd7b081fb0b1b4f8150507cd59d27b275c3e22ad60b35cb19ea0977d9b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3a371dc00282c4b84246509a5ddc808e61b9864aa1eae9ecc92bb1268b82db4a
MD5 14412cecd29b9ac6e93af69a7f789009
BLAKE2b-256 0b761794e440c1801ed35415238d2c728f26cd12695df9057154ad768b7b991c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5ccd429694cf26af7997595d627dd2637e7932214486f55b8a357edaac9dae8c
MD5 2e7dbc26e4f1be75823b20b5892073f3
BLAKE2b-256 13e0bafa46476d328e4553b85ab9b2f7409e7aaef0ce4c937c894821c542d347

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 048c01eee07d37cbd066fc512b9d8b5ea88ceeb4e629ab94b3e56965ad655add
MD5 7c223c37572cf589264ae91badd539be
BLAKE2b-256 17d7c37d208d5738f7b9ad8f22ae8a727d88ebf9c16c04ed2475122cc3f7224a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 2f9284e11c751b003fd4215ad92d325d92c9cb19ee6729ebd87e3250072cdcde
MD5 2101f5c462d50a0590d5366d3bf54a7f
BLAKE2b-256 1f856d8b2646d99c062d7da2d0ab2faeb0d6ca9cca4c02da6076376042a20da3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ab2d36e20fbfcce8f02d73c33a8a7362980cff717926bbae030b93ae46b56c7
MD5 f1519dd77c0844f480289926244c267e
BLAKE2b-256 b333039287d410230ee125daee57373ac01940d3030d18dba1c29cd3089dc3ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9d3da303ab5f378a268fa7d45f37d7d85c3ec19769f28d2cc0c61826a8de21fe
MD5 9f8880bf336abfad6ced414c57b2c3b1
BLAKE2b-256 f049bf0783279ce674eb9903fb9ae43f6c614cb2f1c4951370258823f795368b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1a28239037b3d6f16916a4c831a5a0eadf856bdd6d2e92c10a0da3a59eadcf3e
MD5 85fe4f1a1173113b37f41b9671cd1970
BLAKE2b-256 f73f53cc9c45d9229da427909c751f8ed2bf422414f7664ea4dde2d004f596ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 25626fb37b3c543818c14821afe0fd3830bc327a43953bc88db924b68c5723f1
MD5 511eb87cecaa091632ca2b207599f64c
BLAKE2b-256 9c5b0d998367687f986c7d8484a2c476d30f07bf5b8b1477649a6092bd4c540e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 049e0de24cf23766f12cc5cc71d8abc07d4a9deb9061b334b62093dedc7cb068
MD5 566448dd9631be46b4564ceb57b6ae40
BLAKE2b-256 8ad64f58d32066a9e26530daaf9adc6664b01875ae0691570094968aaa7b8fcc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5c834f54f8f4640fd7e4b193f80eb25a0602bba9e19b3cd2fc7ffe8199f5ae02
MD5 d1e4a743a5f6f874e62d416d7fbb83e9
BLAKE2b-256 9cc78b311d5adb0fe00a93ee9b4e92a02b0ec08510e9838885ef781ccbb20604

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 de9e06abe3cc5ec6a2d5f75bc99b0bdca4f5c719a5b34026f8c57efbdecd2ee3
MD5 cd41703cfcb0abfe08ed5ff88ce0bb8a
BLAKE2b-256 25f21647933efaaad61846109a27619f3704929e758a09e6431b8f932a053d40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0483847fa9ad5e3412265c1bd72aad35235512d9ce9d27d81a56d935ef489672
MD5 fbcb40a6b7cb1c701fe82c841fb53e9d
BLAKE2b-256 d35f3e4feb042998d7886a9b523b372d83955cbc192a07013dcd24276db078ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 8ab581d3530611897d863d1a649fb0644b860286b4718db919bfd51ece41f10b
MD5 21775a76bffc0b045bbbaa590cb51ebd
BLAKE2b-256 bd0c3391bd5d6ff62ea998db94732528d9bc32c560b0ed861c39119759461946

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5277aec8d879f8d05168fdd17ae811dd313b8ff894aeeaf7cd34ad28b4d77e33
MD5 3cc4a6517cdb0ff1032c04a5993cb53a
BLAKE2b-256 8e5512721c4a8d7951584ad3d9848b44442559cf1876e0bb424148d1060636b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7965c13b3967909a09ecc91f21d09cfc4576bf78140b988904e94f130f188396
MD5 1ce0305b8deefb5dd450a558860b7ac9
BLAKE2b-256 9adb30ca6aefda211fb01ef185ca73cb7a0c6e7fe952c524025c8782b5acd771

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df6a94bf9452c6da9b5d76ed229a5683d0306ccb91cca8e1eea883189780d568
MD5 a0d52b46ff574e7350df9f228b759be4
BLAKE2b-256 6e8abc65dbf7e501e88367cdab06a2c1340457c785f0c72288cae737fd80c0fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f1fdb790440a34f6ecf7679e1863b825cb5ffde858a9197f851168ed08371e5
MD5 f9832974e16906e298053c9f9771c9e5
BLAKE2b-256 f289a12b55286e30c9f476eab7c53c9249ec76faf70430596496ab0309f28629

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad05b683963f69a1d5d2c2bdab1274a31221ca737dbbceaa32bcb67359453cdd
MD5 b5ed6b1b7892ef03ac65d6cc84205727
BLAKE2b-256 08ad328081b1c82543ae49d0650048305058583c51f1a9a56a0d6e87bb3a2443

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7edbc454a29fc6aeae1e1eecba4f07b63b8d76e76a748532233c4c167b4cb9ea
MD5 fb78e621d2c094db913f6b24b21a0c3e
BLAKE2b-256 2da8c2c8f29bd18f7ef52de32a6deb9e3ee87ba18b7b2122636aa9f4438cf627

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 338ea9b73e6e109f15ab439e62cb3b78aa752c7fd9536794112e14bee02c8d18
MD5 45a9c24c502d7ec7881c799ca80adddc
BLAKE2b-256 71aefe31e7f4a62431222d8f65a3bd02e3fa7e6026d154a00818e6d30520ea77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7aeb055a42d734c0255c9e489ac67e75397d59c6fbe60d155851e9782f276a9c
MD5 a9617cc012967debb01296180ac7bcfd
BLAKE2b-256 5f954fbc2ecdeb5c1c53f1175a32d870250194eb2fdf6291b795ab08c8646d5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 401d7b76e1000d0dd5538e6381d28febdcacb097c8d340dde7d7fc6e13e9f95d
MD5 98498ecf83b478a874643c9632e89951
BLAKE2b-256 effd24ea4302d7a527d672c5be06e17df16aabfb4e9fdc6e0b345c21580f3d2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 aa687a23d4b7871a00e03ca96a09cad0f28f443690d300500603bd0adba4b523
MD5 555c21f9d7352fc413a876a890cfca51
BLAKE2b-256 20d0e8d567a7cff7b04e017ae164d98011f1e1894269fe8e90ea187a3cbfb562

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ede9b407e39949d2afc46385ce6bd6e11588660c26f80576c11c958e6647bc40
MD5 8397295fc7d84fb1b889cb8d96d66ee8
BLAKE2b-256 8af4e457a7849beeed1e5defbcf5051c6f7b3c91a0624dd31543a64fc9adcf52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 ee12a7be1742f81b8a65b36c6921022301d466b82d80315d215c4c691724986f
MD5 b0cdd535269c0c544347c8464a878b8f
BLAKE2b-256 aa9907e2237b8a66438d9b26482332cda99a9acccb58d284af7bc7c946a42fd3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ec79de2a8680b1a67a07490bddf9636d5c2fab609ba8c57597e855fa5fa4dacd
MD5 8a4b285945be72227e21bc1d43c441a0
BLAKE2b-256 5c9dfbe8fe9d1aa4dac88723f10a921bc7418bd3378a567cb5e21193a3c48b43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 495bc156026efafd9ef2d82372bd38afce78ddd82bf28ef5276c469e57c0c83e
MD5 f7883ac8c18e170ac177abcca1a723c1
BLAKE2b-256 42e3fb6b2a732b82d1666fa6bf53e3627867ea3131c5f39f98ce92141e3e3dc1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 549150be302428b56fdad0c23c2741dcdb5572413776826c965619a25d9c6bde
MD5 f80a89362f6f3dc79493d08ee25f2031
BLAKE2b-256 1f469eb764814f508f0edfb291a0f75d10854d78113fa13900ce13729aaec3ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 948b73114f47fd7016088e5186d13faf5e1b2fe83f5e320e371f035557fd264d
MD5 8fef3d2e21c3b8afffde1cd62fac9d19
BLAKE2b-256 f4566e2ef42f363a0eec0fd92f74a91e0ac48cd2e49b695aac1509ad81eee86a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f593494876eae852dc98c43c6f260f45abdbfeec9e4324e31a481d948214764
MD5 86daa19357df7263b695d53698c10d72
BLAKE2b-256 dc3f52d85781406886c6870ac995ec0ba7ccc028b530b0798c9080531b409fdb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6dd8ecfde08d8bfadaea669e83c63939af76f4cf5538a72597016edfa3fad516
MD5 d265dd6c706427a13993950ce2c01675
BLAKE2b-256 9072ab58e43ce7e900b88cb571ed057b2fcd0e95b708a2e0bed475b10130393e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1dfae24cf9921875ca0ca6a8ecb4bb2f13c855794ed0d468d6abbec6e6dcd44a
MD5 915a39894ae41bbbfacf32758ed57dfd
BLAKE2b-256 b7d896bc536e975b69e3a924b507d2a19aedbf50b24e08c80fb00e35f9baaed8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4b315e596282bbb5822d0c7ee9d255595bd7506d1cb20c2911a4da0b970187d3
MD5 d11814536519ec2df62a022136fed870
BLAKE2b-256 fa96e275f15ff3d34bb04b0125d9bc8848bf69f25d784d92a63676112451bfb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e11f3864eb516af21b01e25fac915a82e9ddad3bb0fb9e95a246067398b435a4
MD5 61f88ba159ba988c3b8c431f687dca5d
BLAKE2b-256 4cc0604536c4379cc78359f9ee0aa319f4aedf6b652ec2854953f5a14fc38c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 282b3fe1bbbe5ae35224a0dbd05aed9ccabccd241e8e6b60370484234b456266
MD5 4d453fb5ebe54fa8bc041d147f0d7b73
BLAKE2b-256 ab14df54b1a0bc9b6ded9b758b73139d2c11b4e8eb43e8ab9c5847c0a2913ada

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70af6a21237b53d1fe7b9325b20e65cbf2f0a848cf77bed492b029139701e66a
MD5 686490185c4142e809052e296ee258b3
BLAKE2b-256 7a24eed3466a4308d79155f1cdd5c7432c80ddcc4530ba8623b79d5ced021641

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 8d13f0276806ee722e70a1c93da19748594f19ac4299c7e41237fc791d1861ea
MD5 040cbfd16434b5ba2d32bbca7d6075cc
BLAKE2b-256 a1ebf54809b51c7e2a1d9f439f158b8dd94359321abcc98767e16fc48ae5a77e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1c607801d85e2e123357b3893f82c97a42856192997b95b4d8325deb1cd0c5f4
MD5 2acd508803a98ae76a0ef21c5b9535b4
BLAKE2b-256 022858442ad1c22b5b6742b992ba9518420235adced665513868f99a1c2638a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e14f369c98a7c15772b9da98987f58e2b509a93235582838bd0d1d8c08b68fda
MD5 b17a691eddd5cc62c8f0b0fa29eb81c5
BLAKE2b-256 d6b2288b3579ffc07e92af66e2f1a11be3b056fe1214aab314748461f21a31c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ec259f62538e8bf364903a7d0d0239447059f9434b284f5536e8402b7dd198db
MD5 6f8fbeecd46a54c00590ac57b17583b4
BLAKE2b-256 84b0e390071eadb44b41f4f54c3cef64d8bf5f9612c92686c9299eaa09e267e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 b1caa0bc2741b043db7823843e1bde8aaa58a55a58fda06083b0569f8b45693a
MD5 46b7ad7645cac81d841e95ff07dd31ba
BLAKE2b-256 b36994a514066bb7d8be499aa764926937409d2389c09be0b5107a970286ef81

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fc6bf8869e193855e8d91d91f6bf59699a5cdfaa47a404e278e776dd7f168b39
MD5 7da64dd3fa7a2181f34b3959412f6b92
BLAKE2b-256 00727d0cf05095c15f7ffe0eb78914b166d591c0eed72f294da68378da205101

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d5e3d15245b08fa4a84cefc6c9222e6f37c98111c8679fbd94aa145f9a0ae23d
MD5 9555141dfc269b7b4b3d45cb767178bf
BLAKE2b-256 6fff4459e4146afd0462fb483bb98aa2436d69c484737feaceba1341615fb0ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cc77ec5b7e2118b152b0d886c7514a4653bcb58c6b1d760134a9fab915f777b3
MD5 4f1c30d57002e5873a939caf21808443
BLAKE2b-256 88fe65a880f81e3f2a974312b61f82a03d85528f89a010ce21ad92f109d94deb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9097b9f17f91eea659b9ec58148c0747ec354a42f7389b9d50701610d86f812e
MD5 0e9bb9f2974f87034deb323cfddf1b69
BLAKE2b-256 a9b6c2c7946ef70576f79a25db59a576bce088bdc5952d1b93c9789b091df716

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b172f7b9d2f3abc0efd12e3386f7e48b576ef309544ac3a63e5e9cdd2e24585d
MD5 56eb83292b0006b67c28063b4f0330ae
BLAKE2b-256 4ed43c59514e0f55a161004792b9ff3039da52448f43f5834f905abef9db6e4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 35a5ec3fa8c2fe6c53e1b2ccc2454398f95d5393ab398478f53e1afbbeb4d939
MD5 d8183c978282e444183e5692774f0c62
BLAKE2b-256 9d2b98a37b80b15aac9eb2c6cfc6dbd35e5058a352891c5cce3a8472d77665a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef99779001d7ac2e2461d8ab55d3373fe7315caefdbecd8ced75304ae5a6fc6b
MD5 743ba5779f7a9e563aa11d77a43e52f3
BLAKE2b-256 7c761c42e384e8d78452ededac8b583fe2550c84abfef83a0552e0e7478ccbc3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99b56acd433386c8f20be5c4000786d1e7ca0523c8eefc995d14d79c7a081498
MD5 b27c6db32b3462f669e842f1e6b41513
BLAKE2b-256 1978f381d643b12378fee782a72126ec5d793081ef03791c28a0fd542a5bee64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1293d7febb995e9d3ec3ea09caf1a26214eec45b0f29f6074abb004723fc1de8
MD5 2050b00ddd62a465cadd029dd692f65a
BLAKE2b-256 c8ce3cb22b07c29938f97ff5f5bb27521f95e2ebec399b882392deb68d6c440e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 fc903512177361e868bc1f5b80ac8c8a6e05fcdd574a5fb5ffeac5a9982b9e89
MD5 aaf4e1940e6eca11be7dde453e9b400e
BLAKE2b-256 4baedb1fc237b82e2cacd379f63e3335748ab88b5adde98bf7544a1b1bd10a84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2ea62419ba8c397e7da28a9170a16219d310d2cf4970dbc65c32faf20d828c83
MD5 21529a3fe5fbaccebfded09036d72daf
BLAKE2b-256 33cd7ab70b99e5e21559f5de38a0928ea84e6f23fdef2b0d16a6feaf942b003c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 32cd11c5914d1179df70406427097c7dcde19fddf1418c787540f4b730289896
MD5 d21689593cb4f42f4ef7770f968dc784
BLAKE2b-256 263c48ca982d50e4b0e1d9954919c887bdc1c2b462801bf408613ccc641b3daa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bdc84017d28459c00db6f918a7272a5190bec3090058334e43a76afb279eac7c
MD5 9c2e2221d3ae89df29adaa486cd465af
BLAKE2b-256 d10aedb137176a1f5419b2ddee8bde6a0a548cfa3c74f657f63e56232df8de88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 048831bd363490be79acdd3232f74a0e9951b11b2b4cc058aeb72b22fdc3abe1
MD5 979bb715da01871335d47e562f283284
BLAKE2b-256 5761cc6d1d1c1664b58fdd6ecc64c84366c34ec9b606aeb66cafab6f4088974c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e100c52f7355a48413e2999bfb4e139d2977a904495441b374f3d4fb4a170961
MD5 b38b9bf717eedc7d15b051a344782cfd
BLAKE2b-256 c75712667a1409c04ae7dc95d3b43158948eb0368e9c790be8b095cb60611459

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c964fd24e6166420d18fb53996d8c9fd6eac9bf5ae3ec3d03015be4414ce497f
MD5 a3285ef16d0c4e8d2eb9ab9e00f2cd95
BLAKE2b-256 0b60516484135173aa9e5861d7a0663dce82e4746d2e7f803627d8c25dfa5578

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0fb935c5591573ae3201640579f30128ccc10739b45663f93c06796854405505
MD5 808b390247f1b0e12973eba6dbad9636
BLAKE2b-256 7ba60b3a167a9773c79ba834b959b4e18c3ae9216b8319bd8422792abc8a41b1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1d20eb4861329bb2484c021b9d9a977566ab16d84000a57e28061151c62b349a
MD5 0912a2a06c04ab787f7428a8b8ce136e
BLAKE2b-256 c0ca49958e4df7715c71773e1ea5be1c74544923d10319173264e6db122543f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9fea9c1869bb4742d174a57b4700c6dadea951df8b06de40c2fedb4f02931c2e
MD5 c39e496530d75e560d7d056092b8ac6b
BLAKE2b-256 d5338cb1a62818974045086f55f604044bf35b9342900318f9a2a029a1bec460

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 91815221101ad3c6b507804178a7bb5cb7b2ead9ecd600041669c8d805ebd595
MD5 b76057899328add1934b804e285968ed
BLAKE2b-256 e9159a22fd26ba5ee8c669d4b8c9c244238e940cd5d818649603ca81d1c69861

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 681d65e9011f7392db5aa002b7423cc442d6a673c635668c227c6c8d0e5a4f77
MD5 8b7a5f774b9efc516f6d4f1ca71c689a
BLAKE2b-256 867005b1eb77459ad47de00cf78ee003016da0cedf8b9170260488d7c21e9181

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bfd0adeee563d59c598ceabddf2c92eec77abcb3f4a391b19aa7366170bd9e30
MD5 319e8cb7d72444ea354e9be12ad2bdcc
BLAKE2b-256 a8656ab3a536776cad5343f625245bd38165d6663256ad43f3a200e5936afd6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e966fc3caaf9f1d96b349b0341c70c8d6573bf1bac7261f7b0ba88f96c56c24
MD5 a7e9f587243dd85a489ec13ee9a15df0
BLAKE2b-256 d67fc6298830cb780c46b4f46bb24298d01019ffa4d21769f39b908cd14bbd50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 694ad99a7f6718c1a498dc170ca430687a39894a60327f548e02a9c7ee4b6504
MD5 3f8496077ed1759abd6b2655313295a1
BLAKE2b-256 94c0fcdf739bf60d836a38811476f6ecd50374880b01e3014318b6e809ddfd52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ed3eb16d51257c763539bde21e011092f127a2202692afaeaccb50db55a31383
MD5 144d10b4e05514af8303dc4597230607
BLAKE2b-256 7dba91eea2047e681a6853c81c20aeca9dcdaa5402ccb7404a2097c2adf9d038

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fe44d56aa0b00d66640aa84a3cbe80b7a3ccdc6f0b1ca71090696a6d4777c091
MD5 290774a604a41a2a3feda75955b6daca
BLAKE2b-256 d19c126e4ac1bfad8a95a9837acdd0963695d69264179ba4ede8b8c40d741702

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 902dbc832141aa0ec374f4310f1e4e7febeebc3256f00dc359a9ac3f264a45dc
MD5 82d45074341098aa58f79aee73e9d1d3
BLAKE2b-256 548e2dccd89602b5ec31d1c58138d02340ecb2ebb8c2cac3cc66b65ce3edb6ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f99aeda58dce827f76963ee87a0ebe75e648c72ff9ba1174a253f6744f518f65
MD5 b12057af59cfdc8e11c03d8bdf69bf83
BLAKE2b-256 189c730a09b2694aa89360d20756369822d98dc2f31b717c21df33b64ffd1f50

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a0d5f3acc81452c56895e90643a625302bd6be351e7010664151cc55b7b97f89
MD5 9322c0de587a1e326de1ee700dd29aa4
BLAKE2b-256 f268866ce83a51dd37e7c604ce0050ff6ad26de65a7799df89f4db87dd93d1d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c566dd9c5f63d22226409553531f89de0cac55397f2ab8d97d6f06cfce6d947e
MD5 ebe3341dfe8dab2b743e946085f91c25
BLAKE2b-256 5d14a9c3cee817ef2f8347c5ce0713e91867a0dceceefcb2973942855c917379

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 87d3776f0001b43acebfa86f8c64019c043b55cc5a6a2e313d728b5c95b46969
MD5 e9c8dd6bd3c4715e0171e85adb2e74fd
BLAKE2b-256 9af55c26b265cdcff2661e2520d2d1e9db72d117ea00eb41e00a76efe68cb009

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 398a38d323f37714023be1e0285765f0a27243a8b1506b7b7de87b647b517e48
MD5 105021751c3bd181b967734fb9a5666c
BLAKE2b-256 7f733ac217751decbf8d6cb9443cec9b9eb0130eeada6ae56403e11b486e277e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5183e4f6a2d468787243ebcd70cf4098c247e60d73fb7d68d5bc1e1beaa0c4db
MD5 e57747ae1011ffb241380b96b792ed39
BLAKE2b-256 3708fbd2cd1e9fc735a0df0142fac41c114ad9602d1c004aea340169ae90973b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d3a07fadec2a13274a8d861d3d37c61e97a816beae717efccaa4b36dfcaadcde
MD5 cd802319738c7a9db1508b4754405231
BLAKE2b-256 b6a836771f4404bb3e49bd6d4344da4dede0bf89cc1e01f3b723c47248a3761c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8ffab8b2908d152e74862d276cf5017c81a2f3719f14e8e3e8d6b83fda863927
MD5 7aa7194c4057a86a183a8688f0081379
BLAKE2b-256 8cd1f86cc96d2aa80e3881140d16d12ef2b491223f90b28b9a911346c04ac359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3077cfdb6125cc8dab61b155fdd714663e401f0e6883f9632118ec12cf42df26
MD5 000b9d58b089a57f1ee7afae43f89f1d
BLAKE2b-256 38ea5f572806ab4d4223d11551af814d243b0e3e02cc6913def4d1fe4a5ca41c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5773da0ee2d17136b1f1c6fbde543398d452a6ad2a7b54ea1033e2daa739b8d2
MD5 0af8f58c74953b934ffe8f60803daa16
BLAKE2b-256 5718c2da959fd8d019b70cadafdda2bf845378ada47973e0bad6cc84f56dbe6e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.33.1-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.2

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ab0277cedb698749caada82e5d099dc9fed3f906a30d4c382d1a21725777a1e5
MD5 8daeda214584bda827b29bbd52b10670
BLAKE2b-256 541e51c86688e809d94797fdf0efc41514f001caec982a05f62d90c180a9639d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9f466e8bf0a62dc43e068c12166281c2eca72121dd2adc1040f3aa1e21ef8599
MD5 b4f5afdcc76a54d466e0308c93590387
BLAKE2b-256 c9f9e96e00f92b8f5b3e2cddc80c5ee6cf038f8a0f238c44b67b01759943a7b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c91dbb0ab683fa0cd64a6e81907c8ff41d6497c346890e26b23de7ee55353f96
MD5 7e32d8a0ed83f833b685c3efe2764560
BLAKE2b-256 ac325ff252ed73bacd7677a706ab17723e261a76793f98b305aa20cfc10bbd56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a62c3c3ef6a7e2c45f7853b10b5bc4ddefd6ee3cd31024754a1a5842da7d598d
MD5 f32df6a578f5a0050da45f0836dfdc68
BLAKE2b-256 4ad03531e8783a311802e3db7ee5a1a5ed79e5706e930b1b4e3109ce15eeb681

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 177d50460bc976a0369920b6c744d927b0ecb8606fb56858ff542560251b19e5
MD5 2cd0d5c09d53fdab4d7ffcec6d063218
BLAKE2b-256 05a8fd79111eb5ab9bc4ef98d8fb0b3a2ffdc80107b2c59859a741ab379c96f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d100e3ae783d2167782391e0c1c7a20a31f55f8015f3293647544df3f9c67824
MD5 18f67b3aeb9d90264dceb18bdc134647
BLAKE2b-256 9b38374d254e270d4de0add68a8239f4ed0f444fdd7b766ea69244fb9491dccb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 723c5630c4259400818b4ad096735a829074601805d07f8cafc366d95786d331
MD5 133c1daf3a7e60dd1794472981dd0a5f
BLAKE2b-256 f79b60cb9f4b52158b3adac0066492bbadd0b8473f4f8da5bcc73972655b76ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3f2648b9262607a7fb41d782cc263b48032ff7a03a835581abbf7a3bec62bcf5
MD5 c43631061632a20ad7ceffac20413ad5
BLAKE2b-256 5e87ea553e0d98bce6c4876f8c50f65cb45597eff6e0aaa8b15813e9972bb19d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7fb66263e9ba8fea2aa85e1e5578980d127fb37d7f2e292773e7bc3a38fb0c7b
MD5 063bab7ed19690c52639efe3e2ad00d4
BLAKE2b-256 a1fa32cc152b84a1f420f8a7d80161373e8d87d4ffa077e67d6c8aab3ce1a6ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a3edde68d1a1f9af1273b2fe798997b33f90308fb6d44d8550c89fc6a3647cf6
MD5 23d9ae36c98e2fd631f5c780df3430a0
BLAKE2b-256 35312e06619868eb4c18642c5601db420599c1cf9cf50fe868c9ac09cd298e24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e7aaba1b4b03aaea7bb59e1b5856d734be011d3e6d98f5bcaa98cb30f375f2ad
MD5 fc501454865267e8bba7b1dde7d0d373
BLAKE2b-256 3b00a02531331773b2bf08743d84c6b776bd6a449d23b3ae6b0e3229d568bac4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.33.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5ab77f45d33d264de66e1884fca158bc920cb5e27fd0764a72f72f5756ae8bdb
MD5 a8c07596f2d3a7b28a4295ae1315d27d
BLAKE2b-256 4978b86bad645cc3e8dfa6858c70ec38939bf350e54004837c48de09474b2b9e

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