Skip to main content

Core functionality for Pydantic validation and serialization

Project description

pydantic-core

CI Coverage pypi versions license

This package provides the core functionality for pydantic validation and serialization.

Pydantic-core is currently around 17x faster than pydantic V1. See tests/benchmarks/ for details.

Example of direct usage

NOTE: You should not need to use pydantic-core directly; instead, use pydantic, which in turn uses pydantic-core.

from pydantic_core import SchemaValidator, ValidationError


v = SchemaValidator(
    {
        'type': 'typed-dict',
        'fields': {
            'name': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'str',
                },
            },
            'age': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'int',
                    'ge': 18,
                },
            },
            'is_developer': {
                'type': 'typed-dict-field',
                'schema': {
                    'type': 'default',
                    'schema': {'type': 'bool'},
                    'default': True,
                },
            },
        },
    }
)

r1 = v.validate_python({'name': 'Samuel', 'age': 35})
assert r1 == {'name': 'Samuel', 'age': 35, 'is_developer': True}

# pydantic-core can also validate JSON directly
r2 = v.validate_json('{"name": "Samuel", "age": 35}')
assert r1 == r2

try:
    v.validate_python({'name': 'Samuel', 'age': 11})
except ValidationError as e:
    print(e)
    """
    1 validation error for model
    age
      Input should be greater than or equal to 18
      [type=greater_than_equal, context={ge: 18}, input_value=11, input_type=int]
    """

Getting Started

You'll need rust stable installed, or rust nightly if you want to generate accurate coverage.

With rust and python 3.9+ 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 🎉

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.38.0.tar.gz (445.5 kB view details)

Uploaded Source

Built Distributions

pydantic_core-2.38.0-pp311-pypy311_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.38.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.38.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.38.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.38.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.38.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.38.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.38.0-pp310-pypy310_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.38.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

pydantic_core-2.38.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.38.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.38.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.38.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

pydantic_core-2.38.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.38.0-cp314-cp314t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

pydantic_core-2.38.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

pydantic_core-2.38.0-cp314-cp314t-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

pydantic_core-2.38.0-cp314-cp314-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows ARM64

pydantic_core-2.38.0-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

pydantic_core-2.38.0-cp314-cp314-win32.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86

pydantic_core-2.38.0-cp314-cp314-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

pydantic_core-2.38.0-cp314-cp314-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

pydantic_core-2.38.0-cp314-cp314-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

pydantic_core-2.38.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pydantic_core-2.38.0-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

pydantic_core-2.38.0-cp314-cp314-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

pydantic_core-2.38.0-cp313-cp313t-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13tWindows x86-64

pydantic_core-2.38.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

pydantic_core-2.38.0-cp313-cp313t-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

pydantic_core-2.38.0-cp313-cp313-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows ARM64

pydantic_core-2.38.0-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

pydantic_core-2.38.0-cp313-cp313-win32.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86

pydantic_core-2.38.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

pydantic_core-2.38.0-cp313-cp313-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

pydantic_core-2.38.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

pydantic_core-2.38.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pydantic_core-2.38.0-cp313-cp313-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

pydantic_core-2.38.0-cp313-cp313-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_core-2.38.0-cp312-cp312-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows ARM64

pydantic_core-2.38.0-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.38.0-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_core-2.38.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

pydantic_core-2.38.0-cp312-cp312-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

pydantic_core-2.38.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.38.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.38.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.38.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_core-2.38.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.38.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.38.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_core-2.38.0-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.38.0-cp312-cp312-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_core-2.38.0-cp311-cp311-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows ARM64

pydantic_core-2.38.0-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

pydantic_core-2.38.0-cp311-cp311-win32.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86

pydantic_core-2.38.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

pydantic_core-2.38.0-cp311-cp311-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

pydantic_core-2.38.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.38.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_core-2.38.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.38.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.38.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.38.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-2.38.0-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

pydantic_core-2.38.0-cp311-cp311-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_core-2.38.0-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

pydantic_core-2.38.0-cp310-cp310-win32.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86

pydantic_core-2.38.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

pydantic_core-2.38.0-cp310-cp310-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

pydantic_core-2.38.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.38.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.38.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.38.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.38.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.38.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-2.38.0-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

pydantic_core-2.38.0-cp310-cp310-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

pydantic_core-2.38.0-cp39-cp39-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86-64

pydantic_core-2.38.0-cp39-cp39-win32.whl (2.0 MB view details)

Uploaded CPython 3.9Windows x86

pydantic_core-2.38.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

