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.14.4.tar.gz (359.9 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.14.4-pp310-pypy310_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.14.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.14.4-pp310-pypy310_pp73-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.14.4-pp39-pypy39_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.14.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.14.4-pp39-pypy39_pp73-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.14.4-pp38-pypy38_pp73-win_amd64.whl (2.0 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.14.4-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.14.4-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.14.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.14.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.14.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.14.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.14.4-pp38-pypy38_pp73-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.14.4-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.14.4-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.14.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.14.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.14.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.14.4-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.14.4-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.14.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.14.4-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.14.4-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.14.4-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.14.4-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.14.4-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.14.4-cp312-cp312-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.14.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_core-2.14.4-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.14.4-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.14.4-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.14.4-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.14.4-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.14.4-cp311-cp311-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.7+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.14.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.14.4-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.14.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.14.4-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.14.4-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.14.4-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.14.4-cp310-cp310-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.7+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.14.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (3.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.14.4-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.14.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.14.4-cp39-cp39-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 10.7+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.14.4-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.14.4-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.14.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.14.4-cp38-cp38-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-2.14.4-cp37-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7Windows x86-64

pydantic_core-2.14.4-cp37-none-win32.whl (1.7 MB view details)

Uploaded CPython 3.7Windows x86

pydantic_core-2.14.4-cp37-cp37m-musllinux_1_1_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

pydantic_core-2.14.4-cp37-cp37m-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-2.14.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

pydantic_core-2.14.4-cp37-cp37m-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-2.14.4-cp37-cp37m-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.14.4.tar.gz
Algorithm Hash digest
SHA256 8b75f816f9623f3c97c719d93f3d5c456ac83814c97af9903b0fc887a588c648
MD5 c7d798cf1a9e141fd75cdbed4e56a69c
BLAKE2b-256 e5ef7d013b8ac27e30f49b12de35f3bb1cae5a6048d80617af5bc6909125f67a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 b6b6bf8b6bb2abfded31cef175d69dde58d2b97592c8ec3faba928af4ccc39eb
MD5 c742b225f66fc2143ab5476710ccb456
BLAKE2b-256 8b49df91e453a5d160e60e37a1430202b25ebd47732f2f66ef6d29ade71a156a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8a6257b17df55eec0e61f3f4c92e3b5f76019d535a8025b84c7a9d1f688d7547
MD5 5b17bf92e1ce2251705e0a7c170122a5
BLAKE2b-256 100e8527593a11c40ad0e2285d45f9d2da059260e100281be6a410b2119f1b07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fa738275a96b20fc2225736a2d069dc0daf721592ef19f81b0671e86cc9e56b3
MD5 94c2051e31d397e967976aaf81710ea4
BLAKE2b-256 e6cbe67a2ae145215171a06e370f5d575378b41b6974b56d6d928662e1f559f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbd23eec54909976c4860167363645f21de713a2f2c24246c5d294c6a2babd50
MD5 95f4272ed3ca79f159f87a166d10e39e
BLAKE2b-256 ab1462ce7e7fa08e266fcb44fffce4c6c34f81d3b9cca2cf4696d681664b9846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3994b577686ca58991aed2be19016e940206a3ba440a9afe6161f396f8f60ad7
MD5 b44b87dde85b7d1c93715fbed9ab7ea0
BLAKE2b-256 099dfd34b997579d3b0023fcfbc9681547a7fec9e8cca580b4d2c4c3b3d5a06e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e2f6370a29b559e40dcedec119b0e1e8ee039ce56df7e42885d7b408ad84499c
MD5 d2a83923cc9c373b75d3160c63fa7dea
BLAKE2b-256 6f348e9342b925f1bbafca7c002d1ad9c5871ae86284f4301bd84e999e251a8d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84a7535773c317f4260d8df37700f251ab708b7168b4cf98d562a3e464723461
MD5 b4356cb1b3d1ea0abad4c28ab85f8b23
BLAKE2b-256 0ed1152b7af93565e626ac85948899e27db281d7ad5510dc9bb36752c649f8aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 9c7c555d01a2611b773b3db6e45bbf3fef41f74b2485777d33c11fd853744e6c
MD5 f38ddb77f7d2468cc408386df3b32459
BLAKE2b-256 d906b3304b331ea95c0a8b67f8f7a1282c671493f6c45d8748a6c9bc8a486f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 3b3442688933c654dc8c232f45f7e33f1ebf2dadbc67f29a75fffd39c1da0b88
MD5 d150f3ecd7f4339f2a07338cdb8c29c8
BLAKE2b-256 6fb672d8682e668cc616fe3e73c90f3aa84a5bdc2eb0b908c3c1f82ff2c8b93e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 302d1d2a9f86c62e08d26d66371995e74c9f7a70a66779c45ac229234f06b1e9
MD5 06f4f316222b551bf931f03c34d0a9df
BLAKE2b-256 790c9fb0d4aa0c749d43bb997f4a6b68d95c388ab9c04da42412c51b6ce4c0b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 985773aa7b8718a7a8f34fb78205a83d413377deabedc1af64d36396fcf9d331
MD5 15b1471f70d73afd39feb28adc89a2c8
BLAKE2b-256 8a5b9b5c63f4adb720ded3bea2209887a92e63c41bd3e7aff9a24935a1d71da8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a511cba49026858b47edf8deed80e646cd9fc7217cbdb2f31edf842372ea656
MD5 a628e87f5c86fdee465b3a141390bad3
BLAKE2b-256 2aafb21645cc3d75dcdced407ec741f4675613e3296b615cb415e4f09766b835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 95cb6b4558b30f1bf12334c0ba0e0bb5bfcf7d8b57ac5f058d654ba07646a84d
MD5 2cd784d688e7f9ed0e741c8836bb7d98
BLAKE2b-256 7d671ecb3eb8e2e369cae3b474967c8075972f0d3f3ac55633f90a7c286c4b11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 74735437f3fa439f8b04b15bc08e97eaa72bc0c105b827011be0bc92859ff15a
MD5 002d7b2362cbfe866bc9107c7d635fda
BLAKE2b-256 5a79b5efbcfd6f932485309825f81dc3c19e08980149b40b6cf117002efbed05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fa42807fe9232aca9f34309e764761156885f7e481eb3987282fc8b3fbcc7f47
MD5 cfdd11e55be37f843e3a9aa49cf9ba28
BLAKE2b-256 777b16468fe9617ee848d37eb3c9019b97d56852d37aee1fe0775edabdf6af09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 dc68e47500ec6e88cce25f8328996e86a91251d5182603c117ab4236198f3d26
MD5 b3c8b0d20316ffec7435bb43b79e8284
BLAKE2b-256 6bde574c267b5d4b27442d49a73620b7ccfbb0e952cd5764bcec888439623926

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 56ef6333b415cceb3b9524654758850ce142e2ae7deeb8c46cb61dca6c6192de
MD5 c7f34aeda7a1c5c8f81ae29221583afc
BLAKE2b-256 45b617186821c5f5c7d536b24a8c9ac262718b66bdf81f2d608bb7f4a6efc4ee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 65500f42a84f73e82e69265c3e67ec5b467de99c076902d6be341590dd0646f2
MD5 f07c05b0bf94a848215fc55f4a1592cd
BLAKE2b-256 66e97ba7c39c9f2e618a633da7c3dddfe908d1fd76418cef9972c44e303f123f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c62079ed19ae547f181ed95768987224b73b38db1bd4a10e9ca994f76621434b
MD5 18ed374d29eae17928b8cad041a3f0ac
BLAKE2b-256 2e4dacc2708cd3a027161dbb509058799b69d2a5f1e8dc3bf8f4707b8e46f667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 853c1c47b6e268a20bdf8ce86b09f62e2a76638deaac798f4dfc6020ce65e2d3
MD5 6dfc5ee5f5c740a58fb41cc0f5a55f1c
BLAKE2b-256 1622c6635b050bd5f963fc62e849038353bede1686db1d2ff035aad9bfc428b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d6ecdf7f716a16e56baf516765c502b49508ef81236fec9f578caf585aae5e9b
MD5 1bd9df87ebeeff424c65815d32845665
BLAKE2b-256 e499f325fc55c93760f61e5bcc1e39dea5fe6bab36e1632f14fe58af0e71324b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5d022826f649d7528fceb68faa429d33ff945e87ee35e2f563dd365b750ef73f
MD5 219d1363be3273c91d965d80a0884d6d
BLAKE2b-256 83fb9afa3cda43a928d9676880811263fb0cee03633e7471f389ab507a486e5b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.14.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6ea28260b2b976a4f2e1817f7ce942cd605ffa58f36325ce11e929fe59486006
MD5 b4d8608500cf0770fc651f3b74abfc89
BLAKE2b-256 ee3fa5bfbd866e5f795993e50c2f7492d85f14f5e717d4225cc3d9222f46dcbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8f297dd2392517e9abfe280211d08e6b9b136144c0d4604f946b974a6bfd633d
MD5 c699b376bee1696eb6caa5ef204efeac
BLAKE2b-256 d5f4f82abcf60fd6b6b6ddbd5f0e03e1f2b85bcdc6a8693e5bea21de367fa4ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d13e31084b8515d66b30a82307afe5ca9fa0dcd3e70412d22631b127024a5ba2
MD5 9eda79043627d718113998ff8df5e948
BLAKE2b-256 6c551cf0bf320900453334f51c0e3b0452fe51c27b89df8d78b25a53ea265563

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d837f7bd05d5b8993fa305fb03750e3ccc22a919ae6f6f03832a1405e952bd4a
MD5 c796eb311c21d59327e149496d7a4e5d
BLAKE2b-256 43537f6e9ac174306cfaafb277d8043be51716c77798f3c1bb625e18097184ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e9406d2022add1d677fcadaee9a70a88b828d14a517086a4aeed26ad8bb3f89
MD5 f6f66d31d3f523444be48e8f3449d1b2
BLAKE2b-256 c8a71487a1a7675001bd8f75457f810759cb7709a23122aa6fabc4887d67fd63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d78ddce321d80beb76362fefb5e7295979d77f4dc338cd9613e7a635dff2522e
MD5 7be85eb1ee5b0703f52b0100d19f69fe
BLAKE2b-256 b93b490c67067e7129278ecde7992aa3970fc40707c6b9bdaf3bea2921fee9ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 814e4f64aaffe4371e26c573d261008785b752366936ab139583c8e6ca158330
MD5 283fe4fe42f093c95b946c334c16a064
BLAKE2b-256 9988bed0a3d50bb560da2447aa1539863dd8ba22c954cc7edb3b8ce5f1cafd73

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 129e422f7c83f70985aa86a6876f37f78255005851e514592a1199c6934d6a00
MD5 74b398e495ba2e795f5fbbd310505b62
BLAKE2b-256 f3f86313cd5563a3571567e99518299b20c25085f8032d9dc3918fe35d433ed1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 0dbb92a07150bfdedd05545a24c66a7bdf0da902556ebfc23c29d40b801c4b08
MD5 90619117c03151cc4d22ab1f5cb2dfe2
BLAKE2b-256 0ac695f53c5eafa9b2dc6396e9cbd03fe4c819f5d9952dfb8b94fdc24092a760

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 df09ecca18b91f4c372bc61764e19a13e2bc916eff12765470036306b99f58ce
MD5 7ec72e4243320036c2bfac9b4c19b72a
BLAKE2b-256 41d64bd045643516f5d024818685d8fc5358a90d75346445f9658e7ad4cd91f5

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.14.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 48e60e2cbb478fbbe4b7b3d8ca1369d4f9d7b4b9e102938126191f0e0a3b2b5f
MD5 3c1fe260b924d8bbc3ee534069b1ad9c
BLAKE2b-256 d65ab4c9af312daaccdf54dfde01316877fc85f8ec2b3f5c3e3833a117d44bf9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9cd6201d3c9d2b29c3029a5c01e95bd1334c1e6b59ae66008352b75c2575eb14
MD5 94fe0ae7d5ae88cdfc9c2ca2c3a34293
BLAKE2b-256 a2330bfebc87f1d29a09b6c53c07304c7c408ca129bcbed755c04ea523ca0a7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0339976e7dc4969c66db55691813afae6e39016aa0b425ed34978dcbbda87586
MD5 636cf506917f456a7a20a486dd9f837b
BLAKE2b-256 de6ad79793516e365522543bd43caff014d67761775dee1edc11211c528273e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aa1eedfd264ffdb2de32fc4967f7ea77cdba8d69687d05a288e8b3319ff66a1e
MD5 60d89629c216e314b2f9b4fb62c6631e
BLAKE2b-256 81696398f3438c607dab3564a4968f744cb968276a7113d227d0de16c157441b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a6292d8cfb15b83669c6c09d6a39e8cc0c9be42112c272c03c4c219376acaee1
MD5 451055ff4f78272678e785bc2b29e815
BLAKE2b-256 b3fd8c3798c2edeab3618532face572dee2b73ca9f132e992996d9725ba35bf5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79fbafc5565e8699dde5a0be1b39a739179beaf108fb228abdce0bb73722b82c
MD5 6e0b2bc81690fa69c54a8de673c2875f
BLAKE2b-256 444a1681f68f3b44125b2612219f833d7f44c6615aed8da9c5e47a720d29e128

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 695bb9d9df89f9a105816864157ed825b9fc301f474c6e1e5f270abc7643754d
MD5 0d22aa0a50e84b90273bfa25beb9f1a4
BLAKE2b-256 422faf2d5e4cff99bb9871fda7e843f48902da59c10bdd9f008a876731d67245

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5ae440be159d99f563a1470ed674b8795fc4d1fc58748322b7e98f15aa21d5d4
MD5 d3932004012acb1a7522012cf5363657
BLAKE2b-256 f64f6d1569e1df45f3c6686cacdd11f59935e7d7bde109c9b13c8a564a30635b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dc968e78fff426a9810715ef378ebd74afc2c6f16ba910cb14f132ead92ee182
MD5 e5618fa054811d68b9b0356310a09ce9
BLAKE2b-256 36e8865fe03c2f061bb59453b8aa9953c0e6e514c9896fcd46832b5c280ae077

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33cbfc8848b85eaaade48bfe814f9ba93635836acaf61546da2d3db53412dcf1
MD5 41e8bb49c257ad9b6a1d6d9b31cf0d5b
BLAKE2b-256 9e468d574cc782988c811153c56ffbb6ff12d0d0e725022bdf9fb7010c0c724b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c86861cf20dda6bdae391d43b92fc712badfa281e65989412088377dd11103a0
MD5 9a356b403f3c94c6b5674ae76edf7ff3
BLAKE2b-256 d2164d1a8ddf8cbf7fd646dd75eeddb4a311bbbfa245e2edfc98788e106a3d54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 4e3023b88f8e2920d596794b8f83102f3dd68418ea8924ed0752abad3d306dda
MD5 53cdfb35aad2d526a1cf5cb6e6b20670
BLAKE2b-256 7a5841720fb685a9d94cf80932d620c90034a4ab2601e5976bfafc29a8a2bb36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 be1c32cc65dd2e786eeb44d59c527249ebc536ac394309d0b7d78e632e6ee6b3
MD5 dc9f72429dfb1ac55ce350dbac583312
BLAKE2b-256 a83321d65424d552e0c49ad30b3b9c7b70745bbbb8d272b5aa76397d769414ec

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.14.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 1ade18c4a2fb6f069dcf8daafdc01534d6d6215266477d2cd8d1f34202823c59
MD5 f5af1b1b0147225a3622a8036f8513da
BLAKE2b-256 113aa07303ec3dff454b59172a87983b1e1228f3b4c0958d1792ef01d5ba345a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 abe62ec740eb0d63860d8c5ffcc424d5be83cc091a2d96dbc3dba78177300058
MD5 d830931d936a75fefd564ed9f90ec2fd
BLAKE2b-256 c3a70e3447909030cf69d6c375680590f598e9aae2291a1d4541d87e9681690b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f4b8890fcb891c510f5a52b2caf0d2431f4c376ad0dfb2e860c642e6df724266
MD5 3d2e3de00ba55824a47f4b106b464d2c
BLAKE2b-256 a0976cf6a44b622b40466470f7a30c21781b619632144bcd538f0a54a30445f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdec86d3781636e1097bec1f539c896fec66673cdddf412ee3587249cd944e0d
MD5 b847850afb7be65889b9604210fe8c1f
BLAKE2b-256 cc78f31b00fb7e09f5c22ffe223639023daaea846414f3305e63d8b63d0a7663

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 38aadf104b5d39ce3b763e3f4e7e032d0e34e8ead7e04939988759192aa5c900
MD5 6253835483bd1b1c1945af2e2eb57975
BLAKE2b-256 f5975acee16819ad19f220d3fc49bee59914c0160f7ecaaa2ae8805258c11086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b17272920f0919ac6946c2abb5bc114d963e9969b68dade0207ac05195df4ef4
MD5 0c7d4544b3171870be3630a27e1f7883
BLAKE2b-256 7aae1550cd4556e85e3ac3bdededa9dbb75c46481c4144ba939547569be28574

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 57dbf1868b497ea049f78cfb2e052bfceaddd4f44ab4a088bbba32f3c9747131
MD5 83ed4e1783dee22ea6a3f0bd8219d8e5
BLAKE2b-256 f0b0445b46ea182a63501bb327226c0732f3c8ee89c69e9ed3d5842b66c6da5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bc221a0e0ec2e942b63506bcabb141000af1dc03fda62c4056fc2f03a1eb7fce
MD5 a7a3fa5cfd2993c0da75e53489efb428
BLAKE2b-256 413b9a1174201a23b3cb836d2536622748aff47fdb8f1b2bd29d69f41ca4a808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 567873cc249dd1e2732e490d80d53385cd572b24a9aef89aa55caf3f12138789
MD5 167c9252c250450d4d2fb6cf80235c8f
BLAKE2b-256 9eba84e26714cd5ffef0f98d59b906788dc11b030b9015ce0d84ef78cb808a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bccd5af7f05290da715623ec3e71f25d70ddb09da7925a4c2eea883f2610bad2
MD5 13f1b2866c60f30d53598adb4fe5133b
BLAKE2b-256 46b3d906c67382b8711d9612a8aff1e685f6b04d97bd18991e21fabc197660eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4d42309642eecd1accddabaeb5253b535bc616bcec314ed1b8aeff56fbfd5e80
MD5 f8bd2b5a01f775b52302449c4bb4e21e
BLAKE2b-256 919eba6d6a945ee74855c767397888ac7ce2c758f08f8624ed5e3a7472475856

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 beeb6a9e4dff4c431994322152a25748b0a13a0b4604783a53c5fca618c677ec
MD5 bc48f66bc97f3cc626c021ed810662b9
BLAKE2b-256 29dd7fc647833db56ba94e5a1514fa529d211a33676b4b2ee6fd7e79505f919c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.14.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 d2dbf38c7ce98018b684da55c7b3ab5b8a43ff504dc152e75d2204fd9fab33ce
MD5 5654e5ea8d21c43cea59214a272f3f6b
BLAKE2b-256 27d26be10ab3fe8bd22232bf7ba24b533200a944375c4f528db51bb9d0354b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c7b631ff65cc8d0a4441c35e9477753f0599db90f6a1792b40c1560732ef802e
MD5 783b8028f426cdddcade5f747f9b478a
BLAKE2b-256 19fefd02435bef287fb50e4608ab119f25f70de3d7da3886eb799792feb064f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 47c628edbfa79580f4c9df34173cd121c29f8b8feb2395781b610c8b51766b6b
MD5 b9aa5dc959ce38c5159978ab44b101fa
BLAKE2b-256 493d32a7b5f9ff7f35ae7f3bc1ab929acaa7161358d1b541cbe835141f42c110

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ca761271c7b0734c8c2aaa7c48ef70ecf92d0ef7be11322d6549597731d4b886
MD5 a7b235d259028d5b7b81a40ea09fd66a
BLAKE2b-256 f9bed0f1c1c2a1e697328d5161c5bf3749baf75f0ae96b67b124720240ac97d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a50194ec0b8a936d9511efac895362bf019d12725a1bdbf876302704ecd7774d
MD5 2e236bec5f3490bec350ca54ffe59cef
BLAKE2b-256 56f51693abfd36c40929e1f6ae756492464833f9dd1abfeb0211e22b817e43e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 caac89fb29ad1f028ebc876dabe8861a9f6608c0a5db321ccb83868f5452337a
MD5 497eb2962629d5d1d0ca729d05c70ab1
BLAKE2b-256 cd26c935e351afaf958a4ef774ef54904f78f3d18420663183c9371af6274b10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71b094cd6d7e8a5a0762a99e9206b85f894718d87b0a854b5159e8b1e1d2b420
MD5 1a42b64d211b89e7458c2749fba8c609
BLAKE2b-256 d13c6bfe7623a676445dbf94a7a915c2dbab9287d2644ff967d1e92a473e35f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fa2436963b68a565cd68ba020f168359d23cd8575745ae8291867bc497568b4c
MD5 bc7f074325ecec61d374446661bd0938
BLAKE2b-256 1e4370257881b4b64b03f0afbccc5b87ca263b6d3047f3fb74daed2560618964

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7f5323413ea18f94c5a46634b125e28c4e40ee145fc216c232940a3472dbd7c8
MD5 388d94f24a86b69c7a807bb19df20e8c
BLAKE2b-256 000e2104ceaea58f3a6ce57bd0b5942cdde0dc16687fe98d6aadef7a0c909eac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 684ae90c6052459b51837bc35039fd019b2974d5ad8b6a49d82d67a7c3b1f43b
MD5 f2975ffc77621f4ab542679f1ac09bb1
BLAKE2b-256 1c8fe13c1a5f27e29df8d5066fa11d94fae24e8e54f2447bdf113a9786c60258

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 e54c2a6b7e05d26804f78aba175482c3bf16152c41f8cc20fe69a6911c58a5ed
MD5 a54248cc7a4aa35575ed765416bd773a
BLAKE2b-256 f101eff9e69021b8ed122bae66a755a8fad9f7761621f290c9a84f9673d6db6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 c5335575d6cfd9d2dfeb96ca4c61b66149d55213b385efcbbd71d9e1a8e25627
MD5 9ccfc2b89e11f064fb991059ce6c84f3
BLAKE2b-256 e7e12381b008acb10993eae72da08ae05003d27c386be15b8ca3c090b2f20f17

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.14.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 3380a3c2f23bf66bfd12b7836a989671a7b57910a999106f089f8cb0a92dbcdb
MD5 02b7d6c30b54fa0cce57c4d0335a13a7
BLAKE2b-256 fe4d37140bbfd1e2648650b600264277cd3087580e8e5bb0fe2db153a8399fae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9aa7e43b9f82fc13ebd70d2ca3b343fffae845b0efe1a79340d34faaed8c517b
MD5 44b9d8360e71d5c13db10b8f2de418b1
BLAKE2b-256 913202cf368bc708e843abe8ec17f40ac814171c1d71aa27956d8ac89f524ebf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4d1feb61f7f6a1945508abeff0c6bba77709ba2e91196e67f4fcfaea59e50067
MD5 17915359e1a2a94dda588d8e36ae8796
BLAKE2b-256 14a20653e8a94828c616b376ab2a3baed976528f275807e14f7249523c1899ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 572490e301f5141588b5121d3d95c08cd0638eaf1421de2a6777efdd6e2be946
MD5 e6cef53583ff85f8de669ba088093040
BLAKE2b-256 8a6a2205b02f6f5559ae4a3210343a4442f65c8a97708c18999d841f240dfc83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7ae29e7c26671e0fa66b772720ef729b2503070f73b8cea44646ab8fa420e25e
MD5 197301db7ad402ff67832ba842d97cd4
BLAKE2b-256 a97578ac42f2dd12356267fb044e1fa737854442b1b8869eba0757f9c58b1731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d6604c6ab99cee9343bb72e80644c3a722c9811132f6ad82d5d63a99a9827ec1
MD5 d7f66e002c8ff4cc55e508f2131d2701
BLAKE2b-256 e8486b8e28f01b78d81d5bf4b0c7516321d797cbdfe5cc9b99d2530004a8b571

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e9f48642f89a6ec1fac0c272e6181a80fe069a1b936e2e4e962e92231abfaeb
MD5 2ad869da351f2f919bd367177bc0f86e
BLAKE2b-256 33e0d185104736a2d1efb2c3930e902e822a840fef6cfe9eb2d9cc91a4d3ec70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6e96b0b72c586e26bdfe10b442af1f86770959823d20224a4b04fdfef1198599
MD5 62714a9aa2fb76646fd2a993a3599fe4
BLAKE2b-256 0a833e474781b1bf9468398956ccdce821e23491f3a3553091ca1c6f95e5fdb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0298d3cca982f7fd5238af59765eae3fbcea238063658cbb314c364c419e33dc
MD5 55266b07f111f565a1745b30c16d41c1
BLAKE2b-256 5436c7fadfef89a04795b07e7cb8e83af46e03b5ca76b7e94b61f8c41d4de43b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5730ceb66063f459ca6d9be1ffb081b968aced93c5e8ff9b2041d4201cc536a1
MD5 dfab91110753097636aa8c1b4a7295a9
BLAKE2b-256 d36c149a4d6d0faf1bc7b8b5c4c8c28458bacbcbec39bc37eeb8d5304ae636d9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5bd69b21e65fe9c389c0bfc3cee2a33372fdd05e8b08748184dbc13f3defb7e0
MD5 0ccf1fcd14d1ded71afd4c92237ae7aa
BLAKE2b-256 02bea98ed6f9676f479ab8ffbf7758ee51f9861f24c612adccaf4ba0dcc318c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 f4f1780efb4177437c79887607797db4cd4a1d48ca419f58ac0a38ddbdf342d4
MD5 13ebd7945a1bed94e92bc54e78b102f5
BLAKE2b-256 e20225fe830641a29577a931c68940d1740acfac9d566c84b8239496a4fcf1a0

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.14.4-cp38-none-win32.whl
Algorithm Hash digest
SHA256 815a32b0bcdcf6f87de47900259650e97c72622ca00a3041b2aa3241437690fb
MD5 daef5201b9484c730937758ddeba171d
BLAKE2b-256 3331be99f12e1db5b0ca9040701354b2ca34c2f4bbb07b664f99181fe74139e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 df5eeb324296d75b36a326a58f22edf6bcbabfcc32e57e0fdb8addd35ec3fdf0
MD5 995b9df704fc5bba7fb09eab581ee2c9
BLAKE2b-256 e1c3aee0968c7f856cda5a5a9edf850ef78df1181b0dc56728538c97971ab4bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4ae27c935229dab45efe224c8dd598faeed89ddc3727c1ae01552390361954a6
MD5 9a6c8005ade19b809d105eebea3f9633
BLAKE2b-256 dffde833127e085469165e4ba2746fe3b6e43a359ea1865ea2dc1b0c632ff682

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cc394f6f14e55cca8d736370dc5f1714f23d9735e5e7033f9f19d11533234dec
MD5 d590bbd31a2bb8b60465fd4bc60cbafd
BLAKE2b-256 131390f35e4c1dd07558fb31f2f539dc0abbb2c387d634643b0d1a723fa006fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5100f802f02958883fb90934d6ac40f35ccfb8454348619084fb539551151a32
MD5 0cd4815be2c0cf809db59c2348e156b7
BLAKE2b-256 9a542424ea373b5c9dd4e3f5eea9bfff398cc917e1e11fb86c95e4968af5fc44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55537294eb65829439649ef29e68e123cbe32f0fdd43c2a2e5053c0454cb677f
MD5 bf555406c2d2b52c04c8abee2f9cc311
BLAKE2b-256 271f6423e8dfcee8b08905b58b1fa5f190faa14ee23b98b96eb559ad0aeb264f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c77893bb456ac3e688ed1b1a637b590c8411fd88d0ea164a85c34fde46ca9813
MD5 3e65e0d990fdf8082439c523a5cd20e3
BLAKE2b-256 7c6ad085820240b3ffc498caadbac534f9dc7875a6a629d1896f3637468a34ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0743d4abf231a946978d8648d588b0da2f36905dfe944414c867db1573c05bb4
MD5 afe21a67556f932b5f31b3f5c77508c9
BLAKE2b-256 1f0e7d33a9366a11398d3f74040091b20a184bf1e11df1a4dad5cdc3a3072e34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 87c933cca5652fb97dd6f1642c89f79007a1e35ed7d49a3a8a817b8bd10c6ccb
MD5 9c9878ec99913eef1257ce8082e59718
BLAKE2b-256 6d039a33fce516f3ca91c00c511491a8133afb4885dcfc69ad732523f6a4d15a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4028aad879c11801fe147ec9412f6bc8423ae5ab0dd08b4cadf6eb057939fad
MD5 cd9022ae83568e8d3f9ba5fda6f85331
BLAKE2b-256 3283e4a76ccd3378ba403c5fd51eee40cf0b528aa5c2703eb87644193396206a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6444dc300ceead29728bca08e544cb1c9d69d5efb36503670e05ec353bcb0dee
MD5 0c1e405d02ef141734fa72c41578414e
BLAKE2b-256 54842a25648fad5156c3ceca686da25413a74259ecffa564ab608e3b9bc5ab36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 02f3a5e54283ea3fea799d183846d4f48bc3f352328a939d9e52c40a32012015
MD5 c51a4afd2d2ec2ee655268cfc938cff5
BLAKE2b-256 3ac47fe91e8a5142770cddc0505b628f34526c0028944fd5730180a6c7b3c1df

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.14.4-cp37-none-win32.whl
Algorithm Hash digest
SHA256 b6af922e13c76e15fbdec60a1613975103a200709d65bd8e335375348c94797d
MD5 e8a9183e331cbc365dde639f9fefb7b7
BLAKE2b-256 3bbd711ea7da086bf8d4b0f8fbad1107495360df2a97035ee9583ab778170731

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 91127a1ec55e39f83fce756c6fde6e5aed27cf433d1df27d51f5da5fad54a163
MD5 2bc7676d2b7eb971b0f66f742d61b4a1
BLAKE2b-256 c644e8c81a432397c9f5577791d6d68086cce0c0bae28d914a058551a71f3d98

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8c26d581c5808eaea39a902eae1e5ea389c6b4fcec8b7df87d5b06a427c12546
MD5 e504ea874d64ad269c48c3c8e03fae12
BLAKE2b-256 03fe5b9f426ddb43158663db72ae42c85ac29499bc26a92e11139b33b23a4ab6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6b67f9a8a3cdfc4e756f8148972529351054c8bae4b0b531d178ec74ee2140bc
MD5 e9be21016b9ac43055b33fefaceb1ab3
BLAKE2b-256 d6d00d37168c100d38e94777cb1040ef75b7a4baf42a7d82b91dfaffc8781549

See more details on using hashes here.

File details

Details for the file pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e814c01383e3d5ee6ebda18ed459ec4a409d012f1f54e32c1a572d2874f5f66
MD5 137221fae3758317884204e293300a9e
BLAKE2b-256 e0593714f043757cfa8c59fb08bfc3371150411d2b1aefa7a00c08fc64730c09

See more details on using hashes here.

File details

Details for the file pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ed467609dda42bef546db0fdb0d76acf4137a9336fe0053cc43299fb106db2dc
MD5 461b356075c369a8b2c8b80a33ed23e7
BLAKE2b-256 709d571ad792c553ac0c477d7048802c8e6f675a85e332a4171509e7d95747a5

See more details on using hashes here.

File details

Details for the file pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 768bf3d9661060dd0a6ea72bc6789694c91532bf1d8bb82b346a6546dba056af
MD5 d8023ea824a3d46bb7833f13f33140cb
BLAKE2b-256 9d25da8f8836d256eea5d02905dbd331fd6a2be0d3b97f35e08603228edb59d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6fdb3014037970f06c1db1f0db93ced5883d31a0d5b5bbfb2c8aaf78d8ebd52c
MD5 5d5a03e7f8deb4a6523357caace8883d
BLAKE2b-256 793b8b977a5b64fcc2438cf6c93697be36ff0ed75600fd6ade777f23ab2c2514

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b2daad4290b52bf1b83c22c4d28462896a5a7e5bb78e3b53cc73df1ce71000dd
MD5 35d82cdcfb7e9d2bb71b09acac4845bc
BLAKE2b-256 d87c939b9847e8aeabff219faf1f12001552ed76f39ca22dc086acf75bcef57d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 00e230cc9f0bbd738313bc202947b630771f91965a0151245de8b83af8dc2337
MD5 0ba91c46b6dba4e57e32af0746b7ef56
BLAKE2b-256 0bf44cc08254d042681f04b922749997946c89c8b391ec7ca5feef064703ab23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.4-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c2ce32558e5244d7fc8b24686f95d18d969d6b316479cce9002f0b29d2da1877
MD5 46fde841fd3706375fef4274b62fcda4
BLAKE2b-256 ccd63f53c7a87cc99e702138c09238bf0ced98913484c9a44fb2546f35bacfae

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