Skip to main content

Core functionality for Pydantic validation and serialization

Project description

pydantic-core

CI Coverage pypi versions license

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

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

Example of direct usage

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

from pydantic_core import SchemaValidator, ValidationError


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

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

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

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

Getting Started

Prerequisites

You'll need:

  1. Rust - Rust stable (or nightly for coverage)
  2. uv - Fast Python package manager (will install Python 3.9+ automatically)
  3. git - For version control
  4. make - For running development commands (or use nmake on Windows)

Quick Start

# Clone the repository (or from your fork)
git clone git@github.com:pydantic/pydantic-core.git
cd pydantic-core

# Install all dependencies using uv, setup pre-commit hooks, and build the development version
make install

Verify your installation by running:

make

This runs a full development cycle: formatting, building, linting, and testing

Development Commands

Run make help to see all available commands, or use these common ones:

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 all          # to run to run build-dev + format + lint + test

Useful Resources

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

TBC (needs to be integrated into pydantic repository release process).

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.42.0.tar.gz (471.0 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.42.0-pp311-pypy311_pp73-win_amd64.whl (2.2 MB view details)

Uploaded PyPyWindows x86-64

pydantic_core-2.42.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded PyPymusllinux: musl 1.1+ x86-64

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

Uploaded PyPymusllinux: musl 1.1+ ARMv7l

pydantic_core-2.42.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded PyPymusllinux: musl 1.1+ ARM64

pydantic_core-2.42.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.2 MB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

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

Uploaded PyPymanylinux: glibc 2.5+ i686

pydantic_core-2.42.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded PyPymacOS 11.0+ ARM64

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

Uploaded PyPymacOS 10.12+ x86-64

pydantic_core-2.42.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded graalpy312macOS 11.0+ ARM64

pydantic_core-2.42.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded graalpy312macOS 10.12+ x86-64

pydantic_core-2.42.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded graalpy311macOS 11.0+ ARM64

pydantic_core-2.42.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl (2.1 MB view details)

Uploaded graalpy311macOS 10.12+ x86-64

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

Uploaded CPython 3.14tWindows ARM64

pydantic_core-2.42.0-cp314-cp314t-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14tWindows x86-64

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

Uploaded CPython 3.14tWindows x86

pydantic_core-2.42.0-cp314-cp314t-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARMv7l

pydantic_core-2.42.0-cp314-cp314t-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

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

Uploaded CPython 3.14tmacOS 11.0+ ARM64

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

Uploaded CPython 3.14tmacOS 10.12+ x86-64

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

Uploaded CPython 3.14Windows ARM64

pydantic_core-2.42.0-cp314-cp314-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

pydantic_core-2.42.0-cp314-cp314-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.1+ ARMv7l

pydantic_core-2.42.0-cp314-cp314-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

pydantic_core-2.42.0-cp314-cp314-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.12+ x86-64

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

Uploaded CPython 3.13Windows ARM64

pydantic_core-2.42.0-cp313-cp313-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

pydantic_core-2.42.0-cp313-cp313-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.1+ ARMv7l

pydantic_core-2.42.0-cp313-cp313-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

pydantic_core-2.42.0-cp313-cp313-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.12+ x86-64

pydantic_core-2.42.0-cp312-cp312-win_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows ARM64

pydantic_core-2.42.0-cp312-cp312-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86-64

pydantic_core-2.42.0-cp312-cp312-win32.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86

pydantic_core-2.42.0-cp312-cp312-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.1+ ARMv7l

pydantic_core-2.42.0-cp312-cp312-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

pydantic_core-2.42.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

pydantic_core-2.42.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (2.0 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

pydantic_core-2.42.0-cp312-cp312-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.12+ x86-64

pydantic_core-2.42.0-cp311-cp311-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows ARM64

pydantic_core-2.42.0-cp311-cp311-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

pydantic_core-2.42.0-cp311-cp311-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.1+ ARMv7l

pydantic_core-2.42.0-cp311-cp311-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

pydantic_core-2.42.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

pydantic_core-2.42.0-cp311-cp311-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.12+ x86-64

pydantic_core-2.42.0-cp310-cp310-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

pydantic_core-2.42.0-cp310-cp310-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.1+ ARMv7l

pydantic_core-2.42.0-cp310-cp310-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

pydantic_core-2.42.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

pydantic_core-2.42.0-cp310-cp310-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.12+ x86-64

pydantic_core-2.42.0-cp39-cp39-win_amd64.whl (2.1 MB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

pydantic_core-2.42.0-cp39-cp39-musllinux_1_1_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARMv7l

pydantic_core-2.42.0-cp39-cp39-musllinux_1_1_aarch64.whl (2.2 MB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

pydantic_core-2.42.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

pydantic_core-2.42.0-cp39-cp39-macosx_11_0_arm64.whl (2.0 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

pydantic_core-2.42.0-cp39-cp39-macosx_10_12_x86_64.whl (2.2 MB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0.tar.gz
  • Upload date:
  • Size: 471.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0.tar.gz
Algorithm Hash digest
SHA256 34068adadf673c872f01265fa17ec00073e99d7f53f6d499bdfae652f330b3d2
MD5 a9058ce121da7c40e1ac77382660a6b0
BLAKE2b-256 6a5df33a858a3b38ca2ecea6a12d749a8dae1052098cf61f88403a585bd64906

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 9d729a3934e0ef3bc171025f0414d422aa6397d6bbd8176d5402739140e50616
MD5 e35d92b1e13bc1c663354946dca29fe6
BLAKE2b-256 b6feb69a88e1eb26517ef0bca812d2e11376a100f8542093932239900cf57f3b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: PyPy, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-pp311-pypy311_pp73-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ed95136324ceef6f33bd96ee3a299d36169175401204590037983aeb5bc73de
MD5 e1b19d4c870055ce1f17b1be278cdeb7
BLAKE2b-256 f86f4e2a80cd62a9a863ad0ee725c690eab12d8385d5cd78815fbf24d6be54df

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: PyPy, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-pp311-pypy311_pp73-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 f6705c73ab2abaebef81cad882a75afd6b8a0550e853768933610dce2945705e
MD5 89a358ef0a613e3678e96e1647a4d359
BLAKE2b-256 d305032921a9917c771a48339ecfd8205e9d2fdcba2bb0246ac865546c9c6e4b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: PyPy, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-pp311-pypy311_pp73-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e5900b257abb20371135f28b686d6990202dcdd9b7d8ff2e2290568aa0058280
MD5 9a7caf6bbffefacc0a84e17569efef2a
BLAKE2b-256 7461d22801e80495e75795ad6d31988c4d8896056b3003432d90a48afefd4ca7

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32cc3087f38e4a9ee679f6184670a1b6591b8c3840c483f3342e176e215194d1
MD5 77e1bdcc960de235da52bb8bcf28d6ce
BLAKE2b-256 145ec94bbeb11b41bf36aa6d91a10a1514eb2c9ac3ad656cf164233c4eccf7ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e824d8f372aa717eeb435ee220c8247e514283a4fc0ecdc4ce44c09ee485a5b8
MD5 0c52a955611bbe9920eaada945d0f8ff
BLAKE2b-256 53a3ef88273ea7f7f1ba7ec0fca85303d98a31efd4f9f3ead8c20b95fc06ef41

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8757702cc696d48f9fdcb65cb835ca18bda5d83169fe6d13efd706e4195aea81
MD5 b74e1cda01c54fd20f8b69c37efff7fb
BLAKE2b-256 c712b8805d6eb0c15efd910ea8d07af2f7a4b6c1ef10546685f2c269e61bf5cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 495e70705f553c3b8f939965fa7cf77825c81417ff3c7ac046be9509b94c292c
MD5 c62b97972a37ede06d042d38a831c8c5
BLAKE2b-256 3441497a68994c9e08c17fb684219c8a0e9ccf0709df4b645f14bce0c227fe12

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: graalpy312, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 51e33cf940cddcad333f85e15a25a2a949ac0a7f26fe8f43dc2d6816ce974ec4
MD5 3fb35674b16037f37e03c1cf4f1f6512
BLAKE2b-256 cf895876cba8bb16a48336dc4ee717f3664ec072ddbcfdeb427b5c6da7715a0c

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: graalpy312, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad5cb8ed96ffac804a0298f5d03f002769514700d79cbe77b66a27a6e605a65a
MD5 177de6200c7bee521655c4db0ccbb4dc
BLAKE2b-256 314da991ecb2d7fb14c39adfc1f77bc7f08df6826bf9237bef14f5ecb2cf3b0e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: graalpy312, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41a702c2ac3dbbafa7d13bea142b3e04c8676d1fca199bac52b5ee24e6cdb737
MD5 49f8b5aa48aecf4af4cc9be345d78ea8
BLAKE2b-256 b1451d45a18a4421793eab4ae702a1430fca352e4e78b4517922f585244356c4

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: graalpy312, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4d7e36c2a1f3c0020742190714388884a11282a0179f3d1c55796ee26b32dba5
MD5 2c0a2905c5f239979d4936ca900220ee
BLAKE2b-256 e363e3ac5d1ee933094de51bcd4c89fc9a825600ea483e3b23cb056080049bc7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: graalpy311, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5e36849ca8e2e39828a70f1a86aa2b86f645a1d710223b6653f2fa8a130b703
MD5 4c5fd31f43b76cf78636050301b0ed59
BLAKE2b-256 8a927200c67303c706438bd64a470359a819e423b6b04a35ea4cbf398583db3f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: graalpy311, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe6b7b22dd1d326a1ab23b9e611a69c41d606cb723839755bb00456ebff3f672
MD5 870a0e2f5a8208b179811011969d378a
BLAKE2b-256 f0ce448a47c89fff51efd1e8a54445951d75ff9dd8a38576c3cffd0fd13785ec

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: graalpy311, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b8d9911a3cdb8062f4102499b666303c9a976202b420200a26606eafa0bfecf8
MD5 47e762d5456256185a9d04be331bfdca
BLAKE2b-256 f148d0ad5ff57321027562cfe09845c2480cda6bcfc5a7a994d8d95af7011b3d

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: graalpy311, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 53ab90bed3a191750a6726fe2570606a9794608696063823d2deea734c100bf6
MD5 16f56b5290b5a6319e4ff9d7749d1067
BLAKE2b-256 82d9207a15adc67dfcf8f64f170333b2e01c7b8a0335f56b3a172ec8fdfc9f4e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 a983862733ecaf0b5c7275145f86397bde4ee1ad84cf650e1d7af7febe5f7073
MD5 597227733c80cc6de79b03aaf5e99d3c
BLAKE2b-256 36c320b4089dee9421d0a39ce00c47e88dcfb691c3c34fbdf80abac49c904c0a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2db227cf6797c286361f8d1e52b513f358a3ff9ebdede335e55a5edf4c59f06b
MD5 ce795b29c7372c33716edb8fb5aaf219
BLAKE2b-256 65588bbcd65dc2dd90f71b0e5589ee605333d1d60702885774c044b69b832575

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 173de56229897ff81b650ca9ed6f4c62401c49565234d3e9ae251119f6fd45c6
MD5 3a9b600ec4b43e92f63fb089b069f956
BLAKE2b-256 a7313cbb0f162f9c70a700537f6a868c6bcf4b00e1fe4392d7df1dcd85a7e89e

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b8aa32697701dc36c956f4a78172549adbe25eacba952bbfbde786fb66316151
MD5 4a34cf02a9a0ee27e325c357c122c1be
BLAKE2b-256 9ca7153cd39593d42eb25f9c411a1fe37db2add541eb5d86e68982bfce1951ca

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-cp314-cp314t-musllinux_1_1_armv7l.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 0df0488b1f548ef874b45bbc60a70631eee0177b79b5527344d7a253e77a5ed2
MD5 560cd4134289676166617a5845ddfe97
BLAKE2b-256 5bd9957d75d5c3d8cf00dd12861c6468eeaa7097f532270b495d7ae2533564ea

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14t, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b2b448da50e1e8d5aac786dcf441afa761d26f1be4532b52cdf50864b47bd784
MD5 3d3675eaef0e2b924f61a0365c898957
BLAKE2b-256 e147383698ab0f81dba082de56319b978b82ba4581dba1bf38acda9f84c99200

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 020cfd7041cb71eac4dc93a29a6d5ec34f10b1fdc37f4f189c25bcc6748a2f97
MD5 ff9d98ea1f304d6361f718a361c06819
BLAKE2b-256 7880cbacb7009cfb0bfb4099f519d52e8552f0fb9fd9f3981825e187465aa30f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6c0181016cb29ba4824940246606a8e13b1135de8306e00b5bd9d1efbc4cf85
MD5 5f7beb8d12c2e1ac6e4265b6ded9b1ca
BLAKE2b-256 61a58ac5e0e736d928d8569d2c9296ec3a043cbc45ad3d903111659482fe1699

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ad5dbebfbab92cf0f6d0b13d55bf0a239880a1534377edf6387e2e7a4469f131
MD5 93fefa97b375c85364e2d3fe9c1ec348
BLAKE2b-256 038dba913ee0dfa755cd8a61e0f7e6f94611077ed66fdb7070531a0c43d0b125

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 133fccf13546ff2a0610cc5b978dd4ee2c7f55a7a86b6b722fd6e857694bacc5
MD5 2d7b6200e5a22bfd0714f74a43a7d7e2
BLAKE2b-256 76c690dbeda0236f560a45ce905a21851a42129cd7dd867796c037dfed230f34

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7a77c7a8cedf5557a4e5547dabf55a8ec99949162bd7925b312f6ec37c24101c
MD5 391b895ca93b816c812fc9d91db78638
BLAKE2b-256 d0104a86b575eed55ab0db3fd8f0073f101704206db6ad4c9f935fd6182b3a15

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f73c6de3ee24f2b614d344491eda5628c4cdf3e7b79c0ac69bb40884ced2d319
MD5 0e5127b7ae782c2d7f29cea9865638e8
BLAKE2b-256 61a56c13c65776837ea0a8fa1bbbce883f808ae946bcf2ba740f4ca3c6dab328

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 baeae16666139d0110f1006a06809228f5293ab84e77f4b9dda2bdee95d6c4e8
MD5 dcdb0464a5cbbf51785e8030381f879f
BLAKE2b-256 d06afe75d3834568e724124f47773df3602e873e87f34111bb6705e02a95e59f

See more details on using hashes here.

File details

Details for the file pydantic_core-2.42.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f4d1670fbc5488cfb18dd9fc71a2c7c8e12caeeb6e5bb641aa351ac5e01963cf
MD5 900312b233a8a8dcd2cfdd546d30ba37
BLAKE2b-256 bdf3c6267535c84bdd2dd9e5ecdb0cc893868d49756dbcf457591d86dc0649e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 9a6fce4e778c2fe2b3f1df63bfaa522c147668517ba040c49ad7f67a66867cff
MD5 93cd57a99adefa5681c30e10e8e940e8
BLAKE2b-256 9f9dd09538c48a4765fd25f940eedd7bcdc8f30ef05086db439e406f42adae2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 232d86e00870aceee7251aa5f4ab17e3e4864a4656c015f8e03d1223bf8e17ba
MD5 7c03ba1f468f038c4e9ce4922cc70a54
BLAKE2b-256 46f5b55d87b4239f42c761f27d63cbfbaf32d63f8303898f625cc9a4fc83c950

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 a10c105c221f68221cb81be71f063111172f5ddf8b06f6494560e826c148f872
MD5 8a3b70afa75115b6fbc8328975ace9b7
BLAKE2b-256 61b6cf3b7486982a7fed38ccc283ca0f762023ba48e5f782d49c71b1de6d1885

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a8edee724b527818bf0a6c8e677549794c0d0caffd14492851bd7a4ceab0f258
MD5 cce835d211e430bb77fcac2d8f488a75
BLAKE2b-256 711e125d956fd72743f7b655ce259aa0de1343d295016fb307b6787c0a797f2c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 d2e362dceeeb4d56fd63e649c2de3ad4c3aa448b13ab8a9976e23a669f9c1854
MD5 28f1959cff22621d36df896bc77853c6
BLAKE2b-256 5ffe4544b8c3e706e5315e23fee40310338bc4397a85e2a19b2d4892c9d0bbdc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 aaef75e1b54366c7ccfbf4fc949ceaaa0f4c87e106df850354be6c7d45143db0
MD5 17f1bde7d2785f7d52ded9169e4749e3
BLAKE2b-256 f21bdfdeabfa0d3ce86293c599069ab1ce0b66bc2602cb9f565efff8957320a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f17739150af9dc58b5c8fc3c4a1826ff84461f11b9f8ad5618445fcdd1ccec6
MD5 a1fa58e1048870cfa61096420936a588
BLAKE2b-256 650c7e7f7d2f7873753bb4991b3570129de2362bf9a7327cb351e7eb87b50d72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3060192d8b63611a2abb26eccadddff5602a66491b8fafd9ae34fb67302ae84
MD5 60ae87723cf7f704f649547b3bb92a24
BLAKE2b-256 919544242f6a0320d0dbc6d9f0e32454af977498986c8265eafc173094098d57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e45d83d38d94f22ffe9a0f0393b23e25bfefe4804ae63c8013906b76ab8de8ed
MD5 528db5ca5406e3f90cfaba0d4e3b884b
BLAKE2b-256 c5fbc2d6bab7ba57793c6aa520773a919f03af399d5716c0911f9c2e4abf66a5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a97fc19afb730b45de55d2e80093f1a36effc29538dec817204c929add8f2b4a
MD5 17b61c45bc2e1c324ed94508ea53920e
BLAKE2b-256 3b0b877d5fda1fae5ece9863564a074f95371d05d20f2f51415b431c7313c499

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4c45582a5dac4649e512840ad212a5c2f9d168622f8db8863e8a29b54a29dfd
MD5 b064caea0404b55c227bfbff4609e941
BLAKE2b-256 29e653c06035e689dd318f7e9e19d617ad5bf671ff3781ea13291f1b0f9f2b32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d14e4c229467a7c27aa7c71e21584b3d77352ccb64e968fdbed4633373f73f7
MD5 fa0ab64be64c61b0171eaa7ba11eb619
BLAKE2b-256 7473f17751005347006a7b16d7264d1d386c3512dc45a4d4eff7369cba1e0082

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 129d5e6357814e4567e18b2ded4c210919aafd9ef0887235561f8d853fd34123
MD5 d164414f16395f6c3c05e7c423e11c20
BLAKE2b-256 e995e9160fc5971bcf214b21ddcf512ef13072bf18be2711f97555cfe8a66621

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 de4c9ad4615983b3fb2ee57f5c570cf964bda13353c6c41a54dac394927f0e54
MD5 e46df35041c24845fe43f0a1dab98cf2
BLAKE2b-256 f8d4daf7fa12562a2e78b41886ec56190098b0549e030c9f46ec8bf0423d44da

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5e0a65358eef041d95eef93fcf8834c2c8b83cc5a92d32f84bb3a7955dfe21c9
MD5 e0b3be9ef0f977aa9b415d7012766fe0
BLAKE2b-256 acd67d16374c2f252bb9e416940f40472aa03f64148e2cc5a6f2549448611be9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d34b481a8a3eba3678a96e166c6e547c0c8b026844c13d9deb70c9f1fd2b0979
MD5 c09b1e3a055f5b225db7d3f43c9f33d9
BLAKE2b-256 b2737e8f6f696127a2ff684f393b4d8a5ba733ab68b04698eaac8c0da8f3ca18

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1de0350645c8643003176659ee70b637cd80e8514a063fff36f088fcda2dba06
MD5 8b057e036c38fc045ab08aaa41c15697
BLAKE2b-256 58f768fdf9680d716a24e5b38418a852c204a773b35eb27e74a71322cb2a018e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b22af1ac75fa873d81a65cce22ada1d840583b73a129b06133097c81f6f9e53b
MD5 b8a7d04cad6aa3d7361542513790e9c9
BLAKE2b-256 3a93e2b79095d8fd26f369263beb47e8cdfe7b23a1264d97e1a7c268625254b7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 9c28b42768da6b9238554ae23b39291c3bbe6f53c4810aea6414d83efd59b96a
MD5 9886a16186021ec792c93d38b9257bc1
BLAKE2b-256 6ca17b0a5f9aa56f1c03334d3bbc5add60c9b2de99ff115003670dc629cb9ac3

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 032f990dc1759f11f6b287e5c6eb1b0bcfbc18141779414a77269b420360b3bf
MD5 771ddb531ab3e7b9acaafc4a6e5b830a
BLAKE2b-256 d0c8dee17aee2215e2eb63772ae1ea59c256524e518b9cab724ede6c3757d666

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5f352ffa0ec2983b849a93714571063bfc57413b5df2f1027d7a04b6e8bdd25
MD5 985d8b4f23c64a74edc6d8366ca714ec
BLAKE2b-256 bf25dd3e68362b4d7983bec8ccd421f06c47360aa65763774426ccf6377c8d4a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd695305724cfce8b19a18e87809c518f56905e5c03a19e3ad061974970f717d
MD5 bb1a9240963a6229fc4be474129b4529
BLAKE2b-256 2a0ce5ba96473bfc63cccfac63a46c79f8cba8c87c75ac89c7f0b5cdb7888a81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4a433bbf6304bd114b96b0ce3ed9add2ee686df448892253bca5f622c030f31
MD5 8175d238da3e9cd1c3e09b6c3ed58de2
BLAKE2b-256 05054074c6f54739ef5cc664ec35d42dcc904dece524e8efe3190c066c4e4da1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4762081e8acc5458bf907373817cf93c927d451a1b294c1d0535b0570890d939
MD5 9ed316677d64d803e580f159f1eed272
BLAKE2b-256 e0f140470e480edcc165e445ebc0c42b2358a76ba96b0ab966cab75d75fdafc4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f905f3a082e7498dfaa70c204b236e92d448ba966ad112a96fcaaba2c4984fba
MD5 e142d4995d26f817aa7c5884aa220879
BLAKE2b-256 928f83901df720fe8e2ee87bf3d9c4b30b39b7e1d9e7cf280d0a8f4fc3a8b82a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e61f2a194291338d76307a29e4881a8007542150b750900c1217117fc9bb698e
MD5 450b97c3dca18ed6727d2c7a3fd82660
BLAKE2b-256 270118f7b79b09b442fa5ba119b74e2dbccc2488f1cc37bf24d8a044fadeb546

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c042694870c20053b8814a57c416cd2c6273fe462a440460005c791c24c39baf
MD5 0a1b6bbee32f79ea10b5ba7c2695031d
BLAKE2b-256 eba7dfba778590b8b7fc2660320d6124b666b902fe7f3bb60f79bfd75f8d6cfb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02fd2b4a62efa12e004fce2bfd2648cf8c39efc5dfc5ed5f196eb4ccefc7db4e
MD5 1ac229d354c5de80f9e30e88ca2c7c19
BLAKE2b-256 d973f1ca9122a23924bb1b09e15b09e48dcf1ccbef8eb7151ffde8ba7723350e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e2369cef245dd5aeafe6964cf43d571fb478f317251749c152c0ae564127053a
MD5 9aa426de40c9668c6fc9e9a1bca86634
BLAKE2b-256 e947727440962563879036c6778bda7c236415a4149e8cf945dd6c45382b0dda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 475a1a5ecf3a748a0d066b56138d258018c8145873ee899745c9f0e0af1cc4d4
MD5 d6e3f21986f66db20dc4ad640cc51ad4
BLAKE2b-256 feae16b0fe9138589ba1efbe24269e9f8f9a1b58edf4a88cdc005581abacad34

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 acacf0795d68e42d01ae8cc77ae19a5b3c80593e0fd60e4e2d336ec13d3de906
MD5 399828309f4bd41ee1c38c46368fc1f0
BLAKE2b-256 34e4489c41f48fbe6f1816ba3311358c97b86cb3555d4c5acb660fc8fda0077d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 1be705396e480ea96fd3cccd7512affda86823b8a2a8c196d9028ec37cb1ca77
MD5 4c27ef17cc4c44d44c823976d2a61fb3
BLAKE2b-256 31d794f30adc3d3a694fb19344a54f86ec06a7bae8d06ec6a86acafaa98ec9b8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 856f0fd81173b308cd6ceb714332cd9ea3c66ce43176c7defaed6b2ed51d745c
MD5 dbf8d72fe0f62d8cfb7f8785a285e920
BLAKE2b-256 936c9e4411a497094676a7b7a889fc8e307aabed805c8500d136a535ff24ee26

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e0364f6cd61be57bcd629c34788c197db211e91ce1c3009bf4bf97f6bb0eb21f
MD5 0d5d9a06f5ec6918df9d01c08d29f1b9
BLAKE2b-256 a645e188c551879502a13c6f01400907d0cbdb30058442957ee564a6e5d1de80

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 638f04b55bea04ec5bbda57a4743a51051f24b884abcb155b0ed2c3cb59ba448
MD5 2a1a85d27c8709a0434e91ab90ace3bb
BLAKE2b-256 72efa7650ca71edc1e483cef086cf43baf0d59230cf230f3e0df8d3c0a9c6a86

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8ab80ae93cb739de6c9ccc06a12cd731b079e1b25b03e2dcdccbc914389cc7e0
MD5 09626eb959a9d5dd7d92ba2474997e7f
BLAKE2b-256 fbc77d476348f195e78d99742194c319e09d228317227a0bf74edf6a9e4fc514

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 606f80d8c61d4680ff82a34e9c49b7ab069b544b93393cc3c5906ac9e8eec7c9
MD5 cd064d04f8575e6683ea0d6fcf4dfed9
BLAKE2b-256 29093c03f6f18e0a09d33e014c38004306c330717503b079bba524090e01533d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6380214c627f702993ea6b65b6aa8afc0f1481a179cdd169a2fc80a195e21158
MD5 cfeb42d3aebb854f3e50a03d90a8fbc4
BLAKE2b-256 6dd703d2f2e365079efd6030889ca5788e687ce8e0096947bc119d84ab760be4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 13a7f9dde97c8400de559b2b2dcd9439f7b2b8951dad9b19711ef8c6e3f68ac0
MD5 4ff6e9fffc7c93bfebf673397c48c805
BLAKE2b-256 d7f70e834e423af743c2fcab85ffa71c4d2b454dcf619bc48cef245ba10f3761

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ec72ba5c7555f69757b64b398509c7079fb22da705a6c67ac613e3f14a05f729
MD5 99b5386d945a44d9271d700ad704e00c
BLAKE2b-256 9ef6d56857169a5a0a520e0c9b147c37535edab2cdc330243fd4c9af9f450853

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c43088e8a44ccb2a2329d83892110587ebe661090b546dd03624a933fc4cfd0d
MD5 12a44d8b8fee3a67aa6051e70e91918b
BLAKE2b-256 5d2d7b7058842d5d9b7008cd1872f8ec38ac46b333170e8262ac28499675e156

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a11b9115364681779bcc39c6b9cdc20d48a9812a4bf3ed986fec4f694ed3a1e7
MD5 6beca163c1ff0f04e614639b1a8b7b4d
BLAKE2b-256 e323d700e38114f82de04b958eb4fd597f60adbd96f528367b70272d2be42e4c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 3d46bfc6175a4b4b80b9f98f76133fbf68d5a02d7469b3090ca922d40f23d32d
MD5 db76298e44c12e6d64f961035623733b
BLAKE2b-256 2f3b1b230be0153f5ad2fbafc47d80ede7b831d1dc811710de3d040f9367a4c9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4631b4d1a3fe460aadd3822af032bb6c2e7ad77071fbf71c4e95ef9083c7c1a8
MD5 d23c6dfec16ce2305b584bf648d68d66
BLAKE2b-256 f260ea9ff9b2ae7dc1c8959a364430761f0cf0a8ec35aa28ab0fe8f09e158720

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1d9d45333a28b0b8fb8ecedf67d280dc3318899988093e4d3a81618396270697
MD5 e2d602b97a9a0cbfd9ec45d646193ed3
BLAKE2b-256 e59e8dda01a0a79e8567dcb7f716b96e28d0e4efab6dbdf0ecbf9785ed5fa8f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c6d36841b61100128c2374341a7c2c0ab347ef4b63aa4b6837b4431465d4d4fd
MD5 72db5067f6e9225c2a1aed4e206f0275
BLAKE2b-256 3e18bb06165399caf55d64e831fe1a780c379bee288da86b2e21c7862f8cefda

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 9577eb5221abd4e5adf8a232a65f74c509b82b57b7b96b3667dac22f03ff9e94
MD5 e91541e3a05fc8a6b7383659835cc113
BLAKE2b-256 04c96d65116244e6ded15ab2c629450daea88b7607bab111a422702a998a06a7

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bdebfd610a02bdb82f8e36dc7d4683e03e420624a2eda63e1205730970021308
MD5 b6e5ff30377503efc224736a1ecac83a
BLAKE2b-256 cbe51723c8fd61ee91c0beaf3195c765f190efd01a316157cdacaa73678d54ab

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63a4e073f8def1c7fd100a355b3a96e1bbaf0446b6a8530ae58f1afaa0478a46
MD5 464e82d226e4f278842c6152d687eda6
BLAKE2b-256 55bffc9972beaec7be268ed2bd8f0b1e531bc817f76dff1eb81e9653a1f1532e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4035f81e7d1a5e065543061376ca52ccb0accaf970911ba0a9ec9d22062806ca
MD5 7f1e2da54de940c079404ca3c201038f
BLAKE2b-256 1a39485429551f52ece3463d0d6d8012583e46aeeeef9a8c3e3e6ade9afa7114

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 557a6eb6dc4db8a3f071929710feb29c6b5d7559218ab547a4e60577fb404f2f
MD5 a78b8dd6b8e317fdf0eb9725511a0b75
BLAKE2b-256 c5315d3be1bd142086d4d906cdbfe1df212592f35ea208075f4922e319e43dd6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e92592c1040ed17968d603e05b72acec321662ef9bf88fef443ceae4d1a130c2
MD5 29cf07558db33cf5ebe853a2115af373
BLAKE2b-256 15e6a15768c4c29b8dd85b0e6bb8398a9304fd7cd6585494e9f8f02e19822741

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fe777d9a1a932c6b3ef32b201985324d06d9c74028adef1e1c7ea226fca2ba34
MD5 8fc412bf6d02cc494e7ea0d878ee8f4e
BLAKE2b-256 5d472da465431ab0f42b41f30b8c74152e9f79b6f589505c01298f3034f81948

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd8469c8d9f6c81befd10c72a0268079e929ba494cd27fa63e868964b0e04fb6
MD5 bea554931dd1ffa1a16963f4232937af
BLAKE2b-256 a9f8d3eb4e8c8859d5b07c6484295d416f9292e141447d779d71006fc53d8294

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff8e49b22225445d3e078aaa9bead90c37c852aee8f8a169ba15fdaaa13d1ecb
MD5 1785ff375d64b23b802c20886ce82395
BLAKE2b-256 becdabe70fbc4fd2d9c0d011e5d34096882d760217f5ac7d8c4c4cea17d4f238

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a1159b9ee73511ae7c5631b108d80373577bc14f22d18d85bb2aa1fa1051dabc
MD5 9109727783945235d7dc155ccb0c8561
BLAKE2b-256 c79b6d345e05f7a42264c4400a9e006de4bd34c5ce44e4f7c41f7f0e054a94dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 77f0a8ab035d3bc319b759d8215f51846e9ea582dacbabb2777e5e3e135a048e
MD5 6f427e9e6d2079c71ada95eb43aca713
BLAKE2b-256 8106c5a5dccfb6a8be0944bb7ee38fd7f3a520214c4f745f7ad5c0caf90a3e0e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ff9f0737f487277721682d8518434557cfcef141ba55b89381c92700594a8b65
MD5 d32ce144acbeb10ab44716e76439c60d
BLAKE2b-256 271dfbf2b65d3e365f01879f9011c631314f14d73686ebbce34ac1feba921c2b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 eec64367de940786c0b686d47bd952692018dd7cd895027aa82023186e469b7d
MD5 4fd24d8c53eaf69371b7b9fc412c133e
BLAKE2b-256 4254977662c385fb634929854cc2ad920c34c9ea371ee5052f27692722724b01

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 36067825f365a5c3065f17d08421a72b036ff4588c450afe54d5750b80cc220d
MD5 d1b2b92a9299aa4c299c77cf82baac0b
BLAKE2b-256 715db958fc569862ee042bf0858c1b0df9b12cf47c87ad15949e3dcc913e6907

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a4396ffc8b42499d14662f958b3f00656b62a67bde7f156580fd618827bebf5a
MD5 a43fa110d6201c3e7800054e08251559
BLAKE2b-256 882a56705e70b4c71fba2a9f03ff95a1e02ef804d0d85a1fd7325961ce733c04

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2a70fe4db00ab03a9f976d28471c8e696ebd3b8455ccfa5e36e5d1a2ff301a7
MD5 5035ff23a51a37c3eca2ca62800206a1
BLAKE2b-256 3ae81ae993b7533cc409dba658a885b9c0b84cb612184e256f79bba63c6f4ebe

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa82dec59f36106738ae981878e0001074e2b3a949f21a5b3bea20485b9c6db4
MD5 c2cf67fe7144824a82e61bdfc77f7d05
BLAKE2b-256 0e878d542c59ad566ba57465f998dc63d8abbc18c3cfc13050ddfe4f88b0452d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 272fab515dc7da0f456c49747b87b4e8721a33ab352a54760cc8fd1a4fd5348a
MD5 9398237fa2a4f75f3805fe328b3a4e3b
BLAKE2b-256 14cde9eb86b5525c289b4b44fca20a8a3aad55133ceb00b0530002017dda5ecd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 def66968fbe20274093fd4fc85d82b2ec42dbe20d9e51d27bbf3b5c7428c7a10
MD5 1a3a8c3e19284f6f9e040b235f80978a
BLAKE2b-256 065e26be378164218158542728fa93903690f5394492f3ce2a889e4195c083cd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e459e89453bb1bc69853272260afb5328ae404f854ddec485f5427fbace8d7e
MD5 8e9cdda325f828b48c9cb61c94cae906
BLAKE2b-256 1d86801b46b223c580c3d1454dbc5ad124f76aaa1bc97cb3c318d4a237f48c61

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b4c0f656b4fa218413a485c550ac3e4ddf2f343a9c46b6137394bd77c4128445
MD5 0df65894b6f11716a301bf4ef43bdff7
BLAKE2b-256 3c2ddc45f75eb0f210e433c59b4d3c43650788e679ab6276390d7899d84f7103

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c9d04d4bd8de1dcd5c8845faf6c11e36cda34c2efffa29d70ad83cc6f6a6c9a8
MD5 ea46189134723b1a05dd8e1c96c3bc5c
BLAKE2b-256 9f49585e092697f47e3891db7a5c9959bedd8bc68fa60d27d66735c5f1a8e212

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0ae7d50a47ada2a04f7296be9a7a2bf447118a25855f41fc52c8fc4bfb70c105
MD5 939f3c54cb9d8c80a2d1854653560802
BLAKE2b-256 81fa0a34d757daeb36ff19752e226583452956372b61c10199750a761ef3b901

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 f93228d630913af3bc2d55a50a96e0d33446b219aea9591bfdc0a06677f689ff
MD5 c18e0f54b2d99542f1331c737ae38c7b
BLAKE2b-256 7c141d2a2fa95a398b267444cd356f544472f5c0b38dd8a816f4c4c30d61e9e5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 26ab24eecdec230bdf7ec519b9cd0c65348ec6e97304e87f9d3409749ea3377b
MD5 89204dffc84907e81ed59e246b14632b
BLAKE2b-256 29530b3b7e4fe886105cde8a61217f6f2629a51384f0213c8e72db73041f7508

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-musllinux_1_1_x86_64.whl
  • Upload date:
  • Size: 2.4 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dfedd24ce01a3ea32f29c257e5a7fc79ed635cff0bd1a1aed12a22d3440cb39f
MD5 d2e971c2539f8b68a4478327ac7fe6d2
BLAKE2b-256 db99cd0eee3034f4eda8f38e26c747bbe04f20bd945df46c2dace937cdfd969f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-musllinux_1_1_armv7l.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-musllinux_1_1_armv7l.whl
Algorithm Hash digest
SHA256 c6ae4c08e6c4b08e35eb2b114803d09c5012602983d8bbd3564013d555dfe5fd
MD5 57087fa168d84add5b1408ba8d4a518d
BLAKE2b-256 437c179ffb9b1ec7c91f36cdd4749e171e218d4428c43cb950bf1c28e1592641

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-musllinux_1_1_aarch64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cf89cee72f88db54763f800d32948bd6b1b9bf03e0ecb0a9cb93eac513caec5f
MD5 1f4e330e8845ff763e91ad85ed7d5c77
BLAKE2b-256 a693696ea46356800c7a5f2e150d4d9dbd8b187447102cbfaa8da64a32ed9334

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4e7adfd7794da8ae101d2d5e6a7be7cb39bb90d45b6aa42ecb502a256e94f8e0
MD5 f8d7c3d3f011ea8ae203be9034d1aadd
BLAKE2b-256 b9b2e9fd8ee2eefc239bf4d621f7737e958f95c37e0250918fe1fbae78e5c285

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aec13272d859be1dd3344b75aab4d1d6690bfef78bd241628f6903c2bf101f8d
MD5 cd4374c79ce2ae1cbb60698874955b61
BLAKE2b-256 79d703a43ee76b08bd98c18dc9ac077c68d153021022740e16a8069d86a41b27

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5ee7047297892d4fec68658898b7495be8c1a8a2932774e2d6810c3de1173783
MD5 0746be8b46a43e15e23eac8ca6213ad0
BLAKE2b-256 dd65cdff2667c1c72732cbd80a672b0456520dd5f36060b267b95ca617d06de9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 15df82e324fa5b2b1403d5eb1bb186d14214c3ce0aebc9a3594435b82154d402
MD5 b3b0ad653c27b5f47b84606c01197b19
BLAKE2b-256 9a70bed89a42c28e19a8835e605126746090c9f5cbaabaf0ea2ba5dabef61a67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3eab236da1c53a8cdf741765e31190906eb2838837bfedcaa6c0206b8f5975e
MD5 6005c7eecdc9f9982bcdb62c635201a6
BLAKE2b-256 ba143dc09a13968d3decf035540ee1bb6fea5bb8df139c438828212862d4832b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0e3cfcacb42193479ead3aaba26a79e7df4c1c2415aefc43f1a60b57f50f8aa4
MD5 9038e559761329c508beb0d794ffda54
BLAKE2b-256 db35156bebaef8d0e8776ed754a4f4f477f4fb24f055f3cce95e41330bc16961

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ff69cf1eb517600d40c903dbc3507360e0a6c1ffa2dcf3cfa49a1c6fe203a46a
MD5 a2ad1ef5a58db90af4299c66416c7e16
BLAKE2b-256 d92a19de5574d4629eff4290e45de42928a1f608413a3be7807c53abd7a774ee

See more details on using hashes here.

File details

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

File metadata

  • Download URL: pydantic_core-2.42.0-cp39-cp39-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.10.4 {"installer":{"name":"uv","version":"0.10.4","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for pydantic_core-2.42.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fc0834a2d658189c89d7a009ae19462da1d70fc4786d2b8e5c8c6971f4d3bcc1
MD5 421102e052dfbff5061f5a1830e66533
BLAKE2b-256 1bdec65f66c7347c400c391431cc9f3f4977155b9740209488a9527c6b52d646

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