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.28.0.tar.gz (414.3 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.28.0-pp310-pypy310_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.28.0-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.28.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.28.0-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.28.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pydantic_core-2.28.0-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.28.0-cp313-cp313-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.28.0-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.28.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.28.0-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.28.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-2.28.0-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.28.0-cp311-cp311-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.28.0-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.28.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-2.28.0-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.28.0-cp310-cp310-musllinux_1_1_armv7l.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-2.28.0-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.28.0-cp39-cp39-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.28.0-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.28.0.tar.gz.

File metadata

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

File hashes

Hashes for pydantic_core-2.28.0.tar.gz
Algorithm Hash digest
SHA256 4aea61530f9fdc8f128a4772c0fdbce9159ecea03201c16fe2e4ba7ebd11b173
MD5 fb079a8784ebebc00259804db8b438d5
BLAKE2b-256 2423efff2ea25900c6c0ca3c39603df1768cca512cc3e5193ca217cba164ed6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a1ee2028350dcc4791dc7bbf24d8ee6744a4857994d8c08e3afcfc1551da1b69
MD5 28ee07d90f6d2d61fd326e1da35b1f98
BLAKE2b-256 20e72fdcf88b153fbf4090223bf3129153559fedafed0966718ead9d188d76c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a65d03c618004d4f08d81864f0d3a10f440d636be29b807c37906cbbcf6842bd
MD5 df8ebfd19ca388ccacc7eda1ae9ba2b8
BLAKE2b-256 61be6694b447f6adced22d8220650618d28f4d99221fdc814cb15c6a564537cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 40b15abc8b736c621a4077c59f12cb508d3152d0692a26bea58235c89a6782ed
MD5 0067f62e0ba49f85343009b3fcc83387
BLAKE2b-256 2c9a1bcb09d0abfd60690134cafe9a3738ee38d44335308e7009d10d665ec833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6209c7e5346d8c64647e7fce4498a7f993df5efbd7324f0292edbdbaf6f11b2f
MD5 ff0ee2427e5c7d61dec70fb1180a6299
BLAKE2b-256 71b7756e4074a7b868824bcb22cd2a469895ab179b9efec5db45697a29748f15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f864fd2bd6f4ca37a74a9e593cc06ce13cdfcafbb27bfe7541fe8c81950a633e
MD5 aee311721e261f954d5b349fd7f0291f
BLAKE2b-256 5329d3ff8a1df8d09c731590f9d2cc5ecf416556b5da69e4ef385812a1496642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7c59645f7abbae3d6095dbb81556291d3e0e3e824dc7ea1112a07404a794d16
MD5 e7d2f988ceb3e7ecd08061b26aebdea9
BLAKE2b-256 1248209f7756fe1683ce271351af2516e5f4d95f6554ae2803359aec60c7b82b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1371d19dbb18f726dd8f2b8bb5168a9fabddd78ec1b72754c6f2b81ded5313a3
MD5 460b8b153dda4713099f7d1fa9d3ac7d
BLAKE2b-256 5708c0e643ec2424bab2ff9ce84f4033a7d3077e7c330dd7bf7b7ecbc6950920

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bae71585320a415750a4d25eb7a2c5ae7e5d3ec0db062028ad2d656076eeacd7
MD5 3e7c2c7011973c638563c07be4721d9e
BLAKE2b-256 92ef027cec93051c2c7441db9bf568db88c1460091cf6b56b9857766f57b84ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fabace67b8883149544020a6049408b19e334c5f464af5b615346982abd220ad
MD5 6b19f42c39e052f89b7c7ba725f14cc5
BLAKE2b-256 b4b16320e4d558f2061b9f907bd5bf62ff778cbc46787631a7e76391529ff78e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 935da83e18f9e7408a3990e2a753357f74c130f8f145c93ca5802831d09649b3
MD5 58ef008eb3b9c2395b5c1ae94e3c8aa7
BLAKE2b-256 9180be354436402e3fab25df310a50edab37489857efe6b5438f38f7f4ede90b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 537e31a2e9a3a8ac0f647ec247adaf46aeb581c422887c3de88cc2a9af1ff55a
MD5 e6a3d0860723daded69019e7f98b635d
BLAKE2b-256 87a01d305dc21987e03455960db06ac9735413847e4f4a2dc2f936663f28de41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp39-pypy39_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d4697a042ecc76b28f6f18e71acf6c39f54b005774448329360fa26197b96a2b
MD5 39f6f1cf95aee169891ab5d03dfafd65
BLAKE2b-256 047ab1ff87360d226febcc7c040743a5357c889879849f90f37d4703c04af8de

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 83a22766885181af321c278eb81a54c0c633504c10580baaa1e53a7c328d78fd
MD5 ce65fd003d08fd0508e8b5c28e94ad54
BLAKE2b-256 60ebb037566bbf7ce73237330d52c77a4faf398c7ecd4d60893a3e7c75cb6a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ebca60c3c750f5d9c3535486b12c02958f51bc0896c06f68da2de2007a11be35
MD5 e09fa34e087e14f54aabd58cefcfb575
BLAKE2b-256 1e7a3c06e22213086140ae19c5d4ed5f8c7fb97a1f9645c906dca32321c35b6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d28d68424be16d97c639789fbe4594cfcb4ae4224e1aae0f91d7763f749d048
MD5 1e37e48e83d4c00a937a666e9e7fb677
BLAKE2b-256 073289adc772b72074fa8c0d8b6f7d472d34e24a213aae5e019e90e159aba938

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e1fa4212fe27b2de658a4955b9b7fd9e73f67c4a32a1ea0054201e11b5cf05e4
MD5 b30d75d8002e976d4d651fc3017d413a
BLAKE2b-256 28563660737de6818c674ff24101a3daafdf32c44d1fcbea56ee2a17362cf86c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 031bff7d702dc800bee2e60e004e6c7e45d44af550d188fa0efdf88e944ac0c9
MD5 0427a1aab126a9ab51b8b2e77aa9bb9f
BLAKE2b-256 c1b96fb3ef66a53552ff0a6a6ff43aa7f14ff12f4a4dad3551f0635fd979ac8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cf784c5d926aec8f68ed44ef6afdf2f1eb9db4f80163b5b5882a730916db10e8
MD5 035987b450d0f6eb6d1af57f2a67073c
BLAKE2b-256 8053ecbc41af2a6745ae28f0ade6ee3e498f0242ecd0de6c2dbf049b849bf2ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 7c60696a424819b800964afde63a51d3d7f1eab949660bfed6f4f4f560e119c9
MD5 69fdec24aee5f2fefd31fa15fb8929cf
BLAKE2b-256 a9216c1e0ac8331d95bd2dae92da8a5b196f5110a1a41604c2cb55afce420473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9b86cfcd45d88b723d34d2920bc136cc26ec050273a24fab69876a31573c7de6
MD5 a79ef5464ac3928b5f896a53c04e92c9
BLAKE2b-256 3296819d3705999e41cf77c70f729b3cf056612b1c4265f2d45546e7665e4ce9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 19197465bc206931820b132e99660647ef5316793063b2837fc971934c5587ec
MD5 6520f1ed9062472b8fd4764e29aec867
BLAKE2b-256 f3d93fbcf3a8150b4305407989c1443fcd4d6034420a03541b0843068da73046

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d925a056b850ff36a474c642cdc7fd8480f77be30b49d6dedb342b7c855f6bae
MD5 811b8ab8bfd0475b2eb37b3fb4bc0ef9
BLAKE2b-256 8c6f8494dd72f6d96718b297a22e45e5a1e99c70c4fde64ae6d0bb1b35c8ea83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 44aeccdf8e62b071ae3694f9bc6451cb8d3857b3d092d10faa402ac1498f73e2
MD5 b3b719763f831130c226be86b9796166
BLAKE2b-256 2b37a0e30fe8eaaf58f714d0a1364d972d03ff8425b27cfb6307fa0bf28cf133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 efd093aaa03704ac52805a931720827ed21b55382b380d85379b245aad638c8e
MD5 271fe96b7a59bfde1d97bc07726938bd
BLAKE2b-256 cb23a8a0c5a4cfc4bfd60f06f4f2699b74472c497d1590cb9d825ea350a49c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 afe6bbdec0d997f2fd61ace5db1484aae40410df0102cd36fa4eede7a592f8f6
MD5 37a8df7183d153741e262ed8dc8a20aa
BLAKE2b-256 af2b60129f17d71b248ac61df1b2cbde93ede678e4834e660ed20465f19cc2e0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 146f9d4fa7be4d8e61e0bd8216165c88d599b349ef5fdacf709e0c95e6e90836
MD5 1879f5d31d08083bd2e44d5ef760f232
BLAKE2b-256 43c03225b271d7ad30dc2e238765890cf690922fb8a3f3dcbbce1e0c3a052d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 28cfde9285867d593893168157dbe3e41a29a5e19104e62c5170922986131f6c
MD5 adcfb3fc8ea4a369e294e6fa91cf7ef6
BLAKE2b-256 4c3080726e083e8971d3cc2cfa1bed0089a687e3bacddcc1376f0ff46f555013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 853cfdb508521d165d257ea8599cb97b2fd0e002077cbc602fe7fe1013fe474f
MD5 57658b94eb1b486b3462e58b5426d5dd
BLAKE2b-256 098f8195f479f00f64d7f754221f4dc902be3ac5fe0da207897f260cc1716314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd17656fe8380503e8bd7ca52c046bc880777baeecf39b4fb6da3d67a723c001
MD5 4bdd2e01b6e758a98d9bf4db594a8cf3
BLAKE2b-256 6c0e76155117c0a93345b3dd53b7f91fa5c07b0dfdfc8623e2337025074336eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a1a56e1546770a5888c92986166f341f271afa8f75d84eb033c7e2fe14527721
MD5 3d425d06f577db60455ccdc5b5230978
BLAKE2b-256 b9466adb00dddd64846e3dd682d507ff885914541672d0e7fb4176266e1294b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2030511a3f4cf9579c8c64ac9ad6884ff8183e307e01a13263c6eee38613e5c5
MD5 633e4f06ff757f00596d4fda88ef5a47
BLAKE2b-256 ddf9bad9edb48c81356db1a4f345ba9dbfce4588a8ddbcb7a40688e2deb4823c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 52ced3f0e3bf82a16ebaccf0c5e344e883b18ae0cabec50b8c7536b78a9e1985
MD5 6b7dc2bfe5a9f95175cd3d22e604adc4
BLAKE2b-256 27acad0db96ea692c41f79cc88ee1a789758f59145c1b3b62f1f459de9b58c93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ba839090a6d51a4e23a63d89adc34184a0678b99ed70d88ad771c0b4788fef7c
MD5 aee50a12eef8e4ef6236a1d93b771a41
BLAKE2b-256 c860b011ae498c68440aa51cc0c1b2e48b55c16c7c065c381c4ba21f44c734ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d7157fe9c6a61f583eb34702e4ced5c88f8909ae8d9da04a6ed20c42c38fe93b
MD5 0a3866c10bcc55706347495f8f21b448
BLAKE2b-256 62a3160b9e8dc1560e831b17af3a5774212afa8e6abb9a3e54ed641a69994eb3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 778050dcaddc94a27e9494076a52dec9906c00f983a9f31749ebd23a7802b12e
MD5 6c977876656092b5cf9565e59ebec1bb
BLAKE2b-256 83d49087a5b75ce47659d47c139235e993b6560d5b98d65faf36b9bff568c360

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 24954bfa4884983b8186fcf0277758abc1db458b589fc527244b7935efaa149a
MD5 ea31b5e98d4e4a4f9f11f776bac36d43
BLAKE2b-256 ee50f091210616d3253eefa7754284a51baf7357f9573a7306cfeebc335004a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 70ae7812009086b951854198ddd5f051af63a7ac2df62aa74b09c2078ee74617
MD5 20cbbfd93153564790a89b3a496cf77f
BLAKE2b-256 ccc10716633ddd23f57b5b09d64bbdbefb91e08b67060ccd6b932e0738e04a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bb97942c9f74e2b49a8d3d37e4f8d9a88418d738bb0adeb5b4ff565736156bfe
MD5 a358c4eb3b9e8114798d25658fd0eba9
BLAKE2b-256 fe01b9512590c73ce2403a531a0894698f8d9f48e523ac7fb7a6db6ec61f7ed9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8406884e7ab057f0f2075f42fdd5083cecc1fe160b6377d128f47efc606ef708
MD5 5e4df1f4dba824917da6eb497dc6bf16
BLAKE2b-256 e33fd07209148ea27bd6128f04f86018e5c01916dc5c0f695d5a540e5a13f6b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ea2291429639edf31dd569226ce74733228ae507334c1065650f67785f0351f0
MD5 188f23c706f44af48dc6ac6975c4373a
BLAKE2b-256 c6ec085686b45f1575641bbf06df00b29ea5063b8cce4a9b1b05a2147956b9e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6beb7a89fa2a895f5e2d4c961585a5fee8fca8d48630d1c696e1653facfe053f
MD5 4bec71a691596b30b23441df9373e2ac
BLAKE2b-256 1ed90e3ed173f396b46d30599dc134b206b3044f52f9b116d1165aa97faba73e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7f4af4a355d8833e2e40ced000b1532173d7568325372bd0fa120f830d4d5c56
MD5 cbfe4a70bfb98c706568e4fc88c40dc5
BLAKE2b-256 24f3d74e3ced8c5694b6abbe383dd0db84137ceb4aab6051ced65aeb06f53ff6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ba5caeeea45dfc0ae3b66f84268419dfe90a201e0ce5179662f4b8b019e82e7
MD5 11f9aecefbba584706fb9992a5629da1
BLAKE2b-256 36a83302977e0d604ff89ad774ec437d125cd3456408813d4dbffd414eb6fc55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 38d3ac50fa89e68ebacc80b9873c6ff2267dd14b4ee62d5aecc9685eb785148f
MD5 732052ea23a39b5406666fc13c34baa9
BLAKE2b-256 20a0fb7cf7317ef8884df60267f3209aa3beb976b62b83bccf8393ab7b02b3b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0edfd71fa3eb872395c8b6d366fc9047c12b82252a0512e9173d7be53489649
MD5 bbc1967aadc0c9df9ca55b30fa5725af
BLAKE2b-256 03eb772772ec9e485e3bf8aa815ba28b209ee3efdfc930023468b9b361adbcd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8357aa0ab28f6ce186592af4e3c5db5b40591d64241cad8a8ece2abf5da1fbd7
MD5 f5f48eefcace44ec6011cbb2e93dd7c5
BLAKE2b-256 48ffaf9edb525c757afbc36eabae0377a4381c4d2b095a11107943491eeb0391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 86bfadd94a9ccbf2200bda425a72209ee59302b65766052d7d873a506bc86734
MD5 bc9a7ad2e4169242bfd81774b50b939d
BLAKE2b-256 a1fce20cb7ae552eed247e46f8fb198ff92e223ee7de7f9c0037aa49d7971a18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4fed02ea123f2bb46a0ea6cddd0d00e078c1c678066ef3753129bcc8e5571509
MD5 fd4e65b2378fae9f3d86581e34b30dab
BLAKE2b-256 6bde2118ce2f5b086a97ee53c3e0f1a5ddc0f7ff7486d14feac39f9183dd1c5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b76cdae2b670c0af3272b4865776696ed18798091d0d4432bde82e980f925dde
MD5 541988ae885292e237e04342025964b0
BLAKE2b-256 d0873ccff12b1a5bf8712c56a9051e8459fe81050f4c3daaccb0422c8c69335b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 de9ea0fc18edd2509ecbf25e547683fc4fa1b42ca444b95a604e6bb3059dbffd
MD5 0ad3baff258cf1bffdec96fe00a30483
BLAKE2b-256 513e86ce74902f3c2e6060b8a575c580bf109c897e75eb5678ded8e19dcb5f99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f717b1e0a45cc6b9a309758b6e3f6dfc08ff0134dd73e9aaa7a26ba99246fe30
MD5 e1f141271b9952c789847b2384daacf7
BLAKE2b-256 c2b76743dd687dcb1d232965b5f0d85d88e671b97696361f157a18ca9a9615d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 61411c0d95d2cdb2e27e37fdf3a9138440467e2c192ce383dbedc829f1a8176f
MD5 f27882d5d2b5f7bc98ac8f621438cb45
BLAKE2b-256 5cb4329688085b0df12c1fe9b3e0c71fa8443dd7f614242997eef44b9fe270ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68391f198f0e2577bfdb50d5c8bd77dac66f387c60dd2fb04fc924758a98c8eb
MD5 6725531cd3e52bf10f58c36d4fd34357
BLAKE2b-256 b673909ae97e426b52f5756ed1519a1a8176e70c14eb34a0c9cd63116b549f90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 259bbb96aebd25e3dc2dfee2f2677cf7dc553aaa34871a318096381c13845db5
MD5 130ba6e1f2d601c6da6bc1e9a81a798f
BLAKE2b-256 d48bb926a0b63be3559d99ae882bc4ce1e12cc7c50674c783c37c31d8e7e6438

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d2fc057f1c9c20a10a8417cbf1237001c4dae76394456fbd39dac308d736da3c
MD5 fbf3e78bd7f791cbb6c211cd40c8b502
BLAKE2b-256 ce72429203b672249e04545552ac8b2f1c8ab84821c78e78a7ff481b09b89ef8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1f9bedb902554e59a5d01c10869519c60484eba45f3722fdf159eba9e3d2d302
MD5 c69fa6b5c1606270a20261ef8778f6d7
BLAKE2b-256 33b6a5d861d297e5699ba9fd89d0a9ffe21ca57b3a04e7811fa1f4a143a558c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dea4c0e1f78e9b211abf1e9a2d1fb7625f398e3ac90ac9217211edbf15bd5e21
MD5 31edb39a41bd417780379b17acd7d986
BLAKE2b-256 1fa1398c2092351777a5b1662579dae8f669b84d9bb0f91a6714b10827da8fe9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd7ae15ac4457b99dd323276df6db88daf0f0e4e6f5c7f7c994124916d67a118
MD5 89475df1934bb2d15e85caa9a6db57f0
BLAKE2b-256 6b5d10d10c099cd98e3647ff6d61ddc9be5a2eb24993c0c8475cbf6d4605b669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6e09f7cee09335930200761244cd452a7142e75a57aa1f45260f55a50dca3a3a
MD5 5cefcd8086bb8f45e98f06c0ccd02b19
BLAKE2b-256 8dedf18dfdb84a50c3b66d5fc2aa5fbb6725bc0f427eea0401148cdc28077c27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c26ecbe98b482e8e4a26a15ae0f39e8495f8a16c9577d2b1b3e046328c8f2377
MD5 050e50192ab5c9a146abd87a406b0d5d
BLAKE2b-256 fe2ae2ea9a74a0ae85a93486aef9cf011dc4172b5b41ff1d4dbe995feb2574e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ded3dc293289001dc53d50c0973253c525f4ee088771d6e1766471999d92ab74
MD5 4c0ed08421044d09d894c4163dca1706
BLAKE2b-256 c3af1e906ff0ceee9abfabcaaacc6a0703a0d030f5d45fffc66ec3ca3919d432

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d4f2cc331a103be1629995b1309b6f76bec69758fc827b5fb4fc3d2337a11abc
MD5 c04c42919ff387aea75ee3a57fa9ca7c
BLAKE2b-256 9838bbf0481d22480e2620a7f1c5c733274429ba06d76b15dbe03f1756bc25b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3fc18a6045aaede85ee6cb015e8300ffa8f54dee07055b5e09d206b1d761cade
MD5 deee6f526635bd695bb5676f4c3313d4
BLAKE2b-256 2805ab9ea0521060dcfffb25ee3d233bc8cc688273223c5a029b8bf3b425b1a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 8dcd6898bb5163b8855c80ac5b777470d342ec3ee858e0b1f6ac42ee069c7840
MD5 3077b798333d86fe62bd3c153a8fce40
BLAKE2b-256 9aab3ad38f95db7cecc56a9ddd6447f797eed5a5ac9b0a181f1db5c46dc87c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c29130d0a9363d63235473af5221f5c5f4a0afaf1a461bd49a536c89bbb30fe4
MD5 541e7f8a26789fe4ad1d95994372a0c4
BLAKE2b-256 e56ce4c7b3657ceb40917e64432cf2b58fc210268a09f318a67a2bbb8c7b09fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 403bdb71d9a7eadae7e41a91d6530b4cb239cf2509920d68444504d5e3454f4e
MD5 1ef44aae06dd0c03f0370c7458ae3f3b
BLAKE2b-256 4e6b8a795b945f4093f207f54093a1e3b84475d0a6d1b033b44e32473f92822a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c45d9514cd94fb932a155e9d1b18e9c31d217f1c1e61f8d555721b7cb824e6e4
MD5 039d14464392b49e4a065e063147dbd4
BLAKE2b-256 9a47fcebc748d38a7ee8f17ac529f05bf2ff7c2ea8b208f24705192118e88e20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 45bb3d2dc5b5c8d98ac6d830903edd5b8f370e61f2a261b8bf9f1d7c6c84bda9
MD5 4e49cde1a1ea9f765aadf6dca91eade3
BLAKE2b-256 80dff053fdc0720445dac9716147289976c8296538965722d19721520e50d1d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a10bcadeba3dd965a63346c44aa48aee60becb097f918d24cc6c036e3f0355bf
MD5 ce258bf711ae0ac1bbd0e0ef75c7c9ab
BLAKE2b-256 caef574bc3e6577d8748e7e2208a12d3ab538bdff9a7f4b38b16fa5ca4174404

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e8703d8b8f73131ca4d51a91fb46d4c96d7a1f6db06f2cb5bf02862d1a1538ca
MD5 9167950e7886b71c7014eb6e3bc44122
BLAKE2b-256 dd85705a79f8177feaa127ddfa0cb961e91e15246fc58d120f938b5765a13bb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4bb8f1e3a081e3d7bf20e568d6480abcc9f23b56b449c8591e11a9a0e2a1a393
MD5 a90d83abf1960a93eb7dbb55c6914a83
BLAKE2b-256 34cc3073218b97318f7428ff1a0974dcc69fd79013c4a0b25ded734002bbbf34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2db4fa3fad2b3a38ac1794b44164e71c87872e2a59e1686e06fa6bb2a1199b0
MD5 2ba03c97bb3f92468ebae05c91616bbd
BLAKE2b-256 1f44c0904559b692a635f5d9f3adbd0cd0d9507be1336797ab40c8ff94eb7a7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a29fb0be2b28b6c99e1c48b52947ed9f6a5d74c80fe739c95f0156f77fde55ec
MD5 80da1fe622af027b8ceb808204e9fd24
BLAKE2b-256 65d97b6c58e106b87ae1abe3b95268ad7192ad4ac142f59260c26123c0b61375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 65a2f60d6f70613e9bb2611084ac26149fd4cd308f15fa70f5feb4e26ba96910
MD5 2e5062465d4540b12d0727cc6ca7884d
BLAKE2b-256 a808f703d8817500b3d748005fe1c80b77d63e0e29215496543f7643d7b1ef70

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.28.0-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.1

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9a640a4d8b7bbe13dd693c7905865d50c67b6293e049a86e2c412da872a09c14
MD5 917d4111d7f3b57a1772d896a3c4b2b0
BLAKE2b-256 4d70ee2e847e91fc4952f294d1ae48079b0773b44e9aac4b1b04b9f70cceb323

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 484c5ff5b076659e40e3bc3bb369459b0a060a713b5c51fa0cf3a8530a1b08c9
MD5 0cd842c4cbb750b9f45bf08ce4ff162d
BLAKE2b-256 a26193b75ca50e6e7b4b7d77aa7bb3adbe4910e46d304f76a494da5baadc29ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 6480d76f7132a9ff62d70c4b622d26b4463f70dd1b78e6df24be56096065f916
MD5 6999e8202adf5a7bcdbfbf067fbd8676
BLAKE2b-256 8462c83a9abee8476d10f3611f967e917df43550dc9fff59164ca32bae29140f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cb0e654bc9f57691e2afa01483dcb7b7ee72dd0ddd2cfb3e4ca33706460fa700
MD5 4801f5b2aab0394fe51cfb21271d68d4
BLAKE2b-256 d33ea78624760ba14cb3708397a33c7ebf75600106efd48cf10a1ccfe768e2a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 428fff1f992b48385dea80725cef18238d24f6edda05b8724c9b389afa104726
MD5 e10a9819149a67588faede5ccd57cbd9
BLAKE2b-256 94403558fe6550390f6ad6c45369c3703c3e87415695b2a7cb152718a790804d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9698760ac1c090a9979933742e82f85de3fc44cd216ac1aa87007a0119f8eed
MD5 98a95202d46b60e6dd491ae55f6e459e
BLAKE2b-256 32ab16be14c6c480e8e3822da569ffa3556a477361c25f3f400f13a031d661f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 591cfcf694ac5d7a67293e34a256ff16370ea9bba88efd375f21e7f8787831e6
MD5 29e584e527e2f0c8f88be7b4f372e1df
BLAKE2b-256 0b7e93f99e90cd330120937584e71a4653f432a34c488d936175cd6f2639e5ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8199860744f2a73687103ebc920d9a976a19bee4c2e0318e3d9d1b0acb242f29
MD5 d0a7ce3bd2e23181d49d539eca6ceb52
BLAKE2b-256 a47ee12a11c854ba3491fe88d41047c6963ec7152dbc619321243bf8b06aff8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 320495434279d4bccd4f700524a4637f0253965517717eebf9ac5ff02551d363
MD5 9dee67591de964785b57857ec66d770a
BLAKE2b-256 3d4e472bdaa32c9fe09c30a1b998dea450756d38efa12362e9af25e51b201170

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 93d23e7685017a27a6a92b115624f48d8ae209a3d9dc14e06710fb172e61d1bf
MD5 a45bd5746adcfcc5204f2ee015d7b20f
BLAKE2b-256 15b1d35a9753cdcb7d3c81f98e3d4461a1b9624d05ae50372edd0e6cd8ee6a2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 17a3c1830acc8151ef2d2dd2d0686afe8798e0831547f7e5784f896b91af27ad
MD5 8a6ba1e0b6ed65c17d84fc67a6123fb6
BLAKE2b-256 5ab7603a9345fe098bc232998aecc46c3e937e394b75b201013ad5d4eec3713c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.28.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c7dfc2963a57dcb9bae3cf881792903c0d4edfc36fa0bd044988a759440c2bd3
MD5 b762ca52ed533072463ea906b41a3677
BLAKE2b-256 19a2706cc8e99bce850cc93ba5a043d79c87631ad2638d8dc411d11309096eb9

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