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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.7+ x86-64

pydantic_core-2.10.0-pp37-pypy37_pp73-win_amd64.whl (2.1 MB view details)

Uploaded PyPyWindows x86-64

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

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARM64

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

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

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

Uploaded PyPymacOS 10.7+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

pydantic_core-2.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

pydantic_core-2.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.12macOS 11.0+ ARM64

pydantic_core-2.10.0-cp312-cp312-macosx_10_7_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.7+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.7+ x86-64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.7+ x86-64

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

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

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

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.7+ x86-64

pydantic_core-2.10.0-cp38-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.8Windows x86-64

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

Uploaded CPython 3.8Windows x86

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

Uploaded CPython 3.8musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

pydantic_core-2.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (2.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

pydantic_core-2.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (2.0 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

pydantic_core-2.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.9 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.8macOS 11.0+ ARM64

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

Uploaded CPython 3.8macOS 10.7+ x86-64

pydantic_core-2.10.0-cp37-none-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.7Windows x86-64

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

Uploaded CPython 3.7Windows x86

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.7mmusllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ppc64le

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.7mmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.7mmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.7mmacOS 11.0+ ARM64

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

Uploaded CPython 3.7mmacOS 10.7+ x86-64

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.10.0.tar.gz
Algorithm Hash digest
SHA256 8fe66506700efdfc699c613ccc4974ac7d8fceed8c74983e55ec380504db2e05
MD5 d7318f1e3b612d138ffe81d15e82dc49
BLAKE2b-256 ff0fdda2917c54fba480fd6b0242ed0efe6b03538bf7b6feed2c0c60288c980a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 e3f69d48191103587950981cf47c936064c808b6c18f57e745ed130a305c73a6
MD5 7603b6b27bd2d5527e10ad1a5e49ada6
BLAKE2b-256 af4d1898e8085753ff92da7395a9c2c45073210d0912fd6feb9f4abca9662b7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp310-pypy310_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 09ac18617199704327d99c85893d697b8442c18b8c2db1ea636ba83313223541
MD5 befab851a2daf33aa91b3d1408fc3042
BLAKE2b-256 f18bb04ab96ddc6af45aaac0be48ad627c5bf935d04442cff26d38e127d26e40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp310-pypy310_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c1ab3701d660bd136a22e1ca95292bfed50245eb869adaee2e08f29d4dd5e360
MD5 b9e08374d63b229cca94a679c281578b
BLAKE2b-256 db79c324c97b0ffd98316ee01fb4e48a6fb5fcd3277e2bc9a9abf26176ae94f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bc5be7a29a6b25a186941e9e2b5f9281c05723628e1fdb244f429f4c1682ff49
MD5 1f35cd34fdc630dd667e611a474da135
BLAKE2b-256 7ec9a1621e0ca81ef4fc84de6fc1bcc0ed4fb986af2d29833522074385d96bb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 34a45943bb14275e9681fd4abafbe3acae1e7dac7248bebf38ac5bde492e00f7
MD5 563eddc63bec66e5923c9e9db8574c1b
BLAKE2b-256 26bcc0a53fd048bd3434f0f1bcdb36a945e29d1031e7e97cdd1644c16f7985c2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17460ffd8f8e49ca52711b4926fefe2b336d01b63dc27aee432a576c2147c8ce
MD5 ac807d3ec9de14a928231ec029e099df
BLAKE2b-256 9c02f8f5e53c9b20c88e217366907d2199b4de7ed672f64658b7ab8d4e18f074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f3b25201efe20d182f3bd6fe8d99685f4ed01cac67b79c017c9cf688b747263
MD5 40ddac8ef49362c0df77b982b63134c6
BLAKE2b-256 782a6fc319f9620df12f663b79a922a6c68c10a76b30ed562f9497f0177ff7dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp310-pypy310_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 b40221d1490f2c6e488d2576773a574d42436b5aba1faed91f59a9feb82c384b
MD5 5964eb0f595478804ff2f76ee2c7a3ab
BLAKE2b-256 6d497f16eb2c1274547d3b8bdef9a78584e16518e677c1a0cb019bbb852a24af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5958b1af7acd7b4a629e9758ce54a31c1910695e85e0ef847ba3daa4f25a0a08
MD5 19f81a2491e47d5856d9064598e947d1
BLAKE2b-256 4929e1e84ad0cbc566492b1999ba6e6976400f5aade6668d80eb0ed8cfa144a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp39-pypy39_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b196c4ace34be6c2953c6ec3906d1af88c418b93325d612d7f900ed30bf1e0ac
MD5 320090f0aaf1bc0c6314ac447cea91a5
BLAKE2b-256 061a85f5d2313af520ddceeb28d9e029a53883390cd1e63a52454b6f7441fce7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp39-pypy39_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 96b3007451863b46e8138f8096ef31aea6f7721a9910843b0554ce4ae17024a2
MD5 d8fad6b84e536c8869b75eefc911b050
BLAKE2b-256 b2b7f219097fba616063ff4060a1917601f3d5d646f235cb0e6593794a8ee13e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f6f70680c15876c583a24bd476e49004327e87392be0282aedbc65773519ea8
MD5 db646d40c09d8b8af5f162e8ad8cd926
BLAKE2b-256 b07dfae957f3c0e743737255115496862fa45d3a63dd43e20d2054f79c202ffb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f114130c44ae52b3bd2450dac8e1d3e1e92a92baecb24dbcdb6de2d2fc15bdb5
MD5 46085aabc528f5ff9fdd9457564e1852
BLAKE2b-256 a7d43167f03a7b3002b7179bc413075de191c23fa72c0df968d145ecd017cc2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3f230d70be54447e12fcd0f1c2319dac74341244fafd2350d5675aa194f6c3f4
MD5 d476ed1b46af10b405fbdef9bbd2f3e4
BLAKE2b-256 65626e4fe029a3f578848879ea24a87087ffc6ebe66ac513d18613d96a6dbbde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7820faf076216654ae54ad8a8443a296faaac9057a49ff404ce92ab85c9518a3
MD5 bd3f02417b9975bd527259b42ac688e3
BLAKE2b-256 ab2e9baa35906ae9f3ee1be739413f7f1b4f4105838807c995177e4dde4faa9d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp39-pypy39_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 02b3d546342e7f583bf58f4a4618c7e97f44426db2358789393537dd4e9a921d
MD5 a857e9274eb25caa25850750e0fcb1f2
BLAKE2b-256 b7fc4e6a66308bf3422ad8597becb0d49e16de97929df72b56b1cd8d1db6a7f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 5cbfe4cd608cf6d032374961e4e07d0506acfaec7b1a69beade1d5f98dce00fd
MD5 28f7dd5c47a531625109616a5cb788a1
BLAKE2b-256 8ff3754d8ea8ce74f8ebbcb956ca1ec6096c3faf0679705fed7d637efd752b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp38-pypy38_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b5d4eec8aba25b163a4d9dcc6be8354bc8f939040bc15a6400cbd62ba0511a5f
MD5 a927d0e29a0237e1eab8d678a2714d57
BLAKE2b-256 95c91492d050cb34e53ad1859e573fda2c5d693bf9cfa71fc07475fc4917062b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp38-pypy38_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ffb2a3462bb7905c4d849b95f536ac1f3948e92f5e0fc7e65bd3f3b0d132cf4
MD5 302419b33eff02b0d8549904886c1191
BLAKE2b-256 8882b751af367823e108ba5ec5bcfc1779b6cd29147c918ad501e070093698da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1bcb1b9b33573eeef218ffb3a2910c57fedc8831caf3c942e68a2222481d2cc
MD5 808ccf86071270b85ceb8fb804f0f204
BLAKE2b-256 d75c24da379380c4ed4a2ce7671742db46d69c5f19a5713832fbfdd7fa096c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c871820c60fc863c7b3f660612af6ce5bb8f5f69d6364f208e29d2ca7992d154
MD5 0c7bf73d0e19f37fe2b8a01bd36b3a6b
BLAKE2b-256 6ab351a30a12627dcc017b5237aa37caef50ea9a9fd1731a8feb331bfc93acbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d122a46c360c8069f7ac39c6f2c29cf99436baa48ba1e28ea5443336e9bbb838
MD5 b4a63e60f3115612d7e14c1ccb6e3f46
BLAKE2b-256 522246438b369a625550c398fea3d7ee0d900bbdb67acb631cea2e91d5e7120c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp38-pypy38_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f00e83aa9aebbfd4382695a5ed94e6282ac01455fbb1a37d99d2effa29df30f
MD5 ef8bbbdca4d7bd8b4ebb130e9b0e0e1b
BLAKE2b-256 b5bf7b641aa5b8d835b4eb9a270f0972c83d4f26bf9110401dfd247665e58c0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp38-pypy38_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 8a5323d6778931ab1b3b22bac05fb7c961786d3b04a6c84f7c0ffcc331b4b998
MD5 3421d2891131b39c0b752dad496740a5
BLAKE2b-256 233ef6525e7d15083bdc872557b1c6bf6010b370e7bcb4b38759de07ce2aaede

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f9f2c70257f03db712658d4138e2b892bdd7c71472783eaebc2813a47fd29ef3
MD5 f9500ed2706d4f59a24a4c2296f5ac24
BLAKE2b-256 84eabc0fa9ffab3620c8bb26f6a6e6b5ab60576e78533c31d84e0602bfa51320

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp37-pypy37_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 12470a4de172aaa1bbadb45744de4a9b0298fa8f974eb508314c3b5da0cb4aed
MD5 ea1740041551e2a8e7eaa361b7abbe0d
BLAKE2b-256 dfa411be3a40d95ec8595dcd4b8b5a233fe881ab353274b0cf3751581f420862

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp37-pypy37_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 69772dcdcf90b677d0d2ecedafe4c6a610572f1fad15912cde28a6f8eb5654fd
MD5 bc6695cbf7da311120a37b9e18d5e35b
BLAKE2b-256 f855d57b2e6ca414a0e00d92c0fee40303868b51941373a72293c970fe198b0e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4a622a8abf656cc51960766fa4d194504e8a9f85ae48032f87fb42c79462c7b8
MD5 f58d45c4a6e534c1c73d1613d79376ef
BLAKE2b-256 4d119a492114651362c426378d6fd9de47ddcaf3210cf96d41facf63031b72ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ecd28fb4c98c97836046d092029017bcc35e060ea547484aa1234b8a592de17
MD5 ff048e882862935f7a321a47b282ed97
BLAKE2b-256 80359f9661ead3348e4ed3134070d3f1898c7788fc7182f2ecd55db999a7e56c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 52eb5c61de017bfee422f6aa9a3e76de5aa5a9189ba808bba63b9de67e55c4ca
MD5 6309648ba0c63b08a2cfda53bf9a8b02
BLAKE2b-256 233ab500c4e1d3d3eef2f44e580c9cea2b6766743262b07389b97a3658027959

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-pp37-pypy37_pp73-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 792af9e4f78d6f1d0aabfb95162c5ed56b5369b25350eaa68b1495e8f675d4d9
MD5 65a05de15661e1fcd920c519ccb5796c
BLAKE2b-256 5af786b17cad917e89471ec924afd13534769d03e69404085ddd0604e6e6e684

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp312-none-win_arm64.whl
Algorithm Hash digest
SHA256 f1a70f99d1a7270d4f321a8824e87d5b88acd64c2af6049915b7fd8215437e04
MD5 bde21be657b4f49c06f95fe0233edba5
BLAKE2b-256 acf3056b668cc842f206c4bd905f20b51e422ef8f07b6911b0a70e57bc8a64fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 b4df023610af081d6da85328411fed7aacf19e939fe955bb31f29212f8dcf306
MD5 e97cb2ded62c851532832b855193a9e2
BLAKE2b-256 9462fdc19faae34078257ffd492844ecd38fbfcd47e3c4cfc47246540565a695

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.10.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 ab1fa046ef9058ceef941b576c5e7711bab3d99be00a304fb4726cf4b94e05ff
MD5 90b20fb75efd2b02c4b554a7597722a5
BLAKE2b-256 4c33ea6270fca0324ced79218ff7e7ad0f906f4fbe6cadca390ac9acbbbb876a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 98474284adb71c8738e5efb71ccb1382d8d66f042ad0875018c78bcb38ac0f47
MD5 410dd0668a1b88cb9b94745596c424f5
BLAKE2b-256 1f06d6e028ea51f164b5be89bf286d932ed29889f3d7798d463996911833f751

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e079540fd4c45c23de4465cafb20cddcd8befe3b5f46505a2eb28e49b9d13ee2
MD5 48eb6b28357f902056462adea5063f62
BLAKE2b-256 fa128dc4778ac1b3b0cb88747c9b214ce3b280d71e29506d8da48b286c1cf720

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 25cacd12689b1a357ae6212c7f5980ebf487720db5bbf1bb5d91085226b6a962
MD5 07380987ad0369c5973bc87a730a3d7f
BLAKE2b-256 5c619680bad414c561fad3f25688221fd3c25bc624680317026b68502fae07b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 725f0276402773a6b61b6f67bf9562f37ba08a8bfebdfb9990eea786ed5711b2
MD5 29dfdf9e602259b5cc53146e1e72efa5
BLAKE2b-256 3c82ff5d176d1ae5f0f4b7abdfa257fbc32c102d10ff760905bc91f50d95d8f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b0061965942489e6da23f0399b1136fd10eff0a4f0cefae13369eba1776e22a6
MD5 9ae6ea647c9f3accef7d84f06216c78a
BLAKE2b-256 5f98a5459cccc678578324dc3620888a23642813c8a049b9696473e3c41d14a8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 573e89b3da5908f564ae54b6284e20b490158681e91e1776a59dfda17ec0a6a8
MD5 10a1f0fb6dc607d2decea2326d01d13a
BLAKE2b-256 fb5199da63680ae20db5cb19494da664a07e7f451b87bd5796f8a4c3dada2886

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 85d8225cd08aacb8a2843cf0a0a72f1c403c6ac6f18d4cfeecabe050f80c9ea3
MD5 63f630464735774525b77d3ddca609ba
BLAKE2b-256 8b84a932674f4a8adf36dd522aed1f0d042381b1ca659d3ed7beeb695ffe6d83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e70c6c882ab101a72010c8f91e87db211fa2aaf6aa51acc7160fe5649630ed75
MD5 cc77daab491c32a5d6b23dbbdfc0e219
BLAKE2b-256 3119dc4f4648272adce91985d8612d23507675a7391e2347a6d5e063f300d0f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7440933341f655a64456065211cf7657c3cf3524d5b0b02f5d9b63ef5a7e0d49
MD5 dcae29deea2a8f10811c8a795197c331
BLAKE2b-256 a2704f610cf4e3aa733b426c9be4e11663a695cfba4f2cd467dcbdcb456921df

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp312-cp312-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 c2a126c7271a9421005a0f57cf71294ad49c375e4d0a9198b93665796f49e7f7
MD5 077a5d9a8aab70e493e12bf162272102
BLAKE2b-256 c7d1f354c880605012c668732bddc5ae49b0291cef4b1f26099341508790caac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp311-none-win_arm64.whl
Algorithm Hash digest
SHA256 2352f7cb8ef0cd21fbc582abe2a14105d7e8400f97a551ca2e3b05dee77525d2
MD5 6e948878bce8f92cc3a887c6673d627f
BLAKE2b-256 9172d4967fee777a6f58307f9c5b95faf9a5106ef71cb340a7f364f50ccfd91f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 f94539aa4265ab5528d8c3dc4505a19369083c29d0713b8ed536f93b9bc1e94f
MD5 bc001d42b08ba06fb4491dfc152986ee
BLAKE2b-256 7e258dc8433c666d4d9acabb17ce699ac75998d0deec328bf9c938058c7bc7de

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.10.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 2a6f28e2b2a5cef3b52b5ac6c6d64fe810ca51ec57081554f447c818778eea09
MD5 400cd1c26b80efb5c99e5082baa35cc5
BLAKE2b-256 68e7e71ff4c5e95d90507b47261a063c2a2b42a8854b601486570e8cc81baf99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 9e21ab9c49cc58282c228ff89fb4a5e4b447233ccd53acb7f333d1cde58df37b
MD5 04bb178a4e6d67f90aa297ce36b32384
BLAKE2b-256 7673d4b8c84107be9589c0b752b4c11cf2ef64955dc4556692fccc33edcedfc7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 fa4bd88165d860111e860e8b43efd97afd137a9165cf24eb3cfb2371f57452bf
MD5 64e2822c39ef2138bcfa10496d235a62
BLAKE2b-256 37327dfa7d860fc09c4c9815327bf6faf0d83c147c67f90932f14df49e3ceaec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb204346d3eda4e0c63cbeeec6398a52682ac51f9cf7379a13505863e47d3186
MD5 07d9ff2af13d8d44d2689db25e537435
BLAKE2b-256 ba99e219aba5a0df23e159c21bf13d8d6be6c9cedf8b349bcac2eefe1ac48e57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 19c7aa3c0ff08ddc91597d8af08f8c4de59b27fe752b3bd1db9a67f6f08c4020
MD5 7f5421b07218ccfd99aed56cd0ee6b32
BLAKE2b-256 942874cdd3004f0aa81a0f3dba058dd77b679f56982bf59039933bf56c4055ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 394a8ce4a7495af8dbf33038daf57a6170be15f8d1d92a7b63c6f2211527d950
MD5 1bacd3b082d762f0bb5132b8d2ef99b2
BLAKE2b-256 7359d2fa81a364d03d9ab59ca66832784c8ca0615601d984c0395d80c32636b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 705fad71297dfedc5c9e3c935702864aa0cc7812be11ac544f152677ba6ea430
MD5 4f1a02ff004e87a61cc822ceaff62557
BLAKE2b-256 98c70db2948624e5643d84c1ed81e3debcf091dc1af35495cd9b0bc7e55520bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 030ba2f59e78c8732445d8c9f093579674f2b5b93b3960945face14ec2e82682
MD5 6107e8ec0cfc1f5230a288db93ac707f
BLAKE2b-256 9ad3c5710ac7dd918adbc8b27a6426e02c968c474a04483c9412ca77a46a493a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1fefe63baa04f1d9dd5b4564b1e73d133e1c745589933d7ef9718235915cc81
MD5 451668761c435ce0ff9030c9fac32699
BLAKE2b-256 74f8c971468e891dcb56da9403a49ea9fc743f952e2cbcfd89791b8f5af84f97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1e79893a20207ff671f13f5562c1f0aaece030e6e30252683f536286ba89864
MD5 de69baf938ed3a941dc470f4a37d6571
BLAKE2b-256 ed0165e471167ee47cd43f4eaa52f97dd62637100e3e3f4582c9cf8eb1f36473

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp311-cp311-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 ab2d56dfa13244164f0ba8125d8315c799fa0150459b88fc42ed5c1e3c04d47a
MD5 621db14fcf38452e729d16de89262ef6
BLAKE2b-256 e47fb5133c7804b75682d6658022c49331bbf57f61c0161fb799f1f735caa8e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 9527cf9c25fd655617620c8d6cb43216c0ce5779871ab7f83175421267b85199
MD5 58a25e7f0e73325c8a4480da734f4337
BLAKE2b-256 c780ce67780d8d579af1eb841c10035a4d58be47c77443dad6e15e095f273a00

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.10.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0e210107faf47d5965fcebc294c41891573adab36e5cf70731c57d0068fc7c5c
MD5 b141ab6abb863cd9375c0db0920ba2e4
BLAKE2b-256 9f7e93ac7ce56e0acf9531adfcd76cae1ab83b9b082d16fa34c48fb742db6792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ed5f8d6cb834c80fb813d233f9bfb60d3453b7450c80c0814b8e78c23d1ea8bf
MD5 0fd7f85a5c77da37b33b097e50a48424
BLAKE2b-256 c326a4c2b3b0949f139079400cb3f4a11d6b7512b097e0b581c06bfd274ecbd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a537e87ca600e59e532fbc770a60f9f3a5ebcff9bae8c60aceeec5beb326e1b8
MD5 2ce63961d454f90f4c11f066f854efab
BLAKE2b-256 483854228b55efe2a76a6140e46a2903e787beab9198a0a3c2fff791e3a10d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0aa8bdc2d78afadd191148726f094be81d5e4b76011f8fa9300f317e06a1b732
MD5 401b54d076c31f2ada2df986ad7fa690
BLAKE2b-256 72bf86cb985df21b1542eb7a0f9190903fd7edb06b27bd823018a80628dbe2eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 873db84afcbcf3f1ed0040ed9c5534bc1af5d647d13c04be12f3568421f5dd3e
MD5 09df29ee0d3f61fc0f5965fa9c911465
BLAKE2b-256 35beb8db7b5e14696ab6620c62358bf371cbc707612629e659fd073970b24878

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 312831c5bf50d9d432c11baf9bbd8d8961740608ccbc66fb1290d532aff21b18
MD5 7173805c66ff36bf0e53aec8deb6d524
BLAKE2b-256 efbd1330f7ddc7837b5ca40ec071e39d43ff80a5972abf68318b06a50109c911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7192492b09c1e4ad103e5cb98eb397f9b61a9037fce03e94cafe3238404dbe0f
MD5 f995609bdb8be1022128e276e686bd2e
BLAKE2b-256 ab19821f3f6b7c7232451bf7ef96eb4a05080c528ce18c055837e1425018b53f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e816d042f80dd630aaedbc75c21084da9e1d7ea5918619b8089c7edaedd57e8
MD5 d1d40eb4d5c78e5c2c6842b6562085ff
BLAKE2b-256 a476ed77e2aff9cdbe60c7316cdffe8f9b554ec096ac6a520f7cb20d5096808e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7cbf77664099345a25932ebe25d7bf9a330fc29acd9a909e8751ac0c42097fb3
MD5 d0016f005d24788cb40d0633956acef4
BLAKE2b-256 3d307d94fc2fb99a0e34040d4872a15ddb49a910994bc9e15f87e83021f4d34a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f76cb8d68d87fd05e56aba392c841d98eeb3ad378bcf5331b42bac7afee0d66
MD5 e720c914b7f571a97abfa3355317c884
BLAKE2b-256 6bbbe602ceca442d8e1dd14753f6dc6a010cfb7cf68ae3c1425b08a030d408ef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp310-cp310-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 daea90360d99ad06a3f686b3e628222ac3aa953b1982f13be5b69b2648c5e6bb
MD5 bf35cb5af88326003987e33131d7eee1
BLAKE2b-256 960f53b84b76d89f01740bc097cb19b4d1b743037635b3fcb23836ca834adeb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 7e2360b86b21e2aab8d4f1ce2551e2b731bc30610b7cc9324ea7517af4375b08
MD5 33108653123ed028c5d328f9820a64e9
BLAKE2b-256 a44c85f72cfba896894f1a35a40e6efb7036dd4d6d39534a1a778602c46d00de

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.10.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 391805e8a4ad731e729a22d8e14bad2d724915d28618be6c66dc7ccb421a13a0
MD5 36606d9547ca77e7992c593cd5e9f037
BLAKE2b-256 9f5e811ffefab2b0e8771fc0b39971543571820e85c0a9a9d4ed841cdb72317c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cd175beab2ac845a90d31bb4ea8e6c1e8be12efaf14b9918d0ab4828dd3c916b
MD5 bcd4a80005f5cf39bd4e479921e1edef
BLAKE2b-256 476f116a022be6f584b2d2ba8c55823a071f07c5b855bf7558f79fb0c10ddf3e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b1496f38e49c7960461002768c5f4c9ba9720fe259cd5c8b229cd0b3b0861844
MD5 9118528f0cc160ce6ab7104ee3817f1e
BLAKE2b-256 90b2f06f2f57b086537d0ec3996a771fe53acd4fdc10054365d4f66475cc5b75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 22b126893f53c789ad2253c9288a59362171a5bafbb865190c43d430dc805edb
MD5 9bc140cb2d99317e91b4f04812fcd381
BLAKE2b-256 44d2efcbd5832f5e8fa247af073b29e1d62c14c49a22768fe95e416504e2be11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c61755149ba534123ae08e6aa814aa34f47c6ba45a622ea98ddd7860b5312767
MD5 92e6bdbc039cf1a2d3771a5944a895a0
BLAKE2b-256 597e8ee4ffb8eda56d08a55d69d75b1889e64ac49a885b1bc72756d3d4432501

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d0b17e8d08a1c94efb91d8d389ec76a32fc3f85ba06626b5ef0c2d6bffcbe066
MD5 3185609649f71b0464526c8751b2aeb7
BLAKE2b-256 9ff81d9fc755e33c63f67291305146f3b0fc01d84cdc024957d57fb853e640c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6930eaf3aa2ba660ed3f64206902a534f454f9954e5de06354e20d890bebbd8a
MD5 4372713e1a2d93eca067cd2802dfb210
BLAKE2b-256 61e3929d574003ec7caf27e42a225105fa54d88cad72bad10556e1e803cf9332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 729a2fc4bc1564d164258eaf138ab4c03baa2080a5e3f91a9b3cb2d758248b8f
MD5 6be1d437f9e9f9028e2f9d3506c5cebb
BLAKE2b-256 85087b5503b35f8eb38e54c2cec6cf93bfe419b6058824b7c46ab2bba6e20ac7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 776eee60ca8ca3de83add0fb95a0034ac965a12590bb22ec09b05c87870ba401
MD5 1376903591506082b90b161a72549621
BLAKE2b-256 9983a726dd39194ea2c57e3490020fb01d9fbdd74d47d1deaa33d9344e5b5997

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 923000ea46def1bdded511b5792ec19866909797a05dc8f75342c6a9cacb2d66
MD5 81a14ed8da99a63a36d35b18ec0bf7de
BLAKE2b-256 95a4ff402316a20f663abd2ed4018c4867589ad12bdf05e24dfbd5dacb03112e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp39-cp39-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 7cecd7669b1ebee8ae90f5aa7d459770b6e79db7b95983aacc5b7392a050b9ab
MD5 21a2cfa741b980b6dbb93e9c63132723
BLAKE2b-256 299c1d262649aa9243521227190e570c2f1406383618685765ac05e7029a22c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d72a561d7c0738ae5d05a709c739b2953d05e18151539750ca9622f3438de041
MD5 2530eac001cb5f1f6e989995e27bab0c
BLAKE2b-256 327fb9c66f97959c03f20207a10da13d160eea5d75747f68eaf38947adee9b54

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.10.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 30c5df611afc5a9f2ad48babe2192f9cf0d12ed6c0dd5eb57b3538491c113737
MD5 452aeb3b7217c19470ebb6f81cac67f5
BLAKE2b-256 9dcc2619dc8edef9499163b6ab97ea82572106ce160c23c1d1f68983e1fce1b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e24d92d3a60d6eb19a1bd0f1f259369f478e0f34412a33e794da6cdaa36218be
MD5 6ec332eb5d1382d9b83f63b4a61bb9b3
BLAKE2b-256 f2434882b682c19aeade8802d652f8e4735863bc40943a7114a03d8c517aac9b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 66c0169457733a4dfe72be51dd359414eddd0738b15dda07827f18a10e9f6ab7
MD5 393cbcb0bbfcf9232840c703de5ea5aa
BLAKE2b-256 b4c841172822deb53d1b62592c9519f7522d1e5b3ce9801ce5abf37bcd850c79

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0b50848d1a614093c05c97d0fdf841ef547d8c087fbd06f6eafe8ef1d836d6c1
MD5 9d708ba9682bd25000c160d11c904663
BLAKE2b-256 db9ad8eb8adb62915b568bc17b36ac659cb3ef8ff464f636a682dd86a9746750

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9e72c1e06a20c10b9c5f7a3fe09ec46e0e208c65a69d2efb92a3e1b64443e6c3
MD5 7f52de02a52a53428ecaafc11b6bf338
BLAKE2b-256 ffd867f79dca1dd27054b6899de2368377aaa66525c1460e1d1dc9bd1a706911

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c6915a9b3dd16e016dba7e76070e667eca50530f957daa5b78c73abbf281b25
MD5 d48ed4c84d6d05125d979bd649f422e4
BLAKE2b-256 55e01b178290305a2c77402329c14bd6cc8a22882a77d2d13f1fff27ec8287e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fbba90179672707ab69ad19ef7d3c3f0a8e2f0a0579f0eb79649ffcdacf476d0
MD5 37dd46b3cabbc81301e227b7789a4d39
BLAKE2b-256 c2e1d013f1395ec2ed0ae5f279ffab6d1849ca333f3d0cd6554f67ae6e47a6fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba288fa675b2951e7898ebfdd8defa0e958e514d4d1cc7a5f6a8d627378c0c47
MD5 439226de88a376a67d9c12ee2261aa91
BLAKE2b-256 3c89d5f060b4f4859375232b57c746c83cfd7f98a469605a96540d4661a203c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ad7b5f4352f3dfcc481b008bce3b3931a485a93112deaa0a25bee2817d3f7b98
MD5 10058259202f778ef59621a253824c41
BLAKE2b-256 ae2ef9c03ca7e64f6150d222d9c292230efafd608618572c4b34c135bef62835

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1c1bfa2ca352bf43d34b7099f8ed675deb88113bd36c76880f4ca18fc0d3af50
MD5 e37cc98f4cf7c7d554a9c302ed2ecc76
BLAKE2b-256 f742cadfd834f6ea8e3e45afd1ade8c796c13bfa2faef8994b30397e70b45107

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp38-cp38-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 a04054b91afc41282a0a7426147654849136b37a41da86412d4ff5ba51b9cd2f
MD5 b24f41030d94e353d85eb18782fd5f78
BLAKE2b-256 5b75c76bc30ef177e67f09b2056efa01c56837d084d5e1770cdaa830d4e13457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp37-none-win_amd64.whl
Algorithm Hash digest
SHA256 aa45f0846773cb142252ccef66b096d917bb76c6ef9da1aa747e6b44aa318192
MD5 dd4d6a70df8fed70ed206fc1ef7c3360
BLAKE2b-256 08e02ebed0843a170da73639532fd36958b62081b559493fda6342394a9ccf64

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for pydantic_core-2.10.0-cp37-none-win32.whl
Algorithm Hash digest
SHA256 68992f78507e95ed63ca87b8b177785d9806cde34ca3a9f98382188dd11d8720
MD5 4fefc023c9145d67405384ab2400292b
BLAKE2b-256 3f0a3b96ecced657b62bdbeb6595bbe8697a64792e768606d3d828d8a8a91b6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1041d8fcd313c68b77dec6a16bf1d690008270b50eec11e96d89e1b4ba756b1
MD5 7d848d8410bafbcab26acb43d217dd9d
BLAKE2b-256 63db02d5d725f134f16215a774282651521bf85ed2fcc117db1ef4574ef42c63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bc0a33779fded534ff0b5d8ef766a1c94d3e740877ea8adab65cbf1878ba03b4
MD5 432420b7a6ce473c8a2693c68cd00b92
BLAKE2b-256 ca443a522437e6f40168389a35935d214e48dbf275b9e641a337d43cdce95b35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ab4d279c480e83c516e4e0b7b1f882f168f614d9c62e18ab779edef0cd13aaa9
MD5 bbaacdd209b6b3aa1476feccc860ffb6
BLAKE2b-256 7715a0130d2125c4e3d7949e0ae0c0acd2339ce27e4a22c159a1178eb2777cfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f32df1d8d383e1b729674ad1053d8f43f7ed79848496d3cb6ca81a906318317b
MD5 49bb96081739d414a26a707349cdcc12
BLAKE2b-256 5e8a206ffdc43bef6012aaee827d0e9b1f21aca4e0ca3bf9050b11684ee08e56

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8f919d17581fdf6e71ff3d3fe4b02ed32aaa0429e0b4346798de7a1361e098ef
MD5 4737daa7bf8ee30537e9911349dcd196
BLAKE2b-256 96bd9070026d12a3d5788b49a82d85b54fce0153d3edad7fbd45be8e13a3e748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp37-cp37m-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 100bbd622433d9d7ca8ee4fa63dfae90f9f38358558955173aed6ed56c573db8
MD5 22be2dacd303850c7de5023a95f5108b
BLAKE2b-256 62579fb525b5e69114d46a334cfa6ebfe2e123a6e3dc42fc80d65e11cfe2f6ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 82c3f0752547f928e4fcfb00151d6deb9124be7d35e012c567429fe93ec71b71
MD5 0d3f253bf8eb1bc196c557382a705367
BLAKE2b-256 6019e12bc991add81bf54d45c4b04758df1274f7e49bde257e853ba167ba6a21

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c394e9ed6f9e6f4af3618c34bc15f2af4237f7d1989b7f45588f8e855bc10e08
MD5 1a44ffb1a39698ee7918d2f2a7a18b9f
BLAKE2b-256 6c806a2c9f82abfc6bbc8aa5dc2c09597589e82c55628e8a2afb6fb4e86a619d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp37-cp37m-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb513fc74bdf5f649e6e855fc87ed9b81ee8b0be96717190f9e00683244f0616
MD5 c5a417683aece3b06b90354043a5bd3b
BLAKE2b-256 506bd61362af069f2f206a81a2b692bc110e6636d335160a991c097336a87d8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for pydantic_core-2.10.0-cp37-cp37m-macosx_10_7_x86_64.whl
Algorithm Hash digest
SHA256 f622778eb180cf7eba25e65d2fe37a57a0eadd8403df4c44606b56d204f686de
MD5 f04e6b60ca3f55ef0841fbe419c0ad74
BLAKE2b-256 cb2cb7543a304caaa994711cec9ce6021c8b43b4a3d01c4402b7f70012eb6439

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