Skip to main content

jiter

CI pypi versions license

This is a standalone version of the JSON parser used in pydantic-core. The recommendation is to only use this package directly if you do not use pydantic.

The API is extremely minimal:

def from_json(
    json_data: bytes,
    /,
    *,
    allow_inf_nan: bool = True,
    cache_mode: Literal[True, False, 'all', 'keys', 'none'] = 'all',
    partial_mode: Literal[True, False, 'off', 'on', 'trailing-strings'] = False,
    catch_duplicate_keys: bool = False,
    float_mode: Literal['float', 'decimal', 'lossless-float'] = 'float',
) -> Any:
    """
    Parse input bytes into a JSON object.

    Arguments:
        json_data: The JSON data to parse
        allow_inf_nan: Whether to allow infinity (`Infinity` an `-Infinity`) and `NaN` values to float fields.
            Defaults to True.
        cache_mode: cache Python strings to improve performance at the cost of some memory usage
            - True / 'all' - cache all strings
            - 'keys' - cache only object keys
            - False / 'none' - cache nothing
        partial_mode: How to handle incomplete strings:
            - False / 'off' - raise an exception if the input is incomplete
            - True / 'on' - allow incomplete JSON but discard the last string if it is incomplete
            - 'trailing-strings' - allow incomplete JSON, and include the last incomplete string in the output
        catch_duplicate_keys: if True, raise an exception if objects contain the same key multiple times
        float_mode: How to return floats: as a `float`, `Decimal` or `LosslessFloat`

    Returns:
        Python object built from the JSON input.
    """


def cache_clear() -> None:
    """
    Reset the string cache.
    """


def cache_usage() -> int:
    """
    get the size of the string cache.

    Returns:
        Size of the string cache in bytes.
    """

Examples

The main function provided by Jiter is from_json(), which accepts a bytes object containing JSON and returns a Python dictionary, list or other value.

import jiter

json_data = b'{"name": "John", "age": 30}'
parsed_data = jiter.from_json(json_data)
print(parsed_data)  # Output: {'name': 'John', 'age': 30}

Handling Partial JSON

Incomplete JSON objects can be parsed using the partial_mode= parameter.

import jiter

partial_json = b'{"name": "John", "age": 30, "city": "New Yor'

# Raise error on incomplete JSON
try:
    jiter.from_json(partial_json, partial_mode=False)
except ValueError as e:
    print(f'Error: {e}')

# Parse incomplete JSON, discarding incomplete last field
result = jiter.from_json(partial_json, partial_mode=True)
print(result)  # Output: {'name': 'John', 'age': 30}

# Parse incomplete JSON, including incomplete last field
result = jiter.from_json(partial_json, partial_mode='trailing-strings')
print(result)  # Output: {'name': 'John', 'age': 30, 'city': 'New Yor'}

Catching Duplicate Keys

The catch_duplicate_keys=True option can be used to raise a ValueError if an object contains duplicate keys.

import jiter

json_with_dupes = b'{"foo": 1, "foo": 2}'

# Default behavior (last value wins)
result = jiter.from_json(json_with_dupes)
print(result)  # Output: {'foo': 2}

# Catch duplicate keys
try:
    jiter.from_json(json_with_dupes, catch_duplicate_keys=True)
