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.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.18.1.tar.gz (382.0 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.18.1-pp310-pypy310_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.18.1-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.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.18.1-cp312-cp312-macosx_10_12_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.18.1-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.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.18.1-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.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.18.1-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.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.18.1.tar.gz
Algorithm Hash digest
SHA256 de9d3e8717560eb05e28739d1b35e4eac2e458553a52a301e51352a7ffc86a35
MD5 346dd1e1e3e5cded7eb078d645d89120
BLAKE2b-256 3d28d693aab237fca82da327990a88a983b2b84b890032076ee4a87e18038dbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 ee7ccc7fb7e921d767f853b47814c3048c7de536663e82fbc37f5eb0d532224b
MD5 8f48b08c0d1e516353954377381893b7
BLAKE2b-256 c63f0d99c4d0e66d0a93c533767054e9496d776d4570d9c472bc7595a4c6aec1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 76909849d1a6bffa5a07742294f3fa1d357dc917cb1fe7b470afbc3a7579d539
MD5 938211cec6735fe59e9687a374d60527
BLAKE2b-256 8f527e44cf6932f0b720ded94d303d1d806d1b56649ee381b0302578a79c18b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2027493cc44c23b598cfaf200936110433d9caa84e2c6cf487a83999638a96ac
MD5 4ab69b8b1f467556cf3532919f968548
BLAKE2b-256 e1af3d897540120315437d2b6e57a0be537e8f0a11a62efb3b58ea03348701ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4284c621f06a72ce2cb55f74ea3150113d926a6eb78ab38340c08f770eb9b4d
MD5 c2d527ea00665965be7776380f227fad
BLAKE2b-256 0d79c2870d914e3412a02fd0b3b1d8249df0b65dadc3f04a74bfaf73d1bc03a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2fe0c1ce5b129455e43f941f7a46f61f3d3861e571f2905d55cdbb8b5c6f5e2c
MD5 af431cd4aa835191ddf5993f1065ec88
BLAKE2b-256 01789ec44019faf97fa54c5fb822900bfb3afe36d2951ca67db8c8354b8057bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a0c3e718f4e064efde68092d9d974e39572c14e56726ecfaeebbe6544521f47
MD5 2850d11429873a3dd4b4b5a028cd4a06
BLAKE2b-256 81ac49af7457c9fcb70581e5cc8a16ba89e366898698497bd7580337cbba7560

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72722ce529a76a4637a60be18bd789d8fb871e84472490ed7ddff62d5fed620d
MD5 7e80d7d10eebac4ed36cbb62671f0044
BLAKE2b-256 1728ccada689bc7bf061027791a709ea64bfd94462d9c6ea68f0dd241fcd177c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e178e5b66a06ec5bf51668ec0d4ac8cfb2bdcb553b2c207d58148340efd00143
MD5 109f54299cc698a1e63de768ece2cf11
BLAKE2b-256 10931ff97e426b503e06f3e22014c1fc949d2307ede88dcd4448b1af8ff46152

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e60defc3c15defb70bb38dd605ff7e0fae5f6c9c7cbfe0ad7868582cb7e844a6
MD5 e25a0baad372f3feba6fccedd888f038
BLAKE2b-256 549add2c99cc22311faf741f9dc1326a0a25ba96efe4997133dbebeb4718fb51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 73c1bc8a86a5c9e8721a088df234265317692d0b5cd9e86e975ce3bc3db62a59
MD5 09f5877a79faef6ba40edd64459064ea
BLAKE2b-256 7eaf8859f74e03991e365ed22d250195b9b3f471c4309682a5ee28bffa8b4dae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2684a94fdfd1b146ff10689c6e4e815f6a01141781c493b97342cdc5b06f4d5d
MD5 0e75f07ce0428ac9447da02a66ab8855
BLAKE2b-256 760ae846c69391a42cdaf9b0b77cd7fe111318f64c695e0bd9ad2ff8aba0e436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c69567ddbac186e8c0aadc1f324a60a564cfe25e43ef2ce81bcc4b8c3abffbae
MD5 e808a75268b746e24c8113aebd881cf8
BLAKE2b-256 0f38f1b522c400099d7ab5b62172938d74443107263b026f2f88888895ffb2a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d074b07a10c391fc5bbdcb37b2f16f20fcd9e51e10d01652ab298c0d07908ee2
MD5 54824925f5089ca7903561d46aa23ed4
BLAKE2b-256 79cca229c9b129eb1a2cf721ec3314c32b49f11d9ce83a20fb0aa68465b1d75f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 baf1c7b78cddb5af00971ad5294a4583188bda1495b13760d9f03c9483bb6203
MD5 1519ba348a049ee3b7eb8b60fb1226ea
BLAKE2b-256 d390a25160fd437c31641c9bbb456d7aaf967c331c15f28c0315f347d8886ec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a139fe9f298dc097349fb4f28c8b81cc7a202dbfba66af0e14be5cfca4ef7ce5
MD5 37b8bd3845594e95e0a361da5c66ee90
BLAKE2b-256 1b77e48d641a3c31fde874768dcc4a30f33934e00b539afa4ba99eea9879090d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee2794111c188548a4547eccc73a6a8527fe2af6cf25e1a4ebda2fd01cdd2e60
MD5 d75d76923f7d0ae12db5b3c39976e2fd
BLAKE2b-256 e7c9d2099c7835f9921f442f2eda76110dd5984c724723aec9efd4b63495b412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 c562b49c96906b4029b5685075fe1ebd3b5cc2601dfa0b9e16c2c09d6cbce048
MD5 7ad68397089367c71d2b670dcfb327a9
BLAKE2b-256 3dd00073546bc90805c73bc5995b9760db3c1bacfa0d3d38965e6d97b58b9fe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 9376d83d686ec62e8b19c0ac3bf8d28d8a5981d0df290196fb6ef24d8a26f0d6
MD5 888531b1317b2efdd7610376626f3419
BLAKE2b-256 203f763b9e6111d5f2c7c14008264049c7f18700f921ed81f461fcd6e9466618

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.18.1-cp312-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.18.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 d5e6b7155b8197b329dc787356cfd2684c9d6a6b1a197f6bbf45f5555a98d411
MD5 e10275f204a7c025315b114d03d552f1
BLAKE2b-256 cd316503b3fad7f695dfaaec134c277ff570a548027a590ab585155c8781293f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fd1a9edb9dd9d79fbeac1ea1f9a8dd527a6113b18d2e9bcc0d541d308dae639b
MD5 04506acdf84c7d418a16de957ed214a2
BLAKE2b-256 a70998b197d7ce8e34baf3922deccefc3e5ba774f821713841cfe350f04df753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 201713f2f462e5c015b343e86e68bd8a530a4f76609b33d8f0ec65d2b921712a
MD5 b038da3f241ad58e20081ca71a63887c
BLAKE2b-256 1e5fbf7d64e781bebe87af8ae834e269f85cb2328c9c7d22110bb152252abbd1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 684d840d2c9ec5de9cb397fcb3f36d5ebb6fa0d94734f9886032dd796c1ead06
MD5 67af1b759f9ff05421a1894ef5d1a4e0
BLAKE2b-256 24a24b135f51ca5c0f91fa3cb5b880068e10b23f1bada653f9c14cb5154842db

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca976884ce34070799e4dfc6fbd68cb1d181db1eefe4a3a94798ddfb34b8867f
MD5 f89e928f6a9be1efe29bab2a05ea59a6
BLAKE2b-256 9e3d036ccc8e039593012e942f513f8937a64b91a500d2c7d88f4744d9c430fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 14fe73881cf8e4cbdaded8ca0aa671635b597e42447fec7060d0868b52d074e6
MD5 96c825ae58fd68615e6719e096a96bbf
BLAKE2b-256 75480ae681a6198e5f4253d3a90a262a7965fccb7c58770065d457a5d2ba3be6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 25595ac311f20e5324d1941909b0d12933f1fd2171075fcff763e90f43e92a0d
MD5 84cf43f1e1df6e815d9f4e80b92385a9
BLAKE2b-256 1a55505992e7ebb05af9b58847975ae7cef398441679d7602b139de0634452d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a3982b0a32d0a88b3907e4b0dc36809fda477f0757c59a505d4e9b455f384b8b
MD5 39f2a7fbf9a8d4f6c156f56c969df5d9
BLAKE2b-256 240279d6165dd8c33ee69901f0d7ef568658e586f765ac11da25cf6bb5b2c6fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 54764c083bbe0264f0f746cefcded6cb08fbbaaf1ad1d78fb8a4c30cff999a90
MD5 daee7351c5402904611e454c7f52cc0c
BLAKE2b-256 25ab4113bedb56e67ab28d9da7552dc08b67b6b2ceb61876ff57ebce98eca265

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3202a429fe825b699c57892d4371c74cc3456d8d71b7f35d6028c96dfecad31
MD5 d957ee3e06392c44006711798f485e4c
BLAKE2b-256 69fccb2c438c671a4cfd73b65e68399a1260466e08bb71dd16e8189e4f620015

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b6b0e4912030c6f28bcb72b9ebe4989d6dc2eebcd2a9cdc35fefc38052dd4fe8
MD5 d028ce0d8b552c35002ae74a9856c7c1
BLAKE2b-256 c6dd203d621d7987070cedecf038389f064dfceaed6051016ff917f100fe001f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 48dd883db92e92519201f2b01cafa881e5f7125666141a49ffba8b9facc072b0
MD5 1e5b9322bad6d4cc2c1c72b750fd1535
BLAKE2b-256 27d45e68cd56b7ad565cbbf0e2ee94619cccf470d969302cd0e78d47a5d34a96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 27f1009dc292f3b7ca77feb3571c537276b9aad5dd4efb471ac88a8bd09024e9
MD5 815ebeec49069458997b25d02c45a02e
BLAKE2b-256 659c04371826c287b9e0233b2a7c910ea0275a41d6a9574e186a43ead32cd22c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.18.1-cp311-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.18.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 09f03dfc0ef8c22622eaa8608caa4a1e189cfb83ce847045eca34f690895eccb
MD5 5611c9821a411d7cce4593531916b8ff
BLAKE2b-256 9b0d4d0301c1972a4cb7f9a237b3487639d97ab8f6054ce09aa363a65064dc09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d816f44a51ba5175394bc6c7879ca0bd2be560b2c9e9f3411ef3a4cbe644c2e9
MD5 a7d524e6bb51933edf25b21d87d381b1
BLAKE2b-256 33d4a18896c42f643dc90e637ca09f693545bb17d7f3d433635389a15b54f93f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f0f17814c505f07806e22b28856c59ac80cee7dd0fbb152aed273e116378f519
MD5 87d25c03642152a6dbc11d6a4c59ba9f
BLAKE2b-256 cb847164a8013131a6d009c7d0259c6af5e398722bef69e71cfc29603fce7013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 68717c38a68e37af87c4da20e08f3e27d7e4212e99e96c3d875fbf3f4812abfc
MD5 4cb4fcd410f4f98b2cd214bd640b993b
BLAKE2b-256 b0a55519e8416e85c58f0c06218310220acdd6c210d154e75da99ec4f5f0aca3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 561cf62c8a3498406495cfc49eee086ed2bb186d08bcc65812b75fda42c38294
MD5 dac1294055fb4de501a0d8e0799887c8
BLAKE2b-256 19bfa278b78c06c3032e4ad855e913f47d09b9be9a4a3ab904b0d3c5978efe29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd63cec4e26e790b70544ae5cc48d11b515b09e05fdd5eff12e3195f54b8a586
MD5 7fe6a74c534d272e6a1f8f12c408ab04
BLAKE2b-256 a81920dc20b01b4db1c95e868a0129f2ac28f93b05c7036ffa405216529cc01e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 54c7375c62190a7845091f521add19b0f026bcf6ae674bdb89f296972272e86d
MD5 9c8ed1db8f4285034906bc72d2f40595
BLAKE2b-256 81a0fa3f3f5e734fc479cd1cc9cd19fa18d6061b20dc71d100518f1bfad6562e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f7973c381283783cd1043a8c8f61ea5ce7a3a58b0369f0ee0ee975eaf2f2a1b
MD5 f8039a9d44cb92ecddca9fe67f2c4ea6
BLAKE2b-256 116ebf01c6a8133a4ad0b2bb1f6b20acd36a6aefab8ab8e098c6a9d66db1d303

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2d5728e93d28a3c63ee513d9ffbac9c5989de8c76e049dbcb5bfe4b923a9739d
MD5 09588add7cd474d15f4b9ca523003a9d
BLAKE2b-256 668d249ffe03d7dd35b410c550a5d6fba1ff3dfc86af72c5f960118ce67c62dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7a5d83efc109ceddb99abd2c1316298ced2adb4570410defe766851a804fcd5b
MD5 546663c08b6a3eb071728f74cb5567d6
BLAKE2b-256 d1249982df86dc57155fdbaacecb3dc09d28fdbb19632b1294fd2ddd8f0274dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9ece8a49696669d483d206b4474c367852c44815fca23ac4e48b72b339807f80
MD5 282dad2d755bbc23b57a301a546167fb
BLAKE2b-256 7e275e5b0831624b5529cf54a74305a65f29bf339d574b4bc5c4f11683d89f30

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 9a29726f91c6cb390b3c2338f0df5cd3e216ad7a938762d11c994bb37552edb0
MD5 bb32a53c0c17dcfe609695e41ff61e44
BLAKE2b-256 649f597b36ed210aac1c31ef8d3d9af4a3b0f2cd9f46a19061cf9885bb49a27f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.18.1-cp310-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.18.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 2e91711e36e229978d92642bfc3546333a9127ecebb3f2761372e096395fc649
MD5 9a61efff0d8fbee0065b89ba371bf9db
BLAKE2b-256 b13228fa12d6c91ac4bebecaa69de51af9e69265ef410168c62c091f784864d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 030e4f9516f9947f38179249778709a460a3adb516bf39b5eb9066fcfe43d0e6
MD5 7f06fc2642934325a6dce025f68b92d8
BLAKE2b-256 49a5132eabaf95b64d63fbee426588322377897b502c753e9f889c4a78f17f89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f7054fdc556f5421f01e39cbb767d5ec5c1139ea98c3e5b350e02e62201740c7
MD5 3f9e650e9f451b8aa4b596a5e790397d
BLAKE2b-256 f6328b82649af91e83ac25e9bf747d75fec1389aeaae0e723aaa5d0fe2a67157

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1be91ad664fc9245404a789d60cba1e91c26b1454ba136d2a1bf0c2ac0c0505a
MD5 5d9bcecd191bedc3dd25a4e6b8f11a56
BLAKE2b-256 5710e5b53ab5e11719d899e9cc5cccab1147e0c9f8a2643099b0184e50df0ad8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 58aca931bef83217fca7a390e0486ae327c4af9c3e941adb75f8772f8eeb03a1
MD5 f1fdcff5c1d349f887b756aaf18c749a
BLAKE2b-256 96804a24475c929105809e4182e601e7e659225fc24a1bbbdb1e5ed31874c123

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2ae80f72bb7a3e397ab37b53a2b49c62cc5496412e71bc4f1277620a7ce3f52b
MD5 55f9f2daa3eb3019378b18b7cc453295
BLAKE2b-256 45c2b2994b707f2f35f3c1b87ab6ac65411fca22ab61452428783ec36b419446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d0491006a6ad20507aec2be72e7831a42efc93193d2402018007ff827dc62926
MD5 7780330ffb9b72a0109b7454cd1765a3
BLAKE2b-256 4a583a846083443c68017cbe155b5226207ecaf3d2a0503d7ec4c32bd07a62cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df4249b579e75094f7e9bb4bd28231acf55e308bf686b952f43100a5a0be394c
MD5 081afe68092200c050a1bc9a3aa643bb
BLAKE2b-256 8d1dcdcae327834bdbdb5b105543041fb8fb65693b0061d914cfee0638ba54bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 667880321e916a8920ef49f5d50e7983792cf59f3b6079f3c9dac2b88a311d17
MD5 e2723a9892747dae8e3b07c41b79549e
BLAKE2b-256 a1d01943949a08650780fd53f78eab767204a49539e5c175274bb52bb2cdcfa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6b7bbb97d82659ac8b37450c60ff2e9f97e4eb0f8a8a3645a5568b9334b08b50
MD5 310680cf618466ad2bf7ad025177f5a7
BLAKE2b-256 6eba9f1f92e4405d5dfe78f3ac58c1d76d0fd2ef1642209cdb189afeb9967899

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ee9cf33e7fe14243f5ca6977658eb7d1042caaa66847daacbd2117adb258b226
MD5 ecec84fd8a113cea4064aad41569e2c0
BLAKE2b-256 d4779add41d5abb5dbb77d203e467ea5ba948f97f825f77c87bbb6a461f2035c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ca71d501629d1fa50ea7fa3b08ba884fe10cefc559f5c6c8dfe9036c16e8ae89
MD5 0897d908c362416b6df3b944ceee5927
BLAKE2b-256 5808032e7945199e26fad153612989b96176cff44cc7a3edddf980fe937ef71a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.18.1-cp39-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.18.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 582cf2cead97c9e382a7f4d3b744cf0ef1a6e815e44d3aa81af3ad98762f5a9b
MD5 7e224ea86a614161948e03e8c22dfb81
BLAKE2b-256 b510f108a80f2a117e427a1ba4e6ea7dec82a9a97eda1daa9006ac076efd4495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b560b72ed4816aee52783c66854d96157fd8175631f01ef58e894cc57c84f0f6
MD5 90558bb3efbb14e5d2552c70e00a3e4c
BLAKE2b-256 c1c3473e457b13c5e1ff45bc767aae4b040eabd499aab5502963d941e61288d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2533ad2883f001efa72f3d0e733fb846710c3af6dcdd544fe5bf14fa5fe2d7db
MD5 35ced83bb7675d23d9a34f3a3aeb19f8
BLAKE2b-256 9ac2554048ede216727ca3c47dbef0448f5c1466e9b0c333841c82bf817feb2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a32204489259786a923e02990249c65b0f17235073149d0033efcebe80095570
MD5 219820199a5453a5fbdc3a13e0e97743
BLAKE2b-256 1d524870ef6e6d31abac14f686c45ea7d524fbd8b51082aeab5533c86dd97595

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 250ae39445cb5475e483a36b1061af1bc233de3e9ad0f4f76a71b66231b07f88
MD5 a920389e64a91ce3f8f6a0673bd84028
BLAKE2b-256 a58de5ca7c9837f2cf759a8b71f90ebff2965e46e80cbead691433cc6bbec26d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 12a05db5013ec0ca4a32cc6433f53faa2a014ec364031408540ba858c2172bb0
MD5 e936fc3b8a1f692f6116ec5c92e857f5
BLAKE2b-256 d2b3055d29a223158388c4b0392d274f54e87ab5e003bc2d3282be538a2a0f54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 76b86e24039c35280ceee6dce7e62945eb93a5175d43689ba98360ab31eebc4a
MD5 d865168c405b302fb3db2e962f80f8de
BLAKE2b-256 9dcc8d18d373e684ac0f45874f6220e6ab82c945bb3c9cab56ca6922a3be1a3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 80e0e57cc704a52fb1b48f16d5b2c8818da087dbee6f98d9bf19546930dc64b5
MD5 28372f3a22b4c22a27d2f0d6367faa3c
BLAKE2b-256 c689ec19032a75938f9f0e9d1564a498369c320bdcf260f1d895ca58daedf0b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6395a4435fa26519fd96fdccb77e9d00ddae9dd6c742309bd0b5610609ad7fb2
MD5 abf6a4d1d2d79c1b20b8e1edccb0cd05
BLAKE2b-256 a47029ce7cb6c4a4261eaaf4fa0e164152cfdc1aea1cd5df53951f204324311c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94b9769ba435b598b547c762184bcfc4783d0d4c7771b04a3b45775c3589ca44
MD5 6655e9965f89e31a94b50ea1df2dcfb3
BLAKE2b-256 47441000c87754fcbd00584984aa86705e6d0e2a10427559adf925210c13df57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 aad17e462f42ddbef5984d70c40bfc4146c322a2da79715932cd8976317054de
MD5 5e2c8caa449e4dc08ad683cd99877694
BLAKE2b-256 92b38762c3f2c40f951a7467db969148ba1f732644371266bd15dd73a5d44619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 907a4d7720abfcb1c81619863efd47c8a85d26a257a2dbebdb87c3b847df0278
MD5 f752f8be92cf5a72f12d267bcba65a74
BLAKE2b-256 32bd8717a05cb836e21f71cda538ec73dd3efc2c40f163a2adcef3cc55f33713

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.18.1-cp38-none-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.18.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 63d7523cd95d2fde0d28dc42968ac731b5bb1e516cc56b93a50ab293f4daeaad
MD5 b64181ac23bccfccee108fa2758ea59c
BLAKE2b-256 7ac0fd4293f3bdc69916ef8e08949594d139236d54feb3069bbb2ea41b800a41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 641a018af4fe48be57a2b3d7a1f0f5dbca07c1d00951d3d7463f0ac9dac66622
MD5 0368f53fb5d43f0bea361c98305aaee3
BLAKE2b-256 05da0b11133b9aa11b40422dca3c424b7699a84a6c4e66f64230106b9e957fd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 85233abb44bc18d16e72dc05bf13848a36f363f83757541f1a97db2f8d58cfd9
MD5 9296a36e6623a3b9fd165714a981fd13
BLAKE2b-256 df6f5010d48eb98bb017f5fd9be0b9d88282558f75101487b701bcc9cf928caa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2adaeea59849ec0939af5c5d476935f2bab4b7f0335b0110f0f069a41024278e
MD5 463198007e5d8b806b22c9b1304be293
BLAKE2b-256 882f756bbc9da274297a4bca282b90aaae09ae201355dae248d4d52a6aae6184

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d2ce426ee691319d4767748c8e0895cfc56593d725594e415f274059bcf3cb76
MD5 4e156c2bf0a29a33dcf3fa1b8f8b2cd6
BLAKE2b-256 2651a132e23580c34b23548666088e0bbfcb1e6d72095c2e17a4f97c95ee8ba5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 38a5024de321d672a132b1834a66eeb7931959c59964b777e8f32dbe9523f6b1
MD5 62a7954cfc06b8a9faa72d7bbffccbc5
BLAKE2b-256 5bec135062b996f753e359f4161b35b26e4f9646251b124cf99303982bca1ef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dd3f79e17b56741b5177bcc36307750d50ea0698df6aa82f69c7db32d968c1c2
MD5 c5728ea6474b69a0582df28986f77e98
BLAKE2b-256 ee449d7af93ce67cb5c97c53435515ac5a4175a97d209d8827b00e7d7286a356

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56823a92075780582d1ffd4489a2e61d56fd3ebb4b40b713d63f96dd92d28144
MD5 baba1c82fff4709e9e1bc3eb5d4b2e59
BLAKE2b-256 bbd4500d7f077cb3df524cc510952dc946c7f6f69032c7e5d33db86464cea82f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9b6431559676a1079eac0f52d6d0721fb8e3c5ba43c37bc537c8c83724031feb
MD5 92d42a8cc7b07621a520add0926aaa35
BLAKE2b-256 fff319c3b7dc0ba66f0fc6506a0d9f7c1a403693a213bbc6a39b82dbac16c972

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c0295d52b012cbe0d3059b1dba99159c3be55e632aae1999ab74ae2bd86a33d7
MD5 bfff80efa9a19594a58b8131b7da15a0
BLAKE2b-256 08e62277027d23aa6554aa51812c002ce80aba135490b89bdd746416cbf2108b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.18.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3e352f0191d99fe617371096845070dee295444979efb8f27ad941227de6ad09
MD5 3199902727fdc2de2d21c0441507f7f0
BLAKE2b-256 b597bf4d4ce90f5be1ace8a67530a45cb795830c88a475e9ccc3893633665346

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