Skip to main content

Core functionality for Pydantic validation and serialization

Project description

pydantic-core

CI Coverage pypi versions license

This package provides the core functionality for pydantic validation and serialization.

Pydantic-core is currently around 17x faster than pydantic V1. See tests/benchmarks/ for details.

Example of direct usage

NOTE: You should not need to use pydantic-core directly; instead, use pydantic, which in turn uses pydantic-core.

from pydantic_core import SchemaValidator, ValidationError


v = SchemaValidator(
    {
        'type': 'typed-dict',
        'fields': {
            'name': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'str',
                },
            },
            'age': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'int',
                    'ge': 18,
                },
            },
            'is_developer': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'default',
                    'schema': {'type': 'bool'},
                    'default': True,
                },
            },
        },
    }
)

r1 = v.validate_python({'name': 'Samuel', 'age': 35})
assert r1 == {'name': 'Samuel', 'age': 35, 'is_developer': True}

# pydantic-core can also validate JSON directly
r2 = v.validate_json('{"name": "Samuel", "age": 35}')
assert r1 == r2

try:
    v.validate_python({'name': 'Samuel', 'age': 11})
except ValidationError as e:
    print(e)
    """
    1 validation error for model
    age
      Input should be greater than or equal to 18
      [type=greater_than_equal, context={ge: 18}, input_value=11, input_type=int]
    """

Getting Started

You'll need rust stable installed, or rust nightly if you want to generate accurate coverage.

With rust and python 3.8+ installed, compiling pydantic-core should be possible with roughly the following:

# clone this repo or your fork
git clone git@github.com:pydantic/pydantic-core.git
cd pydantic-core
# create a new virtual env
python3 -m venv env
source env/bin/activate
# install dependencies and install pydantic-core
make install

That should be it, the example shown above should now run.

You might find it useful to look at python/pydantic_core/_pydantic_core.pyi and python/pydantic_core/core_schema.py for more information on the python API, beyond that, tests/ provide a large number of examples of usage.

If you want to contribute to pydantic-core, you'll want to use some other make commands:

  • make build-dev to build the package during development
  • make build-prod to perform an optimised build for benchmarking
  • make test to run the tests
  • make testcov to run the tests and generate a coverage report
  • make lint to run the linter
  • make format to format python and rust code
  • make to run format build-dev lint test

Profiling

It's possible to profile the code using the flamegraph utility from flamegraph-rs. (Tested on Linux.) You can install this with cargo install flamegraph.

Run make build-profiling to install a release build with debugging symbols included (needed for profiling).

Once that is built, you can profile pytest benchmarks with (e.g.):

flamegraph -- pytest tests/benchmarks/test_micro_benchmarks.py -k test_list_of_ints_core_py --benchmark-enable

The flamegraph command will produce an interactive SVG at flamegraph.svg.

Releasing

  1. Bump package version locally. Do not just edit Cargo.toml on Github, you need both Cargo.toml and Cargo.lock to be updated.
  2. Make a PR for the version bump and merge it.
  3. Go to https://github.com/pydantic/pydantic-core/releases and click "Draft a new release"
  4. In the "Choose a tag" dropdown enter the new tag v<the.new.version> and select "Create new tag on publish" when the option appears.
  5. Enter the release title in the form "v<the.new.version> "
  6. Click Generate release notes button
  7. Click Publish release
  8. Go to https://github.com/pydantic/pydantic-core/actions and ensure that all build for release are done successfully.
  9. Go to https://pypi-hypernode.com/project/pydantic-core/ and ensure that the latest release is published.
  10. Done 🎉

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pydantic_core-2.18.4.tar.gz (385.1 kB view details)

Uploaded Source

Built Distributions

pydantic_core-2.18.4-pp310-pypy310_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.18.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pydantic_core-2.18.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded PyPy macOS 10.12+ x86-64

pydantic_core-2.18.4-pp39-pypy39_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPy Windows x86-64

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

Uploaded PyPy musllinux: musl 1.1+ x86-64

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

Uploaded PyPy musllinux: musl 1.1+ ARM64

pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

pydantic_core-2.18.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPy macOS 11.0+ ARM64

pydantic_core-2.18.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded PyPy macOS 10.12+ x86-64

pydantic_core-2.18.4-cp312-none-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12 Windows ARM64

