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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

pydantic_core-2.14.1-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.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.14.1-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.1-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.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.14.1-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.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.14.1-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.1-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.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl (1.9 MB view details)

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.14.1-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.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_core-2.14.1-cp312-cp312-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.14.1-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.1-cp311-none-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.14.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-2.14.1-cp311-cp311-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.14.1-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.1-cp310-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.14.1-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.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-2.14.1-cp310-cp310-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.14.1-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.1-cp39-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.14.1-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.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.14.1-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.1-cp38-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.14.1-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.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pydantic_core-2.14.1-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.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

pydantic_core-2.14.1-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.1-cp37-none-win_amd64.whl (1.9 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-2.14.1-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.1-cp37-cp37m-musllinux_1_1_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-2.14.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-2.14.1-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.1-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.1-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.1-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.1-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.1-cp37-cp37m-macosx_11_0_arm64.whl (1.7 MB view details)

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-2.14.1-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.1.tar.gz.

File metadata

  • Download URL: pydantic_core-2.14.1.tar.gz
  • Upload date:
  • Size: 359.1 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.1.tar.gz
Algorithm Hash digest
SHA256 0d82a6ee815388a362885186e431fac84c7a06623bc136f508e9f88261d8cadb
MD5 2bab1a62e4ba3f14445b33ad01028c2a
BLAKE2b-256 a8f20be79498e0f645fff8cd58c0013f4d03e17a54047e703efb30a200a4a9b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 a15f6e5588f7afb7f6fc4b0f4ff064749e515d34f34c666ed6e37933873d8ad8
MD5 1e513b1b28fdd4da2b9f709a47940ef6
BLAKE2b-256 be011ecb49f611b64d67fc2220b42ff1e62e787091167057eb2c2ea5b5ffca76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e2c689439f262c29cf3fcd5364da1e64d8600facecf9eabea8643b8755d2f0de
MD5 30fa947169ff41b2475a3d43c39181fa
BLAKE2b-256 f3b356ab414ca85cb61eac0e1491589505acef187b1192bc1ea9e7fe2441ef47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1bfb63821ada76719ffcd703fc40dd57962e0d8c253e3c565252e6de6d3e0bc6
MD5 63370bf750acbc62117821076b7eb238
BLAKE2b-256 3d57a299efd9d9865c904fd7627f62a21f5d2d875c701bc02287c5cb052e4662

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85bb66d661be51b2cba9ca06759264b3469d2dbb53c3e6effb3f05fec6322be6
MD5 10117d9b14d484ae0093661c57548ab8
BLAKE2b-256 9e2429790038f7e13a74746405c5890a23a932399b21b338538452513b8bfb1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f53a3ccdc30234cb4342cec541e3e6ed87799c7ca552f0b5f44e3967a5fed526
MD5 642101d6e750d97250f2376add8883c6
BLAKE2b-256 e42823d2f7be72ba8064d0285266dd226831288231ef2c9e43a1a85460f1b266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f523e116879bc6714e61d447ce934676473b068069dce6563ea040381dc7a257
MD5 a4922ad56fbcece94b0247021a943865
BLAKE2b-256 1ba3dbe5dec5dc78189eb3c29e367bf7559ffc6894477e5b8b046e774405fdfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 53efe03cc383a83660cfdda6a3cb40ee31372cedea0fde0b2a2e55e838873ab6
MD5 12464fce081a1288bfa5ed63be162be2
BLAKE2b-256 e360981678a27db6dd91e92a1f15c661f8acbdbb279e2290af95e836caf72afc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d983222223f63e323a5f497f5b85e211557a5d8fb670dc88f343784502b466ba
MD5 d981858ae0e0e49f9524e9164a524aed
BLAKE2b-256 2087248a61055f1567161c8944bb839e69f0e79bc8f7deb02c52291b61e1d162

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8e17f0c3ba4cb07faa0038a59ce162de584ed48ba645c8d05a5de1e40d4c21e7
MD5 de8bb07ce7242dcdd1cf222385814d3a
BLAKE2b-256 0483d62ba619e2fd888d580601ef89af622702c7fb1ebd2cb04bc523c05101bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 66dc0e63349ec39c1ea66622aa5c2c1f84382112afd3ab2fa0cca4fb01f7db39
MD5 51432e6c5579c4310a96d5e4b85b9700
BLAKE2b-256 5c1f998166e94677b97164b2a45d25cc30b566a2a71daf497eb2c069b6419e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b45b7be9f99991405ecd6f6172fb6798908a8097106ae78d5cc5cc15121bad9
MD5 1e8e68dd8a50caefa8aae150e8a30004
BLAKE2b-256 2b18ea9a74add03669073071ca79a00b9ba36ad190fc61a19b9b7ff023cc7eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 51506e7652a2ef1d1cf763c4b51b972ff4568d1dddc96ca83931a6941f5e6389
MD5 098e3176973ca3057fb2221897fd646b
BLAKE2b-256 4c3fee482ce1c06e1b07fbbd936070f6e672e0d2d8d730313622ed0d4dead9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a7991f25b98038252363a03e6a9fe92e60fe390fda2631d238dc3b0e396632f8
MD5 14c9b852001e102c853cedf0a6f297e1
BLAKE2b-256 1bbff52ee5585a30433fe8e8c7bf1df2f3f437bed6b3d3d97c62880be3484e37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 cb2fd3ab67558eb16aecfb4f2db4febb4d37dc74e6b8613dc2e7160fb58158a9
MD5 dad8e327f11c494d8e4c2903388cd3ab
BLAKE2b-256 c2e5cb444cad2bb13481786793d4b34dc04d5f13489aed364de15df4ee8f8efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5a1570875eb0d1479fb2270ed80c88c231aaaf68b0c3f114f35e7fb610435e4f
MD5 6e196634d982db63b7bec69b95e856da
BLAKE2b-256 c1ca4ecad289fffcbe40f2c9d06220cac3821da32026ab3eee92e500147ef1f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8d927d042c0ef04607ee7822828b208ab045867d20477ec6593d612156798547
MD5 7337cc1f536492e761b002023bb52716
BLAKE2b-256 8e66928da02b1732bac19896b94f53800b7dc15dc4ab3642068d7f627f96800a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 dee4682bd7947afc682d342a8d65ad1834583132383f8e801601a8698cb8d17a
MD5 12bf15cc2b39c1747618091610137ec3
BLAKE2b-256 064a27eb9f496b2b748299ac02b0e22793841d18c78e25f2ee44e311110ff26f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 130e49aa0cb316f743bc7792c36aefa39fc2221312f1d4b333b19edbdd71f2b1
MD5 5772430ba7ce3007bd70d261be958c8d
BLAKE2b-256 2de9b7c17a455f29e714e3a5a419a288db8a648d6c87e4eb09f08d61ce1f8274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f483467c046f549572f8aca3b7128829e09ae3a9fe933ea421f7cb7c58120edb
MD5 eb16bc523a7e2aafccfbb5b7548c2343
BLAKE2b-256 5ff08579be79df2e0b0e466a6ac10586560f07a3b395f0277f76066751521a24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b91b5ec423e88caa16777094c4b2b97f11453283e7a837e5e5e1b886abba1251
MD5 479570696ebe947cb22afe3f9193c8e5
BLAKE2b-256 e5690ab3ac99f8c86566bf5b8662c51ae9bd14e48258ac7ed783006e25b41582

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c8c466facec2ccdf025b0b1455b18f2c3d574d5f64d24df905d3d7b8f05d5f4e
MD5 14063d022ad4b59652d5eb7fbe5bca97
BLAKE2b-256 48fba84c4712d0420c07692c4859962ce6af34edf518674f5978f493a29f3af4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ebc79120e105e4bcd7865f369e3b9dbabb0d492d221e1a7f62a3e8e292550278
MD5 5866de3f97733d38096eefd28db567ea
BLAKE2b-256 a8b574d7dd97b9b8842bc13090479bb9c53d670880be6525eb07ff2e6e001e0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a68a36d71c7f638dda6c9e6b67f6aabf3fa1471b198d246457bfdc7c777cdeb7
MD5 82f7ebe56ded96da94c5ed9ec988019c
BLAKE2b-256 fc92a9408b4b43275bd8f7d496748f0fd456018bc110d7ef7d1d6d6b46d31744

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 16f4a7e1ec6b3ea98a1e108a2739710cd659d68b33fbbeaba066202cab69c7b6
MD5 cf3cb78aaac13727de2fb381c7ae2cbe
BLAKE2b-256 5e1f73730d57f40609116f0fb65036fb6ed872964b4d9317ae3fb395605a9391

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd80a2d383940eec3db6a5b59d1820f947317acc5c75482ff8d79bf700f8ad6a
MD5 a4c3bf756277d0efe528dd243adceaab
BLAKE2b-256 b4627f040104479b30595b61e185892065d5a5448f9cbc57d24e0ba64be1a229

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f1a30eef060e21af22c7d23349f1028de0611f522941c80efa51c05a63142c62
MD5 6bdf195c597c4b21520ca487aecb4b6a
BLAKE2b-256 45849e88340a1a91d98508b867f91c80126fa5dc3af15b57b2c0bfd4ee9c0b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 24ba48f9d0b8d64fc5e42e1600366c3d7db701201294989aebdaca23110c02ab
MD5 2248ead3e1fc50a8c91f866ca7d51cca
BLAKE2b-256 7e9a3d9f3a750a67cc3d1115c0581280025cadc1cbd55d5c60d1ba80c8de7535

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 744b807fe2733b6da3b53e8ad93e8b3ea3ee3dfc3abece4dd2824cc1f39aa343
MD5 5c0926a0861a159d9122a1403d33a51d
BLAKE2b-256 f64aae0d4c98d97bd042162a9de7cea4b2f655b5876cd0557ff451eedf0778e6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.14.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 132b40e479cb5cebbbb681f77aaceabbc8355df16c9124cff1d4060ada83cde2
MD5 fc577c4516054e029fc97e1a9dbabb76
BLAKE2b-256 f247a0cd42721edf31556006278d34c02f1c45ddf5aa0bbd629824a4412b776f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ffba979801e3931a19cd30ed2049450820effe8f152aaa317e2fd93795d318d7
MD5 76c4efa424e420f178c028f3b76f967a
BLAKE2b-256 74202389be6093f6ec2e9351fe0f9270b239f039c0da9e4b38cbe06e7f650b1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e2be646a5155d408e68b560c0553e8a83dc7b9f90ec6e5a2fc3ff216719385db
MD5 cc68fda830a32a6b3450999289a74a58
BLAKE2b-256 1fc45638b9ad1053aeb66384e3a248ef1f37e5fcc0d5695ec9a15e4df81be54d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 217dcbfaf429a9b8f1d54eb380908b9c778e78f31378283b30ba463c21e89d5d
MD5 527ee614ff638aa7c0d960485d3f8cb1
BLAKE2b-256 4d856300b9bcec95d04903764afb485f2c2343e007a15fa6b7620bba0eb5715d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2459cc06572730e079ec1e694e8f68c99d977b40d98748ae72ff11ef21a56b0b
MD5 f4ff852389bfbef9e951a5f33aadd0ac
BLAKE2b-256 068d023ebb75c8daad8a0d1109948b82237284adb0be86b6fc8c5d54e9683d7a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 102ac85a775e77821943ae38da9634ddd774b37a8d407181b4f7b05cdfb36b55
MD5 06af27477526457a27174cfb87d300ba
BLAKE2b-256 601a6b90e497c8e8aa1014ccea46d93e420cd4be183058952158f2351ce33e48

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ad9ea86f5fc50f1b62c31184767fe0cacaa13b54fe57d38898c3776d30602411
MD5 b1240dbc14f6bd83476d0501b9ebfc91
BLAKE2b-256 4c598903e4324298f6c5a28d8934e6193ea0d4ed687dfc5aa1453ff0f95faf0b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5879ac4791508d8f0eb7dec71ff8521855180688dac0c55f8c99fc4d1a939845
MD5 cc3de4ee82aa9d8abe8c1893b3037158
BLAKE2b-256 6e0da55c0c257aa605a4cd4376e80665a08f02fb41612d416e654da279b18bc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d59e0d7cdfe8ed1d4fcd28aad09625c715dc18976c7067e37d8a11b06f4be3e
MD5 092c4e198c9458a813483125e5686a8e
BLAKE2b-256 fbe7b7e0c92bf712429ee627cbcbd15ef68b4330f0b8bcb285eed53553ecd2f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26242e3593d4929123615bd9365dd86ef79b7b0592d64a96cd11fd83c69c9f34
MD5 b6b2b62969700913960a28504bc7592c
BLAKE2b-256 e6bf13b52f568786732e807ebabe51739a4d9a2bcce5cb8f182a69b8ef987bc5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 587d75aec9ae50d0d63788cec38bf13c5128b3fc1411aa4b9398ebac884ab179
MD5 5ed5f6bfd74cb78d55af81d3b28857a0
BLAKE2b-256 38e5f432d1bf9c10a0fe7bf8819ada23c68ccbf1c40ad358dac3abc126d87476

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 798590d38c9381f07c48d13af1f1ef337cebf76ee452fcec5deb04aceced51c7
MD5 a9af6d62ab78cf6322ee9f56bfde681c
BLAKE2b-256 e53c39d379089d9cd85b506c4a18f5c68be7efccc9dfaea8edea864f66dd3fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 59fa83873223f856d898452c6162a390af4297756f6ba38493a67533387d85d9
MD5 c1b8805b6ac3e47696f2a29d693846f5
BLAKE2b-256 158e68d3a522ac31e782e3ae95ddc7b4ec4bea0f5c552a98f85abdee6696a607

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.14.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 b8ff0302518dcd001bd722bbe342919c29e5066c7eda86828fe08cdc112668b8
MD5 6c9ac4f04f3825ecaffb3f2091b4a6d8
BLAKE2b-256 7f178cc269838879844681db0d9e92fcea992158c6f4a880ae1c5f6ea601a3f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 12163197fec7c95751a3c71b36dcc1909eed9959f011ffc79cc8170a6a74c826
MD5 4f5ba8cdaac68cabac34b053fc9428d1
BLAKE2b-256 837ab3fcfc08b5e0b5d77ba4a6489f23c1c17b03b0ed53c5767c43da30d39111

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8276bbab68a9dbe721da92d19cbc061f76655248fe24fb63969d0c3e0e5755e7
MD5 1cdcd06f14439a2dd6ae49966f9c5129
BLAKE2b-256 bfd631e6af2c5d4e30282e73bcfc6215cce632d42ac54de7169910f758e9f833

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 101df420e954966868b8bc992aefed5fa71dd1f2755104da62ee247abab28e2f
MD5 946caa536cce9721f2dad8501f5c31d2
BLAKE2b-256 9ebb574fe50b6834be052db6988cbeae88420b536177d65a77da270d4fdea2bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 679cc4e184f213c8227862e57340d12fd4d4d19dc0e3ddb0f653f86f01e90f94
MD5 dcaaf676f06b569c1c3b44df83e88338
BLAKE2b-256 60e92584062aaf1d94d47a958305e02b10d8a8dc65700d1afb8dc91971661a14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d312ad20e3c6d179cb97c42232b53111bcd8dcdd5c1136083db9d6bdd489bc73
MD5 a83605e8618e376706ee86544bbcd317
BLAKE2b-256 2562961244e1590b76ea0125c7465adc4bc22b52dbe52d11e91ece46767a9c9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc6a4ea9f88a810cb65ccae14404da846e2a02dd5c0ad21dee712ff69d142638
MD5 c78e073c36a425298e9020fbc0b9fdb4
BLAKE2b-256 95d8b165ff9787dd2f4d8c25e92e90f6e7cc974c97e0d315ba074424c18315c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 42d5d0e9bbb50481a049bd0203224b339d4db04006b78564df2b782e2fd16ebc
MD5 4ca2e1ec307aca3bb8d991262abf9b1f
BLAKE2b-256 053ddd526b5b28e454c605ad4f39db4fad29c8a7e639cf1556e7383aa884bf53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c964c0cc443d6c08a2347c0e5c1fc2d85a272dc66c1a6f3cde4fc4843882ada4
MD5 a15aea9a4795b6dd0a6df5b4ae86cd5d
BLAKE2b-256 fade33757f90dd615a14223b8c26b451b4f6ecd1ff4325be54b942a448a6189c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc3227408808ba7df8e95eb1d8389f4ba2203bed8240b308de1d7ae66d828f24
MD5 987e653c0af9a0e26460b4babe388e3b
BLAKE2b-256 a183716b8dd7529d9c8487b103068bbe12313a2eda7ff609077d006e82a286b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2be018a84995b6be1bbd40d6064395dbf71592a981169cf154c0885637f5f54a
MD5 3b6a5668bc9756bd45d13179db6ec7ca
BLAKE2b-256 62c4a71176e4ef6fadc364b63cb80116cc8c3dc202269b0c3dbbd246c6e827d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 4f0788699a92d604f348e9c1ac5e97e304e97127ba8325c7d0af88dcc7d35bd3
MD5 edad1fd8145ff94a3d3a64ad32746f22
BLAKE2b-256 c080f01ea5b4520d30286838a152f9d1b9569bf650c46b66723b3bf43ff8253c

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.14.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0a8c8daf4e3aa3aeb98e3638fc3d58a359738f3d12590b2474c6bb64031a0764
MD5 773e33900cf853ccf947a26b01611a85
BLAKE2b-256 a20841adf0da4e759a91687d88837c1dcb53fc801117698d519ac7f0314e7eec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2a7d08b39fac97540fba785fce3b21ee01a81f081a07a4d031efd791da6666f9
MD5 7ce92786cc1bb533c2641e80d2f97dfc
BLAKE2b-256 f6551724f77a2da3814f62c0c75490c2f618b9f58f089b2b09fee45cdafd3884

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1185548665bc61bbab0dc78f10c8eafa0db0aa1e920fe9a451b77782b10a65cc
MD5 b669472216733121d000bae8c8f0e4ef
BLAKE2b-256 d27c3f2da9cdcd2e4c8763ec8b207d6f84529aec1a87a2201d7c9a121e8c75b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49ee28d65f506b2858a60745cc974ed005298ebab12693646b97641dd7c99c35
MD5 b04208104f2cf48ea7578ed052a5affe
BLAKE2b-256 46f5b2e3dae75ccae405954e20b47f65493838f7303eb7b7aad39858cd9db0b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b89821a2c77cc1b8f2c1fc3aacd6a3ecc5df8f7e518dc3f18aef8c4dcf66003d
MD5 206e951f5ecda30b44d70073b0644815
BLAKE2b-256 71b9916ff3cac2d6970035d8213aa7e773ca518d0684f7659b425694b522cef6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aadf74a40a7ae49c3c1aa7d32334fe94f4f968e21dd948e301bb4ed431fb2412
MD5 ffbaa094f2b17f3ece742e4477fb2e37
BLAKE2b-256 c66816e1c6617402d1b52e58fedb6ec77f09783447e7f7d54dfdb61af4c3240f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 581bb606a31749a00796f5257947a0968182d7fe91e1dada41f06aeb6bfbc91a
MD5 c4a9f79164f3ec76bcd4d7e1deae60c1
BLAKE2b-256 d01daeb398032ddfd403e04f2168723a4274a262ca11598b2b11b54700ea8014

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd937733bf2fe7d6a8bf208c12741f1f730b7bf5636033877767a75093c29b8a
MD5 b5bae49754c3a28b337c0a2bd336f46f
BLAKE2b-256 a83757160a1ddc227637e4d212d319316b44863f6fe4e76d9c8f201439e04c10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 97246f896b4df7fd84caa8a75a67abb95f94bc0b547665bf0889e3262b060399
MD5 42c7f29d39048dab990d8994a0b85442
BLAKE2b-256 3cfc7b357141c49fff0251e1876049930a44fca82831e4928915d67f248f46ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a2ccdc53cb88e51c7d47d74c59630d7be844428f6b8d463055ffad6f0392d8da
MD5 062b07a93c605e0cd295fe01f4e7dc83
BLAKE2b-256 8547306f21170fbfb113d655c295960536a415e5ef3d13c7832501354288d4ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 812beca1dcb2b722cccc7e9c620bd972cbc323321194ec2725eab3222e6ac573
MD5 8d17f93930be330f0ca9918fb58dcdf2
BLAKE2b-256 87110fbdf75a778790626d90f6a345f32481e78cdc8237d85ea802533f34129a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 55713d155da1e508083c4b08d0b1ad2c3054f68b8ef7eb3d3864822e456f0bb5
MD5 bcc07a1610e2375d8b5328174d94c047
BLAKE2b-256 58e238b54d3ef3937b62f706a7fd481bd6426a61200dd64dec7cb23703edfea9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.14.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 72c2ef3787c3b577e5d6225d73a77167b942d12cef3c1fbd5e74e55b7f881c36
MD5 115e6b007866816be0470c678d8e77ef
BLAKE2b-256 cd660069fdc8959cbbe3855434e22939aababa027e5d5ace4eeaa2724ee8d7bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ca942a2dc066ca5e04c27feaa8dfb9d353ddad14c6641660c565149186095343
MD5 2afe11bb134607501e757ff2a22d1b09
BLAKE2b-256 8c4acf6a3f5809498cfd836bd798415edcbd78657639fe0b1b3e85d66d81865c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d965bdb50725a805b083f5f58d05669a85705f50a6a864e31b545c589290ee31
MD5 3b1ba12c8f0b6dc9faac8a45793ae1ed
BLAKE2b-256 852bbe28344be46b79b93b4b5214b1fb01072147a973e2fe858b7ee8bf570701

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6590ed9d13eb51b28ea17ddcc6c8dbd6050b4eb589d497105f0e13339f223b72
MD5 91e04327a182bb2b05194c5309bcebb2
BLAKE2b-256 b6ef6a6493b49f028893667453f84d2223ae4e56f3ebb895dfcfe7093723cabc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fb290491f1f0786a7da4585250f1feee200fc17ff64855bdd7c42fb54526fa29
MD5 5b5ca5940f371b3617767d3d8a2250c2
BLAKE2b-256 5229e34061607a868a5955005203152632cd18ec87e498332214d86e66d8af23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 36c3bf96f803e207a80dbcb633d82b98ff02a9faa76dd446e969424dec8e2b9f
MD5 c4a7511124a2fe116c6cb76e36fcffd3
BLAKE2b-256 72fb04c0866d61c244bebdd8182dbc587fac1dba1c813dd968733aae61897fbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 94cf6d0274eb899d39189144dcf52814c67f9b0fd196f211420d9aac793df2da
MD5 0f0d06c2722961c47d6e9d51f46adcd9
BLAKE2b-256 2e46b1dc4676a40f48ab14384b81bafbfae8762a7694371901fb4f8600008dfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bb1c6ecb53e4b907ee8486f453dd940b8cbb509946e2b671e3bf807d310a96fc
MD5 9f500ff325a3cf9112ebf297e94b9da6
BLAKE2b-256 702732763e23005cde633449441c199a553c9200eb9c7528430c3daa08338be7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 69cd74e55a5326d920e7b46daa2d81c2bdb8bcf588eafb2330d981297b742ddc
MD5 01da2897f2dce7074d67879299b5bc1e
BLAKE2b-256 c6dabde934fe8b128908b0d29bc880fc02f5dd68a86977c96c73eb10f24a3551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 052d8731aaf844f91fe4cd3faf28983b109a5865b3a256ec550b80a5689ead87
MD5 195db3bacc913e98f807d607db70e289
BLAKE2b-256 b80eed7b37666bc87b97ad1c879b0ecc581500dc606e03028398f47185a25e83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 893bf4fb9bfb9c4639bc12f3de323325ada4c6d60e478d5cded65453e9364890
MD5 cdd8ac217964be1de6c0c81195c7d65b
BLAKE2b-256 046dc520103a6ca5fea3f5710baf528250ce72a90792d8517ad64ea64505bed5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 144f2c1d5579108b6ed1193fcc9926124bd4142b0f7020a7744980d1235c8a40
MD5 7a37544dea85985aca54f75db1beac72
BLAKE2b-256 ac8e237c603ab884c658b27088398e31c612ecb0576602fea006458f7a302588

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.14.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 3303113fdfaca927ef11e0c5f109e2ec196c404f9d7ba5f8ddb63cdf287ea159
MD5 70b863403f95074b9b0a18a156b8082a
BLAKE2b-256 f396aba75269e8f797696a6249ac63b7576e43459828f0170fa612180d069267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 28734bcfb8fc5b03293dec5eb5ea73b32ff767f6ef79a31f6e41dad2f5470270
MD5 706ad6a566bb590270d48e329011b384
BLAKE2b-256 b294aeae7277771eb72b620e869a500fd4177fe660e6ae9584b7a91479edf186

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3f48d4afd973abbd65266ac24b24de1591116880efc7729caf6b6b94a9654c9e
MD5 93a732ad398b7f261ae01366d3c35ccc
BLAKE2b-256 56e57cc7af09ffcefab131b690a6082fb55c3697cb5ff6e0709c70572912ebb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 023b6d7ec4e97890b28eb2ee24413e69a6d48de4e8b75123957edd5432f4eeb3
MD5 5f7c5ab2133b83ab65690de6082b9fa1
BLAKE2b-256 3220a5b09b0dbda7766d335ea5c2fb78f03140f9b1f835dc7756fabd9e48bb0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c6e98227eb02623d57e1fd061788837834b68bb995a869565211b9abf3de4bf4
MD5 377415671a9ec522cbd13f50ddf99284
BLAKE2b-256 06acfcb76ae8a0731d03a368f22c771293112c81658601a4065eb91e49a11f0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c36987f5eb2a7856b5f5feacc3be206b4d1852a6ce799f6799dd9ffb0cba56ae
MD5 0650cbb76cf4a8c66c0ad4ce96a61f1d
BLAKE2b-256 43883b81f988dad798e906352db43fd91b28b0173742d393c8f4a25e737fa9a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ac417312bf6b7a0223ba73fb12e26b2854c93bf5b1911f7afef6d24c379b22aa
MD5 013fad6cfef2a9e8902e4810fa17feec
BLAKE2b-256 748772f2d2a3402af78c4c727b0e88a396d03f9d14f1ae529dfb8bf60fe6f3a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e5a111f9158555582deadd202a60bd7803b6c68f406391b7cf6905adf0af6811
MD5 1eea3a16e36dc4a0e6c5498de79ccd3c
BLAKE2b-256 cca6e5ffb29d4546de772197acef7b7bfb6350804cbcd2864923300f3620e167

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6015beb28deb5306049ecf2519a59627e9e050892927850a884df6d5672f8c7d
MD5 f6e8ba1df869f238a47f053484d16bef
BLAKE2b-256 2c15b81083c0e25c98cadfd2740fe9eb4f8448e68f1ea1f51847d07e337ee188

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7977e261cac5f99873dc2c6f044315d09b19a71c4246560e1e67593889a90978
MD5 1cec7810b11b9006a0443a0d5b58e677
BLAKE2b-256 6fca4d72347f388441acf79634e911699a672f01fc3c06ca47c9924c5762a5df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 2871daf5b2823bf77bf7d3d43825e5d904030c155affdf84b21a00a2e00821d2
MD5 92ae84f3fc9df466091ed0463b7517bd
BLAKE2b-256 3c98d5ae391057aa33217d4b95e1eb95d078b79521ed85342d810f6fb2db6f0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 c7411cd06afeb263182e38c6ca5b4f5fe4f20d91466ad7db0cd6af453a02edec
MD5 cb332918d9d79227b5e2b18f74aef718
BLAKE2b-256 0cb8fad578e7db36092f87541117dcdc72158398c9143f5499cc3e992636054f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.14.1-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.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 b4ff385a525017f5adf6066d7f9fb309f99ade725dcf17ed623dc7dce1f85d9f
MD5 23e91997cf9d282a4467a2fa5bc65e2a
BLAKE2b-256 8eb75fcbe183780774438f9177abd2e82960fbc4e2492dd0efc151e2148b271d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1e7208946ea9b27a8cef13822c339d4ae96e45952cc01fc4a91c7f1cb0ae2861
MD5 7391e19b02ff1de86a5c6e48f3b7be55
BLAKE2b-256 7bd5a631d76e6302085d32e7737a531bd70e7cf9e0c782125e02b402afd09b0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 871c641a83719caaa856a11dcc61c5e5b35b0db888e1a0d338fe67ce744575e2
MD5 22bfd3d35da8fd3f74601f303405cbe6
BLAKE2b-256 b6a916d00728d74dbe415ee8a2105b80f760b6f92c0ef6cd5ba434286c595d97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 184ff7b30c3f60e1b775378c060099285fd4b5249271046c9005f8b247b39377
MD5 509982471951842f943a0d6f8a208fa1
BLAKE2b-256 f1bab7a1c3ce86326f1044fa96811f49f6b1a0410779b39affb9dbfd605aef66

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69df82892ff00491d673b1929538efb8c8d68f534fdc6cb7fd3ac8a5852b9034
MD5 521ca2456cb731c7888c327a15ccae22
BLAKE2b-256 10a30fc72f10a8989fec3b8c9d3361d0bc5532de192f1331c8370e53cc3cc33a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9486e27bb3f137f33e2315be2baa0b0b983dae9e2f5f5395240178ad8e644728
MD5 1036acdc1f30ed13b1df95bfed48d94d
BLAKE2b-256 d5acd116df93f9b98b8f61abbade5f9f167eb15c83258ad4aa387c02a425c689

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 abae6fd5504e5e438e4f6f739f8364fd9ff5a5cdca897e68363e2318af90bc28
MD5 2d34319e572e506faab48a764ff43013
BLAKE2b-256 a0e74727275bd548e21b09a640ee7d681771e24bd772418254d00516e470366b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 443dc5eede7fa76b2370213e0abe881eb17c96f7d694501853c11d5d56916602
MD5 19acdfdd6e9d87b10da02d799b022cc2
BLAKE2b-256 7d64cff875c255b4515fd1859335b9b26f2adc40f9b3eead1522b436d5cbdd64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3d5b2a4b3c10cad0615670cab99059441ff42e92cf793a0336f4bc611e895204
MD5 2f242157080b301f06611d0de6a927bd
BLAKE2b-256 4528e3f49add907637cdd84698b90c7b804730f9c30738773726e4ec21f82d8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e905014815687d88cbb14bbc0496420526cf20d49f20606537d87646b70f1046
MD5 425f883bb5a67f88a6228b77a45d2930
BLAKE2b-256 9428dd97fea5d8b3e0e6445c5ed3d8f2df1e2b6fd1025afcd1bd3b7c0a342925

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.14.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ba55d73a2df4771b211d0bcdea8b79454980a81ed34a1d77a19ddcc81f98c895
MD5 253a45dc8dfd56630fd9602d0f670b10
BLAKE2b-256 15798347c20a1052078669070a6c982ad900d0eff39a6b75e243a79e45611774

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