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

Prerequisites

You'll need:

  1. Rust - Rust stable (or nightly for coverage)
  2. uv - Fast Python package manager (will install Python 3.9+ automatically)
  3. git - For version control
  4. make - For running development commands (or use nmake on Windows)

Quick Start

# Clone the repository (or from your fork)
git clone git@github.com:pydantic/pydantic-core.git
cd pydantic-core

# Install all dependencies using uv, setup pre-commit hooks, and build the development version
make install

Verify your installation by running:

make

This runs a full development cycle: formatting, building, linting, and testing

Development Commands

Run make help to see all available commands, or use these common ones:

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 all          # to run to run build-dev + format + lint + test

Useful Resources

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 🎉

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.41.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.41.2-pp310-pypy310_pp73-win_amd64.whl (2.2 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.41.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.41.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded graalpy312macOS 11.0+ ARM64

pydantic_core-2.41.2-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded graalpy312macOS 10.12+ x86-64

pydantic_core-2.41.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded graalpy311macOS 11.0+ ARM64

pydantic_core-2.41.2-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded graalpy311macOS 10.12+ x86-64

pydantic_core-2.41.2-cp314-cp314t-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows ARM64

pydantic_core-2.41.2-cp314-cp314t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

pydantic_core-2.41.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pydantic_core-2.41.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

pydantic_core-2.41.2-cp314-cp314t-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pydantic_core-2.41.2-cp314-cp314-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows ARM64

pydantic_core-2.41.2-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pydantic_core-2.41.2-cp314-cp314-win32.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86

pydantic_core-2.41.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_core-2.41.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pydantic_core-2.41.2-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_core-2.41.2-cp314-cp314-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pydantic_core-2.41.2-cp313-cp313t-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13tWindows ARM64

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

Uploaded CPython 3.13tWindows x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

pydantic_core-2.41.2-cp313-cp313t-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

pydantic_core-2.41.2-cp313-cp313-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

pydantic_core-2.41.2-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_core-2.41.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_core-2.41.2-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.41.2-cp313-cp313-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_core-2.41.2-cp312-cp312-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.41.2-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_core-2.41.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.41.2-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.41.2-cp312-cp312-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_core-2.41.2-cp311-cp311-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

pydantic_core-2.41.2-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.41.2-cp311-cp311-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

pydantic_core-2.41.2-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.41.2-cp310-cp310-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

pydantic_core-2.41.2-cp39-cp39-win32.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.41.2-cp39-cp39-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.41.2.tar.gz
  • Upload date:
  • Size: 457.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.9.2

File hashes

Hashes for pydantic_core-2.41.2.tar.gz
Algorithm Hash digest
SHA256 e514c6850b24e49deb077132c7b21f272044e1c9ca44c98e6deaab11a9b9b872
MD5 2d4806f54a1535ff3d214b78a7637b5f
BLAKE2b-256 5d402d2d6896a850d6b10a569f6f74f8468839ba5a87364c0a9ac29761012d89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 347f0579cc57612e5b68cac101400c6906291412943588afcd3f691cc6f7b187
MD5 b795972eeab67e9722f7f1ee56a83409
BLAKE2b-256 65de49bbe64fab42c35b311d3f1c858f5201f8f117251785ee18fa7d5f60f4a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e99d6e05fbac11cf3e34bbf5f23ea2dc49abcca17f63ddf17445a138862e89bf
MD5 a34693e5f086d0b29a547427c6e466ed
BLAKE2b-256 5e2e374132d0cf48705895bb75e7e61c56b0acbee982c89301d62f6eef654968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c858176f4dab5cafb2e09401ab872a4c91b3a60bc012fa880e55b483789cd4f0
MD5 b00b48f6d08065c96b97d87b26bebfae
BLAKE2b-256 d77c16e059b369e11f736081408b106bae6e600b9d082c268c53e2dfb6c4ebd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e7e85e44513423aa98e9a6029e39693a9dc5286d42afa8c55232fd20be4ab72e
MD5 3bf84f0ab30fcc134c5060c076e95f6c
BLAKE2b-256 720dfa699009a506a1a7c0768d2f3c88495a06114facf0d100bedcac61f9b697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b130e1c3023790c83bfd0122a6b8bbea6f1d850c9061d066199bfa2f01d56dc
MD5 10d7df3849f4caab1db2c46f5a985d2a
BLAKE2b-256 2860a4418332d6b63b6ccc30c21f7b6dc7c09288cb6ae4409df055c2bb75d5a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bcf5fc6d18b0bd7f79325040e44d81608244ccf90f390c15b19280121149cd43
MD5 1b9a135b856bc7f99cf3cbda0032c1a3
BLAKE2b-256 c68a4ec49fcb5468492914d8e5abb3aadc887f201a4753aaf69b333391d7d6f1

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e22849e82d1c3218ed95490ad2fb3a19355706249e1851f6d8a3000080740754
MD5 c928b5c158f3d39b2103f893e7b07c7c
BLAKE2b-256 ea0adcdec91d8c6b529e32e72b2c959ab84aad0484da4a7ba830c7daaaa9eb85

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8301bcba4273f47f3ccf848edff9d6cd1a69fce09a2afbffdc5c5a8f9f9b1784
MD5 fe51a3150b7fd6f97fa3d3fd5b62d83f
BLAKE2b-256 17965b429f5779e06471fa93b983a44537d68521fd913e27bcdc39ffbe554aa9

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 09c037081013a82f98f2bf8fe4897c3d94d3db9215feedf02548978ccf59d95e
MD5 2ffca84070303cbbbfa4f3f3a01c4918
BLAKE2b-256 a8b004623016a7c93873f250495a7165cf452ee34e42fb2de02390bf8656038f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f89b5b88abdd777cfe50c3367d4835ff43e829a5ecfcf9b9f16173743f882411
MD5 f4aa97ce65ad782fa99d0ef7ef30af73
BLAKE2b-256 089e0d8ddd8c9872a73e824b19b7a98c6c9329b346b90d5e0c312248603f7b29

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp314-cp314t-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 bd3f8ac6919e7599a55ac70ec2eeecbc42d985493c4d56bf02d3b8cbe6d2ac56
MD5 3d0765632420391cf9b74e63e9dcd40b
BLAKE2b-256 35c85d035a2470528a1f40e586bdc5331185fe10e130893654048c2a999cdb20

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2ecd93f7911c38803e4cc4fa5813482a1754d58077b8f80e19a0010a191e59a0
MD5 240dd19a193184f002a89c4352ba4689
BLAKE2b-256 3dbaacde2936ed7c7e26f4313ca7892550ed678a7b53c75ae76737d473a1fd08

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3429e3cd14a3124ab4ac767f85876f81781ffe9b5392388d99818bbbf9dd0a6
MD5 8976ebe67c5662c7c5070b7188e9dd24
BLAKE2b-256 cce5efeb5f41c51226057efb4b72046eabe6d078818e734d13c8c2bbdae34c29

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d0771f89cb965af0b631881e2efd8af46a23331cb9d7a3569068a3980d1a4c6
MD5 92a91b071095e2230000525635e90444
BLAKE2b-256 e97a39622b9c149f89344dd3cb2f31abd24a980dbed16b5c85bc810d1e79cb54

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66446fbac3d6a80edc0ba291a3f05897f9c35a2808ad6a476d4e42981da6866d
MD5 9c731d57fd86e2072207f661468d6644
BLAKE2b-256 afe8fcc6acdc9628c9535f3ef8ae9f72c54886f09c7a5d2f3511c5de7f05b799

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 523a5874a389c03388671b8c7a68c5324c00a986f177398aa0fe70a3eef53ff3
MD5 bf004563982951403a297644e0dd4dac
BLAKE2b-256 ecae71379bd03e3eb2c9bbcb9cba822cc96a956c40538809c2c44fcbb85e7f49

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1d97fd636a10f1f2997e88f421d96c87e2a58133d7a54cb6af9048d1f8bcba5c
MD5 421aa966a4e607eb4ed41f4a4de06239
BLAKE2b-256 4361de02e245491912ce8a7663c7684c2ecf761fcf5d3d691c0cc7cb61de44af

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 90338d912ec44c02ecfc9cdda566b5bb3c00b28b02c2545d4f285eb8e702ac89
MD5 82db7675894abe94593bb21b9ea67008
BLAKE2b-256 dee4c52b411fe29ee73944b3fd70e6a0eda84d4ca118d180b738930b3bb29703

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 05d8c760d6eaf33faf0d352e318af4dfaed60048d1e1da1c1782e9a67a92b412
MD5 959c814febbe67d07b1bf519d1d9b209
BLAKE2b-256 c9f41d92d73784c16bfdb4ef2ca0d65d0748f9dedf2b94c039d74442bedc63b8

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d1198eb974bdd727fbbdbfee69b28bfc0034fa10d310788c19a7419ff4453bf5
MD5 20292cee3bfdfae70b7139d26f9d080c
BLAKE2b-256 826ed235f493aaafe9e07eacd97d2c35ff97eb8074c54e0e5b05851f8540cb9c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b4ecd4e4bb8736e30ae80434833ae43ff335d93ae1e5cd7de36d0399f5f54aac
MD5 675792116401eceeed669dfa91802a73
BLAKE2b-256 0d4930adbf602ff2f1833c170cbe4f62f1af63898ad6e3dbebe863e946f4a1cf

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0da8f55c9c5503493f4a5d3805f2aae4ea50314ca78ff3d73a79f7022445bf6b
MD5 4659173a4c64f893a51f036fd3d58e21
BLAKE2b-256 49da1e8251f0b1a2e435a5e8638a00856ccaf4b550ebbca03ab07be4756c482b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp313-cp313t-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 d8caddea80a1a71ef373c5bdc9fdcb90fbbde56e83dffa14d73231be92c9d36c
MD5 ce8ca5b69b3348445d32f3ac3440c6da
BLAKE2b-256 25398ab576803b4f3dbd078682779a9a9cd34b17eeeb394c84f17bdd07aaea8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 2fb7e8f00b587d567127fb801276b877d581319a6e596ff87dada92725a51f2d
MD5 d257de16cc02ed73ea34b1d632699bc6
BLAKE2b-256 50ef6dbf8d09d008378fe453b532cc2aec42a2c7b6259319af5baef00aed4842

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c22560ec683e2b9ad8565bfdec1178ac78343125e76acf28c0658344466c2142
MD5 72eadc3f588ef2deae4918c2b5c53203
BLAKE2b-256 fbfd9147b10c01e9a961739e0e8fda6c315762991c413328609458f0c2de629f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.41.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc37efa2f501ad2d220c501f9a30b96845009fba1b6bf2490f3ab07392c37a2c
MD5 ad8de2d6a193a9fa8fc3f9843f2acb60
BLAKE2b-256 8afc427d9f123fc3253842b5a8ebb113c38eef8b3a6f7a921279aaccfc20ac86

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25afca5eaa355b4bf4a95bc1cb48aac950814847c96424f9a3bb768e2934f232
MD5 ac41f64bec2fe2eae59c717c44c8c17b
BLAKE2b-256 815fdbc78e63abc0761f0621244b335144d0ffddac6a30adab3a7b8c421cddbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 52cba65118592b4efaabaec2d99867bf4ec20ef7953675ff778266454b5d1470
MD5 1d4b291abf822f3cd980cd3467e73809
BLAKE2b-256 25b557547746b23202f7144a390247546dabcd5f94cd1b75f87a5c6971d038ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b91188385a331b1de1af61c89b2801941f3237b7aec6908e0950119837c090f9
MD5 ad7bfeab4986e9e3df48a60d11fadd01
BLAKE2b-256 23d54f3b7dd57ba1609c9ce2893ec6a89ff924258e27784cc3d80a291d832f0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 55f1f6e3abf18c55cbd359f38f17e5a90fda03943ee6c174eeced8a05200c06b
MD5 60042be30bbd0491cbaf673830c4227b
BLAKE2b-256 8d9786235c6977d29c9498930a6e7ffa959a78c599ecab7666ed8db8652154da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 937530fe56629e9e038e8f219f69f1c127c2b7d3c64eb91cd4f9c84767fb2db4
MD5 bc41148924b5039aef493fb943c4fb4a
BLAKE2b-256 b4e041298f97e74f00be6dafecbd469a0725074063cb5b8daa9ba9990d50e893

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 131bec8b7dd516da930a2510067ce3b12e674587f71abaea47c66a7ddcf322fd
MD5 e3b82654092be64ff4eb90cf5e481d79
BLAKE2b-256 df2337f7b9fdd176f3aff04bfc8a52e66174ad5a840a5b0824fa0d3c56631933

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9275a93a39da9787b1e3f4e6bf15e48bf2ac832914adafdc3f30c800f401b78d
MD5 09259c996f4764d5ffc0aaec53c7f1ef
BLAKE2b-256 3925b29e58eb6c5a4fb8043e1ba3f06a23f2d23f13d25979dafd77abeb2b2e90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d0e2e16f2a4225b3d03c2bc7be5f53b9a5051a21ebe1ec075e05232d9979118
MD5 905c73cb48c8739c4bcf214729e36f85
BLAKE2b-256 242c6b74c36bde43c0c684c241e27140df70a02b509ac51710408b0ece40d1d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b25c50a623a9380d0757e566b17c75ccf0c589232ae169f9c89ba1f8b8ad333a
MD5 37b4e1f7b9ec1c74e8bd210373096b22
BLAKE2b-256 f4ab5b435b918703d0aa6b14e5648a5038ea050a01541db6d16d7bf0cdb130fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 ee06d7d74a4e1bf2c67d49e0b5dc636b2554bc605f606cdb04fc3ecde6d3bb7f
MD5 385f377a4b5049e4d02840c21c0f8802
BLAKE2b-256 8a4a1ffb2a5c6f2f6ca4aea06986d61350bffc4c216f27c2714d802248871a26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 2aae1be16593912beaaec22e41d95903bd1563aef6d327393a15f9e1dc8ab6cd
MD5 3effb2c6f2009931bae5461bf522f944
BLAKE2b-256 e27f034bf5039b05ed43d533c4b40a724d2172f683a24893e03ab9e20b4cd40b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1e6f902ca9fa56d3f780789bd29d6dcd2aff0b2f6ce1073f097911ea9bdac16a
MD5 246a7fdb4922152626f660103851321d
BLAKE2b-256 d7e21aeb365afe6e6eebf863cf15ceeb087fcd7de7267f78c7038171cb98d43f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e057c84ad212f7700d740c7fbce1005a83e23229ca908374747cbf703e7dca85
MD5 21b491193e26120f9d5153e7066cbf10
BLAKE2b-256 62ba52f0a1c989500cf6d1c77eb9129c1e15c0dcd5e5a1ce0c96b0e67a12295d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fbe9deb694a6de2579c8b17284052b43877e17adf13aa45a506a086e81dfab73
MD5 a3cdbc1214caf016aeebd3e65c65e54d
BLAKE2b-256 95061bbe1707651e1c99d7142d10b2fb36a0d804a2e7ab2b6b452abb77ce7be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 95dbe47980208e7eb32a8867925e9c4d4f11626e70cc3705c0fcea91be15228b
MD5 fb5b4f2dacd2b6b3b960688d6fe8f09d
BLAKE2b-256 320cce5a4100d43ae110c366ae5290dbcc81cb75f685db0d60b95fa5d91bcf24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3ed37fb3181a3387d87e944af1b69ee841712817d6e69c0108ed768ce9acf50a
MD5 5cb03617081d071cba5baa1df21c437a
BLAKE2b-256 3fd21a2439d47c25b5c4929d013fc5065442d663b3606c4373b9db9581bd8768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 46496e79bc633c9c6509d724b723f408fab39e4e01bd633b5be464acc1bd03e3
MD5 0657ddf10ef159ed915ed7a0b6c023f6
BLAKE2b-256 b79c8153ece38fed78564429952da7ae2b493e2aa3a5df64519420054f44cb58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ad61c1d5e1c0c1012bf77f1e98ae5a37eda8787217c0862ff55d6c5a78551bdc
MD5 3b2df9eac4f57be0951c53516b5f11d1
BLAKE2b-256 2db6f6455abcdc5054e277bdd4a64d7221505110d722a5aaf44df882672b24d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f3f3b926a2b1fc551c62c532201c80f0bfa2009257a1c1ed355495975bada0a
MD5 d4c51fb4db4fabda99d01bd01c4f129d
BLAKE2b-256 b658b7c759f3961d497db4d2a2e33f4721d26f6384e8133a55ad05a8ac66d34b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16a8f66a2995b550bdd54c8b5b268b816d371154125c4a07910efbe435f745d9
MD5 b8a2e5e21374c32aea4beef4f300e660
BLAKE2b-256 cc5d1238a299c6dfc47742bac608b604a8bdc8cf88f7de4663ce7847d534a8cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 daad71525a3e61c1af63a3e35d4d2604523439eec6d188a4da3f2aaa3ea32b89
MD5 ece5f9acf04f762789958ca04610607d
BLAKE2b-256 e108ae2eb61defd3d84ac0d0629cee5ed6beedec8f7df101a1503ebe6d9df4f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1cd7f2ad62edbc8dafac08492b73f5d39524586ef056ec003f103b4cd5131cba
MD5 4ad9387e773d3ad919fa25608d2d1f6b
BLAKE2b-256 dc2d88e795157835fb9c74a5bf117ed72aecf154fbc13a767b74f409f75f30ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6c941fbd1b1ca15a5b55e41ad3d89eac6c5167d98a0fc96ed7e8b7e73dd6e587
MD5 52391203767f4d8cdf039d162aa22b98
BLAKE2b-256 ef765f21f6e6656548d8fa7b7a383ca5fb5093d3b2726f2e7bd8d61df55e8dd7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 198fb3d72da27f5e0fe79d02ae0c6d7b5e61cd2e14d8c9f3ef1d3ebeeff2898b
MD5 ecf9741a0056daa193cab5a82ca427b9
BLAKE2b-256 728c889bcd5c65a2dfc0a0d4d63d97208e6f3d5d71b9aea30f1170ec6c761f51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa7b38ba18add23009882bdf9c508c252d284f70f448a80f84a76b1816b2bdc1
MD5 d74862570f8a2309dc489425022f0eb4
BLAKE2b-256 d214a9ce609e7f18c9ec277c608dedd8a6b6510adf83403c9bd8f12529588bb1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a1090f0de0ac14efdeb3d5e0a29989250fc9545dad85b0f58b314ee2af29ab10
MD5 89b2e1c8e28e2a4d2149721e04149a35
BLAKE2b-256 8f80c708e13b92e122f3f1665ac15832f488ea6f38edba4051bd17e2ef531b32

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8e36799daeaa902e850039de251ffb25508fbbcb681d34c53029806ab41e01b
MD5 b6abaa2c2ee6b02c7d953da36be8dec4
BLAKE2b-256 cf3df6e422f6f565e032998c32077e42160dfaf1e2ac7a22d599148bc153b5f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc39a9454702557bfca9aeb529d0138f8a480c06ca3fc703ee4045329c7c2e3c
MD5 16fa451c9212007aa6eccac4b428706a
BLAKE2b-256 620de99c5de3bf0cf7ed769e36dcd1d58326992f57c8f05a5dea79a9f7565cd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 3b9ced807982aacb29b3781469a78e5ae52adc0612a7d593d6d3988461d6ddfc
MD5 49de09383260bf3f0d6d1797a74728dc
BLAKE2b-256 d647a79637f37035086ee8cbff2ec9de40b28fe484cd606c340bdda5314f6c84

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0bc44985ac55715589ac58b11abeadc7751b29d442617c77043f4bd0c0acb875
MD5 a0f42feade466d61cae4b4fdfde8139b
BLAKE2b-256 c2b7a2bb0e73f098ad558707a85d1adafdf203ea07f657bbde274e63f3f566ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d3c0d9e29b0c3c2b0591a6fc5a5cdbf3bc3d502fa2727b2ed2bc3816fa05747f
MD5 ae475b7ecfec7a81315fa373a56f0712
BLAKE2b-256 2ab40fd58121d4434b6013a7e3dc1091be752a1b8c9983b236ce0af6ac22a59a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4827f7463b7bec0e24c62263a0803d815f163b13a352414d82fa0c9f7094a4b0
MD5 2fc401379d58d55c11fc63ca4dd062af
BLAKE2b-256 3ed47ff2afd2f648a17e42f10d91df2e4877abe7828bdb77e211182b8ebcc932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69fae438fb3bfeff75ae44ef5775748603bec6ac61deabd7294e79d831de34aa
MD5 1dbeecdc0052577cb20891143671919d
BLAKE2b-256 fe0f742edf4b4fcc4e457c8cbaef4079e35ccb66fbead3637780ff68c5c13865

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.41.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a0cd8682791cf3ed90c59abaae75943de89fb152a72094f918f0f64a64fdeaa7
MD5 cfa014f30b9c730125ef4bae8f2187b8
BLAKE2b-256 6684a5e54cb0af22398ee03bf31187f336d9018f4cae85655e19265bf0e323a9

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