pydantic_core-2.18.4-cp312-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.12 Windows x86-64

pydantic_core-2.18.4-cp312-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.12 Windows x86

pydantic_core-2.18.4-cp312-cp312-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

pydantic_core-2.18.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12 macOS 11.0+ ARM64

pydantic_core-2.18.4-cp312-cp312-macosx_10_12_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

pydantic_core-2.18.4-cp311-none-win_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11 Windows ARM64

pydantic_core-2.18.4-cp311-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.11 Windows x86-64

pydantic_core-2.18.4-cp311-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

pydantic_core-2.18.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

pydantic_core-2.18.4-cp310-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10 Windows x86-64

pydantic_core-2.18.4-cp310-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

pydantic_core-2.18.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.10 macOS 10.12+ x86-64

pydantic_core-2.18.4-cp39-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9 Windows x86-64

pydantic_core-2.18.4-cp39-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

pydantic_core-2.18.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

pydantic_core-2.18.4-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 macOS 10.12+ x86-64

pydantic_core-2.18.4-cp38-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8 Windows x86-64

pydantic_core-2.18.4-cp38-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

pydantic_core-2.18.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

pydantic_core-2.18.4-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

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

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.18.4.tar.gz
  • Upload date:
  • Size: 385.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.18.4.tar.gz
