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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.19.0-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.19.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.19.0-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.19.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_core-2.19.0-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.19.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.19.0-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.19.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.19.0-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.19.0-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.19.0-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.19.0-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.19.0-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-2.19.0-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.19.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_core-2.19.0-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.19.0-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.19.0-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.19.0-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.19.0-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-2.19.0-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.19.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.19.0-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.19.0-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.19.0-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.19.0-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.19.0-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-2.19.0-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.19.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.19.0-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.19.0-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.19.0-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.19.0-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.19.0-cp39-cp39-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.12+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-2.19.0-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.19.0-cp38-cp38-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pydantic_core-2.19.0-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.19.0-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.19.0-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.19.0-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.19.0-cp38-cp38-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.19.0-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.19.0.tar.gz.

File metadata

  • Download URL: pydantic_core-2.19.0.tar.gz
  • Upload date:
  • Size: 385.8 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.19.0.tar.gz
Algorithm Hash digest
SHA256 9ad77f1aecedef233390eff7fd643fe652e5ac92b793329424c2a1d2e28c08d1
MD5 037c620103f13abd1c6a8988cd7a55c9
BLAKE2b-256 cbeeca9773225785715870c9a819161afa424caecfc6944befd229f52da4a513

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bf1330e984de7145da005ef3aeb6e7f3c0eadbbdb2c5e9031c8528a7207b6a01
MD5 d533bbe5a87952eea9bb002b8dff04f0
BLAKE2b-256 dbff00b233031f815459db8e49d7589831f271e1db3eea099d23483e6ace20d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 54cfbf6df12ed244ec53d0b5b07e1aa797d50d8ebf6d21d11ded269b4f3cbb23
MD5 223a6d3a8511892857008e981547dc32
BLAKE2b-256 0f18f0c6e043dc93ae5f9aa642ef5ed501934601e87f95873421e59d749e0e23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3baf0158d6c8f7471fbe9a21ca45a071f6c46cf4e633712c043b25d474623bfd
MD5 e759947942fdce2dcc1ba19a721971aa
BLAKE2b-256 451f481fc46ab78cfc8394c5b4670b66d801dec3bff3461e40c1a0f0b6273576

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5aefa8ca2dfc707b525d6724e648555a3c34bc590ba71412c5faa727c332d81d
MD5 5b48c5e7fcb21524ffe5d69a3aa762e1
BLAKE2b-256 91f1493bb58229c1f3a677f1b1f62d36dd0dfac7e3bc90312d2c1b96937ecc33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 21cf8fd9923b4ef58204e24eaace75bebddcf1425afe89706283e330b7ead4ae
MD5 537a19d5bf5ebc45a4ff6d619f1b7198
BLAKE2b-256 200fea9dd5160c91bdaedb3d844b484bb5cbb675d8a68546618e76f1f7cf2679

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e7011ec8486fed50ccd964d192d6e2a019ac43081ea626ee415df3e2da53d420
MD5 5dc1407e9816cc95c80da3506451a6c0
BLAKE2b-256 ab0f4053444d096cebe351c14e9f7c071a67618b66a0244e3f6e698c7daca6ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be4e1a1b1350a08c914612dd23af3bbb4814b527ab1dc3c7d260f60729a5adb4
MD5 d666288817ea47b893b409f1d5a81edb
BLAKE2b-256 1939d7e413f4a3f6ec83837606f3c3beaa56efaa22a78d3df3b239109a02e270

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 77050e7fe77ad498e11e47c49b76f2535baf5f587305d5acacb14115e534b2cd
MD5 f66be9d92a3e2badd0c14cf7348edf79
BLAKE2b-256 d9891b18f82d94a87616a5022d4a4f08ebbf1fe2d7af422595df073d7a84ed14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a7750d8965be1588d4d5f452863acca70e9f41b58e7c24d69536ee62a3938202
MD5 b715fa42e9b4d8a87b9fbc7a89943c34
BLAKE2b-256 1862031f4c0bcd9395d733be2ab2353b0358f9ef0d34e0a8897b2f20a2c0a1e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7c4e3da14078204adaef4c5636feb02e69373a6d27f68671b2fe683c5c737a83
MD5 e187500ee9936f87832defee9b7a5d2d
BLAKE2b-256 6af399961f7fa2da67abf241297dd72b53501003426644c17a40378f8b91f93f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 44d7c5ba941e5e5106c0d79d8fe40b8b2a36a22336a0ce486afc3ed9b8678a14
MD5 82bf9f1bc0da426ba74e1026ab1c799f
BLAKE2b-256 6b031c53972c332dd5be19adfb1722e52942ca101f5cbdda26768fbe7795ab74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36093c97fdc655455862a19c4a7fe615ef073cadf91a81bb9a603256005a2e6f
MD5 8a958287ec9e3de298f3c2671cc71a56
BLAKE2b-256 5f5ba304974829eddad25ad0e800666f20895a74b75e2dbe3f1d57e1c5dfe29e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d63680fa4f3601026b81a8b13e5a4a1a6902ec6ae34e754e9a2ecc3be32be60
MD5 8695e19cd680b67c3ed3c6a56de7121b
BLAKE2b-256 c3808eb8ae36b1c8f440fe4a8a951242738b9b4986b720ac41f87849ef0b9795

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 81a1970745c106a918422fef735a91bfd09631ba97cc97eb846a0bfb1eee03e0
MD5 cc036d199b8e6f296bedfb8e02f9858d
BLAKE2b-256 555e7610f2a42ad7a65987a18d20becf7fff9d082037b658513b10451729485b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad6985163b91f1d13505b720e89e6e19b784fbf3f5bceec8330c128fa5ba89c3
MD5 0dfc1448a90710f5d4c64f0f971644f2
BLAKE2b-256 460b0a4237952d52c0d9ea08375efac9c6c211a11eca635c87235022899efe97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-pp39-pypy39_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 357b4d4f7bd4439327f07373c198a10aa228c1249bb76e33b4f85630d8396194
MD5 403c5b719c81fbfbe96fe8ca460b735c
BLAKE2b-256 4ee5f9da5c6f9190f904c69b403180ceb037d94386020d292407c79ae8a14492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 d02a9508bb48f1cdfde82a229c36ecd98cd475dd9f5abaa98d18f7f2e6703689
MD5 6a7a6343a2852af4653bf8e1ca0e07d0
BLAKE2b-256 ac158033b2a328567c2d7bc997dcb44f38d1f2b7ed70f8f3713d938bf0b1c171

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.19.0-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.1.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.19.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 4caedbde10dcbd1512b3fe7b32cfd7eba733ca973d3b717523eb847173209c7c
MD5 84b87effc19565b226a46247bcb1c380
BLAKE2b-256 7da76f2750114ab62fcb515a5b0fc100881006897b2873bd8f2a0c9bb76e9ba3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b5db504acd1b2aa7ffda224d9f314718adcf89d7f878472cdbb3950e1f5a975c
MD5 df852e99fc42994e09c0264422837613
BLAKE2b-256 84b7283e81a23cdb281c93b2075d714ec939738421a3cd41f55c9004df4afe31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fe4f2c5988fe627a17e3a2445ea4698f8e4d8138672a863980901cd90c80d11d
MD5 ab8ee1214a372fdee000bad6a55d71a1
BLAKE2b-256 d92a7cfeb908a39015b75906c4c50e68d2d3f60ba1e0c866a5b6cc7caeae3122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d32ebe0a199b6f0706d7f0c2de2dbc5a29b8cb0d850f31164b0d20bf61116ba6
MD5 b00bbc9e86e2eb19647ae64da1bb0baf
BLAKE2b-256 3a5dcb458323cdb4ae2754e24b5f7470b5d47b249bccc090446b8e2851408d72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6a66f7c2e829f3577cd9f6e257ff8dd189084779f8169ac655ac2b3c384b5e7
MD5 56ecb24691294cb529b37a498073baf8
BLAKE2b-256 35f66c243bd02187a8ff1ece47f0260a4e714760fcb8463593a6141b795b06f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 24dfedebd821738c8b8bf7951c7aef2e3593d775046443944dbb6d0dbdcd78c9
MD5 7c1a1fcf662717dc09d348a195d879eb
BLAKE2b-256 ca08fa87b51444f6c10da285313db17ae5886b70fe67691a4cb67e5756f059c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c46cf8061b57d88a1cdf9644c40e7a4c77e4fd297ce56d70293cd92d833cde62
MD5 f638aea4e37465bb54f137878d00848b
BLAKE2b-256 0c791c32858f359d6427ff8f35f744ccb0e00cd34c56f4f56cf9be7d30830556

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 15fb787b259104d7df7b0562287aa69b2ff363193d67f9b42a07cd001b391a47
MD5 70e54cbd54b52e699c446cbb009b984a
BLAKE2b-256 519c27578b6d2e63091014f5b512ac62f3a33df0e5524e5f8f339d3e1c231368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 27993792688aeff069e6cc624b1650379089444135439fab1c3eda509d017f57
MD5 3855558d13da90b8aaa3c2c82a031163
BLAKE2b-256 40857e2f68f0c9fd9d2c65bb1748610d90af95c3ef04414c27e3a5997d2ae103

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 817b1f1ec02a51b7cf090a3f1c63b889ab12e4b7151c22329c8594c17d775425
MD5 88e439846c423935f127424422a5d687
BLAKE2b-256 7469df2098378a66dc6477ef77e2a8f8cdd1c46c269c9701704f0f25c0c8d495

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eb8622c0c438e918514c905e9e0c2fad6cb74dd170b1475c760d0d9b96d9502b
MD5 35cf09edf4f70189c9b7869a6e265c4a
BLAKE2b-256 d0c43004472fff8ee3fe7255826cfd2ba848fca717ad8ef24cd211c345c56819

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 58714a33947e81b8a036b37de1a81101a0c6ecc08d72eef3a49f6744dac3e5ca
MD5 3a82b55d73f08b58355ea4a1fc9a787d
BLAKE2b-256 8a487b0d0a164c59e1ac6edc1fdbba5a07e13defd14f30ab331e64f75afbab49

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.19.0-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.1.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.19.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 352175bd4d54a5b8df0c758ce681f98db171bd5f28f29273f7409f3fbe3f9c2c
MD5 81d02a6945bdda0bc9ac46e5c2097d32
BLAKE2b-256 0128f0831c9cdbf2873843d47d2577a3cec2312c953695e0543e42723df58978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8681193e0c1e489ceb78d55c2e80dd00ebf083d697f8e2ba870245d8074e2656
MD5 9d735efe7a3013614bd25bdd8553dc8e
BLAKE2b-256 1b3cc006f73a601669bf89a097f79986fd61b9d0898a333c733f40025722cfeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3b0affcf41101b76f1bc2371dc894d8f43299f55e383618ffd8f6a48b9bb2885
MD5 4c94307a7344a8dded0de726108588ae
BLAKE2b-256 7b262c922d9450d28b99efce2995a05ced61b98598fff418ef965910571b24b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 76911b1e736ddb8328136f4a4e95df23d1eb81a0db37b8ffa559e76cdd3e002b
MD5 27881d27478df094cfd74248e983fce9
BLAKE2b-256 a3e7062ad19a49e72272fc014690be38d28b0f5d3eda67efedc34dfee06ba2ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c45711bee4e7f8e69479c08f3ccf80efaefb762c94e90bebe43967f5b8565624
MD5 a1938f35629b2ea10af4c8ffc740d38a
BLAKE2b-256 7d39f1cfa849211c0bf18d2b99a00bef9b426f8c1d09454911ebffae71e24ab9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b32208224433acec32d5da482d6623c09ee7a25a63c8c7719c0a73e4bb7bb545
MD5 533f2d8b18fea80e75c4c4554544e8d9
BLAKE2b-256 c4b7478f7bef4c7c363902a6c9edd851f2e69ec0e0aec1bfec5355130dae65e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 67fa4221c5447e386ca953f5d98e53ca9ca2608d9cc00ca879f0b973fc9f52c8
MD5 15bac408886e1867df44cf41c66e776d
BLAKE2b-256 0adec0223e926a842072cdab8141a103cb0988e274545feae7976fa6946fb901

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6f9d7f0deb94fd0a686d979cf96033ad153cb847403dfcbca30059a57b4aa485
MD5 4151144060cea680ba69b34112b7259a
BLAKE2b-256 e96224de406854f8f0490f8a04d4fb7581ee4dbd5dbbe8e8c05c90fa65240cda

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9653ef3574d4d79f6f79c9b1ccce19370a80c2949ce111ab899566f11869f580
MD5 3597966096ab6c0883a6172f1b647bbb
BLAKE2b-256 2b717aae5d388a6410124df598b1ef82225ab8479382ddc9d5590243a75b2a80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b9b324df3192eeee1a9ce086500089953f1b935753f103e173c792bf7b13b55
MD5 712d938ab52414982b64b7baf582b35a
BLAKE2b-256 fe9bfafcf4dcbd89b5296c9d6d385fff2ae1f45b20c3ca4c05644273a19edc26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46a0404fd493106eee5c759de0e42bf787722f16aff39759a4b4850e7ca06b5d
MD5 88d1c63dea0c1e1247041d411e6aafbe
BLAKE2b-256 2bc01f1ee794b147b3f1e6754ec51f7867b9afc04260db1098b44db6894da559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 fb0f1ef04c3f1720aaace06bcc79bf65b25e212ec4328a31b7e211478da236cd
MD5 94dcc3df06c71d99f24580606dd6f969
BLAKE2b-256 ba245412322569f4ec04b356c0a4571c0033d6b5521c364d605096b6e595ee69

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.19.0-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.1.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.19.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 3615d683a634771386b360f6ecd43da1aa9be02813ec9d0e947155374fd206fa
MD5 997da10e9fe9d471f46a8115e433aec7
BLAKE2b-256 af8a8bfb2dbf1d435b0b51927b54964cf41963548fb3a1cbb3f1ced43a7081f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 13ec4208ddb5ff5c667bdc09236cff77bcb2254c5cf6ef26e413e2e20a4f80f0
MD5 929cc72d600dbfa1a1f2ecea34cb83ae
BLAKE2b-256 c61cf5d8257a5d7a730b46602a1d1deaba34a189f6e882d05f853305d619ed28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c3a2d247ecc1ecd48ea13a15074591b934fcec8fecf328ae7a27afed9ab62b7d
MD5 1b525c98b8a0ef02471c20cf080437e7
BLAKE2b-256 ba060287b295d79724b532b87402b8628399330939223243f373e620bece57f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a29c8c2f2bc046336b8f70ecbd5091c64e2d82a811bec263f25f1f30d770d05b
MD5 06099f2baa8da927e9d6336bd57ae4a3
BLAKE2b-256 5358955b3c0f4cb88ad6593dd9ebdaa7b31830957cc21c3ead535b6d6f0e11b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 15aab2773e658a2bfe6562032f5f405e50c85a9a1afd75d10f593e854f2bcd1b
MD5 4112cc5403bc81991c1ca0bb1875dd19
BLAKE2b-256 4c9a65f21ebb96086af5f98b35605d0d4941ffbc46d7a73492e2e4450223123c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b548f17c140399c5d81139bf16adeaca57500099d57d3e25aa6e615828b30a1e
MD5 73126c9e2a296f64de35ef46906200d7
BLAKE2b-256 16b5af8b3300dc0fc9891acc80414ddf66c65a8e9cd02ca53eca4064d8991d04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ab7054b15e89694097b4809147809513cdb3fe690f66db70a912b73ed178ca8
MD5 98c595c9df1eda0803f69640f5156e4f
BLAKE2b-256 6bc38a7fc080fc6a9aa722d88d9d489745021e4c59a5935101a7330cb5441acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 742566a30de54e708d514596c735bbdead59094ac2ad22b649a8eeaa49bb15e4
MD5 80d803c42b6b38d2a35a7c1750f4e350
BLAKE2b-256 567a22437c1574780a94437da1e85ff77c134aaf2b98748e9ce10d183fd0784d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3035c6c9b299bcdbb2f5ac5dc5ced6be4242d3c6fb474bc53a6a494afba099de
MD5 e799178699f35824ee26393ab7512b34
BLAKE2b-256 25de437e082addd78eb46cde3f7e68dbc22902b7701984ff11e8f301b72ffa70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 026690f5aa159307781e718329186f24189164874b8dd7dd19590260874e2be7
MD5 f4760959d734d4bba9c338aed2b6cb06
BLAKE2b-256 7b65a7df44a45a658f3e92955c7559626ceb46a8dc32c4334e9f7aaa4047d175

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 eff7ea443e688df5696a8f78519533f2e5964fefd5e2d30c0e233937f3ecf426
MD5 11bba7239053e8ed868a024a6290318e
BLAKE2b-256 4fe908ffa516211044e0ad770fc2e199612811594eecfbffb4fd97ea7954383c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 844b5ac60646c6a47c71d170bbcd9a515b8006c72c9cbbe43db7b012127085f0
MD5 b6720a3bdeb58ed064c167325b33bb22
BLAKE2b-256 5f0c396b0e3772b9afd42c5cd369deb93b63cda50709ec6cce4b3a9577408e76

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.19.0-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.1.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.19.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 48138fc8ade536559a2c37efa6458f694a22eb1a183caaf95018a3d19ee0ffe6
MD5 df9d57d333c76924f16ca072d9ba29f7
BLAKE2b-256 0eca171c651a475b7d75edeb3607dde6e8ca6ed3e51a4b15719dc8735500c073

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3e718e2815772cacad70ab87e6c0c028bbbfae87da7dfc46b5a5895d5d8d94b6
MD5 cf9d1be747ef6383c35236bd268d3c02
BLAKE2b-256 01bce3f2fdbdab230eabd767de06cf4a02780d1181687f4fd6029646ee32deed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 58fcf8e2c7e80f8691d88b9c576b5ba169e5ef013f3e18506c84abe1f0bdc4f5
MD5 1c9844d3d79afccd4947b53361fe8ff1
BLAKE2b-256 8d69c6de55fb0190ef4e6afe556526fae25e7fb13a8c207c14e6dde98f5ae723

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1d48e18d4b7ce7dd870a3472b414881f27e65b6c5c69f55165639f452d9c367
MD5 93570b6264daf7daec086741bb32f985
BLAKE2b-256 217b5ba5f2b02f0f2977c007827770d83f489ee0cc6f260ee126c24faf5fb5ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0f65a407ac2d91b37b1ae0e3da48ca0e7bf5061149fcc21d4c2088241fc7a531
MD5 62b473466e6228ffca35b8c3d0fdc77f
BLAKE2b-256 778c3ca2ae90ca0a67b64d2d01f1c130928ae86dd00e314dc8ff514025dc5091

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee937e3e680933cbc3c918472ec3cf8c81fe0742edd726ac321624b8966cf373
MD5 c0884d4d0f1b3c7cda66a07e5d656702
BLAKE2b-256 83e6facf0d58e1bc4c062f214842568f645a19cf95fe291746acffa1dbceeb18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07b744aa0718e86855947a5576791235eb910b60f870746cfb75042ac66a2270
MD5 3cfe36dd56de78a71177b530dde27156
BLAKE2b-256 86c36da226b0f4881efeb95e9303ff117c8202109a55fd2b5e52c99b77b87bac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff43c2c8a880290f2c7d5253351962120d8274594572a70e18a567b3f8f767dc
MD5 26608fef70804cf637055908da7dd1ae
BLAKE2b-256 16f9d93565ba16750375fadcf1300f205b7d0b06b2c4e5ed5a57866f22c8da36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c64e93a29f6eecfaedd181a3d762dfd4565e0cb56f5449b4d219d3e71db578e
MD5 47e63e3a5288dc9207630672e1f4d02e
BLAKE2b-256 1892970f4cee75da2c105f9c4927861f451eb9c41d609c88203e90999015d357

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f679829cb27dbdbff17597dd0a7ba070be2727bd3de70af7329a264a4b10ecd
MD5 4b01cd9c0e84aa508699e8fc0500b2e3
BLAKE2b-256 37103ad277e41f05accfab336dc6d40eb15efd9e18e0b3b3af187b5919777ba8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1e00bf187fd312c0a4d798a211708fc60dd1c3cad26b54b8d336aabf39727b81
MD5 7b9e46339f444b36e771958c676f7ceb
BLAKE2b-256 31469bfde813da1416c0adaab7e3ad4f07b52791e848896a16f9d33eb5ba867f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 e0dae4db074872ca570a8c9a2b90cb1eae2f65e0d23555c76db912ffed00694c
MD5 09e94fe35306e5258963d287fe2f8661
BLAKE2b-256 981fff594a3bac79d1276ed3272cee6d813e8f4642601883b112d148b654eec0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.19.0-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.1.0 CPython/3.10.14

