Skip to main content

No project description provided

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.7+ 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.4.0.tar.gz (322.4 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.4.0-pp310-pypy310_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.4.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.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.4.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.4.0-pp39-pypy39_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.4.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.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.4.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.4.0-pp38-pypy38_pp73-win_amd64.whl (1.7 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.4.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.4.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.4.0-pp38-pypy38_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.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.4.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.4.0-pp37-pypy37_pp73-win_amd64.whl (1.8 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.4.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.4.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.4.0-pp37-pypy37_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.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.4.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.4.0-cp312-none-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.4.0-cp312-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_core-2.4.0-cp312-cp312-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_core-2.4.0-cp312-cp312-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_s390x.whl (2.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ s390x

pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ppc64le

pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_core-2.4.0-cp312-cp312-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.4.0-cp312-cp312-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 10.7+ x86-64

pydantic_core-2.4.0-cp311-none-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-2.4.0-cp311-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-2.4.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-2.4.0-cp311-cp311-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_s390x.whl (2.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ s390x

pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ppc64le

pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-2.4.0-cp311-cp311-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.4.0-cp311-cp311-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

pydantic_core-2.4.0-cp310-none-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-2.4.0-cp310-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-2.4.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-2.4.0-cp310-cp310-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_s390x.whl (2.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ s390x

pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ppc64le

pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-2.4.0-cp310-cp310-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.4.0-cp310-cp310-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-2.4.0-cp39-none-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-2.4.0-cp39-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-2.4.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-2.4.0-cp39-cp39-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_s390x.whl (2.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ s390x

pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ppc64le

pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-2.4.0-cp39-cp39-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.4.0-cp39-cp39-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-2.4.0-cp38-none-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.8Windows x86-64

pydantic_core-2.4.0-cp38-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.8Windows x86

pydantic_core-2.4.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

pydantic_core-2.4.0-cp38-cp38-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_s390x.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ s390x

pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ppc64le

pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ ARMv7l

pydantic_core-2.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-2.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

pydantic_core-2.4.0-cp38-cp38-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.4.0-cp38-cp38-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-2.4.0-cp37-none-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-2.4.0-cp37-none-win32.whl (1.6 MB view details)

Uploaded CPython 3.7Windows x86

pydantic_core-2.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-2.4.0-cp37-cp37m-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_s390x.whl (2.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ s390x

pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ppc64le

pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.24+ ARMv7l

pydantic_core-2.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-2.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-2.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pydantic_core-2.4.0-cp37-cp37m-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-2.4.0-cp37-cp37m-macosx_10_7_x86_64.whl (1.7 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.4.0.tar.gz
  • Upload date:
  • Size: 322.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.4.0.tar.gz
Algorithm Hash digest
SHA256 ec3473c9789cc00c7260d840c3db2c16dbfc816ca70ec87a00cddfa3e1a1cdd5
MD5 03306ad72e837ebf7d95cdabe2b18141
BLAKE2b-256 8a6a2609fb28f3c289eacb2a2ddaceb7ad0d327b4b4678146573295d98f012b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 08f89697625e453421401c7f661b9d1eb4c9e4c0a12fd256eeb55b06994ac6af
MD5 c2159629f39b26d569fe2b5bb366a3bc
BLAKE2b-256 b4b43bf2dba260dddc5d3ab2c1e840ae8f4ab5ab7dae0f2c332e13c730f8938d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 382f0baa044d674ad59455a5eff83d7965572b745cc72df35c52c2ce8c731d37
MD5 5df3151ba0e50490fccf1f6629ea309e
BLAKE2b-256 eb90b13e6d8783a8eca1392fd4dcebea953e4c52647cf257c09b37243b595a04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a4ea23b07f29487a7bef2a869f68c7ee0e05424d81375ce3d3de829314c6b5ec
MD5 354016cae7882c187f017c1c1bea456b
BLAKE2b-256 4c557b5b537f2502ec5e15938314f33a0c054ed43dd5aacc220e4cf235a6956f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 da055a1b0bfa8041bb2ff586b2cb0353ed03944a3472186a02cc44a557a0e661
MD5 87ad642555b7b2b157ef692484284f69
BLAKE2b-256 759187fbc527191a762729b0c86b60c05a9b162c5b2d0d930a67cb5d745614f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2edef05b63d82568b877002dc4cb5cc18f8929b59077120192df1e03e0c633f8
MD5 bd9ef7cda3559ee9199c7f1fff33bd08
BLAKE2b-256 e2e936e086f95ec3cdff3421f165e54dd1d0fabaaccf07eebb0555ae12746e68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 77dadc764cf7c5405e04866181c5bd94a447372a9763e473abb63d1dfe9b7387
MD5 c1570a2b103549e0ffb25df74029607f
BLAKE2b-256 442bb74a360ced5d58a8b276eb856e1d903181ac816280493cdbcd7883cdde43

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 3fcf529382b282a30b466bd7af05be28e22aa620e016135ac414f14e1ee6b9e1
MD5 2b62ba4efbb35779a152e55c6abe4175
BLAKE2b-256 0b13eb10befcd2e7111ad4f53d99389b7e872db3d1befb930b80e41ed78d7c28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3ded19dcaefe2f6706d81e0db787b59095f4ad0fbadce1edffdf092294c8a23f
MD5 3122940c0687fd9abb95df4027467712
BLAKE2b-256 b5ba083a3e676b6cec5acc0e3a47803fd9bfe3df531d68aa888f4c97b61be0b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b85778308bf945e9b33ac604e6793df9b07933108d20bdf53811bc7c2798a4af
MD5 6458cbbe5ff7ab94dbfb379eb41a2d78
BLAKE2b-256 6bf82f2b606610822a177f4e9fe28a84535e9770e54898bb1cf89826f68e9089

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7aa82d483d5fb867d4fb10a138ffd57b0f1644e99f2f4f336e48790ada9ada5e
MD5 3c179161bf4c8e5239e90fee795ca993
BLAKE2b-256 1b8db4011ecd34f5b139fdd9b2c38962ca62128ebbd40e911f277a0720bb3cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a027f41c5008571314861744d83aff75a34cf3a07022e0be32b214a5bc93f7f1
MD5 7a4cf34feec0ee6ab5e572ca4be8e19b
BLAKE2b-256 02d0d91f152a1ab00264ac8ba4c4330755b981a77982644089e4c896f080ccd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32a1e0352558cd7ccc014ffe818c7d87b15ec6145875e2cc5fa4bb7351a1033d
MD5 215343b7092028b36256fa7af36a5b13
BLAKE2b-256 5d26891441b79ea6b620faec8ee1ef4ee9a02c6ac2e9f348fa9c051f8a783783

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1927f0e15d190f11f0b8344373731e28fd774c6d676d8a6cfadc95c77214a48b
MD5 0d0beb69b9d64fdbd60ef5fb3abf152d
BLAKE2b-256 d3e2448bd4949ad4bf6c57046366c04a5d0e2248454f4e594bffb4bed7c855a7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 efff8b6761a1f6e45cebd1b7a6406eb2723d2d5710ff0d1b624fe11313693989
MD5 358c118d306f80b2776c0e133020f4af
BLAKE2b-256 0245ebe8db34f7c2fa1652b4e67d5a7a76b31f420f22d8b36409e2a852264c8b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dd2429f7635ad4857b5881503f9c310be7761dc681c467a9d27787b674d1250a
MD5 b7fd754e9023af0384ffd1e8c06e0a6b
BLAKE2b-256 1eed806fba160563e3f5f20bcee510f9a523c445cfa0334b886adff94e67c1b3

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2ad538b7e07343001934417cdc8584623b4d8823c5b8b258e75ec8d327cec969
MD5 c987db3736d824f07c0facb8b374ce1f
BLAKE2b-256 041b4adb4e918d374c343994699feb96896b610d0ed3b0c7b6faece1357a40a9

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5fd905a69ac74eaba5041e21a1e8b1a479dab2b41c93bdcc4c1cede3c12a8d86
MD5 4964441a8bd5bff5c81d767e667bd90c
BLAKE2b-256 af64ee1baedab827ec7d818ebd6f705e4a4122f2de6adb4d8e309f0a2507c52b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4665f7ed345012a8d2eddf4203ef145f5f56a291d010382d235b94e91813f88a
MD5 8e1ea26b5827d064f848ec6889e61509
BLAKE2b-256 fb7fd65603736fd23b2cd049634f7713669e6f83f17c181aea5da5688d88b9c7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 be86c2eb12fb0f846262ace9d8f032dc6978b8cb26a058920ecb723dbcb87d05
MD5 358cd291e6f4b69601ca3b6b32ce5cf7
BLAKE2b-256 2b0e7de47b89f3903cab0fbdb3f9b443dc9fd7a76c6cb1fa3da5a1e3ab9993bd

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 79262be5a292d1df060f29b9a7cdd66934801f987a817632d7552534a172709a
MD5 7ce2cca505fd7406339895932b6f06c1
BLAKE2b-256 6d830195486f750ba295f3e22715333f760e59e545adf4ea34380fc68173e2eb

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b27f3e67f6e031f6620655741b7d0d6bebea8b25d415924b3e8bfef2dd7bd841
MD5 6b7b8cadc17a70d8018590bd06644e94
BLAKE2b-256 e155f77e090b59b8e4ca433a5dccd024d62b5923c2fe79225d13875a4770abc5

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e40b1e97edd3dc127aa53d8a5e539a3d0c227d71574d3f9ac1af02d58218a122
MD5 bde463ac0f019f807b7d6e6598d4ae26
BLAKE2b-256 dd4899d7d06be407af94c804bb647bccacdfe228a5d41915f8893841aec0fa53

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 90f3785146f701e053bb6b9e8f53acce2c919aca91df88bd4975be0cb926eb41
MD5 4aa826b2d4572a5a807c8529dd667d38
BLAKE2b-256 ab78f08a928c1175ff8ff6b6b646d68b571d816da02edafb3b1f47353b41ede2

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4e562cc63b04636cde361fd47569162f1daa94c759220ff202a8129902229114
MD5 23c7a729cd849a896ff09fc4fdab8b1d
BLAKE2b-256 3877f1f10ab7f80ec9dac16c8a5be038f0102b62c33cc9e4d65c6c984dc51cf5

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04922fea7b13cd480586fa106345fe06e43220b8327358873c22d8dfa7a711c7
MD5 f7a6ae927cfc9b9e7a65a4e3375772e2
BLAKE2b-256 7c69483b16c003243cc0361f269f8fabff293a1c2baa8d4e4ddc4d9aba0a3441

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 584a7a818c84767af16ce8bda5d4f7fedb37d3d231fc89928a192f567e4ef685
MD5 9daeba29a8d4b2be27ebb013d80af027
BLAKE2b-256 1bf40c0c527af270328bb9b24419c480ca5807fd38396592268912f5fca88cfd

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17156abac20a9feed10feec867fddd91a80819a485b0107fe61f09f2117fe5f3
MD5 141dbea13120bf2e0f735187283045dc
BLAKE2b-256 8ab69ea5d6bd25ea8a0754d48f3e948d93b91b4cb9f1e1639b1340f64d7f0825

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 43a405ce520b45941df9ff55d0cd09762017756a7b413bbad3a6e8178e64a2c2
MD5 7aff49e907b9107b932464f706e41559
BLAKE2b-256 8e06fd6ea1ee4a72160ca49ef9be7ade94c180060f73034fa4775b012e32618e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 884235507549a6b2d3c4113fb1877ae263109e787d9e0eb25c35982ab28d0399
MD5 fdb2973974da67209dd613a85431e0e4
BLAKE2b-256 8bc3d19d052cd3601afe30f043b88e090d232117549c9ae9b6788794c9edce1b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.4.0-cp312-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.4.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 9206c14a67c38de7b916e486ae280017cf394fa4b1aa95cfe88621a4e1d79725
MD5 4ef5d448bd2a7d7aa850a9dd7eb81fe0
BLAKE2b-256 a7600fbe3a08fb7bf9f7c98c7f7fd326591e42addce9b3444e75ed1135322d9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1e8a7c62d15a5c4b307271e4252d76ebb981d6251c6ecea4daf203ef0179ea4f
MD5 e5831f09d81aab316952b46c7feb75e8
BLAKE2b-256 5af62824854aa3e04da7692c9ac4dc10f592d888be4ce6e82c48857a24e52c24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a08fd490ba36d1fbb2cd5dcdcfb9f3892deb93bd53456724389135712b5fc735
MD5 6f4f62d905ed15772cd12316c678a43e
BLAKE2b-256 76e25f5c53234e72be69adff5ed1fee58a23ee63dbce45ef1fb774e60103fb2f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 01947ad728f426fa07fcb26457ebf90ce29320259938414bc0edd1476e75addb
MD5 49799fa5ddb4d982e6853cd9479cfdaf
BLAKE2b-256 fde1a80c4f5ceae5378dba083820ab7a4018b451019a25a1a2add80533f1836d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 4b262bbc13022f2097c48a21adcc360a81d83dc1d854c11b94953cd46d7d3c07
MD5 902e1502cb81519add36b730094eb9e9
BLAKE2b-256 04069de95f89bfdcb02b2ec3d703d7a6d3d22152f98d59053afcd6d205ddedbf

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp312-cp312-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 57a53a75010c635b3ad6499e7721eaa3b450e03f6862afe2dbef9c8f66e46ec8
MD5 5780eead14e9102cf98225fe6b43ef19
BLAKE2b-256 1c511d219028726087ca0af118179e614bd9cc1eb502db3bf59820d33f4103dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36ba9e728588588f0196deaf6751b9222492331b5552f865a8ff120869d372e0
MD5 430051e0647c6f89fc943e6344b0598a
BLAKE2b-256 e0a1cb4f46488deedd0f1eab5fc20647c068998e5bc950f982a2fd29918712ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 546064c55264156b973b5e65e5fafbe5e62390902ce3cf6b4005765505e8ff56
MD5 07fcf335cf196023eba900d018937fdd
BLAKE2b-256 1640dc1591f53e84662767c84da57cb1c77fe163875bebe3244219f3449709d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b2799c2eaf182769889761d4fb4d78b82bc47dae833799fedbf69fc7de306faa
MD5 484b517af40ca2e088d4c3718b766f4b
BLAKE2b-256 31defe16c866ba0117a480331ef46f55e703f8126ca793d029d499b67d3647cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a297c0d6c61963c5c3726840677b798ca5b7dfc71bc9c02b9a4af11d23236008
MD5 e9b26616cd8ba56c2eafb7b8a7a08775
BLAKE2b-256 36b14a6531fcc5f1e3794a08fd7a16b1d620d2cb2b9e611b154301af1ac0e6d0

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp312-cp312-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f773b39780323a0499b53ebd91a28ad11cde6705605d98d999dfa08624caf064
MD5 a92cba2abe01bde1f3ad367f85b0ad23
BLAKE2b-256 d541dd213a63f6ab1f5974b40f6df0b1512618e984227eecd2e15dc57cd8744c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 de39eb3bab93a99ddda1ac1b9aa331b944d8bcc4aa9141148f7fd8ee0299dafc
MD5 623c13b3b1eab0e6f6a209c7b1721852
BLAKE2b-256 a95ec7e9edbe7113dc0193b68ed7e3f22ca5b152c89390fd0fb01e9130806262

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.4.0-cp311-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.4.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 6f855bcc96ed3dd56da7373cfcc9dcbabbc2073cac7f65c185772d08884790ce
MD5 fdf5bcf9a3a2645d4c3c157dad4d0b80
BLAKE2b-256 0b1aa06cfe734c5571e2dbd36d1c4b716c1437cbf29a871e26a7a6659d0530be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 68199ada7c310ddb8c76efbb606a0de656b40899388a7498954f423e03fc38be
MD5 f84e174e7aa1fb5463489c97751ab2ba
BLAKE2b-256 ad977a6f21d7c29dbce9fbc0e2af0a96ad1abffec4e93f683bf62ecd45d411af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bf10963d8aed8bbe0165b41797c9463d4c5c8788ae6a77c68427569be6bead41
MD5 27c8602cc9af8509cc18c982c42eb190
BLAKE2b-256 4253a560fdf35113e18a81ca958bd0bc91d53035937b727a376f9fa740f8533e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 94d2b36a74623caab262bf95f0e365c2c058396082bd9d6a9e825657d0c1e7fa
MD5 a3396b5b152ae66fc8179669a667cbf3
BLAKE2b-256 7fca7e04f9f83a3d67149e3e9f449b443d38e5872001f45d32be28fa16558e9a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 3534118289e33130ed3f1cc487002e8d09b9f359be48b02e9cd3de58ce58fba9
MD5 22b92cc140027cd278d2175bce2f270f
BLAKE2b-256 4ac20b5125372ecdc8294262233540f9c0078e1a1e007a8fa19646b3b23a5390

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp311-cp311-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 c1375025f0bfc9155286ebae8eecc65e33e494c90025cda69e247c3ccd2bab00
MD5 f45bfbf50e4cc4e640b6d102f3b35fa8
BLAKE2b-256 ccfd2c4419bdad0be8d9ce2b20c4a34c29646c5909ee02a19b997715573fce09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b7206e41e04b443016e930e01685bab7a308113c0b251b3f906942c8d4b48fcb
MD5 947018a3f651417da9968fc55822936f
BLAKE2b-256 9071fec4ebbf73bec69498550066baad51d737a1af03d99e129aaa02bddd1a75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cba5ad5eef02c86a1f3da00544cbc59a510d596b27566479a7cd4d91c6187a11
MD5 843494133c03965188570ac4fb233eb1
BLAKE2b-256 32288ee7d072e29c7597b139f58a2882dad0f24b1f213996affdfab3564dfe1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 af24ad4fbaa5e4a2000beae0c3b7fd1c78d7819ab90f9370a1cfd8998e3f8a3c
MD5 34d0e75386e0b59b43c0175d9b0ee812
BLAKE2b-256 065b91209bcfc7f0aa97a1fc55c1293aade0c0760927592d0126311e13fb22a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 16468bd074fa4567592d3255bf25528ed41e6b616d69bf07096bdb5b66f947d1
MD5 b0c83a4a3c88778478c75f0194811003
BLAKE2b-256 3268324013cf826ad1f09bce46b01259c2d88607d137e297d213fe7ef225a91f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp311-cp311-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a8b7acd04896e8f161e1500dc5f218017db05c1d322f054e89cbd089ce5d0071
MD5 13b11cf5fc8c61014d8ef000386d00cb
BLAKE2b-256 4b5611c2ed5805c5fc8cd800f6e40b246bb2e0c91aff43516b484a6fcc258e31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3ba2c9c94a9176f6321a879c8b864d7c5b12d34f549a4c216c72ce213d7d953c
MD5 6485a43755aa17a9870273d87accb57b
BLAKE2b-256 952ebe4234f31eed90a2f1c644a8ca7d7fedd2b6bad114e896154aa994c17520

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.4.0-cp310-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.4.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 853f103e2b9a58832fdd08a587a51de8b552ae90e1a5d167f316b7eabf8d7dde
MD5 52018821238b90fa93c5752e03e5755e
BLAKE2b-256 0ecc6e956d3128f1984351884fee0be081b4b0ad4da9b54b7403fc3bbb4ad027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e412607ca89a0ced10758dfb8f9adcc365ce4c1c377e637c01989a75e9a9ec8a
MD5 b0413c82c327d015f6c975975006b9c3
BLAKE2b-256 400d60b7602f032aaa75b633932a88efe6f9a0fca1897f1e1f0d641e199190e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 54df7df399b777c1fd144f541c95d351b3aa110535a6810a6a569905d106b6f3
MD5 c4c47baa83788ba84917c4c02ca464df
BLAKE2b-256 17b5e12848eeea16e88b857689528c35d8396befb6040e5477f10a206b0a778f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 878a5017d93e776c379af4e7b20f173c82594d94fa073059bcc546789ad50bf8
MD5 6bb1db4ee4069f95fb5059cfd9a727b7
BLAKE2b-256 a7e3087dbed01491a9028993c927d1e6897a0c1150a8a478b5fb763567922785

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 8c938c96294d983dcf419b54dba2d21056959c22911d41788efbf949a29ae30d
MD5 ba5ed0a51e1d33130e739606f1a50388
BLAKE2b-256 3957e1f32d0f4415381c2e922b8f480030d1a77ca827875835acbc61e55d825f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp310-cp310-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 0455876d575a35defc4da7e0a199596d6c773e20d3d42fa1fc29f6aa640369ed
MD5 9b40fe0dd776341c60dcdcdac85ec478
BLAKE2b-256 8d07426bbb5603168562ffe1222656062327c60c30d737645fea985fbfe87b1b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63797499a219d8e81eb4e0c42222d0a4c8ec896f5c76751d4258af95de41fdf1
MD5 956c623d72aa7d1f5a93e19ab3816a88
BLAKE2b-256 970a5673dc7f7e232c3421a4c33fd1d261ebe9b963d0f9e9c2c03d5dd7382769

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6213b471b68146af97b8551294e59e7392c2117e28ffad9c557c65087f4baee3
MD5 213ab9a1883bb5d046a23dfcfe25695e
BLAKE2b-256 2cc9d321cfaaf7419b78b020d37a34ca43d2f352962848ea8120728fa7995f1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 69159afc2f2dc43285725f16143bc5df3c853bc1cb7df6021fce7ef1c69e8171
MD5 076634b2e8a36b817b087b55b65562d2
BLAKE2b-256 584e88bea94069c9065b02fdf40081edc3c6b5bdf8c079c14f13abe4807b5297

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 782fced7d61469fd1231b184a80e4f2fa7ad54cd7173834651a453f96f29d673
MD5 1b450dd4752e3b3a1c885dff185b9b18
BLAKE2b-256 cbfaa042aa68fa9df1c41e2f238055c3afb77c7105e6693468db2fa3b7a91093

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp310-cp310-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2ca4687dd996bde7f3c420def450797feeb20dcee2b9687023e3323c73fc14a2
MD5 53af7bd6d4d94da13c9823f3061297e5
BLAKE2b-256 17180ecf5d5bf4e359dfc06ccae67d3c91b350bfaeeb676e3a60e3325b8968a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 153a61ac4030fa019b70b31fb7986461119230d3ba0ab661c757cfea652f4332
MD5 20ebcdab2d8a223a851b6689556f2557
BLAKE2b-256 6f296cb9e3c92c39a2fae99b538489c0f37c846ad756c9e8455782f0a2466478

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.4.0-cp39-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.4.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 6feb4b64d11d5420e517910d60a907d08d846cacaf4e029668725cd21d16743c
MD5 6135afc19edf9d7af3a963731995a5b7
BLAKE2b-256 594d2d864a9bbc14b91d06a4cacd71fefc4d920f5d20e561616419d92c151ca9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e953353180bec330c3b830891d260b6f8e576e2d18db3c78d314e56bb2276066
MD5 a0d5b635d24686830d54a38838bd6ce5
BLAKE2b-256 075d75b67fabb17be94e3f61098d11597d11f043c871c8705955fd984f887efb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cc086ddb6dc654a15deeed1d1f2bcb1cb924ebd70df9dca738af19f64229b06c
MD5 c9715d4f2df0200c7d3515ec6bb13955
BLAKE2b-256 30d27bd8dacdcfb3d6e9d99a28b076dcef342967821739944161af62a7fdc349

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 af788b64e13d52fc3600a68b16d31fa8d8573e3ff2fc9a38f8a60b8d94d1f012
MD5 81eff48daf0afcfc97e3ade0b2bbae99
BLAKE2b-256 c977a81262c4db2204ad27cd309a4438e8cbb32c8f07e997786ae6cfa763f589

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 d93aedbc4614cc21b9ab0d0c4ccd7143354c1f7cffbbe96ae5216ad21d1b21b5
MD5 64ed57cc5e7e1b295eb13e1c797ced09
BLAKE2b-256 868cc0280138b25bdd4dd69005485f2ff900dfd3209648d5b34a4a1f538fdff6

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp39-cp39-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 8efc1be43b036c2b6bcfb1451df24ee0ddcf69c31351003daf2699ed93f5687b
MD5 791c5df6ae80cb4b934edeb10a75196b
BLAKE2b-256 71fb3cc72976544993e44b6e43cd4343dc30414e4fb51b7cde7daeeda49a660f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac2b680de398f293b68183317432b3d67ab3faeba216aec18de0c395cb5e3060
MD5 5d5eb3bc747fca3f05ec52c9cf57b7a0
BLAKE2b-256 02bfa193e0f4a0fa01b8d6791991ecf1500931f8c98ccf81307ade3ad10963d7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64e8012ad60a5f0da09ed48725e6e923d1be25f2f091a640af6079f874663813
MD5 8cad355ac09a32616709e93ea7340c7c
BLAKE2b-256 dc916fb3e9db94cbd438491dc700cf7c24abca5d1aad2cf5a20a95c3927bb195

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 97c6349c81cee2e69ef59eba6e6c08c5936e6b01c2d50b9e4ac152217845ae09
MD5 e42cbf0675326aed082fe50a4602678c
BLAKE2b-256 911a0dae3027d9a0f17fac650d05c994f778ae014c06db8d75bb481ec6ebae85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 664402ef0c238a7f8a46efb101789d5f2275600fb18114446efec83cfadb5b66
MD5 d149ea0211fb895515f835bb7e37d1ac
BLAKE2b-256 32c2b6a91f50e173e71a33dcddceea06f10dfa8278e24f6521a6afda7b14540e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp39-cp39-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 867d3eea954bea807cabba83cfc939c889a18576d66d197c60025b15269d7cc0
MD5 036f052b530b75b5814aa6542a33c9a2
BLAKE2b-256 9cf7276fa47b9ddccb416cf4406791b3651a14732808f68eccb76cae3eec188c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 047580388644c473b934d27849f8ed8dbe45df0adb72104e78b543e13bf69762
MD5 901f1e7f0129737475e427ef38632e49
BLAKE2b-256 1591aa162120eea2d8f4ada87b0d127550a4ab380e7979d25173eaf1519f2199

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.4.0-cp38-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.4.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 0d726108c1c0380b88b6dd4db559f0280e0ceda9e077f46ff90bc85cd4d03e77
MD5 164660aa9f295854f80ce79616211390
BLAKE2b-256 db8b7fb3de9629d0ad1058a4bb7cc92326d3949a182950d4966c32dcfc799877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 56a85fa0dab1567bd0cac10f0c3837b03e8a0d939e6a8061a3a420acd97e9421
MD5 a9f96c8427f3160227d46a7334beee87
BLAKE2b-256 a6642089c820b8b6d0bc9262d9aff59d937b98804d92a8e29fa376035ae546fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 453862ab268f6326b01f067ed89cb3a527d34dc46f6f4eeec46a15bbc706d0da
MD5 3dda07cee291f444d1aabdcf2d1484eb
BLAKE2b-256 de76339b24c089810eb3dfb45723b97fbf9495a2007a47b22defcc3e1db32d7f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 2f9ea0355f90db2a76af530245fa42f04d98f752a1236ed7c6809ec484560d5b
MD5 73c917caa97b393a6b16351e1402f7be
BLAKE2b-256 074b3e4510a697d9e38ef76d8580ea36f3cb9248531cc565964c975b93551c83

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 394f12a2671ff8c4dfa2e85be6c08be0651ad85bc1e6aa9c77c21671baaf28cd
MD5 1f1018c362de9d5c7798dd922cc61326
BLAKE2b-256 e8865993c8e2a2335827f1937f7ddcdd088d21a38ba945d303a9533017a417e8

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp38-cp38-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 fa8e48001b39d54d97d7b380a0669fa99fc0feeb972e35a2d677ba59164a9a22
MD5 ba881a4512edcab986d501c685289af8
BLAKE2b-256 9e2661455d8c6081e43af65c0585b13966c97108ad80ca5d8ea65cb38e1a8adf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ffe18407a4d000c568182ce5388bbbedeb099896904e43fc14eee76cfae6dec5
MD5 c5f30de91610c2b0d47b60fe2d8b8546
BLAKE2b-256 80093dc9582c4ba0fa415d0a88379462f84c9352a779b27677340314425b1523

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0a507d7fa44688bbac76af6521e488b3da93de155b9cba6f2c9b7833ce243d59
MD5 f55bafebc5c3ec704661c2ff06481a85
BLAKE2b-256 aa335acdb97860ae2f5d7fcf51255c14008fe878a04a1e216d2fd919f7aa3d8a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 61d4e713f467abcdd59b47665d488bb898ad3dd47ce7446522a50e0cbd8e8279
MD5 8e013c120dc063e2019d1e7974868302
BLAKE2b-256 dad35d7e3deef123e6fe31dbbf40f63126d1eb336d195e7ab83c8eaf5e6b55df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49db206eb8fdc4b4f30e6e3e410584146d813c151928f94ec0db06c4f2595538
MD5 0c6ed3a0d2e9b9afb79cd9777fe78ddc
BLAKE2b-256 d949a7fbf41b562d1b49698b4ab416e936ea3b49c98b60fb8ccf85c8450a9c21

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp38-cp38-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 12ef6838245569fd60a179fade81ca4b90ae2fa0ef355d616f519f7bb27582db
MD5 ad0c318716828baba05a9673fcd2f0a2
BLAKE2b-256 e95910e3e941f5f232036d6e03e0aaac4495e8d90faf7b3e0e896aca456c66a2

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp37-none-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 d0c2b713464a8e263a243ae7980d81ce2de5ac59a9f798a282e44350b42dc516
MD5 2f5e276bae45aa7b0728b612f1c13917
BLAKE2b-256 a505b3da6a0217c482e4da97b2b77ce601a9074447c1795c0131791523627ace

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp37-none-win32.whl.

File metadata

  • Download URL: pydantic_core-2.4.0-cp37-none-win32.whl
  • Upload date:
  • Size: 1.6 MB
  • Tags: CPython 3.7, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for pydantic_core-2.4.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 ff246c0111076c8022f9ba325c294f2cb5983403506989253e04dbae565e019b
MD5 fb2bbf8e5565581f117e8bae6262b4ba
BLAKE2b-256 06d88582017a1586ee1f4340fd2446334e996fca93958ae9b6de5167f44529ba

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d9610b47b5fe4aacbbba6a9cb5f12cbe864eec99dbfed5710bd32ef5dd8a5d5b
MD5 51ad3f26fad105be5173aea6ca36be44
BLAKE2b-256 3e5b5dd27fd489227f2cda503508de564c34ccefe0d2092c907e1e805932f170

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 478f5f6d7e32bd4a04d102160efb2d389432ecf095fe87c555c0a6fc4adfc1a4
MD5 388222afe3e446c024b92c80dd7ee61b
BLAKE2b-256 a4ad6b6f30cf557541f284e2d2acfa7b7e0d60fa490ae710155f5bb0ff79cf01

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_s390x.whl
Algorithm Hash digest
SHA256 72f1216ca8cef7b8adacd4c4c6b89c3b0c4f97503197f5284c80f36d6e4edd30
MD5 c6d38f69ececb4bbc8104e079eb69142
BLAKE2b-256 da0b9768b797629a7cc06c81d449987efc904817871d55a4db5c377bc8abf757

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_ppc64le.whl
Algorithm Hash digest
SHA256 bd7d1dde70ff3e09e4bc7a1cbb91a7a538add291bfd5b3e70ef1e7b45192440f
MD5 28c0e5d1e6129aac7d523380ee20e242
BLAKE2b-256 7c3c01387dc9b0e4e3e2bd76d063973df25c4e325632cde9e51b6a975afeeea4

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp37-cp37m-manylinux_2_24_armv7l.whl
Algorithm Hash digest
SHA256 30527d173e826f2f7651f91c821e337073df1555e3b5a0b7b1e2c39e26e50678
MD5 e667a2101ad4353de4ba2a0f7d5b5ff2
BLAKE2b-256 a27b215959bd2509f33b0dfa071938c27df60027ab5208c5bc97f4389640449e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fba0aff4c407d0274e43697e785bcac155ad962be57518d1c711f45e72da70f
MD5 50eb6a870a9de9652caa4058d676e1b6
BLAKE2b-256 450bbf055d9b5032e95e2c206fbc83afdcf528eeb3a89c146f893b4b23b2b35a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5d8e764b5646623e57575f624f8ebb8f7a9f7fd1fae682ef87869ca5fec8dcf
MD5 9a8a863142008c98c8a9ab0f74635cda
BLAKE2b-256 45bf5a5e17dd3a2526be8abed98e5e5ab4d526a8c75342cc552b54330a8145b1

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b013c7861a7c7bfcec48fd709513fea6f9f31727e7a0a93ca0dd12e056740717
MD5 e09bf9ac20679093d291a5f0de6a0d07
BLAKE2b-256 53e0026ef3688a5c402ff3cb3500c47a6e2a9fb940f6508e6672237ddd672d04

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp37-cp37m-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9137289de8fe845c246a8c3482dd0cb40338846ba683756d8f489a4bd8fddcae
MD5 949cfca1f2044f763f11f27449a19dec
BLAKE2b-256 5494a328f246ec1fd2401459c187e3ed9a31ee15c66704c37bd942e586cbd2af

See more details on using hashes here.

File details

Details for the file pydantic_core-2.4.0-cp37-cp37m-macosx_10_7_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.4.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4cbe929efa77a806e8f1a97793f2dc3ea3475ae21a9ed0f37c21320fe93f6f50
MD5 73d1fca8cd50b5d9c216388be4aa7eb6
BLAKE2b-256 8ae0556e3b6cdf984dd2e14f72755be75e7ae902e75ab0ba5ed7885b771379c1

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