Algorithm Hash digest
SHA256 ec3beeada09ff865c344ff3bc2f427f5e6c26401cc6113d77e372c3fdac73864
MD5 11a5ecadaa8cc5e6c4910c35db9f02dd
BLAKE2b-256 02d0622cdfe12fb138d035636f854eb9dc414f7e19340be395799de87c1de6f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ab86ce7c8f9bea87b9d12c7f0af71102acbf5ecbc66c17796cff45dae54ef9a5
MD5 8b2cebd63e13fbbcdbcf0e314c2fe666
BLAKE2b-256 f56eb753bb42bc8aff4fd34c6816f2a17e5e059217512e224a2aa31a1b2f8f93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 81b5efb2f126454586d0f40c4d834010979cb80785173d1586df845a632e4e6d
MD5 79db7ace113dae284ea23bf575804bec
BLAKE2b-256 b08ac8a2e60482eebc5c878faf7067e63ef532d40b01870292a7da40506b2d5f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 578e24f761f3b425834f297b9935e1ce2e30f51400964ce4801002435a1b41ef
MD5 8ec924f35a6fbd5548f602ae10c42bcc
BLAKE2b-256 c33f9669fd933f5e344e811193438ba688f7abe0c64beddd8ee52fa53dad68d0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d323a01da91851a4f17bf592faf46149c9169d68430b3146dcba2bb5e5719abc
MD5 b87358e74f7071c2037821e1410b8ea4
BLAKE2b-256 93eaa1f7f8ec6f85566fff4e5848622d39bf52bd4ce4cb9f3e5e5d7bc1fe78ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77450e6d20016ec41f43ca4a6c63e9fdde03f0ae3fe90e7c27bdbeaece8b1ed4
MD5 a12c8317c6984b009a69596340493523
BLAKE2b-256 6148d392f839c2183a0408ef5f3455ffd8ebc21f3df2fbd3eecd7c7a9eee0ac7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 43d447dd2ae072a0065389092a231283f62d960030ecd27565672bd40746c507
MD5 a34f7a2ab61b351ab44d5e302462bd3e
BLAKE2b-256 f46397d408a298a21e41585372add1f0a2d902a46c0f7b3c8e8386b22429bb17

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f4d26ceb5eb9eed4af91bebeae4b06c3fb28966ca3a8fb765208cf6b51102ab
MD5 8f5025bde55220b44ad5412616e723a6
BLAKE2b-256 3522cf65f4a902c3b5ff6fcbd159fa626f95d56aaff8c318952e23af179e7e25

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 574d92eac874f7f4db0ca653514d823a0d22e2354359d0759e3f6a406db5d55d
MD5 e691fc08ac7e021ce6610d1db05605d2
BLAKE2b-256 d8a260588397688bbc2f720c987691656e2d667b8b8776da1726bad2960a0889

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2fd41f6eff4c20778d717af1cc50eca52f5afe7805ee530a4fbd0bae284f16e9
MD5 60d94074c3f0ec9fa68b799b9dbc66ac
BLAKE2b-256 97bd1181be4625aaa2d9b4189299d248dbaceb45c2bb5ff250a8349bb5406960

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e858ac0a25074ba4bce653f9b5d0a85b7456eaddadc0ce82d3878c22489fa4ee
MD5 503fd8a8d1f97a50ef2ee839c7942d51
BLAKE2b-256 4b5edd196d5f82fa957ef2cf0f6d7c1a2b43612a9771c32b4cb53d4decd4bb3c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 834b5230b5dfc0c1ec37b2fda433b271cbbc0e507560b5d1588e2cc1148cf1ce
MD5 8644ac05ee8b9c2638a59fe454db86fb
BLAKE2b-256 5f9e4c4a7014746397ba431b069fd8fc1010a302895fe854145762f12ba0bdd2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b48ece5bde2e768197a2d0f6e925f9d7e3e826f0ad2271120f8144a9db18d5c8
MD5 0790b220fb4a0375ba17596e2bf8c46c
BLAKE2b-256 7e83e8160b5349367e60f9ffe397c7f8068e69aef0543ed08e2eead97e7ff62c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 293afe532740370aba8c060882f7d26cfd00c94cae32fd2e212a3a6e3b7bc15e
MD5 4b735772058281b87ca9ac8eecc32ad0
BLAKE2b-256 ede12a7e7f4fc1cfd01c42df1fa1d744ec17ac6e4c60cd626b4458ae05444a4b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eae237477a873ab46e8dd748e515c72c0c804fb380fbe6c85533c7de51f23a8f
MD5 8df1dacbf0694d71f7029b6c94016f0e
BLAKE2b-256 ac10eb0f9aa499ef960af9a5a488f6f36ede106a0871a971110828ee367fb8b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 51991a89639a912c17bef4b45c87bd83593aee0437d8102556af4885811d59f5
MD5 4fd75c14965395b1edc79550b3cd2c34
BLAKE2b-256 abfeb60fa558fe6faf02b6f0158ff0132b78d157f320483e3bc83575239e7dac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 90afc12421df2b1b4dcc975f814e21bc1754640d502a2fbcc6d41e77af5ec312
MD5 fca14467d0741fd43ca9e3d0f76b8e3f
BLAKE2b-256 f933e6e433d7177ff2eae173cc8340b9d9a6ab201a612506fef6f73a87f04ca8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 c1322d7dd74713dcc157a2b7898a564ab091ca6c58302d5c7b4c07296e3fd00f
MD5 0e4e39fcd2e9d95e64d5a854aab94382
BLAKE2b-256 35eafba944f8e29860a3e1d535223427a657e7b29118e114188b3e2fda02c69e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 14601cdb733d741b8958224030e2bfe21a4a881fb3dd6fbb21f071cabd48fa0a
MD5 0af4f18925373fbb48b3d7f76b0e2ee9
BLAKE2b-256 d9c985bbe091e0f0f5a99f38cda2774b810ac593fd36dae2f9d777e215d2fa6b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 8b8bab4c97248095ae0c4455b5a1cd1cdd96e4e4769306ab19dda135ea4cdb07
MD5 f6ee9d1eff4e875e56bf01174df8da36
BLAKE2b-256 0f98fb23c03b5b96a4e6196d24ebc05026dbcd3ec05e9b0c85ae34a3c40f6d58

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0eb2a4f660fcd8e2b1c90ad566db2b98d7f3f4717c64fe0a83e0adb39766d5b8
MD5 fec9b064e1da2e749a986072eb779d1f
BLAKE2b-256 83f89d59e352b3d168984b2e67e347365afe9698f08b2167e9582a03abf4f961

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 564d7922e4b13a16b98772441879fcdcbe82ff50daa622d681dd682175ea918c
MD5 4b98c18e025abbbb46eff522e3135181
BLAKE2b-256 73c8784718a31831eda4446ba3d5c9d9a259a10d01f71f9684300f1bbac65d2f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01dd777215e2aa86dfd664daed5957704b769e726626393438f9c87690ce78c3
MD5 7a7278727d25a7389e6f4e707bad33fe
BLAKE2b-256 d8365676d758ccb008de9ae48db1614ffaa381e1971677e4a7e365cb7004e61c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 21a5e440dbe315ab9825fcd459b8814bb92b27c974cbc23c3e8baa2b76890077
MD5 a383e30daa3e75cf2a769c8b7faa9968
BLAKE2b-256 c8914bbb89ef7aade8095bbb26055c16d8026a3bbe97f6ad9a827f8265c00350

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c40d4eaad41f78e3bbda31b89edc46a3f3dc6e171bf0ecf097ff7a0ffff7cb1
MD5 52120a5021600c26b191498fe4fc44a2
BLAKE2b-256 bc36c3e7665d84f692b095d11e9f4af71bfc339471b7153d22a7526584b75b92

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 847a35c4d58721c5dc3dba599878ebbdfd96784f3fb8bb2c356e123bdcd73f34
MD5 96d3850fcd89ab02027c645d00e36a50
BLAKE2b-256 797ba4f002cf3603672de868ae913dec7d561509bcd17401f4cc719ab8a46213

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4748321b5078216070b151d5271ef3e7cc905ab170bbfd27d5c83ee3ec436695
MD5 2ca5e32d863978c811e7c85613fb0c39
BLAKE2b-256 e584864556db336393f2433eda50b7e047a8d485b95dd48d1d277750ce0042bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4b06beb3b3f1479d32befd1f3079cc47b34fa2da62457cdf6c963393340b56e9
MD5 e02b3433181b4e6902c0e99a0cc1d261
BLAKE2b-256 a0d705be10426e0a338a84dc2699c143d8d1a3ad2a79aefe0dd0ce17a7dea81d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2fdf2156aa3d017fddf8aea5adfba9f777db1d6022d392b682d2a8329e087cef
MD5 7cea60713486e9f17cd5faaaee54db40
BLAKE2b-256 e99346f546b40aba72683032c167aef9ccd568a54e28f28687081d10a6735294

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6f5c4d41b2771c730ea1c34e458e781b18cc668d194958e0112455fff4e402b2
MD5 1b944c71416953c883fd8a635e205c9a
BLAKE2b-256 e037a46d4741a88f7223ef3ec68490e638fb93570127f28fd76cbc2c89c0a7ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 4e99bc050fe65c450344421017f98298a97cefc18c53bb2f7b3531eb39bc7805
MD5 30ea125795cfd9149b1d1c1e08f941d1
BLAKE2b-256 f5cb83c4c1059fd04d72849a010654be036bdc01b31718f539e9e5601950bf38

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 8a7164fe2005d03c64fd3b85649891cd4953a8de53107940bf272500ba8a788b
MD5 efc646930f385d58078a1898561b0272
BLAKE2b-256 002962236e5e19b92c1b908089589300e5834a8fcb5f870ae4f2a08b17782142

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 44c7486a4228413c317952e9d89598bcdfb06399735e49e0f8df643e1ccd0558
MD5 556064df1578be492c51573d7ccc04bc
BLAKE2b-256 51a0a62e80edc26575627f3cae3e450c5afe31ce28b5333762eb3a3bba996675

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2f5966897e5461f818e136b8451d0551a2e77259eb0f73a837027b47dc95dab9
MD5 4dbd07347b02aafae2b7b94ff72c5c01
BLAKE2b-256 ad0725167289bfb595cbe2aba706aa5c50083cff618662776d696e8574f03fc5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e85637bc8fe81ddb73fda9e56bab24560bdddfa98aa64f87aaa4e4b6730c23d2
MD5 28e68793f434885d2bbc79b1ae7f6af8
BLAKE2b-256 709764968701368ff84049f5c916f63e39d6afc15cbdb188fd9f412cba359ff4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0fbbdc827fe5e42e4d196c746b890b3d72876bdbf160b0eafe9f0334525119c8
MD5 09fa5806660eebe199202500ccd51c36
BLAKE2b-256 d64b51141c5ea1874e7204efac93899eefcb690ff6772a92c9a6521b32e5b71f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19894b95aacfa98e7cb093cd7881a0c76f55731efad31073db4521e2b6ff5b7d
MD5 9f219cd5837a172a0c699ad9acea9a8b
BLAKE2b-256 d2713c9fd032695746c63fd95ea2765709c12d02e5332c9cc3972fa335e9f254

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 98906207f29bc2c459ff64fa007afd10a8c8ac080f7e4d5beff4c97086a3dabd
MD5 1e6fe047806e824ff1cc5f77ffe50e28
BLAKE2b-256 90639bf4ff4e014942387cb18a9d60d3b32ac892df9581b2b09c0d3eadd88fab

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f09baa656c904807e832cf9cce799c6460c450c4ad80803517032da0cd062e2
MD5 e030a181c1a108617a1231b8ada36222
BLAKE2b-256 1724517cb7e5839754b0855c50c92cdd8715919d05a360b94dc5cf181d5fe60d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a642295cd0c8df1b86fc3dced1d067874c353a188dc8e0f744626d49e9aa51c4
MD5 892270e7a0411195446ffc588c89a724
BLAKE2b-256 4dcdf29239ba9e23a4cbe27ebac22652f9c93b3f2122bd8b96bd51f72bbf7009

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f85d05aa0918283cf29a30b547b4df2fbb56b45b135f9e35b6807cb28bc47951
MD5 0016dbd5141160f962587607d1059678
BLAKE2b-256 902bc06dbed36bcb247412de81a20931e42ebf6ddb6f1cf3efb28c6539358aef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b2ebef0e0b4454320274f5e83a41844c63438fdc874ea40a8b5b4ecb7693f1c4
MD5 0a9aaef595f007874af65593abac791b
BLAKE2b-256 6ca2229dbee765ce711cd42c056da497ca26f7267384362e6767ab3bcdafca79

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 942ba11e7dfb66dc70f9ae66b33452f51ac7bb90676da39a7345e99ffb55402d
MD5 1895bd613dcaddcfff1ed991f5ec9d1e
BLAKE2b-256 25baf8106ec853ed1e288490c39796322cb54f96685e53a1b302c6d7d5d3528e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 6a750aec7bf431517a9fd78cb93c97b9b0c496090fee84a47a0d23668976b4b0
MD5 053c93452eed329f18c0f46ccc92c867
BLAKE2b-256 5cd813ac833cb5ec401fb69c5c21acc291dc54bf05749f3501bf17ffdcd79542

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 1b4de2e51bbcb61fdebd0ab86ef28062704f62c82bbf4addc4e37fa4b00b7cbc
MD5 32b5bff234b84b4851844a968a5424b3
BLAKE2b-256 9021823245989645d8e38aba47cafa2f783e88c367fc5822af53694c80acca97

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 bc4ff9805858bd54d1a20efff925ccd89c9d2e7cf4986144b30802bf78091c3e
MD5 7f9ac7ff8ac537710dc980f02eaa1b51
BLAKE2b-256 a5a98812dc9e573037eae07a7e42c4acaf3f0ce4e3c0430413727594da702f11

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6891a2ae0e8692679c07728819b6e2b822fb30ca7445f67bbf6509b25a96332c
MD5 61c52568f48783986d15c11adb864b5a
BLAKE2b-256 830c0b04bede6cfefe56702ae4ac9683d08d43e5ee59a03afdb8573949357e63

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e00a3f196329e08e43d99b79b286d60ce46bed10f2280d25a1718399457e06be
MD5 fac529b95aad46d7b6333715bceefcb5
BLAKE2b-256 be4418eec2ac121e195662ac0f48c9c2a7bc9e2175edf408004b42adfadfc095

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4701b19f7e3a06ea655513f7938de6f108123bf7c86bbebb1196eb9bd35cf724
MD5 9ec8c981403f0b5152a80f57f1ea635a
BLAKE2b-256 5fac2a0a53a5df1243b670b3250a78673eb135f13a0a23e55d8e1fd68c54e314

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8951eee36c57cd128f779e641e21eb40bc5073eb28b2d23f33eb0ef14ffb3f5d
MD5 501a38012438c4db1e09798d67682450
BLAKE2b-256 9aa6b06114fcde6ec41aa5be8dcae863b7badffa75fbd77a4aba0847df4448ff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4d0dcc59664fcb8974b356fe0a18a672d6d7cf9f54746c05f43275fc48636851
MD5 d1dbcb8f21f603d7b22b4fe54278be69
BLAKE2b-256 ca14d885398b4402c76da93df7034f2baaba56abc3ed432696a2d3ccbf9806da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a55b5b16c839df1070bc113c1f7f94a0af4433fcfa1b41799ce7606e5c79ce0a
MD5 1c858eec227672f782b96b5ed99aac85
BLAKE2b-256 07a1a0156c29cf3ee6b7db7907baa2666be42603fe87f518eb6b98fd982906ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 97736815b9cc893b2b7f663628e63f436018b75f44854c8027040e05230eeddb
MD5 ce8bb2729c77deef035d71b96ef8edab
BLAKE2b-256 81f30e4fac63e28d03e311d2b80e9aecbe7c42fbc72d5eab5c4cc89126f74dc7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 59ff3e89f4eaf14050c8022011862df275b552caef8082e37b542b066ce1ff26
MD5 d1f8810aeea0d2399111d58940329e77
BLAKE2b-256 d1efcf649d5e67a6baf6f5a745f7848484dd72b3b08896c1643cc54685937e52

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f76d0ad001edd426b92233d45c746fd08f467d56100fd8f30e9ace4b005266e4
MD5 a9c5a1e85b16a77f41515e52d29988e5
BLAKE2b-256 4d73af096181c7aeaf087c23f6cb45a545a1bb5b48b6da2b6b2c0c2d7b34f166

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c67598100338d5d985db1b3d21f3619ef392e185e71b8d52bceacc4a7771ea7e
MD5 d45b981cac75a2dc897653d25a1f5df2
BLAKE2b-256 3811f40ea5649e3c298ce41c2308d9301d65a88fe8473a7e1791b75d193f99ce

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ca26a1e73c48cfc54c4a76ff78df3727b9d9f4ccc8dbee4ae3f73306a591676d
MD5 d533ff8ae5fc764c140e2d4e7b702baa
BLAKE2b-256 4f9fc9d27d31950a061cf28ea0d399eece48fdffe0451493a3afe3c0d04122dc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 509daade3b8649f80d4e5ff21aa5673e4ebe58590b25fe42fac5f0f52c6f034a
MD5 3ae52edf6142d4291c85126dc10e8ade
BLAKE2b-256 cff92480b22595ba251804454bedf10c993b43a1056dd62fe4752940f6121e43

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a0d829524aaefdebccb869eed855e2d04c21d2d7479b6cada7ace5448416597b
MD5 13721e350e2026ec665f89c27fb4e8f3
BLAKE2b-256 1ca386a134bc450e2c4043f66ea5239c3b193f046b3206c7680dbfac8d082cbb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 53db086f9f6ab2b4061958d9c276d1dbe3690e8dd727d6abf2321d6cce37fa94
MD5 5ac0ef073db5aec0db5de722659e22d7
BLAKE2b-256 d8467721671dc8ded5cf4d754f8737bf348485daabfba7932a96c49699fe3c9e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dc1803ac5c32ec324c5261c7209e8f8ce88e83254c4e1aebdc8b0a39f9ddb443
MD5 0921742fce618f5c24e348d8de8408e5
BLAKE2b-256 45a2ecaa89d85f46501c4139e95ae61fa4f30fa79582ff7bbfb780309c4d25f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 123c3cec203e3f5ac7b000bd82235f1a3eced8665b63d18be751f115588fea30
MD5 0b32848babd9d5f42b10f216645787f8
BLAKE2b-256 f18b93a199c55aa005378023e602ca456f5c1e233a9c5092ec274e53ad3a175f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 46387e38bd641b3ee5ce247563b60c5ca098da9c56c75c157a05eaa0933ed154
MD5 6fc3b5b1ad7b94e495e03dad955d1240
BLAKE2b-256 69917ddc4ca6d77a3f32de90962db01ae42fdad7ef805b2cc4357e56ae0fe4c8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 86110d7e1907ab36691f80b33eb2da87d780f4739ae773e5fc83fb272f88825f
MD5 76a4c68f988caebbe55adc5552afbd15
BLAKE2b-256 145842a3e82c1657345743bd09ce81e88940c483b7466c545cfafac632fb81ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 abc267fa9837245cc28ea6929f19fa335f3dc330a35d2e45509b6566dc18be23
MD5 35e18646f280326800935eb254313d26
BLAKE2b-256 b33bea6c656b0b7f7c08dc99827820f1e7a443866ac96550d816f47f9285ae0f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2fdd81edd64342c85ac7cf2753ccae0b79bf2dfa063785503cb85a7d3593223
MD5 70fccee509018985c1acfa0dcc191497
BLAKE2b-256 ff645ae428e3981d2c40d6ee19c8672a91bee01b0cb42337d589443ae769f18e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 44a688331d4a4e2129140a8118479443bd6f1905231138971372fcde37e43528
MD5 b86a784c648cd6f55e6891f49a13e3d0
BLAKE2b-256 434e3de1d41bd01e6a34f4bdbbd7de1f38bbacc58b5f297a7365e39178697d4a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 bb4462bd43c2460774914b8525f79b00f8f407c945d50881568f294c1d9b4443
MD5 e7130a6ed38db357168bb8b0c64aaad2
BLAKE2b-256 f34cc2cfc5e2a79030c5539eaf743562df36397f0cd5277b57d93d378d291ac3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 1d886dc848e60cb7666f771e406acae54ab279b9f1e4143babc9c2258213daa2
MD5 774284e57e7ef6355629075aa9f81a73
BLAKE2b-256 6b6971aee43f16373883213549b877a7c646e1481056977998f6ef8ba65d1fd8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 972658f4a72d02b8abfa2581d92d59f59897d2e9f7e708fdabe922f9087773af
MD5 5a4876f974c958b9329a3db1fc465aea
BLAKE2b-256 7b7cd3ab62757d14e0624882508b5f5f4d3ed3f18e4eb63ea3bda2a0a313a087

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 44cd83ab6a51da80fb5adbd9560e26018e2ac7826f9626bc06ca3dc074cd198b
MD5 6197a409a25dec09413b5750c46d2007
BLAKE2b-256 a71f58d66a7d032c2b3351f281d507cbadfdddc73423afa2c4bac0aed99c2fad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7cdf28938ac6b8b49ae5e92f2735056a7ba99c9b110a474473fd71185c1af5d
MD5 21f817f4f1b72e7eada4b4ae7b78963a
BLAKE2b-256 3d99b40e603637e90265401c5253d738d1cb99152e3ee7d2b9c4ddc0ea51b7b1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18f469a3d2a2fdafe99296a87e8a4c37748b5080a26b806a707f25a902c040a8
MD5 5a3590c1fd7539fa4c291c6683d2e587
BLAKE2b-256 3eaaddcce5cb8a6e08d5f65a97eb20664f8515464862cf7e80dcc9bb72d6709c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 99457f184ad90235cfe8461c4d70ab7dd2680e28821c29eca00252ba90308c78
MD5 db450de2760586201b71be2b321f2eb8
BLAKE2b-256 a1bfa0a7dd502b474c87724fa844e285e7136cef8f43d5b5772bd1a26d2a07db

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f9899c94762343f2cc2fc64c13e7cae4c3cc65cdfc87dd810a31654c9b7358cc
MD5 0c7f7a82c46e12e4ede76ccaf11ac081
BLAKE2b-256 4a90ec1d41d4ba92b8fd02c14fdc83cf39b4e13238be8b08f8bb2de2eb44056f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae1d6df168efb88d7d522664693607b80b4080be6750c913eefb77e34c12c71a
MD5 9820be92eb5e903f07f70de63ca320eb
BLAKE2b-256 434fbd2dec50e274a0bed13e753bedd2462d9339cc6fa6ff6cee85ed225efcbd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 938cb21650855054dc54dfd9120a851c974f95450f00683399006aa6e8abb057
MD5 ae770cbb79e2e4e2f953798b90b4b445
BLAKE2b-256 5b6fe4027a32ade2e11e2052779509b0c52c32568e0ce7c394925869a92876fc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ebef0dd9bf9b812bf75bda96743f2a6c5734a02092ae7f721c048d156d5fabae
MD5 cb3c5035850aff64a2454ec1adc046ec
BLAKE2b-256 491c98c29ed338d351a126f0893a2f0b8fb09c60769f356445ffd09266a15b93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.4-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 823be1deb01793da05ecb0484d6c9e20baebb39bd42b5d72636ae9cf8350dbd2
MD5 eb938c394c72037eb17dfa1647ca4c7e
BLAKE2b-256 7c45e168870b3b35302e58ea2d346e32d897f3b5ddc8be3eb6bfdb59402b327e

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page