File hashes

Hashes for pydantic_core-2.19.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 bbcee251d1055e6e569c96e01db94c082b8cdfe57acb7bb233366387c730a641
MD5 d6d74da2492e86bdaf20d66aaf60d0f1
BLAKE2b-256 1cf9bd208792a819648385924a32adf10934d2a8ba2eef330077e46b9cdc2396

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 45bb25a24765293e1c347978eae783c39a4d898be86c207e362824e8b6a47f1a
MD5 380f91aeddb043096bf7ff7092fb097c
BLAKE2b-256 375e02c7dd31d512fd2e984f6aadedb646a63475fcdff6241dc9865ce2a6dd59

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1defd1eb666fc36aec5b96367127dbcae597f0b722829740860f581d3ece42f8
MD5 e35facb5708553df4e830d13ad73675f
BLAKE2b-256 169558efb83f02cf9e1b3b247c20bcf61957ccff7270157eaf78b14a4a15a6f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 527290b265d9cecc9a241ca6b63bd4e9a759839da0c96bbd788591bfd61df1a3
MD5 fb1fa0d76248b6c10c75882e587187fd
BLAKE2b-256 7092db11d9e6dac28be2c8e42e44932a9ce0182a760224b56e86704c517c4f46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b9df3d2aed76f14cfe71b225269737c9118dfedb08238f300a3f5459e52ce1ff
MD5 8972605924581366ee9ce3445c7221a7
BLAKE2b-256 2f8be74e3b87e1aa38f5a14ee284340c5ac2d1e1a4398fed4c7759ad0f5fa21b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7cce949b12d3a2ea53ead1e58c9807b17fb8e1fc3e3abf2953032eb070cab9ac
MD5 9e35431c481595571d4b442260ae22f9
BLAKE2b-256 9558044ad4ed9e564955c63ef25132c89724944e66225ded5c9ac43736fd7729

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b724147bdad11f027127785865833b4368ffad0c8c4eda5a009682379db65657
MD5 e5a2d0a37cfbf5ca397ed0a587aaa4d7
BLAKE2b-256 3bd9f96b2c0b8f8e2f3823d593f62fd24e08cd0a3d3699cd4dbff496edc531b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 455c336d8f73d67fff2e832e1527665b268446b7cc6fd7e3d4a0a91bb7a8b8b6
MD5 310a9cc47974342148455f7606a656de
BLAKE2b-256 a3cabbb498bf0ce4204f86ae8a056e3d38988026ff0161ecaf63a0aaa0df6550

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5992e489b7596a34d1eb97e0791acf657090418fed8c8e4de8f1347524be28dc
MD5 58a541a60b569aae8bfae787a231e99b
BLAKE2b-256 71bcb007ee97f2b385c17dc812c887c206c57a767d40cfd7d150e2d9314a3a33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a483bc5c431fdcec8d866183ac94841570735217900dc267163b1b5a29d4c10f
MD5 e4cad113e913aadd7acecfd3f2b38d02
BLAKE2b-256 8893e531c9602b54fbce2dbbb1cbca6eac34abbb667e2ce156ca53f20b138203

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.19.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3715d312f5fcd79b69376f2c917e2dc8cd580b428ef701a9dd4426ec49671fe0
MD5 daf693fe69423d8ee29635608c8bfd2c
BLAKE2b-256 9ab1b2d420ef625d0d64d913bf088a188d30f3ad06aee72f67b5c9714515ec8b

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