except ValueError as e:
    print(f'Error: {e}')

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jiter-0.16.0.tar.gz (176.4 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

jiter-0.16.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.9 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ x86-64

jiter-0.16.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.7 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ ARM64

jiter-0.16.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (304.7 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

jiter-0.16.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl (303.1 kB view details)

Uploaded graalpy312macOS 10.12+ x86-64

jiter-0.16.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (346.5 kB view details)

Uploaded graalpy311manylinux: glibc 2.17+ x86-64

jiter-0.16.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.8 kB view details)

Uploaded graalpy311manylinux: glibc 2.17+ ARM64

jiter-0.16.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (310.2 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

jiter-0.16.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl (304.5 kB view details)

Uploaded graalpy311macOS 10.12+ x86-64

jiter-0.16.0-cp314-cp314t-win_arm64.whl (190.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

jiter-0.16.0-cp314-cp314t-win_amd64.whl (200.4 kB view details)

Uploaded CPython 3.14tWindows x86-64

jiter-0.16.0-cp314-cp314t-win32.whl (206.5 kB view details)

Uploaded CPython 3.14tWindows x86

jiter-0.16.0-cp314-cp314t-musllinux_1_1_x86_64.whl (549.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

jiter-0.16.0-cp314-cp314t-musllinux_1_1_aarch64.whl (517.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

jiter-0.16.0-cp314-cp314t-manylinux_2_31_riscv64.whl (353.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

jiter-0.16.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (350.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

jiter-0.16.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (373.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

jiter-0.16.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (460.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

jiter-0.16.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

jiter-0.16.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

jiter-0.16.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (387.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

jiter-0.16.0-cp314-cp314t-macosx_11_0_arm64.whl (316.7 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

jiter-0.16.0-cp314-cp314-win_arm64.whl (191.5 kB view details)

Uploaded CPython 3.14Windows ARM64

jiter-0.16.0-cp314-cp314-win_amd64.whl (198.2 kB view details)

Uploaded CPython 3.14Windows x86-64

jiter-0.16.0-cp314-cp314-win32.whl (204.6 kB view details)

Uploaded CPython 3.14Windows x86

jiter-0.16.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (122.4 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

jiter-0.16.0-cp314-cp314-musllinux_1_1_x86_64.whl (548.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

jiter-0.16.0-cp314-cp314-musllinux_1_1_aarch64.whl (516.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

jiter-0.16.0-cp314-cp314-manylinux_2_31_riscv64.whl (352.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

jiter-0.16.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

jiter-0.16.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (373.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

jiter-0.16.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (459.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

jiter-0.16.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

jiter-0.16.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

jiter-0.16.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (390.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

jiter-0.16.0-cp314-cp314-macosx_11_0_arm64.whl (308.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

jiter-0.16.0-cp314-cp314-macosx_10_12_x86_64.whl (308.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

jiter-0.16.0-cp313-cp313-win_arm64.whl (189.9 kB view details)

Uploaded CPython 3.13Windows ARM64

jiter-0.16.0-cp313-cp313-win_amd64.whl (196.2 kB view details)

Uploaded CPython 3.13Windows x86-64

jiter-0.16.0-cp313-cp313-win32.whl (202.9 kB view details)

Uploaded CPython 3.13Windows x86

jiter-0.16.0-cp313-cp313-musllinux_1_1_x86_64.whl (547.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

jiter-0.16.0-cp313-cp313-musllinux_1_1_aarch64.whl (515.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

jiter-0.16.0-cp313-cp313-manylinux_2_31_riscv64.whl (350.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

jiter-0.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

jiter-0.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (372.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

jiter-0.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (457.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

jiter-0.16.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

jiter-0.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (335.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

jiter-0.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (387.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

jiter-0.16.0-cp313-cp313-macosx_11_0_arm64.whl (306.5 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

jiter-0.16.0-cp313-cp313-macosx_10_12_x86_64.whl (306.2 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

jiter-0.16.0-cp312-cp312-win_arm64.whl (190.6 kB view details)

Uploaded CPython 3.12Windows ARM64

jiter-0.16.0-cp312-cp312-win_amd64.whl (196.9 kB view details)

Uploaded CPython 3.12Windows x86-64

jiter-0.16.0-cp312-cp312-win32.whl (203.5 kB view details)

Uploaded CPython 3.12Windows x86

jiter-0.16.0-cp312-cp312-musllinux_1_1_x86_64.whl (547.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

jiter-0.16.0-cp312-cp312-musllinux_1_1_aarch64.whl (516.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

jiter-0.16.0-cp312-cp312-manylinux_2_31_riscv64.whl (351.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

jiter-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

jiter-0.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (372.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

jiter-0.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (458.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

jiter-0.16.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

jiter-0.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (335.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

jiter-0.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (388.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

jiter-0.16.0-cp312-cp312-macosx_11_0_arm64.whl (307.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

jiter-0.16.0-cp312-cp312-macosx_10_12_x86_64.whl (306.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

jiter-0.16.0-cp311-cp311-win_arm64.whl (194.4 kB view details)

Uploaded CPython 3.11Windows ARM64

jiter-0.16.0-cp311-cp311-win_amd64.whl (199.2 kB view details)

Uploaded CPython 3.11Windows x86-64

jiter-0.16.0-cp311-cp311-win32.whl (206.8 kB view details)

Uploaded CPython 3.11Windows x86

jiter-0.16.0-cp311-cp311-musllinux_1_1_x86_64.whl (552.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

jiter-0.16.0-cp311-cp311-musllinux_1_1_aarch64.whl (521.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

jiter-0.16.0-cp311-cp311-manylinux_2_31_riscv64.whl (356.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

jiter-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (347.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

jiter-0.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (374.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

jiter-0.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (461.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

jiter-0.16.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (364.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

jiter-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

jiter-0.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (394.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

jiter-0.16.0-cp311-cp311-macosx_11_0_arm64.whl (315.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

jiter-0.16.0-cp311-cp311-macosx_10_12_x86_64.whl (309.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

jiter-0.16.0-cp310-cp310-win_amd64.whl (199.5 kB view details)

Uploaded CPython 3.10Windows x86-64

jiter-0.16.0-cp310-cp310-win32.whl (206.5 kB view details)

Uploaded CPython 3.10Windows x86

jiter-0.16.0-cp310-cp310-musllinux_1_1_x86_64.whl (552.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

jiter-0.16.0-cp310-cp310-musllinux_1_1_aarch64.whl (521.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

jiter-0.16.0-cp310-cp310-manylinux_2_31_riscv64.whl (356.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

jiter-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (348.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

jiter-0.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (374.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

jiter-0.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (461.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

jiter-0.16.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (365.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

jiter-0.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

jiter-0.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (394.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

jiter-0.16.0-cp310-cp310-macosx_11_0_arm64.whl (315.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

jiter-0.16.0-cp310-cp310-macosx_10_12_x86_64.whl (310.1 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

jiter-0.16.0-cp39-cp39-win_amd64.whl (202.0 kB view details)

Uploaded CPython 3.9Windows x86-64

jiter-0.16.0-cp39-cp39-win32.whl (209.3 kB view details)

Uploaded CPython 3.9Windows x86

jiter-0.16.0-cp39-cp39-musllinux_1_1_x86_64.whl (555.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

jiter-0.16.0-cp39-cp39-musllinux_1_1_aarch64.whl (524.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

jiter-0.16.0-cp39-cp39-manylinux_2_31_riscv64.whl (359.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64

jiter-0.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (350.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

jiter-0.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (378.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

jiter-0.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

jiter-0.16.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

jiter-0.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

jiter-0.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (397.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

jiter-0.16.0-cp39-cp39-macosx_11_0_arm64.whl (315.4 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

jiter-0.16.0-cp39-cp39-macosx_10_12_x86_64.whl (312.5 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

Details for the file jiter-0.16.0.tar.gz.

File metadata

  • Download URL: jiter-0.16.0.tar.gz
  • Upload date:
  • Size: 176.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0.tar.gz
Algorithm Hash digest
SHA256 7b24c3492c5f4f84a37946ad9cf504910cf6a782d6a4e0689b6673c5894b4a1c
MD5 b986a6f69076dae0cd61fbe6d1513c1c
BLAKE2b-256 1d1f10936e16d8860c70698a1aa939a46aa0224813b782bce4e000e637da0b2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0.tar.gz:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64d613743df53199b1aa256a7d328340da6d7078aac7705a7db9d7a791e9cfd2
MD5 bcec4e24b67883f3a965d0b573e58563
BLAKE2b-256 78f718a1afcd64f35314b68c1f23afcd9994d0bc13e65cc77517afff4e83986d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d284fb8d94d5855d60c44fefcab4bf966f1da6fada73992b01f6f0c9bc0c6702
MD5 0c9cdbd3741da6fd749c9e38dca4bdba
BLAKE2b-256 0adbbba1155f01a01c3c37a89425d571da751bbedf5c54247b831a04cb971798

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96e38eea538c8ddf853a35727c7be0741c76c13f04148ac5c116222f50ece3b3
MD5 4fcb4d52fe8d074e9c10b6d414a944b0
BLAKE2b-256 1a07421f1d5b65493a76e16027b848aba6a7d28073ae75944fa4289cc914d39f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f17d61a28b4b3e0e3e2ba98490c70501403b4d196f78732439160e7fd3678127
MD5 0398c1f28a88f0a2db423b65ebd8575e
BLAKE2b-256 98ab664fd8c4be028b2bedd3d2ff08769c4ede23d0dbc87a77c62384a0515b5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17ca7fae79f6d99cd9a042b75f917eaada7b895cfc7dd2ee3a16089dcaec7a85
MD5 0ebb091615f540e9e95d9dca0314fc98
BLAKE2b-256 165250cc4056fc1ae02e7154704e7ecc89df0afb8300222cfe8a52d3f67e4730

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7dc85ea77d4abbae8bad0d3538678aedee75bceec4e2f6c8dfb1c74772e5aa5
MD5 f7480c42b194178655c83e7323ee212b
BLAKE2b-256 e0cac366b1012da1d640de975d9683acd44e4d150d9068845d0ca2610435253f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e34e97bda77eb63242a410243c071e28ac7e0d8c0948c5ee658498690a4b2f2f
MD5 ca1586c999f1cc77821cb8a493e3068d
BLAKE2b-256 724328d4ef495028bf0506a413d4db3f4eb3e7288a382e0f065f306a17bbeb5e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 850ccb1d7eedb4200f4014b1c0e8a577de114fc3cd88faad646dcc9bc4bb12ad
MD5 225cc78f634eba0182315dae4bafe31c
BLAKE2b-256 06d38e278946d43eeca2585b4dd0834a887cd71136329b837f3a16ed86a8b4b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: jiter-0.16.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 190.5 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 0fa25b09b13075c46f5bc174f2690525a925a4fc2f7c82969a2bbabff22386ce
MD5 4dc47ec4c671d26764fb72977947118a
BLAKE2b-256 7ca2d88de6d313d734a544a7901353ad5db67cb38dcfcd91713b7979dafc345d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-win_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: jiter-0.16.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 200.4 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 b8a3f9a6008048fe9def7bf465180564a6e458047d2ce499149cfbe73c3ae9db
MD5 698e1458f64a6bebb10d10bc98e18749
BLAKE2b-256 a531c757d5f30a8980fd945ce7b98be10be9e4ff59c7c42f5fd86804c2e87db8

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-win_amd64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: jiter-0.16.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 206.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 de5ba8763e56b793561f43bed197c9ea55776daa5e9a6b91eed68a909bc9cdbf
MD5 1a74efef68f00e856baf902a3a00a0e0
BLAKE2b-256 2ec56a0207d90e5f656d95af98ebd0934f382d37674416f215aeda2ff8063e51

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-win32.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a111256a7193bea0759267b10385e5870949c239ed7b6ddbaaf57573edb38734
MD5 f6fcbe0b45b36a462b3997ad06ce197f
BLAKE2b-256 c2f7095b38eda4c70d03651c403f29a5590f16d12ddc5d544aac9f9cddf72277

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 63ffdbdae7d4499f4cda14eadc12ddcabef0fc0c081191bdc2247489cb698077
MD5 93736918ead25c79877f7257a52d6e0f
BLAKE2b-256 7569c78a5b3f71040e34eb5917df26fb7ae9a2174cad1ccbf277512507c53a6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 da3d7ec75dc83bb18bca888b5edfae0656a26849056c59e05a7728badd17e7af
MD5 e95e3d2267cb0998ed69a2fa2f2c4ea3
BLAKE2b-256 1532c99d7bafd78986556c95bf60ce84c6cc98786eac56066c12d7f828bb6747

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-manylinux_2_31_riscv64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bae96332410f866e5900d809298b1ed82735932986c672495f9701daacd80620
MD5 011acb4d8d4488f101c767ae833c73ca
BLAKE2b-256 a2963ae1b85ee0d6d6cab254fb7f8da018272b932bbf2d69b07e98aa2a96c746

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d30a4a1c87713060c8d1cc59a7b6c8fb6b8ef0a6900368014c76c87922a2929
MD5 4a7047180fe0c1643c52a1c5283f69ed
BLAKE2b-256 33b55689aff4f66c5b60be63106e591dbfcba2190df97d2c9c7cf052361ddb98

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f4d9e473a5ce7d27fef8b848df4dc16e283893d3f53b4a585e72c9595f3c284
MD5 ff3350526a386d6f74bc26de05ca2131
BLAKE2b-256 285149b6ed456261646e1906016a6760367a28aacd3c24805e4e5fe64116c1db

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e2e9efbe042210df657bade597f66d6d75723e3d8f45a12ea6d8167ff8bbce3
MD5 16ac09a1fe2d05b2fe1ee052073a207a
BLAKE2b-256 cd97a4369f2fb82cb3dda13b98622f31249b2e014b223fe64ee534413ad72294

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 616e89e008a93c01104161c75b4988e58716b01d62307ebfe161e52a56d2a818
MD5 01df45ec05e35355909dcc6ed2257957
BLAKE2b-256 2d9549461034d5388196d3dabf98748935f017b7785d8f3f5349f834bcc4ed0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ee6162b77d49a9939229df666dfa8af3e656b6701b54c4c84966d740e189264e
MD5 05ce7845efa8672804e441eaaf8be0de
BLAKE2b-256 0e4bf99a8e571287c3dec766bcc18528bbe8e8fb5365522ab5e6d64c93e87066

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2577196f4474ef3fc4779a088a23b0897bbf86f9ea3679c372d45b8383b43207
MD5 8b6882ced5937a921ce37b71a2c4632d
BLAKE2b-256 816b59127338b86d9fe4d99418f5a15118bea778103ee0fe9d9dd7e0af174e95

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: jiter-0.16.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 191.5 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 a32d2027a9fa67f109ff245a3252ece3ccc32cc56703e1deab6cc846a59e0585
MD5 e5d1254ec5b3a99ebeac49228461e12e
BLAKE2b-256 26be41fa54a2e7ea41d6c99f1dc5b1f0fd4cb474680304b5d268dd518e81da3a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-win_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: jiter-0.16.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 198.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 cbd18dd5e2df96b580487b5745adf57ef64ad89ba2d9662fc3c19386acce7db8
MD5 4d90f93233a702fe4e363c8ce9df7073
BLAKE2b-256 5ee64758a14304b4523a6f5adb2419340086aa3593bd4327c2b25b5948a90548

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-win_amd64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: jiter-0.16.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 204.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 57b37fc887a32d44798e4d8ebfa7c9683ff3da1d5bf38f08d1bb3573ccb39106
MD5 1230a4b87efd17019bc1743c4bdefe0e
BLAKE2b-256 2680f0b147a62c315a164ed2168908286ca302310824c218d3aae52b06c0c9a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-win32.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 710cc51d4ebdcd3c1f70b232c1db1ea1344a075770422bbd4bede5708335acbe
MD5 f2373859f7dc479f7522061f1ff163b0
BLAKE2b-256 9be7fd2fb11ae3e2649333da3aa170d04d7b3000bbdc3b270f6513382fdf4e04

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ab4f50ff971b611d656554ea10b75f80097392c827bc32923c6eeb6386c8b00
MD5 09976b8cb41d5b20d06711a9ee3cc721
BLAKE2b-256 a0456449b3d123ea439ba79507c657288f461d55049e7bcbdc2cf8eb8210f491

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6722bcef4ffc86c835574b1b2fac6b33b9fb4a889c781e67950e891591f3c55a
MD5 25fbd17a80f127ffe4f81b23f04fcb30
BLAKE2b-256 253351ae371fde3c88897520f62b4d5f8b27ad7103e2bb10812ff52195609853

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 adbb8edeadd431bc4477879d5d371ece7cb1334486584e0f252656dd7ffada29
MD5 80d139f4d8f806867bbb39a310bee55c
BLAKE2b-256 9af60be5dc6d64a89f80aa8fec984f94dedb2973e251edcae55841d60786d578

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-manylinux_2_31_riscv64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 49060fd70737fad59d33ba9dcc0d83247dc9e77187de26053a19c16c9f32bd69
MD5 98bfe51e7cfce30183b76d1dcc5858dc
BLAKE2b-256 492effbc3f254e4d8a66da3062c624a7df4b7c2b2cf9e1fe43cf394b3e104041

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bc837c1b9631be10abfe0191537fe8009838204cec7e44827401ace390ddb567
MD5 1e2c9728b436634167078d5d3ace94e3
BLAKE2b-256 8058ef77879ea9aa56b50824edc5a445e226422c7a8d211f3fd2a56bcb9493cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26798522707abb47d767db536e4148ceac1b14446bf028ee85e579a2e043cfe5
MD5 62ee1d466518f9a45874726d028de4d8
BLAKE2b-256 584ac4b0d5f651fda90a24ffce9f8d56cde462a2e09d31ae3de3c68cef34c04e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf3ea07d9bc8e7d03a9fbc051295462e6dbc295b894fd72457c3136e3e43d898
MD5 3f336f6550b9fba80ad5e08de58f26f2
BLAKE2b-256 a08d72cadaac05ccfa7cc3a0a2232862e6c72443ca40cf300ba8b57f9f18b69b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf0d73f50e7b6935677854f6e8e31d499ca7064dd24734f703e060f5b237d883
MD5 a397b49e867908200772e75814dbfb27
BLAKE2b-256 11fc1f4fb7ebf9a724c7741994f4aae18fba1e2f3133df14521a79194952c34a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 31aaee5b80f672c1dc21272bcfb9cbdcfc1ea04ff50f00ed5af500b80c44fa93
MD5 5c457861a0f7581f8b2e85b728e670cb
BLAKE2b-256 da6e7d31243b3b91cd261dd19e9d3557fc3251a80883d3d8049c86174e7ab7af

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63efadc657488f45db1c676d81e704cac2abf3fdb892def1faea61db053127e2
MD5 ca32ed18b22f2e13b7b1c6bfdc51f038
BLAKE2b-256 657ac415453e5213001bf3b411ff65dec3d303b0e76a4a2cfea9768cd4960994

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b2c61484666ad42726029af0c00ef4541f0f3b5cdc550221f56c2343208018ee
MD5 190f019ea7c85ad44bd96ad295953eed
BLAKE2b-256 a789bc4f1b57d5da938fd344a466396541e586d161320d70bffd929aaafcd8f4

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: jiter-0.16.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 189.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 3c1fd2dbe1b0af19e987f03fe66c5f5bd105a2229c1aff4ab14890b24f41d21a
MD5 3fd8d89cd56f63c5543898d6624d18f5
BLAKE2b-256 194bb390ed59bafb3f31d008d1218578f10327714484b334439947f7e5b11e7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-win_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: jiter-0.16.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 196.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 baad945ed47f163ad833314f8e3288c396118934f94e7bbb9e243ce4b341a4fd
MD5 dd1a509d3df2f702e79463411d4fc129
BLAKE2b-256 886ade61d04b9eec69c71719968d2f716532a3bc121170c44a39e14979c6be81

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-win_amd64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: jiter-0.16.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 202.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c9c53be232c2e206ef9cdbad81a48bfa74c3d3f08bcf8124630a8a748aad993e
MD5 bee99fea99af7008688a34e74d1b2442
BLAKE2b-256 13c52a467585a576594384e1d2c43e1224deaafc085f24e243529cf98beef8e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-win32.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 659039cc50b5addcc35fcc87ae2c1833b7c0a8e5326ef631a75e4478447bcf84
MD5 5fb35849d05816aa9ae969c4b86ddcbf
BLAKE2b-256 ed54284f0164b64a5fed915fea6ba7e9ba9b3d8d37c67d59cf2e3bb99d45cdfe

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6edb63a46e65a82c26800a868e49b2cac30dd5a4218b88d74bc2c848c8ad60bb
MD5 903619200be7d0ca9ce412a1ef1e982f
BLAKE2b-256 8bd65fbc2f7d6b67b754caa61a993a2e626e815dec47ffc2f9e35f01adfebec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 8d031aabecc4f1b6276adfb42e3aabb77c89d468bf616600e8d3a11328929053
MD5 e93037750a52a1dd71cd597881c7d780
BLAKE2b-256 c1d65a59d938244a30735fe62d9433fd325f9021ea29d89780ea4596ea93bc89

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-manylinux_2_31_riscv64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c682bea068a90b764577bdb78a60a4c1d1606daf9cd4c893832a37c7cc9d9026
MD5 50d92c04bb0db1c5dd5a325fe2190093
BLAKE2b-256 0f94db768b6938e0df35c86beeba3dfbbb025c9ee5c19e1aa271f2396e50864d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d5f91b1c27fc22a57993d5a5cb8a627cb8ed4b10502716fac1ffbfe1d19d84e8
MD5 fc68d39c056213b1bb3fea78bb6a0b4b
BLAKE2b-256 15e097e9557686d2f94f4b93786eccb7eed28e9228ad132ea8237f44727314a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b72d0b2990ca754a9102779ac98d8597b7cb31678958562214a007f909eab78e
MD5 62c62dd46b175722f2204f19fa08ead1
BLAKE2b-256 b7974e6b59b2c6e55cbb3e183595f81ad65dcfb21c915fee5e19e335df21bc55

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8fb8de1e23a0cb2a7f53c335049c7b72b6db41aa6227cdcc0972a1de5cb39450
MD5 47931c9cc0ffa97e8bcf58771c23cca6
BLAKE2b-256 b2a6e4bda5920d4b0d7c5dfb7174ce4a6b2e4d3e11c9162c452ef0eab4cdbdbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0542a7189c26920778658fc8fcf2af8bae05bae9924577f71804acef37996536
MD5 50be34415074652d9d2b81e1d9dd8aaa
BLAKE2b-256 963f02fdfc6705cad96127d883af5c34e4867f554f29ec7705ec1a46156400a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 eab2cd170150e70153de16896a1774e3a1dca80154c56b54d7a812c479a7165e
MD5 3ead814183ed22b58b8571514bca2890
BLAKE2b-256 67f8c4a857f49c9af125f6bbcac7e3eee7f7978ed89682833062e2dbf62576b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d28bb3c26762358dadf3e5bf0bccd29ae987d65e6988d2e6f49829c76b003c09
MD5 6149a21ddfa49375b39a5fc50ab8cbcb
BLAKE2b-256 d02bc3eaf16f5d7c9bad66ea32f40a95bd169b29a91217fcc7f081375157e99c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 41977aa5654023948c2dae2a81cbf9c43343954bef1cd59a154dd15a4d84c195
MD5 99312729e786de22d978164a23918b1c
BLAKE2b-256 91c0555fc60473d30d66894ba825e63615e3be7524fac23858356afa7a38906c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: jiter-0.16.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 190.6 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2ed5738ae4af18271a51a528b8811b0cbfa4a1858de9d83359e4169855d6a331
MD5 adb64b06506e2d7ac78b11aef2aa7f64
BLAKE2b-256 e9a96b82bb1c8d7790d602489b967b982a909e5d092875a6c2ade96444c8dfc5

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-win_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: jiter-0.16.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 196.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1878349266f8ee36ecb1375cc5ba2f115f35fd9f0a1a4119e725e379126647f7
MD5 7da82042a7f31a496bd26fc878880f48
BLAKE2b-256 2d052909a8b10699a4d560f8c502b6b2c5f3991b682b1922c1eedda242b225bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-win_amd64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: jiter-0.16.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 203.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 51d7b836acb0108d7c77df1742332cac2a1fa04a74d6dacec46e7091f0e91274
MD5 4f4ed1407874fe02932c4702ea4f0f21
BLAKE2b-256 79702953195f1c6ad00f49fa67e13df7e60acb3dd4f387101bc15abccddd905e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-win32.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0df91907609837f33341b8e6fe73b95991fdaa57caf1a0fbd343dffe826f386f
MD5 5100f6d82d3ca3fd3f9ca8e701af1a78
BLAKE2b-256 a4cb01e9d69dc2cc6759d4f91e230b34489c4fdb2518992650633f9e20bece89

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 44d019fa8cdaf89bf29c71b39e3712143fdd0ac76725c6ef954f9957a5ea8730
MD5 3226b8418f3a78b8e1f12a2a1b554e47
BLAKE2b-256 d98c554691e48bc711299c0a293dd8a6179e24b2d66a54dc295421fcf64569c0

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 9c8a956fd72c2cf1e730d01ea080341f13aa0a97a4a33b51abebe725b7ae9ca9
MD5 0d37221aaf3b5fdbb4e3c05267b5d6d5
BLAKE2b-256 e259e196888a05befdda7dbe299b722d56f2f6eec65402bc34c0a3306d595feb

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-manylinux_2_31_riscv64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46add52f4ad47a08bfb1219f3e673da972191489a33016edefdb5ea55bfa8c48
MD5 3507f9a5b9a109db3292594a930d8abd
BLAKE2b-256 a8d24839422241aa12860ce597b20068727094ba0bc480723c74924ca5bad483

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c22a488f7b9218e245a0025a9ba6b100e2e54700831cf4cf16833a27fba3ad01
MD5 4ac19df60a8a8343a47898a642371bfa
BLAKE2b-256 5540c0253d3772eb9dcd8e6606ee9b2d53ec8e5b814589c47f140aa585f21eaa

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a23f0e4f957e1be65752d2dfac9a5a06b1917af8dc85deb639c3b9d02e31290
MD5 5518f6824fc862bb9284fe0cf382072c
BLAKE2b-256 2b0bace4354da061ee38844a0c27dc2c21eecd27aea119e8da324bea987522d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f4444a83f946605990c98f625cdd3d2725bfb818158760c5748c653170a20e0e
MD5 9e3fa4154faa3a0b52f10a654407b4c1
BLAKE2b-256 3b8cf5ef7b65f0df47afa16596969defb281ebb86e96df346d62be6fd853d620

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d5bf78d0e05e45cfdd66558893938d59afe3d1b1a824a202039b20e607d25a72
MD5 52b0631839f14f23f51b655c20819cfe
BLAKE2b-256 886c59bd309cab4460c54cf1079f3eb7fe7af6a4c895c5c957a53378693bad2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 561926e0573ffe4a32498420a76d64b16c513e1ab413b9d28158a8764ac701e5
MD5 61a0ddd673ab39bbcd9592ca6669171f
BLAKE2b-256 ec744cd9e0fca65232136400354b630fbfcd2de634e22ccbb96567725981b548

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5af7780e4a26bd7d0d989592bf9ef12ebf806b74ab709223ecca37c749872ea9
MD5 110bb28574514ed324ed69b652dc9356
BLAKE2b-256 942e34957c2c1b661c252ba9bcc60ae0bddc27e0f7202c6073326a13c5390eec

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67c3bc1760f8c99d805dcab4e644027142a53b1d5d861f18780ebdbd5d40b72a
MD5 08c44254a912a05fb42a4fc8b0e2c3ce
BLAKE2b-256 832b52ace16ed031354f0539749a49e4bf33797d82bea5137910835fa4b09793

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: jiter-0.16.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 194.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2a8e9e39cf083016137aa5cadafe3188adc2ba6ba1fbf1e5d18889ad3e9ad056
MD5 692469c56ba8a488b9810f4b0458e396
BLAKE2b-256 b99cca040d94415048a3666fc237774df8151c96f8d2b661cbe3b184acc95876

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-win_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: jiter-0.16.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 199.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e431cfc9caf44c1d5459ff77d4e64cbf85fddb6a35dad836a15c6a9ec23087c1
MD5 5f0f53e6cf8c7ac669880a55e8747c58
BLAKE2b-256 64ec2feb893eb330bd69b413866f4d5daada33c3962f1c6f270c91ca2d87fdf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-win_amd64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: jiter-0.16.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 206.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 560b2cf3fb03240cd34f27409a238547488708f05b7c3924f571a60422251ec7
MD5 4c15c869f739daa7539262613e2c37d5
BLAKE2b-256 7954aa5be86520113b79455c3877f3d1f07a348098df4083ba3688e9537e52dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-win32.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dab907db06fc593645e73109acf4581ba5b548897d28b9348dc41ddc8343b2d3
MD5 b1f3c484e14725b39b69870dcba01a16
BLAKE2b-256 c25f501cf6e1e09caeb420195179ffc6f62aca603f1220ec53fd80d0d70b3e56

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 adff21bc78edfe086c15eb495b900306076de378dc2337c132401fc39bd79c91
MD5 059cf3181e17de8ebc775eb59fc9d348
BLAKE2b-256 3bdc7b2f303a2847207e265503853a2d964a55354cffd62a5f2936c155486798

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 3126a5dbad56401989ac769aca0cb56005bfb3e2366eea0ca99d1a91c3c1ee03
MD5 81920f7fd654d6cbd770dbf21584bf70
BLAKE2b-256 5caec7e64e7932ad597fa395b61440b249ada6366716e25c6e08dd2afbd021e6

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-manylinux_2_31_riscv64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8597d23c87f59294f83bcb6229b9ed1fccee13dbba967b46930d2f1759466fee
MD5 f874d411ecd9db0c3930396501d421e9
BLAKE2b-256 40cd0fcc3f7d39183674d5bfa9ec640faaeb506c60be7c8f94625dfba366e37c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 62c1b7fe1f77925acf5af68b6140b8810fa87dfd4dc0a9c8568ec2fa2a10429c
MD5 3c4d0104e27a48af8b4a766d45f64413
BLAKE2b-256 a987544a700f7447c1f31c5d7833821a4daa5683165c2d5a094fbf5b5800c3dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5cf109d010b4b05a105afb3d43be36a21322d345ad3111e13d15f680afef0e5b
MD5 3eaa9e49208e73988fbd1f1d9e99c101
BLAKE2b-256 a27452b5e86241057f52ddd7c9a580f90effb51f9d06239f6fc612279b91a838

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 12288303c9844e61e1651d02a9a6f6633e47d39f897d6991d1427161ce6b746e
MD5 3685dc1627cbbb10351ce5f9f768823b
BLAKE2b-256 87c9db4fda3ed73fb864139305e935e5b8b38a5a24692a5a9dd356c22f1b9c8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 64c0203212098470032aabcde9356fc168f377aade3e43def61dfe17e92f2037
MD5 8f5607425f18311a2ce774ea2e7548cb
BLAKE2b-256 7b89d8d073f8aa2667e46c6c0873f86fe4a512bba4293cc730f626a076211a62

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 c4b4717bdb35ae456f831a6b08d01880fff399887a6bbc526a583a406e484eea
MD5 3538d52e4743d1b6e73e8ad25cf7d6f6
BLAKE2b-256 d41c1c719044f14da814e1a060191ab19b96f3e99207bc5b4bfc6d6be34b3f80

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c90c0f63df322be920eda6ce622e3083d8906ba267f8220fe7873213b8b4430e
MD5 4b9ccd6505de185e1dd8f6082bdedea5
BLAKE2b-256 c8e397c6c3562c077f6247d6e6ce5c82562500b6316c0d928e97e106b7a1321a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 67fddeda1688f0cce2d2ae83ccf8a80f79936f2d2997d6cc2261f82fdb54a4d3
MD5 f25fac4199e6ca765083cc6346310a5f
BLAKE2b-256 4e3ffae6cc967d120ec89e31c5418a51176d8278b3087fbb384a9176754f353c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: jiter-0.16.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 199.5 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 10438939205546132189c8e74a2d536a707841f3a25cd7c74ee91fe503407a26
MD5 582c7db33c1a0948ad06898704a5ddd5
BLAKE2b-256 db7fac680eeb0777dc0eb7dc824800ba27880d7f6bc712e362d34ad8ee559f36

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-win_amd64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: jiter-0.16.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 206.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 b42e9ff5376819c053da25809a8d4b6fa6e473b4856ebe42e298ac958be3d7f9
MD5 2367dd4a007fe88dc0c3a5c997e7aae9
BLAKE2b-256 f676311b718e07e85740e48619c0632b36f7e0b8d113984499e436452ed13a9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-win32.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5ed466aee31294d7cdcd4d37dfe5c42c97bc29d9a5f00eacf24504358309cb9b
MD5 11e163241e941dba35551cf01f772d0f
BLAKE2b-256 2ad30001c8c0c5976af2625bb1cfb1895e8ec693b6589fe4574b8e6fc2c85501

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2c842cbf374a8daf50b2c04212995bee34ca2ac2cdc29a901b4cdb072c9c4131
MD5 9f859ac5b2e4f4a94052ffe452c8a6e5
BLAKE2b-256 9d70c6c23e76ebb3766b111bc399437bbc9f870a76e2a92e10b2a5f561d57372

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 8fc4d94713c4697347e38faf7d6ef91547c142219bdcfc7220c4870879974244
MD5 93673f9b13b07c2f92f2977d32cbd831
BLAKE2b-256 50e37d88b9174c40064fabc07c84a9b62e6b10f5644562ec0e0a29392edbe978

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-manylinux_2_31_riscv64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fb08c276dd02dac3a284acdd02cacc630d2e3cd6572a4b85519f35cbd133c3de
MD5 c293ef60cb9fa543acd76828575f0463
BLAKE2b-256 29ac2f55ccb1f0eeafa6d89d24caf52f6f0944a59290ee199e9ade62177dca42

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4a1d68ff7ca1d3b5dee20a97a3decda7d5f15003823bf6d140c81f8561d3bc5c
MD5 82223dc4ab98db90a27857cc994ba084
BLAKE2b-256 e79922292dbbf0ed0c610cfe5ddc7f3bd67237a412f121318f865196e62a07bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7c9610fd25ebccb43fca584136f5c2fbb26802447eccd430dfdbab95a0fd5126
MD5 67c7da678193aa4cb6360ff26c29dec2
BLAKE2b-256 92358a045ccb39164e70dcdae696413b661771f148b68b12b175c3a04d901937

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3fb7bc819187b56dc48aa5c833aaf92257da8e07efdb9306156667bd2eeb491c
MD5 c4a67b23dd1b95532c8bf498f189c133
BLAKE2b-256 f42f6bb3c3dda668ebc0445689c81a2b0f26a82b10843d67ed9c9b2c3edc177f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 741eed508c233a76313a1c7b001f8f21b82f14327e9196ae8bd29a2cc164ae84
MD5 95fae6d4dbc3f8b2bc4d9a20ab9b7868
BLAKE2b-256 9b83bed2dcb5c9f3e1ccfcbc67dda48265fe7d5ad0c9cadda5fe95f6e3b87f94

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a0f05e229edb29e68cdd0ccb83cea13b64263416120cf943767a6fd72e6787f
MD5 cc6270c4b93f647774f1d69ecc5c1b44
BLAKE2b-256 2757c4a33aeef513a9d5e26e31534e0bcc752d6ea0e54c94ddb7b68bade669c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a71d0d2014c3275043e1170bf3d4e771493cb0dcf07be54c567155f4d8ee64b
MD5 d72fc546e038ff6d12721c2d70a98978
BLAKE2b-256 c63d4d7f5667ea0e0548534ba880b84bb3d12924fd133aa83ad6c6c80fca3d76

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c5fc4f8def331036a7b8e981b4347ebe409981edbc8308a5ea842b8c3614fa6c
MD5 90599ac28a20534193b1a9066438ec99
BLAKE2b-256 76d8b959609e44012a42b1f3e5ba98ea3b33c7e41e6d4b77cd8f00fd19b1d3ad

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: jiter-0.16.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 202.0 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 491e7d072a253b156fff46b78bceac4652a697aa8d7082c9c18c03d7b7917d24
MD5 ad88f239a6f8f4ff9b51fe33e880243c
BLAKE2b-256 b4c19b6377e067ebb0cde1f751e28cab26b09d4c8809050935196ee32525e2c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-win_amd64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: jiter-0.16.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 209.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.13

File hashes

Hashes for jiter-0.16.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 9acf1b2faec82d998811ecce7ae84d9005e53410773e9d37d61cdc424ba4581b
MD5 6ad7e402aa47c9ac038c60539016196c
BLAKE2b-256 c50aa10f28b2038bc3492de03ad6b7126a678d9f9f928ae72968e0cc2427bdad

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-win32.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 70a490b55634dc0d2606ce8a8e01b1d62459011beb368d15d76e1eaf62460e3d
MD5 eea961e622154e89a33ff7aa4e40d536
BLAKE2b-256 b1c3a7dd14c86bcd04e7b0d5d13937e980f94085b61c0eec12622eaa159965c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2a0d46ef67cc58d906a6132dd3040ca70ae4f0b0d7c9c052fe432c658a69b3f6
MD5 495c085c8beefdba5310f52af81e3091
BLAKE2b-256 bb1deb4261cdf94d4a485a47e3544ff1ee4e8a752b24aedeae250dc00a238166

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp39-cp39-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 a5c54ef4ff776d9675837ef535b3308d6e31c208d43ebc44a0f7ab8a208c68f7
MD5 af92b4865fa73d724f40ba733f9b72b6
BLAKE2b-256 26a936e0d4af0f414ad054f6619f48ac7d607f42cb98f1672c39f964630556d0

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-manylinux_2_31_riscv64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e03a5f21a5ce96a9441b8cb32719a8b88ed5388f53e0f339c5bcf54f1317f9d0
MD5 9c417235ae39567712e9b3c705afd390
BLAKE2b-256 5dc07acc77d44050cb3cc7ea4ddb32cc46614ba705876857973ebc2f008b1383

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26d122613ada2b708eb714695446f40fce5bdf2edb4b02116dec62faa62dfab3
MD5 959a4897286f4a574ab46a5b3bb952a1
BLAKE2b-256 ab146d9948c7da0d56fe3a786a950b0f4a03139160e59238f2327361d6dfbda7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f3bd327cdfa118bc1ce69c214c2678571d5bd39b8ccd0ebf43a54db00541ba9a
MD5 0af36a5a5d1650038d1d50e46d0fe058
BLAKE2b-256 3cf17fd3bd9378ff4366032a17fc82f562dda8aa92c491451705dc8c35275683

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ec553a99b0987efd7a3645a1a825cf29c224e494db267a83369fcc8da9aeda5
MD5 a42aa6cfa61fc1fedfbd293b3ec476ec
BLAKE2b-256 cef0f33bfac2598a7e256e994b02444835ddd934226df7b022ae588c536131ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0758ab7747a984797cf048e8eedea1d8ef39d7994b25611daf5b48fc903e8873
MD5 d6522d702b003a2f11e0f0647b9bccf3
BLAKE2b-256 14d2a52aa9786bbec7e85547f041efec59b517488c396958cbf432d703898a73

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1e7923093a376d93c6eb507c77045ae258d689ba577392846a1b3f10d0b09a9
MD5 0b22e4933dbd21af33649e9558719870
BLAKE2b-256 277cecbe98e370db5f8196ecbdae34806d369a0df95404de1562eb8c68415985

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b21b412b899fd8bd51a3046934b59a3bb068b79f70a5c6010053ac77cc53f0c
MD5 1e331cd987ed284ae4f150db245453dd
BLAKE2b-256 69797b84250429f0e262b935c627a8522cab31b5303e617400b14e808b599bdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file jiter-0.16.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.16.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d8f80521644426d451e70f00c7974240cab8f6ee088aedaa9af2697153ab7805
MD5 0478f54d02cf5ed2849631961c034964
BLAKE2b-256 5e60489a9df48730f05cfe4fb71ed2ed805264f60d3b0bbc65816f1cd8a4372a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.16.0-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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