pydantic_core-2.38.0-cp39-cp39-musllinux_1_1_armv7l.whl (2.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

pydantic_core-2.38.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.38.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.38.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.38.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.38.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.38.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (2.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-2.38.0-cp39-cp39-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.38.0-cp39-cp39-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.38.0.tar.gz
  • Upload date:
  • Size: 445.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.8.4

File hashes

Hashes for pydantic_core-2.38.0.tar.gz
Algorithm Hash digest
SHA256 333a2e5506fdf79b366a4a18e264f4e297945e2e9d031db94cedf65f3fcd6cf1
MD5 085f6af86533ea9793bf4851e5d2ddf0
BLAKE2b-256 1d19e8b5f4663582e836490e2ec9a5c06938c7e779d65e7be005bace3a1ccbab

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 0d84fe387aaba0c3ac67ade8d55d6291ab073aa3fc9305adde7d929082e82d26
MD5 a8b6323cd543615e7766b9abd227b502
BLAKE2b-256 ec3b7372e7dbc8ee90c648625890fb828be050609e0da63e9f2b51ea8567b472

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 04d9af324138757825333911bf58623e4a807b94853963814eb918e17ea2fdc3
MD5 6ca4de06e4e60d774e16ab2ef4198957
BLAKE2b-256 303e6aea39735bf93f75d033cf859c865cbe0778d2a8d13f6438efe67124dfd7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d04f1b1f6e2fc90b8c9456b766c0b2a07e0e206d02fdc876fe0bf41bf14ad44d
MD5 c6306eb91426df81f6de73c1b8cb04b7
BLAKE2b-256 d56aadf914142ccd3d847d915303e31e84c01d1e8493c19eed22ea2e7e51e518

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a25e43965cb687a9cb40ac9a4e0323af9e64a79065aba4a58d18e0d5fd5dd658
MD5 b77d4ca44193d817a72ba624d3e5e25d
BLAKE2b-256 b0bd5efc48e54415bc2bf4b21f5b93b1f7bcc3f7b646accb478ae91a06960f57

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fdfcddfcf6acf39e4ae825dc9f145cafbbbaa405fcf902a4338e7062056e24aa
MD5 c66cc2a556bb73dd8b786612bd669be4
BLAKE2b-256 d6b4039d33666f49e19e1dce228c245ee73af5f7d51483cf9eb48987e52a42ad

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e90103b0bcbccd5c4ffea4f70730411537800b17f75a61d803d799f48a90d4db
MD5 1515cce75e93f5d41ce9859ed7b49989
BLAKE2b-256 521c1cfd897383b885ff41565b76ffa9c6d85051a4443a94663658404ec61622

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fd0c33992c8da7af0369e93b81be4ba055da3789b1f0608499026594e8629746
MD5 c25c9b40d249583c380921790bc62076
BLAKE2b-256 eceeb4266a44bb8053b24d6e1866b582fbb96a5a2c8bfa6f1b225b9c2fa12f9e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6af3345c2ca3f99b982b810ad5dd6d33eaefde494399093540fa754deee03be3
MD5 aa9c1020d9bb7e13132af2177c6bcd07
BLAKE2b-256 f327db031f50448cd882e827e2fea33744c6217508279e278582b42a4c438398

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 1ce6add831cfe482291ca7da0daa219ec401359a94ed12f46b111bc55b9d60ea
MD5 c5794bcb7ef6a7a421c2db57ff9c5ee5
BLAKE2b-256 1723603adecf7dfa4ff703ef75d6a28f4f804c5926486a550e0f399e4e68982c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 44bff29dff03890183eee2b1ef3afb7ca167a356d804ac98c4ac2d999d401db8
MD5 7702fee70b8055f0200b45b8fc11c18d
BLAKE2b-256 a5daff982e68d41948f0fc380b560c01053c97380c430101b4ef6c54ec29ceca

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp310-pypy310_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 35c54a7c8e213c08754b1de78f4b087016117d95234e7b246fa6e951d5af6bda
MD5 0f430d51ef1010c6a5931f6f9b07304f
BLAKE2b-256 201c83b1b62772714e6bb469232be1e9aa390ca93c8a622f4a2519c48d4c52f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a2e542635d5af6ae39639340be43fd387a20993b5c7210b692fb6706833a5c9a
MD5 f9d8cd638abf8a7dc06002c03fb8d434
BLAKE2b-256 ac898845fbbcb68a78566dbbd8523faa6f8828c1119837190272eaa15abbfbf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6964975a185b2a50775336f91db28b826f9d8dd088f9cda26e9d5afeefef188b
MD5 b07999e49e9726aef9e5d218688fa404
BLAKE2b-256 88fc763448e5eaee4be93ec7ac5bfddb79e1552d580d67f7918de8c551aa0fe7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f00f844284f8869a4f7e23fe77a180bd4cd1b9210239038b056ed6b84584753
MD5 2288d7e348ea84845feb014759a62024
BLAKE2b-256 4f77acb13f5536115e9eaf595560cc42ebcb02d7a1e45af8a8b8e6f134f25f28

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4ae5d8599ad64e98651ea71ddcb3d79381b526bea515f81a123f5ff876709bf4
MD5 77b39b21db836dc41aed061598c5dbab
BLAKE2b-256 08e2d37f25ee4b201a5eb76bcef6386b823bdb414e774b76b52dba4e4472c9fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-pp310-pypy310_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e005f3edaa6ffef25472e6edbdae7c6f4de603e250d1e7eeea41b3027d87298
MD5 63c86bd61864db1fb52847c0cdc6fbfc
BLAKE2b-256 e6509daeaeeefae40713161246c003b703440b208477e9c3215767967c4bdb7c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7d2c26cdc1fc9d2b5f80362103e2f05c1c0840f96d63af8580e07ecf431378dd
MD5 c12abdbe5f4427fd932652c8eeadb1a5
BLAKE2b-256 28a9f709a6dea6b6c902f66a4503b3b8a3980582c34630aedaf814371ead3ca9

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 47d3b88c881d4c5666b630ff2d41e2e094df91cd7945c6f78845e1fe8bfe4634
MD5 70eac0ee5188b031b0ed3ee83194b0e6
BLAKE2b-256 95a81903338d126b448bbebc21037977616404194701d2a267d49b51a93cc9fb

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0e46681b0fed505e8d24ef38416f81999ab1023a87cfaf26d5a6ea57640b767
MD5 19b096e8dc8c7a61c12fa77cfd5ce6c6
BLAKE2b-256 a9342a2b189173c3eee530a4e7ebc671fdf9c9889d76b8394193c7b97cea0017

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7d6339dc3f6e329fbb91c24cf68f6bbf6b8542c0455f746a6defe8b17daf02b8
MD5 5ce8372dc671e40baad7cab1e613040c
BLAKE2b-256 3c2d6aea718d991c7dc244c9e1f5abeba3def53b5fe79870b730dad42b153e60

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 2aeff1abe94fb68b90415dbd1b3bbc947b1472fcca6061e5f766e35f8256e716
MD5 ab5a6d375b582e1ca6a79040d7c04bc3
BLAKE2b-256 b9a61090f8c25392a041a410369bf92d543b457d8248bfdb8eba5d803cf83f41

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 e97d572f5eacccafad3398968f97bb74433b10f893504c488a25b272dcbfbe13
MD5 caeca1fed062d8ee03d3d32359a011bf
BLAKE2b-256 e6c019ae4d299610a030f9976a9eacb2d9b7d2e348ee7527abe34e8ddcbba5a3

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 89e533b6787d48408f48259e37788fcc74bb57504401d98439789efd31381d78
MD5 2628e28790dd2747d8898770a3a8090f
BLAKE2b-256 ae95cfc493887d148cdd4d9ce9d28068e661d84dcc364ceb073a38b85330e9aa

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f55d6a66c18a8538afdf613b9be668875e01a732ec27e9a7decce985ce5c1275
MD5 f46844a650b2831c47e50077157316e6
BLAKE2b-256 1ffaf7329a29338aa708ed88b549204a63a183ddc7ec14447f96923c68e6a5c5

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 804d4456527eada8e85ea0a0730a16c2f59ca0b89cdd42e9a008e73c8ef4cac0
MD5 23a35e9113091b987aecab3bca3aa53a
BLAKE2b-256 b0881350c7b4902830b075931d04307fda5f6661f8de6a8fe1321f72cc3e1297

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f03ecaa6a6f3d74392900690d390e15a3429cdd7cf876577263e5551f88aa1c5
MD5 74dd961a2c222f5ab6e607cab8307232
BLAKE2b-256 7dc08956cd25e6054893425b0c2fa3766fbacb287e21210c0e423846c1e7e3c7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3b80866280872481c79e4d94c99f9a8fe6128aceb28f084ce44d37ca439195ad
MD5 a4d59091b2a0e44edbf1be91f74e4e7a
BLAKE2b-256 09a7c372b9ca983b9ee68df64f96ac4372a580aca45aaa33174e6df2462b0e55

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 64c59eefe44dba9e388d9e579ea4c38ecfafbe55b98c8e60ca119c9ebe02f578
MD5 10526f03161df4bf15848d1c81115dd3
BLAKE2b-256 269c0907b7eb71d4497596dfbd2572ac67ad121b8e86093329b22d4219af7a43

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 557ffdc4b9f449f8f1040de1be883586a26166ed5f1a9e8e4446332a790c3287
MD5 1615d4d387766872358ea5edd94c9acd
BLAKE2b-256 88369b572db91fec9b938c07589d0996a9a9912defda749fe0f2ff8a313743ec

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c02d45484359c33a2fa190d66f081993d139a177539737e649eff3f81a9adc4b
MD5 b88c5759933cbffa986c5a2f064637e2
BLAKE2b-256 f8399c82aed7fcb13c53e54c991e735401149a4af77af38a842f2c25e9e2a4d5

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ceda4c70eb955a9aa5e9e162674da4f65c46495a41ca82f6240338f75aec3e2e
MD5 ed63c09bfd978e3bcd38862da0d2a34f
BLAKE2b-256 4891b04878531e2f3330c2c314a0abc7ec09797a15846bdbf1bf8acf96876f72

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 51934c9d9a0367fac968cd7e4735718ef0c215fee5cf6b37081dd3612ae4b0e1
MD5 9414f79b59e41ea2fa33afe6a74ab827
BLAKE2b-256 0c47eb8e7fbd07134ce6c98ec1c4668e323f556696cef304426d0360b5b96d88

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7643265d12219d7303cb8acf4d0162a3ed39641b681e69de39b2b72a206c82fd
MD5 478f4fd03dc0850208fb6995f6cbb14a
BLAKE2b-256 c60ac5e72e217f2babe63dd74c5168fb7fc6aed862e1763ea20072ac32855938

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3173adf7612cca6e4480ef0a463a6a1f80a9ee292e1cd4a0c39535c49a039223
MD5 5c9a35e4a540c6794e61a0e0a53c342b
BLAKE2b-256 0c033f108594438c7e0ddaf34ce330a03720bcd9be655508ffad322113e11e80

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313t-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 44cfe2958b3af17862b6d223eb252b1754b980880df38330ac5e77e4ce61618a
MD5 3cef7eb8cefefb2ce7f2f014592a5937
BLAKE2b-256 8648847c67fe14d3e20571f88f94cd0b615e7deb559d41b263b37129d73525ac

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63c686845ae073241106e1cb24ab59abbf33a3f27b2a8f35eaf681ee9277be25
MD5 8c9334cbb571daa838e17087765560f0
BLAKE2b-256 898066691d8e05e3001d79931ee2cc1445ad84cf35be9e0442f8d9a42fab2fd9

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6740dffabc7c57943134539e659ba807c558f0e479ef65f1be1d4cff7e8e3c8
MD5 ae1364fe7876fb4036f0fb74ca19a90b
BLAKE2b-256 0066215fa53da75fc5a13513ca00569325e4ff28228ae7a85cdb2e69eaabb267

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5fff84d4b90dae098a37bfde1d9841e57f39afcf88f11996280d564c050603af
MD5 7dccec998539be5a1553a1bc69a29e77
BLAKE2b-256 962fd514a958f5001289bda9d772792d5a2b782a293510406ce91b77ee43c171

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 557cdfc64b0fe384cc5e90741e883a51f66b6045a6ad8bbfc3b1dd2de78c573b
MD5 66876065dabc67ed8a3a1596a3507624
BLAKE2b-256 76c51bcb698a0f4931c8011939f1b337026998a636bd62b8dafcf1b0025c386a

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 94681406479cc93c2df00ff29032cce319a46bb0ec08a63044e182cf51531e05
MD5 dfb6aa336cf522c42809cbfb773605f9
BLAKE2b-256 05988bd26226ff23bc560e7bf4563af573016174669f976b75a16215fd6b631d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dc9bd5964e4459e3d7d023993cda39578dce0bb93ef4a284aa1afde4287e5c8b
MD5 4bb611c9c8b2ea55d55097edfc435666
BLAKE2b-256 1a6583a55031cda5d37f54308c68922941ef0e1303ec5231d7ea37337bfede62

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 3e06c03a9100e5fd38edd87577ca39ab2175b0133b949ffd1ebc3d10c89ce054
MD5 6f3dbb5d856e93d61cae6e6b65cf97d5
BLAKE2b-256 fa937483b5e5a04c23cb4d452726885d534bedfdd5ec414a9927217b9dcef3be

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f414c1190006423f9fb51bed43489d5d66112714fce0e8da33e69b18e13f3d83
MD5 d7a1824dfd18afbf3c2d846a650ab9c0
BLAKE2b-256 1ac1ff7f4667a8266a82361219e0477525eafb6f1e78a54c06b2c2d676cff255

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1d53588a5bf7586a835e956b449dc450fe1b760b20b5bc3fe4a753eeda9659c0
MD5 b55fcb589468c96db990b78521ed5e06
BLAKE2b-256 a76c5b19b443504a67020fcbd493fa0a2adcc744eac973201f9d1260bb467fc6

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b79b15c0336328ae565eedf7e32f8997a467a51be48947c62a00445d8d10d25
MD5 73dc141751ed257b5eabb4232e502236
BLAKE2b-256 fd43d9ba27b3d9c04dc8ad59c694077b1ea08c6957f135063da01e040d1f9618

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bf028a675574017c8ee50effe1649afaff7bbf95de3b7c73519fb511d96eb65c
MD5 a4a52f3a03dc6eb43376d1f9fe67d72c
BLAKE2b-256 3206570756457dfc9438901fe40bf5ef4835ad1b44a5c0948577a6866201fb7e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1b9fdb7f6ae14e552299f565a0c482098bc5b9f99dece4edbfd17960e02ec3a8
MD5 c0c136585dcc78563aa966ffa290160b
BLAKE2b-256 8a8a2c9d8191eb7a2427383af5b007833b33f659d737314ef86853fee4ac3f11

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 daff7648e48ff6736eb3294c4b3a6f2d452cd3ee56e364d02df52e05e396e110
MD5 1a6fc4acfce581b17f249ba13f6bd9ec
BLAKE2b-256 d7ed7e1508bc378871d131ba046d09c5eecdfb450c3dddcea97cd7a20ba9a1de

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6a6cd54070f12841495390fa3402dab1000d9681fe81d2dcdc266582aa591b98
MD5 d86013243710404dd292c83235f011a9
BLAKE2b-256 15b9a4aed1a0188e4d3c88874928d68cf264743805028e57a095436b27839578

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5ed88126681f9fdeb2eab4ef67dac12092c78d142702df83aa6a55ad9ccdbbc2
MD5 ad31e93f8e4a615c0905ed72754f148a
BLAKE2b-256 83b3fd50747e7f731c2555ee5027b389fd77765da2f2d30a94cccdabc3c30307

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a45547c359fa8b3363909932f45d4111c503f4d746d4c8e6ba9f2c09f666e5ad
MD5 e03937bd27c4d821b72408691f6cd02c
BLAKE2b-256 32be021a1c6e15096db3dd3c8f9b77af903e9af2dfa0e67f211f9fe1665d56c6

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp312-cp312-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 85e7e33104b82dd0eacfb0672591906aa91d0840b396484e91039f70b82d37b4
MD5 bd608b4c4e47a847c27694612fec7009
BLAKE2b-256 4b24c7b2b16147e67443f48fb4e6ee96cfecb8a0ae1580801cf3b1950afa038f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 28127e324f89dc6e76d181f30b1467956a8c6011606f921394d204d67b0da90b
MD5 18493c48b92fcbff8f0c7e556d1c1695
BLAKE2b-256 52298b12217d347a919967f8f19e3b6c180ba197b369af96db967b8bc9891f14

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp312-cp312-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 03e262aed749b0a4cd74465b97452c27331cd36aa4fa0286ae4671725513dfb4
MD5 71c7997cbb79d00a63ac197719a5c599
BLAKE2b-256 01b12cb599ae33deed2c8fcfcb2be05ab69128f787af939f592f1ae89405d4ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3cbf5a6e97cae472e8b48f1a28ac9f1654fc2e58a8ecc4b25e12f25dc8765739
MD5 ce76b9dcb5f8230a63eb42a4dfcca110
BLAKE2b-256 55dd676404c2fbee6b6a61cf8f411311ca1fd0cdd566124d2f477d171df69f4b

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp312-cp312-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 cf869c471d96c3642679df78a976101653264eaf0b1eb202b6db739a36b6e292
MD5 99a88e07ba20881e24d16dabfb591810
BLAKE2b-256 ccfe2f03c0b03afb46e4de822cf3c88841e607a6f1d3279f1ee7847574a70f40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 469175e839a4b871f8a280d112d1bd300b232f35cbcace8cf26ab12538a02bd7
MD5 da786d3c8d26b18687f33a8d4933df2a
BLAKE2b-256 d1e760710282df4f5675f8e2b68c28d2234e1e7c08e4b18d4ee90b33ec6749c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb28d5d138650a913c063f6f3c9442743dc91586b50138075472435ef4f82241
MD5 0363b307181ec10229f867b97248b9c8
BLAKE2b-256 cac3cb9fd3ae673b8dd632173f172bcc0568ce6f701db78fe6ddeb0bb782c043

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4af1958d90366f44f376db774f97c34a570e9acb42a7f20850ae37d16be05e1
MD5 f99ca53e063e74cb048fc9d9252fc8de
BLAKE2b-256 f80964499435732a666ccd2b246b6239b8ed23e7687e388d7b581e2fe026261b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 da5c3bf295b1f3db396ad2db52af729479be123e8ead37d3817a83cc8e9698a1
MD5 992f3f986c036fcf63eff64c52fd1f82
BLAKE2b-256 8e2024ad8eb902e33329f44fb6c7b9511ccbdf7b4a57f5947bf09d6d3ab2641c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7b2e4ae310a5418d98df857a270cf95708f755fcd6ac1d89197d0d80384ac322
MD5 400e800624ca01a9cd24781ff669a9e6
BLAKE2b-256 30be5594ea95269b97598b61c44f53a19f4d3e71982195292af81da633084b9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b8b2c753e5aff724e4a2d51b1a70d9a6b48e3dc7ca281b9528fde9c2b3c69f65
MD5 589487706e38bff6499bbfd55bc18d7f
BLAKE2b-256 be56e2261d9585d192cbb78eb03e038bc9886ac39a7895e0ddfe15e8a469b763

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9d38a049028b94545f7bb0ab8a8ec2be3bc1ae9f49c14ede70d64c2163591306
MD5 931628a79a5b82325543b2cc63bf4e7b
BLAKE2b-256 614ea441fc2815750e3215acde73666d201295b6a9e77aed63d175e16fd18d82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07088b15c5d5d89988a1bee09da039212ec887d66d1315ecfcf9c56b08a814dc
MD5 af3ca75c0a37d60f8271fe5c7f4c0cb9
BLAKE2b-256 d4e52e8a24d96121f9c5bcd09c63b8f4504e88f024b377c7d82efc2ffd7937d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 70b608ba9336edc1929a38ac747ae7a483cc0004742783e5b169ec290a2b88be
MD5 8398e5cb29c51af52fd28ec0f3b0dedb
BLAKE2b-256 3e828edc2e8e4178f23891824779acb385c3dc4a856875a390c1dc7b370129fe

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp311-cp311-win_arm64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1b26c70fb9b712fb2bb8419890024343ce3cce455982e36ad5247a2a14dc8713
MD5 fa4bc218e0e41bd0cd62e5e6406ab678
BLAKE2b-256 a10b18e78a7c85520eeace16aaa50f569e9f6cb7452230a11efa98b9826cb863

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 888653a832727ad6ae12b06af5e9e99a18ff701df4649efeec154e07627c1cc6
MD5 4ea6ac058aeaeb85b60d9f9b6c42f116
BLAKE2b-256 23b747fb4f7a038a1116d28e22bdaff53701a19ce5b0a07ab81fd833aea65da1

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp311-cp311-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 34eb15668e85f319316a2f8153bf62dbd96a7123b94230e18f14d5c9dc8eede4
MD5 ff83b2deb7ed2fd1f5f82eef5e5ed8f8
BLAKE2b-256 c437dd65e92b8b998db4bf2b41ae3cad456675a8249ce5203ae160a211251119

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0725ae6076ad8eef6d44bde4657b349a643993d02ac1f5128e6f09b9c13f079f
MD5 96d8c88c402a20c84948e5207ec4b447
BLAKE2b-256 c6612abbfda89730fa55ca88b703b9f3e42ccfdf649defa5d11970c5e418a7c6

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp311-cp311-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 1837a29688b2686ee3a32cd2e75ce672c0580238018fb39e06ebb85cbcb88465
MD5 f93a588b061808e2b36ee6d1ddba481f
BLAKE2b-256 7fa6f7e347e7bc86499258474d0036a4b4fa424dce04b34cfd5f271fc929d4e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8ca03202e3a58dcb2c97e2f566ccf80014bd24754f4ab05016b316cde7cfe97c
MD5 efa8c79e551d4956db4bb8adc911e916
BLAKE2b-256 b2514a4b25854e8238073d04a9946fbf8699024329f9dbd980210be380dd8f56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d4adc59d9d1528d550b379e85288192ca999a6a422f08846a8b3c601827e90d6
MD5 17bcf3698229c45f7bfb19d014411fde
BLAKE2b-256 671bae19caca4d9ac102dcce8b4446d7edd7d077fce4987818ff56466d9f3478

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fe4d246545b3d6193907c3330b5168de62bd9139525f038087e9a1c0178f7f8
MD5 803281ae93155718b8e8e69447bfee66
BLAKE2b-256 873a92bc41269e4d1deba44f6f7c7ef62d8ef71ad8130671f500e3b8dc6fa9d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fc4b3b3e49e11bc7a0b2699f81aa5707700142108b2b674eb3d5814ba1573506
MD5 eead12b5a718581545c7d26619447a81
BLAKE2b-256 9871f137fe071ae8eeca6f1e66b7f3359d26cdd97b5e5483518695a5e773dce8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 164136c754b5d25bb9bdef269b1161f4972a72ae52f7535e0af7c353b45eeaf9
MD5 54e3113214f71549801fd590f5cf0810
BLAKE2b-256 24e44fe87daf2ee2eee11457775f4c994d77a7ec5bdae959e87042118aaa9492

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f13d3ab9f1575e103c5cdf52ec6c1d1a8ded5c98b6b3609bbceca2b097d49f3
MD5 cdc5a8899e4415a74287b124b3095ea2
BLAKE2b-256 6df8bfe2c14127571bb25fe863d29f58dc0057000133f8d5ba7ef04958062846

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a7bbcb0e41a8b8935fa65f96358ecaf85c57ce4f38a6ac56d3173e3a8fdf9bbe
MD5 1eab2311e3281457732e7a3b8ff2bc74
BLAKE2b-256 66ad92122e888243f73ac87c1ab335fdbfe680cb8a6c9eb503db4f4a49a42583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb1835fea26e8a53a0595a5657f995a938d4fa03dbed814b9c3856bdd68c1457
MD5 cbd71b698fbdc84825c70cbfe1b39d62
BLAKE2b-256 e4ed8715e3cb4edf6436efa313cb3da88fa7b79aae8025df5b3c89ec8d5080a3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2af3e91d267de480127db319af7ef0232738fbae3f45ba2f77f96346af4a84a5
MD5 125c4192f7d3eacc50bb5f5ad9721a62
BLAKE2b-256 8299ef38e90258e7be63ea01d63ac055344e88b4cb520cd22562900e893f9bc9

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 3791d9d4d4e412400c81fb88bc789a8f6b0043d033b36a1ec422a835d2749a06
MD5 bc5e87b5f498af0de288033bc0818a78
BLAKE2b-256 881a550b92cd93bd8cffc682c85de327ccce84d45c46c4641093c267592e0f38

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp310-cp310-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5531ed448c657a6cc2c0cd586aed9ba24c505b01cb58a5fc89adfb0308e813b5
MD5 075a2a9185b720c39358da14ae1b01b1
BLAKE2b-256 293b602dfcf660b3b5e1b2f8f796ea448c9709ccee227b756ef3644e00b86cdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 94c9709c0b79a6955d0c4018934bc64670cfdf157c64d3c0ac720554fbed6cba
MD5 59dd6d38517ce4943d20b3e85c3ab7f2
BLAKE2b-256 c43cc8743c3ff5fed97f86ebc815cc6a79f3ceb1ebe32b0da49b6c38b1466391

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp310-cp310-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 389c5f1dfb4470881a176fb00c899ae2d378f73ae7fc8ab9e3bba4fc85b0d669
MD5 eb92cbb0381bab294155d49bd2853fc9
BLAKE2b-256 beb3c54d46489615cb87d9158ec05a4c11abbdfdc35d68c3c9db8024cc8f2f0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f6e274ce567b17d204f4f00a8721f86d60d4425db18e705b8bb117dd0bf8925c
MD5 a2d722bdbe7a2f1f631fd5edaa817424
BLAKE2b-256 b453bc44e7cef16d69feda5cf15ee7747744c4dc5e3f301bdcc42a08abd93c34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 432679c577be844d01760d8f76db27d36eb240da5757095cf6f3207edc1741dd
MD5 691f71ac13f4d15691654a363c213edf
BLAKE2b-256 448acaec56184e4963062d6a7e8b8e0d2321d4c868a052821ffce19183e09b45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bfeee1a3f545dda201fad8d665112bc55f34e100bc2c3332235e701c9458c5c3
MD5 35dee62fd4fcf824dadff44483bfaa5c
BLAKE2b-256 db93f241b0caa051bdf0dfcc66944d7993805a9a9c95d4c4793bca594cfbe77b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7d5cda36dd4e4ee2cd6520d4aaa7674deff8e1fcbc4580ce61fbe4c2ce2b6d00
MD5 1d044be905b4cb3886bc79ef992be89d
BLAKE2b-256 6e206eb0ccc1457cfa0c9d8933ca87ea30f46c2051e13cab777c8a16d3b55814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f1cd8e3c6a7f66eeaeb3eba9a44e17c510ab7adb9300d7d32799aea2b369aef9
MD5 b3eefa26611a82d53e77bf66cc70f2ab
BLAKE2b-256 bdfb0aea52d6e6f2be1ed3dbc75c4623244ea1db2cf106ff856c1ecc11e516fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12f2d0e09358faf8cf2c8784e8fc4c7703a73293162472d34e576b975de3e158
MD5 d818b07f9ab55faf2822bbfc045985db
BLAKE2b-256 e36273f2795a0041ff3f3234dd0e0da490d0408001864fc336c8cd513cbcaa60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 be43fde137c0600c64a388cd6d5abd66fa9a55e49a86bd9ff0bc81f26fb97164
MD5 fff72f6332aef00c4076895e361ce24c
BLAKE2b-256 017e58d6a3140e04a55c9f6fcc9d564b58e657e394a2f1dee89b42cc4a5a1606

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e25bb9f505bd9f952cad96dd1cce6df3796e98c87a23b75d8f4ffbbe5bbd2a6f
MD5 7c8933cfbde962588bf3523da833cb68
BLAKE2b-256 7b2ee248f6b78ba53d80642357b7bfba33c80a7e8e587ddd73a2b35369652422

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 94397016d14240464fa91daca43e0aaea10cbafbb3f90b5e94a4fade5b6e5e62
MD5 ee51c59b9bcb404b728a73096f316d93
BLAKE2b-256 c46add03a1d09431ba033d548f33fd4b465553dd0daf5c6b61f0189f52043ba7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 a58d86e8d382a24cbd580dc1a97b26f5e7c1f2c57fe7e2143a155161aa080108
MD5 16c3bbd717ceb96fb2a6729e2185ee8b
BLAKE2b-256 4bb690e4fb646ef38bbe89803bb9801650616766f0143cbb1be299b9658bc930

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp39-cp39-win32.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ddb224d0fb6d0b6e44d0df39a19acf4fa0fc9fa12a4a3e399a4e50acb4cd3146
MD5 cbd21f299b413c86ddf7eadd8ad8e610
BLAKE2b-256 0e3aa824a84b007b5097030d3cfcaaa6d7184a4285c3dab258cfd0eebd685569

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f49f3ffa8ef4ce99509ac3061287ce8457df423fe55fc663d038ffb050fd9ab6
MD5 8c19a3d9a9759b123a571e6ad6855533
BLAKE2b-256 f30906781da99e9522f909c5b0a22dc04f6621e6e02a61ed91b46d5899c27bb6

See more details on using hashes here.

File details

Details for the file pydantic_core-2.38.0-cp39-cp39-musllinux_1_1_armv7l.whl.

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 4a070e48dc49533c04fe23d707e3afef40653983aa106dca5da1881e64563a51
MD5 d91fc0fb3aedb56b2ce2cb90fcabc7f0
BLAKE2b-256 b68f95700d74be6e0a4cffe7357b7440ce1d9c8a992bb3bd9531866b64436779

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 56938626e799e51319435e052f881026e5246df57a70500d6d3ba901cb8d510d
MD5 70b1874c9d99dc825a99ff91cd23023d
BLAKE2b-256 e56dfb2260f20ddc588daa55ec54d6dac34efc21ee0a9ef4cf6e4a96bf5e0fe3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 88b955ca56012ad285de322638801273d754d39535e17dfca78fb000c80be0c5
MD5 7f9fba75c103cba8275b6f813647c461
BLAKE2b-256 0097372c83906d4c7f83045b7ed2f0bdf2350bc9a477a980cd4baa9c41d5d3a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1758487059467559c5246e50582cbb664fbcf2a40e9735e3ba948e730fd0adf0
MD5 4aa352d3f7d00cf8448a22877886096c
BLAKE2b-256 353dd94f57e739231a83f4672fef95f63926b63b18756efb751e15b8868ebdd0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59ee2ddebf33aaad3005e0b97906bf711f26056ec2634fcf16abe55ddbb9c5a9
MD5 1634624bb09e99ab4efe459dd7ea0876
BLAKE2b-256 aaa5e419d965d63b2dfa0ebcdcc0bfef7b614dba50c7de27cdac9b5dabebaf76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cdbced918a331bba085d774ed91e737f5f3243e74513d4f0a43bdc64f44ecd62
MD5 4c9844956138d42ec151978c67f74bc1
BLAKE2b-256 045fcdc7a39424799f3fc00196b33cfc25738edd4e622f187048b82190efbc31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f2d0087bf22a9b5a466e52d8325dc945a9b488ce6d877e21dc97fdd11bf3a69
MD5 2faf0346c74b6bd5c5b40981788157d2
BLAKE2b-256 e38e3d965502dedd40ea4e6c77e0863af54187a5cc7e815c7a3d84639ab13457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 58f5e615327b0d161ca1cec19054178816e49f4aeef6954ec5bd482cca964208
MD5 eed7bed3fffd1fa62533cb8e7b58a56c
BLAKE2b-256 81d82dd74e5e9a342bc1c960ac64fae3dc89f7c264f35e2c4da944e91b4c0012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8a962748040cf70f9af6b3d5794a7f8cd2249d948f0d881dc34c070c4aa0dc4
MD5 b16bd16a03da22a5ea6742582f472b43
BLAKE2b-256 fff5559afb4fd1c2cbd2ac702a2ded8c5379e3d0d36456a34b7c87668b82a5d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.38.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3fc23458ce8b5b55ef57e88456636ffb6fef1f9e0a04708db1498152d3f15493
MD5 90e8ebf32b7a2d8254859b93e7f65a75
BLAKE2b-256 e04cc73c334d60ccd0a60a0123f84e1242e5722258a6d7f9ae60bc81693eaa81

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page