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.7.0.tar.gz (338.2 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.7.0-pp310-pypy310_pp73-win_amd64.whl (1.8 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.7.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.7.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.7.0-pp39-pypy39_pp73-win_amd64.whl (1.8 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.7.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.7.0-pp38-pypy38_pp73-win_amd64.whl (1.8 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.7.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.6 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.7.0-pp37-pypy37_pp73-win_amd64.whl (1.9 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.7.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (1.9 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

pydantic_core-2.7.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

pydantic_core-2.7.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.7.0-cp312-none-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows ARM64

pydantic_core-2.7.0-cp312-none-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_core-2.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

pydantic_core-2.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.7+ x86-64

pydantic_core-2.7.0-cp311-none-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows ARM64

pydantic_core-2.7.0-cp311-none-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

pydantic_core-2.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

pydantic_core-2.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

pydantic_core-2.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.7+ x86-64

pydantic_core-2.7.0-cp310-none-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

pydantic_core-2.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

pydantic_core-2.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

pydantic_core-2.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.7+ x86-64

pydantic_core-2.7.0-cp39-none-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

pydantic_core-2.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

pydantic_core-2.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

pydantic_core-2.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-2.7.0-cp38-none-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pydantic_core-2.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pydantic_core-2.7.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

pydantic_core-2.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-2.7.0-cp37-none-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

pydantic_core-2.7.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

pydantic_core-2.7.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.9 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

pydantic_core-2.7.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

pydantic_core-2.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

pydantic_core-2.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

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

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.7.0.tar.gz
Algorithm Hash digest
SHA256 f8a842c9390ad187bd26f4fc0f96f0869e2e2d9cbf7b239837092c55d6bf8c0e
MD5 8d210bfaa2b8d115f4a47cae72a85571
BLAKE2b-256 e1f2dfa6549b96c819636a1b0ce2ddded12a1e0b06f5783d23d795a1bec2bb3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 82beff04b1f216580c381ff816a51c6b5eb00ae018651399346f89a8fc3472fb
MD5 b79f1643479da4a543736258a2199c0b
BLAKE2b-256 1b551fdce1bc097042a1afcd8f288e2c3d0873e55b31d4b4467e8d09783540eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9e438d4bc0a2fd84379087bce986fc80124bd23e85ced372ed60006b3bb1d455
MD5 ea1c3d77f5d6d1e30628a61a08ce4cf7
BLAKE2b-256 58be74e35b475fb38a6dc8945b68b556a4ef6adda3c0836d7a4fd024446064d1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5f98fa7aaeda5c62a5e9876bb5c29c0ee8758f0cf2b82f0378ec0b2ca0d06115
MD5 04727fd4d9d40d1394e9ee702fcdd96e
BLAKE2b-256 220bc3380202d035d71bc4aa2d20cdb53b390f28e965d67340a6908b0eabe660

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 229c5b95643b0f0f182f674acad6a39eacb2f8ec797a4abb687cbd8f004a0435
MD5 7c26f2c379a7d2a860f7bf1fa14387b0
BLAKE2b-256 914ba7f868bf00f70920bcaa7bf43d7d12e0d92e54243402d19b701967833fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f36a3093e7dee9e9c887b0aaebb151b8ff002149a3e657a691bfe7e9c4ee58cc
MD5 8d7a821cd7b571aceafc6e86117d3b65
BLAKE2b-256 5cba33c7f3a1cbb1daf5ff950572de9ade723842ece93ad295ca1e025fc643c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7bf7de90d85d542a9e54406033ed53d563fcfa65e50075a5bee5166ffd210948
MD5 69f233353346e995d74e8e4423af7589
BLAKE2b-256 c8600e37d4b38c26f66740b154a0fa917e5bf8a8d996359a288c3ae9d414e913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 332aeb7642d63a0cb9a8898686a6cb528d410e1c0c7c866422df0b6c3832dfa6
MD5 5030735ff86851c1c4e92ecf27f07a1f
BLAKE2b-256 2fa80afc637ccfa2b4b93adc5d40c3c3678d533e96fa025027e0d14e6964350e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 36f650bd88868dbc5e68a62f6435c13d7873f37149efde2b7a0963ad6e7a3092
MD5 e446fff1c9d87853548060537eac4e6b
BLAKE2b-256 5ffd9de942995176c32824f0e5232fddc442696e67a3b7af33c81b251d3dea0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 72534d85769cb88aa625e6fa05006181e07cb8a3745c714b6ef1f964f5b738da
MD5 536a2d5fd8e03d1ea0fe79bd8d390598
BLAKE2b-256 19d77b64cd14f19f10710255880b4c6d708bc5715fec8df77a04da080be2b7dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2ff6df9ea3107523f34bfac8c89587711b6dcd3296756aac3945e5aa1f10d340
MD5 8a783a45587af636006b38129a5c4eb7
BLAKE2b-256 dc3307b7ef191056097bc7b38f982232fde7576fdcb07218c023de552117dec6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bb3942982055d5b49cef3fdd0ea97f34ca8b8c7751db2973aee76772d19c89d8
MD5 423bfe32295c8e490707de087f434f37
BLAKE2b-256 42b0f73e44278b35c5bbedc763e339a23f0b684ec70d5757832c138789dca40b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 00698c874bde92150feec243f159dc006816bd7f03d1282a061c5020594926e0
MD5 9a8175233e0a95b244f01d1e4fb156ca
BLAKE2b-256 8389a033ee0657bce5f90a1217703f51c14c73692706ccc79e1361e49bccd9ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 38c9106e04aeb601ff47b8a922661fcf565a5581a9165d9e95c139e1d3d8d5a1
MD5 f752530867086671d2005b373f032af0
BLAKE2b-256 b1a071c2ab4b6b199ba65198f04f8ad9a840a42eef83ae0792482c5687afba90

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d93f69cdac92a95a5ba7e62ca282889affd742467d330d0224efef4ee105d23f
MD5 bc9a36de3427fac0cbd1b96a35eb903c
BLAKE2b-256 317e8ecfe473d8781d46986ce75932b28b07aa0fe8e2e88f283675bcb5d7f296

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05e8ff0ddd6111ae905bebe77eb14875ead774e31f890775ea91612b23924560
MD5 3146de5d73a9f0a87b3a12e8c0326b98
BLAKE2b-256 abd9a3fda3809f8a822fce5b06eb2061bda4275fb789a653fa4e1269d0c727c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c147aabb06d6de8f9863e53d03005adbd12df322e9ea8daf541489395548764c
MD5 41970500e7cc7c1513ba87695dd7cb27
BLAKE2b-256 87a91a6dc20c13eeddbd1ba9a3166a1c8d239793a773884cf7bde7c625b2382d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 7264eef3855c914f4be8082d91ea7921cce5d5eab14cddc2c52937cf2e204e50
MD5 b286f8d6d1221c34e810e91f6e97fa9a
BLAKE2b-256 4f5e6a4706a999eae3f7289b81f2d8908ca45e37f13f85813c8a1e557c09ebb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c74d50c57f75a02c92564d281f5212546ae224a842e0dd9c4621cfd316ad967b
MD5 2a65c09517237f801af1f6f7d6a593fa
BLAKE2b-256 198793cf01c8f4c3bd0a99878e04704ad10282f755535f2990d5318811c08b15

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f99329c4db7435a5f45aef82565b76740c6b774eac9cfa9171a90670e55a070e
MD5 30880ebe9c372e05623e2ba5bae48b72
BLAKE2b-256 86510b6f89cfb5c284eaea8b001436d756853b6044aeb76606250caec3738859

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 978f2b7278b79235115294e9eda8377f9b36dc41fec1b1ae2865b2d85c28da6a
MD5 10b75de2935df90d2ef07d56b176a45d
BLAKE2b-256 4ea2bd3b3c5a664920a7ab9430fe6b692e664bd8a40fef589a7fe444d3dabaab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f1f77aea18f89c35b160c1a5c382f85bfcbe1e595d142ef7b76aec40e6089d85
MD5 fec3be3adfbb72886d9eb8f2ccde9d7a
BLAKE2b-256 42a1f0f28a20aff0c21f44f4bd891dfc26ac2446aef3619da5fb2e9d97b46484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 716a6482e82ac2f8a014fecf1730bbafbfc337ed8aea05d904b2b55fd90d4b93
MD5 f0d732da9608f6bfb4ea991d14c21487
BLAKE2b-256 f9e61d57d5163535b9cc60ce7a6cbaa0b3779c8f7513573020b44b59938a99ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fad5715a5186152a75c5ae1021d5d8031de4d7845cc654411cbe9d9914be82fa
MD5 9b6f0c6b1875f54f6fe579c579f3b7f5
BLAKE2b-256 fee7cf1aed722737bdb4a2b826e3efec6285f5a8be67a3d82eef6e7e72ad29e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 38fc9538fa6b11260ca5ead98310080be5591b749826884f0388ddae8d944373
MD5 330a1737a57a277d137715f18c45d4cf
BLAKE2b-256 fcf5dc913b15d0a7fd70c34c1e3b14d75c48eb607a5fef24cd20e80247edcc57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 eab33bebf7e3cdb20be005c1bf1646b0b681ba4559c4cced3c16d56de90f2711
MD5 ccc760d3108fd9fee3eaf0ffe7feed37
BLAKE2b-256 7e515013bf838d1474b896b19fcb796cab6db44248e1c725b21f88cdd86c159e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 46888d1d674e872aa35dea5a45e9505610f4e9d59b5e3d67f45b55d20ddde660
MD5 2418762179c77cfb338c6ce2ba4bd17e
BLAKE2b-256 1d18ad5b60ddda135d974a5ab8c989472fd7316eba9a83c02679685a6555b64f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d6cd485f5d66d59095d24a15386cf12b458703e3b584070bae69392f761afb95
MD5 b78cccc87e997804206e62682dfc99ae
BLAKE2b-256 1e767fd5ba4955da20257665b711226b79d35b5aeb82b8c5ba618da2bcf547ed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 26e3ee931c594ee747f39a5dda5874eb6fa77167539b1249a05d6a1c3dcedaad
MD5 c52e161adda9355477a321b4541a7058
BLAKE2b-256 f2d016fbc59ad849fbf0d2cd557808668182957c39dee76e24b0ab039824f665

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c0b3a2dc073a75a90dd00cb75768939ee069e84b65daeda894234ef6d0359a4b
MD5 f40756627aa251df3f208602c32ff11d
BLAKE2b-256 70dad550e6fbbabb6dbda62f3c921a6fb1673e187cb9b4d4378a1d72a5dacc88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 21d013fd24e3f3a7326772cbcb2766332b13bff315647ce2e7cb16467301434f
MD5 02475db5bc07d8f3a491ac9924e1b729
BLAKE2b-256 a80fee5bc2405c89c7f067b966bde7173dae98ccbd9f447c74b88eed9b5d7762

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a3ca61db01b1cc1659007f3ce95718292d89c52e3dd15d8f7788ee318a75ce90
MD5 24310eb9cb3dd64c625222bbc70b5877
BLAKE2b-256 9ceab1f4c53adfe30c75e28b87b73beac7023333169b0c9dc74e6ae3ec610c3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 32f0718fb7d427bb978745d13b7a934e632e97a80f9758f7a7f18bced4cb5a64
MD5 1b21c6b114bbd0e6a8872059e80a68f7
BLAKE2b-256 767c095e37d3b9ab4acfd032b009936b68667e53df880f295925892a6289efbc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 234c36560fbc3de867d12081dc330a3f2386ecd0647d1f9007d66b636b4a1086
MD5 b976170d0698dac92e3072c3c4449065
BLAKE2b-256 a1eb9f0c3280d2eaff2c6960ebe6b09e1995d523deb4f478d1bde0a840d28a9f

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.7.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 4e95cb8832876d3c5936b4165bfdc90f57cc62d878e11888d1c3d834938a225f
MD5 1fccb394f4b904c5c0ad341d7cd65d4f
BLAKE2b-256 af944839c72f83f37e856f3663f49ab46ef62d5c900126960535db670459f46d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 784e268250a960927199bdc71c10b1f57c669872cce1757d1366f0f36de85eaa
MD5 5e366643c792ef8eb735471c2d5b8f4d
BLAKE2b-256 00ff0245e15d00eeb34f42ac17fbd9fd3d41a826877ceac029384155c374000a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4c8d33795cb0ac9b3c30f083c143c99283d22a9ca58c4759b098bd37ecee98da
MD5 0771758f8be4aa1a2c5dfa9e1f7a38f4
BLAKE2b-256 1ac96a2bcd36997f2177cf788aff0fb3506838b0dd5126d2a62bf1d3e9ded368

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 50f3e0f99b16c79fb4802525dab9e089b3f4b0ea426e9d7f4851473736e565dd
MD5 d31ef49aedcc5a230da78c6436d37035
BLAKE2b-256 f6045b9b37aac9ed37c9b7fd9e00487de75bb86f20787dd1d0e5319fafc9ed9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9893a1ebd252c06366d4be3e13a395b434d5707d16a7b2782512257356343e44
MD5 643f788b0ee0f541cf2a9ded2059f5a2
BLAKE2b-256 d65d4ad23c4d382320b6c5a45a8aa55f8dd2e34c8a93935ccb6510a62c0d5ad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c7aec6e635c9cbd49cad97f92073713ff4b529095ff87cdc7c361b60f740a914
MD5 384d3a4e7b673b70086820d497cebd12
BLAKE2b-256 f7ec9b4063e4eb85ab6b53ed99e19dca7d4acdba385d27536a83e7287e28313d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dac0b40f91b62d934e4b0d8b15e8c510adcda82a14b3144e857a2a59024e8bc4
MD5 0eafc7baaae8daf3e07f8571594a26d6
BLAKE2b-256 f66078818c518613aaff872c0a9e688961b50dc6c02d703a11f1ec22503224f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bbecb4fadcd1b6c6d3fb3efe62be24757e00bd327a95923d6725d34c110c1df
MD5 ab8748ee4589e991ac87aef2885be7ad
BLAKE2b-256 0cb3057c580347a675347b3ab611217d74709ca9dcf1ea452104ec16545b1cc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 14ff6bdf36fa23272ecfeec905d62a0410893a8d6db22a8eb958e542d9ecd944
MD5 7b79dd1496bf8d76046d6ae3ac230c4b
BLAKE2b-256 6a65800e586beeb88a7dc3dabc8ff95a8b16c7311e813fc09631961d461a0215

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94c1bb1a5d98a82838c4c0bcfdbef29d2c660c49c5eae5d30935cd83aa9c3023
MD5 2a2996fdc669fcf177254e2c46559d1f
BLAKE2b-256 da42fc9c43786ddb11a8163c33c765c06f8cc9863d6e0bf4bc179e86a2e6bee8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0251baa682b430c8dc7e198ba52b62a6d8a1d30b718e7bb8cf30d1be8b8672ba
MD5 515ee4b49302838c4de65263f023d19c
BLAKE2b-256 8912737e78926c942c4dbc8aea04dcb0f9d930ba057b2e36b39024b280ca1b60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 b2512a1cf6145513b78ac788d5cdf39a5e016467b8dd48e2569f51d56318581b
MD5 1a077d253f3166fefee352f025e91218
BLAKE2b-256 31e7c5973e62029e5a2ba0ae4f3fb6389f5b33f7c37bdf2d58c303e3ca4c8039

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 fc5a65b61b81386de97f0eb6a08847c4814e8443fcb2551853d76712a9a0ff86
MD5 1094e58f6e95133a8fa907afa341cbee
BLAKE2b-256 095365d35747b5fe4baf2c827c4aced86d85fc55c7db2e599f3c29de401772ed

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.7.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 4910a3be1407faee92e30fe9dc949523457ee25a64d944aea11d69035719ed43
MD5 d8dacc16be606b4a45fb709b210fe9c1
BLAKE2b-256 c3ecc8328c629189c6c88d0d91f198bd339620ead2d20eacd615a1e20467a6eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 46b69f450e8334594f8ba56f1a9d9c22fd09af52e79d319210ef19db41ddd736
MD5 ef58b239256ae1ff133bcb529d8276e1
BLAKE2b-256 624a0e4ef979e10a776b5c28d79fe051c668513caa0b88ef291ac52790d9ae60

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 1ec7197f4836ac257e8a2061137149802a7322d3ff964047f9c9fffb78e56681
MD5 b3bf74a37d1bb3b99229af656ecdae82
BLAKE2b-256 205c8fcb6af17438f545d0e8549a4e3c2ef85f3178440650eeb3083ccec9b9b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 387b3674e564f9ea9707992fd61967f4b9cb0174f23cfa4cd90a1c4b22c54949
MD5 c9828b5345f0497d20ad6ae6dd67b12a
BLAKE2b-256 1c34897c360b143440d9e9d09e33868a6f51ee430ab963928b19eff4983d9169

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c34d8a6b595f5056b50f7e8fb4b6c2c5edc8ae2306c2ac3ac3ae82cd960ae8f5
MD5 7c2d39c40ed0e444c962c6d4a07ff19d
BLAKE2b-256 edbe7d4f8e12462caed2afefeb23785e69065ebb72c7e50e5f798dd8f4b94dcd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d60b3a1eb1e969ded17c77f9a95a4191657f14177837b3cc2199742ff25a1f57
MD5 bb47316ef1a94217776b0bd0bb85e084
BLAKE2b-256 4104924bbd9aed1c06d5fbfe42770c1cd45dd3447a510d118dfe6de3a3b4e4e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 69d042f469ac07d75577fe8a8017e621d93c016a188188dd5a0986950d9e7820
MD5 a6c3d2094baba6b18e11f2c953f90c16
BLAKE2b-256 c07a7d82ca79f0397e2c816a7fd8d6077daa3b4ca48051fdd65b84832a8df6a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f45e3311c88dcd8d65d0a589e0c2e112ec6d6f373549134f7d4d18edd5091098
MD5 69c80e84baace025d521e9a0f05c0a64
BLAKE2b-256 979438a375698e32cdbdfb4a33787f01471e8b8afd2f4811b3c0bdcf35a6c759

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17b61efa2f28f398ed97a33d6a08587eccce338dfd9b4e75ef1198deacf7e579
MD5 1d9ea8a52b646b944d344784a1f1560d
BLAKE2b-256 1afd988cf267c47452103ffd512d7cfd400e1c9356501827f77abbc25e7d8d10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 608dae1942239e8c0d951f3bd18530211f753697fa0dd6a2877fa54fa511e709
MD5 1068abca6f0f35dd46c7f8573af7765a
BLAKE2b-256 f12437d491a1a76012e3baa974b10da1a48e72cee1061ed7794580dee0e35ddc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a59faec8d5a3847a777cb1df0bbc11d82f8904043efef088b63a77b2876eb76c
MD5 3b5ab76980fedd43b9b466b86ed4a080
BLAKE2b-256 79849605294a8d582b544e3f204f570d26ec2ebf5e2165f58fd587be4a8d0392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 ec340d1794c3f833e636bf9f81fcb1c35ed52e3b6e8987d5039bf0c703e4e43b
MD5 92faa3abcfaa9df3cc67816b464e6223
BLAKE2b-256 f7bdcf234102a6b1111cb96541fcad1c44cf41157332104fceecbdffcc0d9154

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.7.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 dd63ec3faa6a671a86d50f8245c28b433d88185b579b2fc60e7a901ce372db36
MD5 8696856f262f4f4101b21997c4eff6c1
BLAKE2b-256 41c4aef2e6ce233a57aeb4a3e29ba6bf2dde2c1602ad066e7eebb8630e609cc8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 64e155ec9c6313c5a6cad36ca61d1ac25bc199ff4fa19b7a9a26a312d92d4dba
MD5 f8cebfc4029ed2b4cb8bd0c39058069b
BLAKE2b-256 21c0038782e10e5c6ac00efb36a24ff55b1be8cb2ef1fc0bc611e80383e66fc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d57de08a7c56f8c2773a838ffaf996da5efd5fe145564cb94ab638ea900870ae
MD5 5f6d68e00548d41193feec1235731fc2
BLAKE2b-256 e31ff21bb4ba18e78fe4309cb9712deb334c3770af13ca515d72d443fdfc5469

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 38207566b3ebc803c3e9bc1835930908f3622590525b1fcc7723756f49ab7f15
MD5 8276a146f6215ed6efd903ea7c68fbb6
BLAKE2b-256 e2c2493444c95be34fa9549f13a169149bea8c1737276057c7279f1f4cb80f08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 55fb5495b5688c7104353e619730c7a66fffc296a09ced8323853f74c56a1626
MD5 bfc59ea2dc7e0deb98a637fa75cc9dd0
BLAKE2b-256 c456c907b6cb6337ce68d662474f22a71dbe09d103fe8abe4b9124c102db6944

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 47f8a21007e218fd6b74512a1ec91992d95328ffbfe9a78797aab2a1a35dfce9
MD5 dac62af3df7fcf04f10efc3808b7a21b
BLAKE2b-256 20e0413c5e19000d096146feb96041df947868111b70252026e128ea52e8377f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8193f726ed32e373226b455f6f4fc4bf5c2ec0ffd372428c493d35ea03729116
MD5 065018d3b03616da907261b31e62495e
BLAKE2b-256 ae9522705be07d64e53778349e3e22f9cd92a1d071bd32ec210aaa497364035a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f38d480700c741af7446880a61985b61ba0d4d01cbcb48657723e9e6d093d0a3
MD5 aedeedeff92022d0c65c0f55e739ecab
BLAKE2b-256 25be89237cd115b36f556e5fffa298bac9e943a31d82f59a9d9c5b8b6c27e6a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c547e95edaf17b28b3387ad23def30dee5f912f47153bd69042d69a69f846f3
MD5 bb32c676fc0ad8218c506c726b6ed6bd
BLAKE2b-256 511a8dd82d21165557c7194cbbba8b8303a06f644685b686c7918cb1313ba4a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf91a322659863a62a195f7a015cde4d876ba8f206d943f536b985d6982797ef
MD5 588fb2b7cca32d1e6700013681b372e0
BLAKE2b-256 b1911b4f892a5bde2482fa35657edd14d03c9985ef71f337545d615af682b0a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 17978f7565482bf94c3d424e0a24b2c8606e4323e1cb930e104e05702d8be30c
MD5 dbf0400b130b085d5fce80b5e0c3a883
BLAKE2b-256 49fba70b6be7796bd9139a8717c78581d7a047105e03ebf5bcf9b1e3cb9dc8c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3ceac92b6bff2c7ab1345750f7d90ad6eaaebef34235920684f6042229c347a5
MD5 758af77314e7b19698d8e77caec87a2d
BLAKE2b-256 969dcc8ed0c4ced541f1828e64aec7240e3df09a20b8f9144a0692d696eae07e

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.7.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c25202e46c95f5527e3ccd95e06d8631bdfeafc78d4d9a599f5da1216b1c1319
MD5 5d68919edc1944ed799a69b14c4416b8
BLAKE2b-256 33c12c82da90dd3119ee259b6e5b847bfaa36808b487aaf77853c5f695f5c19d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a8e187f7ac7f628728db9613a36a12df3da4e7380bb32199f6700d55d8e54943
MD5 617e9ca773774ca945914d4fa95bc0a5
BLAKE2b-256 3de121b78cc8351ba5de581cc05550b3aff69aba7a98e159eed90f32b4eb9e0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 01512f01108546b0fed873641ae9c78bf008a5020687ab6791eb92e32454abbc
MD5 fe8bd4835a96a160f99da47674ccd35c
BLAKE2b-256 0c96dff6f248df65d20e3cd4fd218a0ed8afaeb9f3bf9ae4aa72eaa3d07c0318

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f6f0d7e367198d02bfc785b97ce6d1f61bb633f88d08b36a1027113624dbd82a
MD5 2ae5769ced01681199fca8a6fbce6c19
BLAKE2b-256 93e50af2c94006271a16270d8978dcff999c94df0143890837d329ccdc6b62ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 23de8a584f75520cbe4bacb221f8a6cbb9952272ec3a9e20bd219eeabac84e28
MD5 89f96b75914813a1e1b340669a8cfdf7
BLAKE2b-256 bb09917869c22d20092e002bd0d1685468311d1b89b5920202b9012738af0a2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3611fd8558b714a5defb6718511362c2941d1e89491049fda27de9b74bad8244
MD5 c17cf88c2ab7753fc417d0fd90c0f3ba
BLAKE2b-256 5a3fde87ba0ecb74af37894c9350cd3299f70869296dba81967e0d737fec6b54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 663cd5c68362b99c4a5e1187ee41c85fac1cde4ca6ebd2c9f02ca5cf5b1d4749
MD5 dda10c0b7e7f7c6e2163dcc62b4dcf54
BLAKE2b-256 d79f85d34a266c605284f256fc59a6c5d78de5b9a46bd4f017d2606ebf231f07

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab7dba2115c05b39f919ee9ae6a5f1eeed922eeebf78e7089b87a2f5dfd1ffba
MD5 d992670febfb260710a59c489c4158ce
BLAKE2b-256 9041b748f7ff61704233f5dc28c3e428ae34920c504f50fabce943132a003fcf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 550587951534dee0c03394677aeb16f0128881bfe14398a7a9aec9716825ad79
MD5 234b09020e0b027ae80feef2af5f4c7d
BLAKE2b-256 23c591c143108eb05d2bbd2d928147217aeda8e72f2d650edf556a2a94ca3f62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f1afcc1ef2ab9365e3aff706944b934a0cd1f5cac9a5b864b17586b9603de5f2
MD5 99ac1b799a8616bbd6be9d36b993fbba
BLAKE2b-256 94eda97f0de6a7b21b48420d926d23b6816c87f5bad4c8f57e1a7526c3e07d4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 11429885427c7a5aaab0dfb64bc149aec24a9d09bbd7f507dcb1cc91e69183d2
MD5 9466a9e0f1ebd1215f07aee752e7223d
BLAKE2b-256 c95b9bb66760ccd2af3801424a5f387d5b1e7ec41dd31d93fd3d4a38e96f3fb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 8ce13c59840f4980891e5f7f6ab66074347836f4a3ce90f3feadeeec4790258d
MD5 3bf7b2e888fab70772f397eb44a69d4a
BLAKE2b-256 e036a4b70f12d94d9080b6c0aad1aa9bfc5edaa8fb967843e80cdf724b5f2b87

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.7.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 26b890ab8983706b548b3edd584fba23c4228885e40d86b3097f7375a61ddf27
MD5 d1738e89b324f3796de984eab39c08a4
BLAKE2b-256 3c648ef33cd8ff8265a4b884397458b13b199b683f68a529164677c569ffdcec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e12693aa4468f57869cc4cd69e647b0ed106b72069db8c3346c530c963047bfa
MD5 cc6da20d01731b4e8b441be529619864
BLAKE2b-256 89fbfe098db9adce232044ee86dac99a1c5577e023673ea5182a99168051d8cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b4b451a03f8d32a26d4138f50018b878aba1ff654e481e6e1bfe7e8d336335a8
MD5 486bf29631aaeb389dfb6b707676de97
BLAKE2b-256 6be0f48596e6a5ed964c1e79096340315cf1ea95b557985ba386adbc6a931f2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46cf93ae078296a3f20d63d11c5b727429226e1e216778b66776b434cc551706
MD5 4bad1d09107c2d282a97facdee4e1f4f
BLAKE2b-256 d261acf4b4dfd53aaac0af0ca6d67c2e52afa9aa46982ae3339adb9f1149fd3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6cf982a0c8b5b6643794948a1ab59589a36d165158cb9394f3d906387cbd29ca
MD5 97f990ed8de5690699d894b0084ac556
BLAKE2b-256 83bd45de24cdcd3e675b1a1cd60774783cc31ef2769d852ebd36250c425ea9c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 04f95e76eb0abf5ecafb15e7a770c260459d4e64dc3e91fafc0f7cae67fe270b
MD5 90e4dc42f98d8d53dbcf10ea25505c16
BLAKE2b-256 f7c8bd10b640a8c38b5b524a0cca56ca651f26d8645fd575ef05140d3580eb70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 47278988b3e6cddca92e510a7c5d224c17de44602b27fe83928703748085bdfa
MD5 09359184f8a57368c005e00935d464d0
BLAKE2b-256 d581ed4b6f70ff8037b0ecf1cc7ba4e5b5fc497ec4ccd666e369a6600fb99750

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 144b183455c56dac56fae40ec1252b38497c631b0e95d3f73d3a3f52f445aeed
MD5 18995f309f2f35684e4765275044373a
BLAKE2b-256 00948797956fdaca3e54773e996f988427298eb014cc39f8d5df609fb8dda7c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e8aa2be2b255f3302206d1324e4eeadbfc2f654304251588af06af5b4d148050
MD5 bf8616127564390fa55811085beabb92
BLAKE2b-256 90fd31cc365d4f3c442de75f80a6c0666a48a9814f9fe87f93bf673c3a0a955e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab95926c31068b1dc81aad8be971d16f7f9ecd86b0cdabb71a00e6ddb0c01249
MD5 74949f3ac8ae3f1430eb47c9eaa4ebac
BLAKE2b-256 d5a66411cbc7cf54b11be8df0bd0ca3297c06cf73347fe3d74cc3ed683f541b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ec57d409e15ae2ab9c0ec5402b3630ef8936dddf2526a1d1d867e9ffc6815896
MD5 3155cf59de123815ef13a5ca03b75a88
BLAKE2b-256 ca1ed1662da7728ee6f25eab038fc6d12aceb66bf3430be609fd073832eb9206

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 c29a5fac780b059ed61781b2490673272e56161ca8a03bad7ea002cac08f927e
MD5 16728031f98bf4ed7eadc9e18653e5f2
BLAKE2b-256 37d556d516112653d385e9ec5a89754e8b01ac1cd722f10d2edc7a8c24f6aab3

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.7.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 6d2d8d12533b0c14495d47ffdf0029b10b8133c72858dff695eb79f82c8cdea1
MD5 baaf058690d007da3db8c182e9a75b3a
BLAKE2b-256 691774d6605769cddc67d4e57057a43ae2625a91f97fc01ab5f998c2941f335a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e43a219dbccb776247b995bf0ab544369e0146ce3ebc5ad4f222bab53f3dd45d
MD5 a5fde478d51321bebd6d2ed788a6d94d
BLAKE2b-256 89962ed9abbb8cb378038673eb7db2e95a8611194467583fe56a4448e2a261ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 10bc7132dd7c23e765788c60611e23948282de44ff2d58d8c4b084eb5507ef20
MD5 a3fd78ec6c109f735b994b9f206ad0cc
BLAKE2b-256 011fb9e101de870f5daef15c77c4a946c6f371d0c0b81d530fe11bbbfa107e35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b87b89fb4b3a3d23eb0892b144849e978c1251350adec2f4d0ee5fd9ebad7719
MD5 e8053a39b7f7bbce594fed6d57f64d70
BLAKE2b-256 80d51fd04b41358a968c24e944efdc07e2d2f5286066c9f22230c0aba6b25474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 216799fa19264d486b2e68770afacf5381b754c87c52f5cffa7b6d0edc36f484
MD5 f220bd82ad72863c156897f04c224702
BLAKE2b-256 7c7242d8e497e64030e931ba4bd73698f59ac70ff5cd98afd1d0eed8468c3010

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 345a2a46b9697a34409200da913298016c696139070709d318a567030d116ef3
MD5 8a137ea93f9927f8f20708f7418c4795
BLAKE2b-256 0c8ab10ae1a29133a0f78182bb70f978923acbfacb0bc5b82b461b4950cd6ddb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba96d8ad14ff8aa7a8afb029ecb631e45016abc7ecda9a8624731cb336c0c22b
MD5 86577efce6ae4734463ec91938b72236
BLAKE2b-256 a85363f7551e14c4889d339138902b794a696382ea7b179a2053f8c69f7decb9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75887f19b068c0315b497c22ae27739041e4510c49ba5c255cef8dbc872dd45e
MD5 5277dcfe86f34742f107811f883c6887
BLAKE2b-256 936fbb2de10f1823d6f5bdee7e911300d52c80a4d120c35c990e1ae2c39486c6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c66411e228a084b6beba54e5481b99c1b789283da8a520a2aaedd9da839857ec
MD5 b04994b5bd8f13f2a16d2baa1fce2000
BLAKE2b-256 2d9b151fd4f93321fe47a0f66ebc3eb7e2b39c1bf7e36e0e0625ef68a9be7ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac248a0f2f318b7ce7a938e2f877e98f3d483bf6bf0dd125e66458a6a9976c3c
MD5 0f83cbbd11a59db962b4d193828aceab
BLAKE2b-256 00f004372c673858e9247065bfc2f23695d79b7b226431fa06cb4c6779e719f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.7.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 0fa347cad5a94af1039ab41e0473dfd06c3b9a7574d5bce2683b87e08eb8d592
MD5 e50194fb0eda8474898a9801d2eb01fc
BLAKE2b-256 bfc6e5da91c91dc262d47d6189405a7ec854ddbc591f976a34710b207cb21359

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