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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

pydantic_core-2.6.1-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.6.1-cp312-cp312-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

pydantic_core-2.6.1-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.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.6.1-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.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-2.6.1-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.6.1-cp311-cp311-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

pydantic_core-2.6.1-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.6.1-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.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.7+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-2.6.1-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.6.1-cp310-cp310-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

pydantic_core-2.6.1-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.6.1-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.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.7+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-2.6.1-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.6.1-cp39-cp39-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

pydantic_core-2.6.1-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.6.1-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.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.7+ x86-64

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

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

pydantic_core-2.6.1-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.6.1-cp38-cp38-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

pydantic_core-2.6.1-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.6.1-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.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pydantic_core-2.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.7+ x86-64

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

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

pydantic_core-2.6.1-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.6.1-cp37-cp37m-musllinux_1_1_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

pydantic_core-2.6.1-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.6.1-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.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

pydantic_core-2.6.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.6 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

pydantic_core-2.6.1-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.6.1.tar.gz.

File metadata

  • Download URL: pydantic_core-2.6.1.tar.gz
  • Upload date:
  • Size: 334.3 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.6.1.tar.gz
Algorithm Hash digest
SHA256 5b4efa68bcfa6f2b93624c6660b6cf4b7b4336d4225afb314254a0ed9c9f4153
MD5 35de9369397b2e8655c7c8a06c480c75
BLAKE2b-256 d95f3db8f8cd1234ef6c3c3aeb8c3f7e3a9da62ebf178dd59d19d991d30cc987

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e55514a022c768cccf07a675d20d07b847980dcd9250f6b516a86bab5612fc01
MD5 7a2370856459ecd281bbda4ddeac8cb2
BLAKE2b-256 f7a0200668879204dbecdedaa3a68df547cead34e7a11ee9d569639aa9177be3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4525b8498d362e4e324e3e175239b364768f52bd3563ac4ef9750160f5789de8
MD5 47c162e3e4c7b5cbaef22215cd2dcb99
BLAKE2b-256 6c3fe49f27b66242eb9c7ce2b64821a5681e137376516784fcea8e6851d4eb21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 382d40843ae759d43ef65b67dec713390f9417135c1dd730afbf03cf2f450f45
MD5 040c6dd6c27aec44b1fa237d981a3b2d
BLAKE2b-256 1df8f3de9e1fa613d5d4265257f9f5d716e6ff298f0f4a7a6770335ed0691493

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 734864605d722a6f8db3b9c96371710f7cb591fbfca40cfeaedf5b67df282438
MD5 cd65ebe0dfd32d51993a576ae6e84665
BLAKE2b-256 4032a41d8b32a71e5e73744775c94665ff2b0f0d3538da5333a5b06f8cb2e76d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3ff36f945342086ee917d4219dd0e59660a2dfcdb86a07696c2791f5d59c07d
MD5 297c0a8613d9c0a65d0ab7daafd0a399
BLAKE2b-256 5378d97ab26ea2807c14bd50b00f7441316902e5cb42fd8f448e12b83134b116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7188359b95a2b1aef5744a2ee6af2d9cfc733dd823f8840f4c896129477a172b
MD5 fd3d7b8ce33a5dd34fad26cf69a9c484
BLAKE2b-256 95c482450b478c0a52e5f787e568d8644c70b3b7ed242730f056a14077321d0d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3679b9a1f41eb1b699e9556f91281d78c416cdc59ae90d5733fbe2017f1effe9
MD5 ed3c4bb87d9a56ae2e7d83ca6db6225f
BLAKE2b-256 cbc240efb56013b4459fe52a18183609641703d2533b957d012cdc8aa867a01a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f7ec4c6edafa3f0eb1aa461e31ea263736cc541b2459dddfbda7085b30844801
MD5 cb60bfc8b4a75005bcb69c20c387eba5
BLAKE2b-256 f62c429b762f249e67aa77fbcc957426056998b7300d78858297fa10037a126b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 2da1d21a4f2675d5b8a749674993a65c0537e2066e7ab7b1a4a54ef0b3ac8efd
MD5 518c5429c3b585564d01372d288fbb81
BLAKE2b-256 3be5efe89f78a9710248828b16e7aa5ee46dcaffb3a5638ad139192572ab0afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 92321582e59da185b76b2eca4488ea95e41800672e57107509d32ebf8ad550f8
MD5 0abd90c417df71d468c172fbbdc40757
BLAKE2b-256 9f80e4a491013bf2be611508523d77c9915d8822a77d772040a133244daebb6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 27ba58bbfd1b2b9da45bfe524e680e2bc747a1ca9738ee5aa18d8cbdcc08e5e6
MD5 68905bd0d9fb7d09b2e4444c66613485
BLAKE2b-256 91a1cee9ba6c37da7f03bcc5c79ed71d0b71ceda965ca69b0e52823fb6e05efe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7f03541c25a77fb5445055e070b69d292c9818a9195ffbfd3962c0ad0da983e8
MD5 4be968c2f3fa67603c25923e52dd4703
BLAKE2b-256 3d51d9e27db9df890d0297dc41a6da298b396cc8ef22b38fbac283d08dcbc020

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8714e958d01342d08e520ffec6c1acf66cdec83ce51302f9a1a6efb2f784d0b6
MD5 ed933b67054784820df7e692da80b6a2
BLAKE2b-256 4d1d75f99c0644fbd02ddec7c9903c63a4ef05ae669af06d3d2e477069c0bfe1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 364c13ef48c9e2f8c2ea8ee0da5ea23db5e218f99e796cbf360a2a7cab511439
MD5 058d9b797a284376746cf789f57d273b
BLAKE2b-256 a8059e1cd4a782d9368a4ffcdf9472dbf1326a7b564ff4c60933e5ca9954c68d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c07cdb2e02733e5f26b9b004a1a8b99814d175f8953fa9f59e4293de2b8e9787
MD5 dae784f9caaf1cd8a88017bf8b244693
BLAKE2b-256 9c34438f8f3d11605c1d131119f4072501154fcce159fa7f0fb8c45ec76d7a16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4223e8bdad41d846a84cda400cd538e1cdc63d98eb4d41951396bfdb88fd8ce9
MD5 33460b048f075a5c40fb996eca06286d
BLAKE2b-256 5f9e074bad48da1179891c4bb2504c1707be3f446789a328f07c0cb54a35caad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 6221c97d6d58f2370650cfe3d81408901a1951c99960e1df9f6f9f8482d73d08
MD5 c34659a076d9f755f76007beb530477e
BLAKE2b-256 47278b10894c5d20ce844a88734667ec0c56c2043bedf2a8430bc30f6da43e1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a4536d132a8bbd05bf368fb802a264cb9828f6c85e4029a6a3670bc98ba97323
MD5 ebeda653903e5282e0cb9a55f7a7f6e9
BLAKE2b-256 d1b842f3f9ebca9e5f59b33f81f50bce650cb185659047fb47b3a5338c3e86d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 09e4ebd11a0b333b1fca75c1004c76dc9719f3aaf83ae38c42358754d8a76148
MD5 1aab17962a40b404e274fa1879386275
BLAKE2b-256 a144e28e7347ff7d216cd9fa27530ff17780a2cce5b2cad2a72dc23ce2a05cbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2034d9b83a59b3b74b9dbf97ddb99de86c08863c1c33aabf80bc95791c7d50c3
MD5 081c790ce9aba936dd8bf23f74d927f3
BLAKE2b-256 b668b870e4b13d305e6ccfd9d2dda4089d9581318225a49eb4262330f94cd6b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 60a238bb4ab09a81a6b25c9a0bb12756cfab2d9f3a7a471f857a179f83da0df6
MD5 0ac72ed223735f8956cdcc695584e64d
BLAKE2b-256 9850a2d5b9d9a90616c6131bbd20a63c58275feabb473a578a5ffb2e4a3b59f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c3a2b4d1636446dc71da1e949d2cf9ac1ee691ca63a640b77fce0360b4b75be
MD5 11fca4c8cb24ef3d43f28a1e46add10a
BLAKE2b-256 6fc253cdff3b18fe1d9801fea739cc7dc74ba3f0f75cfe0d7cc7036941bc33cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 136de286abf53f326b90389aaaca8a8050c2570adfc74afe06ab1c35d5d242bf
MD5 63d732f82eee9024b0bbec26e929e01b
BLAKE2b-256 26ca08e69627081d3dfc52f57a7d2b5adde8df6dc0220a3a2d94d5a3f83ef070

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 6916b27072c957947919fb32551f08486562bb8616f2e3db9e4e9c1d83d36886
MD5 ab50008c538d79134dce23cde66d0870
BLAKE2b-256 22cc0f77209859e9536522fd1bc71000dac39cdb0c3511ec95d8aef334b0e8c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 200704f6824f8014bdccb1ce57cbd328666e6de4ecd77f0b8ab472cdea9c49ce
MD5 f97b45a22e8583cf64154ada6951c377
BLAKE2b-256 ee2b4a590b5cac3f427454a350ea27edc9d07a2900a244248d468cd12c6367dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d6971131de66d1a37293f2e032206b6984b0dec44f568b453dfe89a84a2de0cc
MD5 03b0f682c08d451d2a8e821cce953912
BLAKE2b-256 513f2dac6190425d802f2d74fd599eb56d0ef31d530e87168164b47c97120de4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7ddaa2c3c66682f0ff4ebc8c85ef2d8305f32deba79416464c47c93d94ca3740
MD5 d6ba6143439a5d8967ac5c44560359bd
BLAKE2b-256 54e588537602a33173029f2080dec92aa9d896394009a7221bfc1c672365a76b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 588a5ffd8bbf1b2230611ed1b45221adcf05b981037b2f853b5f20465849b5c1
MD5 fd5c80466e7357f92fdd47a214d95eb8
BLAKE2b-256 96e22365f36aefc05bb4912f666a9ddd43eb2071f0b86f3aab6f6945ce39f8e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a809498dceb0cd1cd1e57a2bfdc70ea82f424776e0196f4d63c4b6fcdaeb5aab
MD5 c9628eed3e7876c26d907f11e78246ca
BLAKE2b-256 73a9f571ba46947acca68dcb796dcdb1c5c7b7dcf691a89d5c59444d700c63ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 26b81017aeae0d96f776fbce34a3a763d26ac575d8ad3f1202bdfdd2b935954b
MD5 33c4728aebdf0040ffcf1e9321ff725c
BLAKE2b-256 d54aee6dccc6d8d0008aab1ebf83caf72f05b39282f8a49e2b163793043e175d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 34734d486d059f0f6f5bfa9ba4a41449f666e2abbde002e9fa8b050bc50e3347
MD5 2d86c84fc84e6ef1062b9824939ddef7
BLAKE2b-256 df29478e6d29c6808181edf92682e3af393385ea0a3b34ef596f348300722eca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 dfc8f534a21b60b00f87e5a4fc36b8b8945160a6cc9e7b6e67db541c766c9597
MD5 e06cf6e39dc578f6dd15f25fad982460
BLAKE2b-256 5220f4be34171d2b2ce12b3fc3330b8158adadf56ddd43bc02f281ab3c5f5116

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 ca5606bd82e255b1d704a4334e5ebf05ae966b69686fae02dcd31c057bdcb113
MD5 657405f3811a47fe920d1cc3f0bdd8bb
BLAKE2b-256 672838b068473f32397426b39d20d640c44d0b1491087eed92e15def9d6a9cdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.6.1-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.6.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 f5b51ec04743c94288c46e3759769611ab7c5ce0f941113363da96d20d345fb6
MD5 91cb07579a97661822c2aa38f0205671
BLAKE2b-256 72e9f6c6b39a4e2f33db91a3a74628e0a4cce56e786797bf0b401edff681d5f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cd163109047ab41ef1ea34258b35beb3ccac90af2012927ee8ab6ff122fef671
MD5 207708b5ad5873294a571cb43408bc0a
BLAKE2b-256 e024d893f0a378443ec252a18066fcf3c5c95b14fd1a1020df8dd414bc25993b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 56e4953cd911293d6d755e2a97c651826aca76201db8f1ee298939e703721390
MD5 51c79a8e1bf23410400f7edf543619b8
BLAKE2b-256 fa8c7cf3645f4eb2cc21123d9252b4f64363035f416bd77c603079dcd6991b35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2fed4ad60ccf2698bd04e95dfc3bd84149ced9605a29fd27d624701e1da300c
MD5 d72bf4867e020b4c21ec9c3eae317a5e
BLAKE2b-256 f669d7cbd1b4db8553f6a10a8a8615c0d764ea3f583bceffb245c4db57a67a0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c22e4fbfb5823d0fcb2c20ed164b39c3588554f9635f70765e8c9cff0fef67ad
MD5 de7258429648fa7f8521b2ab8e4f9b89
BLAKE2b-256 1d9c3bd1b354efc0ed915b37f319f003612512b82c42c4cd86e23820dbab9a9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6a839c95d5cc91eed053d8dafde4e200c4bc82f56fb1cf7bbfaeb03e2d907929
MD5 9bd13a1b2839e050aa3a653c8557070b
BLAKE2b-256 58c5f31064b30d021b8d3d35db12814805302b60e0b008ce19cd6b559e269241

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d41701c88d8b678c16c10562949f2d28aceacd767cbe51dac9c8c41e6e609fb
MD5 b2b29b0e5caa6520085a7294f9f61b8a
BLAKE2b-256 7def675da5deca5fc21a09c7d64290f9e2005c8b5cd246e72f8eda4ca04c25b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1281c940f47e5c89b594ef7580045647df1f9ad687edd503bcc0485be94576f4
MD5 657f1e8af832336877a6ebf5b8a0b663
BLAKE2b-256 3f923d7d5436a4eb7d834eff8e8c3b8d372c3cb63e17926281ce22aaeaefa049

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 33b9343aa464d60c31937b361abde08d3af9943f3eb09d3216211b6236bd40c4
MD5 b884d6af1fc5a30965ef744e524cb17d
BLAKE2b-256 410c6a0fe34c24bf2511b85a90f79175b4726ec86d95c81f1c626eb761c26266

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 494b211b12b8fedd184dbba609f6ed582e23561db57c1996fd6773989dbaef9b
MD5 578344fb8e41a73a4fe3076b041ca1e2
BLAKE2b-256 01d80115eac439ea7193ca46c0593ad7baea037ebb927605132f72bffcad6626

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c82fb25f965f6777032fc2f2856c86149f7709c8f7fd0c020a8631b8211f2bab
MD5 d659524765428d201291558b3d853029
BLAKE2b-256 583f6c5456dcb0e93347e9b29955d3d33b636fc1f4bea61612f16bb0cec9a67e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 c1e44b77442fb5b1b6fccea30e3359b14d0a2e5896801243defe54482a591500
MD5 328e9c9fe5d6a3f3c026aa24e263e140
BLAKE2b-256 83bdb639668736a464f18f6bfe11964917f5f660ce207cd521e8de643dd38630

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 2b8ccec2189d8a8b83929f79e5bc00c0656f6c2ba4345125c0c82d1b77e15a26
MD5 ba2552597521d6d4a3a058dc7cdeffd4
BLAKE2b-256 a8eaf863f6efa170e94a2fb2c31dba4a8aec5187b26750b43f3fd7180299fba5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.6.1-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.6.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 707e3005e8c129bdac117285b71717c13b9ed81a81eae0b1642f4ddc60028e63
MD5 a6f6b76448b032660c2f1db59f38039b
BLAKE2b-256 006ecb3b9983952970d9f58fd9f8919405bdc10a7eb96d963d42dc602cc121e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3210eb73707e3487c16ef25cfd1663660f4e7d647a181d6c2fb18bc6167985fb
MD5 e2c489d49387a2e253ed6e63b40a1f6b
BLAKE2b-256 9908b1b4bfe9aaac7c6a2d2f893ada929d3087e2b3342dc13aed3ac81eb4a189

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7ef56a05bb60336d5e795bf166d6712b2362e6478522c77e8336cb0da8909913
MD5 6905bff6159a5276ae00089c4d5881af
BLAKE2b-256 bc2d014ceb457a058d1a0f43fc6279c4767df56aa5e0ddf6e5660e67731469a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7888b3ee7566865cff3e9edab5d6cdf2e7cf793df17fe53d5e7be3e57eae45ec
MD5 d5605d9032f1504173821877a757a105
BLAKE2b-256 5e57355814ab16885042c64f0aecb04bc2efb302129939b755e3b2212a62cebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d1141f18414aee8865c7917ae1432e419c1983272f53625152493692ff3d6783
MD5 071ccc7000be848d94a73ceb7db089b0
BLAKE2b-256 441666955214c66df13f0ebe5d31757cf7e16e94c963094d97120cbf0106c6b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5a12520a6d502a25f6e47319874e47056b290f1b3c2ed9391444ce81c8cc5b83
MD5 1658242a476e306e35e6630cfb6e220c
BLAKE2b-256 791161b97c83203c3e8ff24541477515c74f2a8f6c4ada5070ac6c83a7981316

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9b623e09239ed333d14c02c9fcd1a7bb350b95eca8383f6e9b0d8e373d5a14b5
MD5 38683f3a9030d4a049d46117e460d163
BLAKE2b-256 f9a0b27993da9cc368f64015cfc98bd67fba347121057473f5db3c0b1780df49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de1a3e56e34264d5216c67d2a48185216ada8f5f35a7f4c96a3971847c0de897
MD5 07eb0cc9812b5e0bda881bebefc49f2c
BLAKE2b-256 dd695a1f3a8ec63fed296d9cd9c493fee925e86a1a46939b8e158833bc62958a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3bdf293b6304bc451678b7016c2505b7d97aa85ff13dac4420027b1b69e15d3d
MD5 7ba98ec285336c84aee50f4d8b3e3757
BLAKE2b-256 f331a3b476b4fcdad9d675e2482b9e487b74a9886b363460a63eaab1f1418b7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 da240bbd8191edc6009e7793d5d4d67c55f56225c4788f068d6286c20e5a2038
MD5 29637b11d730a6a0290a503a097526fd
BLAKE2b-256 df7c27f05105cc0bb6d838720b881788646b58e7fb278efe318861700c982fee

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 4a3c20808d3ced90e29439f72a563eadf21d29560935cc818b2dab80b92c114a
MD5 1a5064fbef9c3d6894070fb5fcce392c
BLAKE2b-256 76853f2ec281b21604cfe8d9dc95fd69a612ab75a4b42a8bbf42cd29307b5e93

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 3d14ae98a8d251402ef8ed017039d2fc3e29fb155f909cd3816ba259fd30fb48
MD5 67caa3daa67fac1ed05145f42b1c6a8e
BLAKE2b-256 f069bbf1353a2dd6c32e3f708257e76c8a2efc4dce7afff0bc1a1a5659a25f00

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.6.1-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.6.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c5be947ad41a7602f941dc834d03e64dd1c7fae65fa85cb4f1004a95c5d50df1
MD5 ee670be448b067ced9300d3bdaba79aa
BLAKE2b-256 85c60466359bdf6ac84cd34c0e970810b6a945e6dc2087b0dd9d459c66a99520

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 d0bf1c2545ab253732229c7fe8294d98eb08f99aa25a388267e1bc4d2d7e0a34
MD5 f3be97dc716aec4743a2fc5abb93b2bb
BLAKE2b-256 caa39d266a3f955288e0ac96f0010ff44835affd74199f649053d02b14a9620b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 56672429f8a89d2a0f4402d912f0dad68c2d05f7c278d3152c6fb4a76c2a429a
MD5 5aa9aa4f27232e0a902fac12d88c9e61
BLAKE2b-256 ef33f077d92dee620a0af47a11c19dc3775ec531b59fcbb64f6cfba7f5d3545c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cd9f14454b4bc89c705ce17951f9c783db82efd2b44a424487c593e2269eef61
MD5 d7d9edaa6e21463eff03ba21920f5545
BLAKE2b-256 153175cd7855b46c11e1d0b40b72489f5c311739aa8e95c4c82c95b21f556f2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3c8f3aebaf92f088b1dafd7101d1ccca0459ae0f5b26017411b9969667d289a9
MD5 5f02d00ce2edd7ed38750441767fcc27
BLAKE2b-256 46b736172019a124ec5cc6eae7fceb53dad5452589a27102d2c1784647fd280d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 81424dc05c4342a19fb64323bb9d4468e7407b745c00377ccc4d3dd96d5e02fe
MD5 83d8bc79b0bebdc553b3b390932256c4
BLAKE2b-256 e10b0e93a3bd94a54b2f611d0402515e26eeb647f9d9516cad85bcb6582ea879

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 db0c12f1e9d3bf658634621f3423486803d749fef77a64cfb4252f9d619e1817
MD5 f5e17f3d5965e5cb91c44eecfc1107c3
BLAKE2b-256 791f6028f4737b6552cfea2ade859db9d6e34d68dfccfbc82e8e7ce317bd37a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 043212f21c75cb6ee3a92fffbc747410e32b08e1a419ce16a9da98a16d660a7c
MD5 167f9ad7df8e1984a4365533517f8733
BLAKE2b-256 5c1b9613db089456f102abbb21454847f50aa99aa2bf43914c8d0d69ae04c559

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2effc71653247e76c5b95d15c58d4ca3f591f42f714eb3b32df9d6ec613794a5
MD5 292bfb11731f8c240a145edc98aee6a8
BLAKE2b-256 e9abc98c0391ed50eebff1eb3bd78e7e675a6381e0d4101761d628a6863fcb0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bb6273068e9450c5c91f58dd277fbd406b896ffa30f0ef312edc5519d07f16ae
MD5 4898c5bcc86c5eb295cb13e5a4fb7024
BLAKE2b-256 fa4ee9c891193cf76ab036d0b7339468bc9bb7ffcd3fc24d81e4d99621fcc83d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f55001a689111a297c0006c46c0589cfd559261baaa9a37bc35eff05b8cae1a6
MD5 c8e787006018f62ecf543a6d9bc6bffc
BLAKE2b-256 7cf2bf6c903049fc3d60a8164aa2689033362aa5b39e2918714d6d059f2cc9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 f34f26d8a5f1a45366189ec30a57f43b21e2172d0d3b62822638dd885cc8eaab
MD5 69aeb8b3b55e6277db833d64b21d55d3
BLAKE2b-256 d94ddca38a8e88b9c7af8671d72153fcfc401cfca029c15094432026ab3c62d7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.6.1-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.6.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b974d65692333931b4c7f730e7a3135ff854a1e5384bc260de3327ea364c835a
MD5 da698f9e776df3b4abbccbb10957d924
BLAKE2b-256 0ad400f3b63bd647e929b58c9f9b2bad548ab95c635969dcc18e4b1b64fb648c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9bf3ba6b4878ee692f6e24230801f682807fd97356bc2064f630fc0a2ad2ead6
MD5 f5913674044559b1cedca6c63a927e20
BLAKE2b-256 c2b5385cc9f1a9b6654afcbea4023e9e6213f5763352d06c3e41e7f16fa311c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6ea8dd2854fe6cee5ea0d60304ee7877dffe487cf118f221e85029269dd1235d
MD5 d169100fde866a41955fc9accf675746
BLAKE2b-256 f254fd4ccd0cdc543dfd8d37bd8d6331926765ec89861877dee2635ed8a11840

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78eadd8d7d5cd8c3616e363c394d721437c339feaa4c28404e2eda79add69781
MD5 5a875dafb72f52928686e6a5efec25f7
BLAKE2b-256 b4c26fed3fdaccd563e82198497bfd542a354a3d2d5dd11cf9f48ef5d46ca96a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c7b89b2875b967ad5c3c980bf72773851554f80c2529796e815a10c99295d872
MD5 53e2356c855e421609fbaeb11ccf48d9
BLAKE2b-256 57c5a710d7ad29048c9c856a735214a30ba304d6a6571ca3ce5234f04481b661

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f4327fa6a1ac3da62b27d43bb0f27657ed4e601b141ecbfcf8523814b6c33b6
MD5 0c6073e786d96007c54ba810c429d688
BLAKE2b-256 56e6f9c590c66692e236ff20ed470728ae4c1a389427412e089bf29894e4c177

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 20e850f3242d7836a5e15453f798d8569b9754350c8e184ba32d102c515dd507
MD5 4991f02b31f193ec1da58d7fd00f5228
BLAKE2b-256 7bbcf67b3e5a887784e299acaf8abd34e6b0bc4210d583605bd4f31a5af164bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cb5131d75d69b0547ef9a8f46f7b94857411c9badcdd5092de61a3b4943f08c7
MD5 89322aa023eab3443ad6998a754cd02c
BLAKE2b-256 ea85114d5f28064f5d2ed5ecb1942bd13b796544b1cbe509e07b036dc5213d55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17ab25bb24e98b61d120b7248c2b49ea56ce754a050d6b348be42015fcb7aa25
MD5 e172eceaaedcd4c39a938187a53bdf62
BLAKE2b-256 1cc64c3ed9cb8d5206e70d2caa6a7e8b0a00a963557cdbacc64fe781575f307b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66eda8ac48ac33e9e5c6541c8e30c702924b70a6f2e9732b74230d9b2dd35fb6
MD5 05b75842e4216a8fead0ac2be0cc2984
BLAKE2b-256 a956728759f9b2c5d96607038e76cf661fe50c9cc3aa204c5b3c6125ca746bb6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a32ed5a794918a61bf77b967c197eb78f31ad4e3145860193dc381bde040717e
MD5 a176a7105973304ca96b476dc69c2ddd
BLAKE2b-256 7107de360851423a716b09cd828c9de0e04ca1ec893426be934746f5c92abc43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 775098e3629a959dfec8444667a53e0916839e9fbf6b55e07d6e2aadde006400
MD5 27d522422180f57a38136c3f66f0c92c
BLAKE2b-256 2fafc2a12eb298d6f1b3d688144f5f38590e785c9d10eac7089fa257d7deaf71

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.6.1-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.6.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 e84812b1ca989b2e9f4913d7b75ae0eece2a90154de35b4c5411ad640bfd387c
MD5 2d4afa9f48cdb9cd7e3b370f0a3e24d7
BLAKE2b-256 3207aaf783ce3dd54c612c850cb8444cd068d44f14c54bef1cd692bc0fd31d11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e1c69334bb843c9bff98f52a1fa6c06420081a561fcecb03c6b9376960bd7de2
MD5 73891d3d397902979cf3358d3c02df3d
BLAKE2b-256 1c519143ca07cc7213b3f85be238ce9d4722e50f2f0d4cbcb2c5981a2ae83414

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 4902300e763a2fcc49ae14366493ef1fdbd3c7128b9acf37aef505f671aa681f
MD5 8c263d93181f5953d1412c76ea9ac1b5
BLAKE2b-256 920b7af51f354e1a0fe384bd3499fbcdbd7bd36e9ec099d2ef0c4d922a4621dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5127b811c6a26deb85f5b17a06c26c28ce204e51e0a963b75bdf8612b22546d
MD5 4ca2c6e98d3aa69f5af3a8fdcf97265b
BLAKE2b-256 bbd330e491a7bdecd404967bd2c83c16390b60a6fb63ca6a026dadf332a45778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5f253d20314e53ba0fb2b95541b6ed23f44fbcd927fe7674de341545c3327c3d
MD5 760965a2272189f50dc8d82987bb1afe
BLAKE2b-256 f7e5f30493c516f97071afe5bbdf8d987eb1be1e646cbf2caeeff76c327f07a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 420a76a62dd20a6ef08445abf7cf04dcd8a845a5bb15932c2e88a8e518c70d43
MD5 888a838c819a539d031db4be135d4c79
BLAKE2b-256 5de4922563003debc48187660e2179d6ae102ca1ae0172c8c51f602517b48451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55701608e60418a423db2486b5c64d790f86eb78a11b9077efb6302c50e62564
MD5 705453303cc56546e0edaaaaa2ec1d80
BLAKE2b-256 a9a94cdc42e83d1db927a3a422ca89bce1a2ff3788318d84c0bcc51411a23898

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6dd6c9f47e26779bf1f7da4d6ccd60f66973e63b0a143438f1e20bae296c3fde
MD5 d64498f61bc8f396544a6dc8860516c5
BLAKE2b-256 b1cb142d5cb2b4e61f5ba0f4ec4ba11e7b64a53f68a3e6727fa5dbcbe58bc075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 51ffa985b874ca7d0dc199bb75c67b77907379291c91532a9e2d981f7b681527
MD5 26d2bc7710637db2d9a704db41bb9b05
BLAKE2b-256 614a5a3b0000c9ab7119bfe76607b8b6bc446a310c02dbc9abc0f55230138086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 45d248c3c5c5c23a8d048cfdebc8151ae7b32a6dc6d68fbca995521e54692207
MD5 7e776f97e96cb463bbe2e6dc9fbe57a2
BLAKE2b-256 3ea1410a36f6ccb55f78c5e2070d4783076451952cccea27ab8e54c79f88ebd5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 5482d692ae37857695feccb179022728b275b7bfcc1c85bcdf7b556e76bffcd8
MD5 3de40547c52544ec3f41f19e2d4e0887
BLAKE2b-256 5fa411ec2887d6d2c9c6c37d15d5f470bc896b9f6c2db9d96f188a7e97580509

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 cc7fc3e81b4ea6bce7e0e1d9797f496e957c5e66adf483f89afdce2d81d19986
MD5 4c9551179a1ec682c0a09c1d476864ea
BLAKE2b-256 f718b1c1909941731f042b1e486f4cb9f280234824d6072198fe63286fa7e9c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.6.1-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.6.1-cp37-none-win32.whl
Algorithm Hash digest
SHA256 153a5dd24c09ab7544beda967366afbaae8350b327a4ebd5807ed45ec791baa0
MD5 6b697391144d538cdfbe7e5d9b8335b4
BLAKE2b-256 9a17a2108a6e1b70a22b213c573bed1b375c5ee0fd3e75f11ec5191c5d853417

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a1ad48e77935d7dbbc2d75aeb638abbfbd0df0cfacf774dbe98d52271468f00c
MD5 02bd8e6e9ec3244cb16588004a6f0ea0
BLAKE2b-256 1a6db76792c2b575839bc234f10063d3c1f383b0b23f2ddf0413ca1e853c03ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 760f8a0aeb43ceeff1e536859e071a72e91075d4d37d51470812c4f49e682702
MD5 9f77a72b6e10e486b352ae916d45806c
BLAKE2b-256 9a2acaa2afe42d1a89c5596e4b7ca9420f97bc933767f89d6eedca972c21f99d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b1a01dce87507b9a8f1b71933ade85c573a22c9bd4649590e28d8a497afb68bd
MD5 6497c48aadca73c7755cd97bdd3645cc
BLAKE2b-256 c0ca4cf24afe80f5839a5cad5e35e2a0a11fe41b0f4f6a544109f73337567579

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aadc84f5bd7b1421b5a6b389ceff46062dd4a58c44cfb75990e9ca2d9d8270df
MD5 39175c6b3136257032f739d62742ae5b
BLAKE2b-256 e1d4c87563182e1c01a3cd1f9772d7af63838a802dd38e089033df50d1309cdf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dfdb1617af455a551be4cc0471f0bf3bfb1e882db71afad0e587c821326bb749
MD5 d1a79b4b07024cb74bb1476d592b5f66
BLAKE2b-256 49f062fe3f26bee7cd2dd3a16e7364d1f1a36c8e6bdb02ecf8a1fb21fcdaeadd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55aac69d7339a63e37164f0a629c3034becc6746d68d126118a3ee4493514bed
MD5 f4ac4a58b969ec67735bebc9de7f6be8
BLAKE2b-256 bd931911975231810cdcc8d70c8a888885098a5eedebf1dbe2d1588bd191cb22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e2d8faedb138c704957642fdf154c94f1b3d2a15cbd2472e45665f80463e85ee
MD5 50316a204cb5940fceaee968d8304e25
BLAKE2b-256 481aa6fa7b1cdd6d3b9ba4bb2592f73b8808f3ab9da38643459e8f91b8554aa8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cd6f05f3e237ed6b3949464e7679e55843645fe0fe8d3b33277c321386836f6a
MD5 7b2c9d0cf0087f6cec54460732315035
BLAKE2b-256 9c498d2d383beb9de0748a2eed3bf43a27b96a753d457f6f33dcf155ca1a590b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 64ff7a4b7ee2a56735af28da76c5dacbba6995801080f739d14610f4aa3de35d
MD5 90ae7f59711fc45acd0e60edfe690f3d
BLAKE2b-256 8218ddb3e4c871dd33d8fc0a3b44d0ee959dee706cded81202a7633fd3d81a92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.6.1-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b1aed20778092f8334c8eaf91550fa2805221d5e9b40ebdd1f46ee7efc159a48
MD5 6d27d42f0a3203cac369a686ff08c6a3
BLAKE2b-256 0ba3ff35808cf9959f3a47bf3df342bd126964d34f868f762bc3722aab0ee91a

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