Skip to main content

Fast iterable JSON parser.

Project description

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.15.0.tar.gz (166.6 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.15.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344.5 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ x86-64

jiter-0.15.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.5 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ ARM64

jiter-0.15.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (305.1 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

jiter-0.15.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl (303.8 kB view details)

Uploaded graalpy312macOS 10.12+ x86-64

jiter-0.15.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.6 kB view details)

Uploaded graalpy311manylinux: glibc 2.17+ x86-64

jiter-0.15.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (342.5 kB view details)

Uploaded graalpy311manylinux: glibc 2.17+ ARM64

jiter-0.15.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (306.9 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

jiter-0.15.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl (305.6 kB view details)

Uploaded graalpy311macOS 10.12+ x86-64

jiter-0.15.0-cp314-cp314t-win_arm64.whl (191.2 kB view details)

Uploaded CPython 3.14tWindows ARM64

jiter-0.15.0-cp314-cp314t-win_amd64.whl (200.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

jiter-0.15.0-cp314-cp314t-win32.whl (207.9 kB view details)

Uploaded CPython 3.14tWindows x86

jiter-0.15.0-cp314-cp314t-musllinux_1_1_x86_64.whl (548.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

jiter-0.15.0-cp314-cp314t-musllinux_1_1_aarch64.whl (517.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

jiter-0.15.0-cp314-cp314t-manylinux_2_31_riscv64.whl (352.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

jiter-0.15.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

jiter-0.15.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (373.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

jiter-0.15.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (456.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

jiter-0.15.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (363.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

jiter-0.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

jiter-0.15.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (388.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

jiter-0.15.0-cp314-cp314t-macosx_11_0_arm64.whl (317.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

jiter-0.15.0-cp314-cp314-win_arm64.whl (192.6 kB view details)

Uploaded CPython 3.14Windows ARM64

jiter-0.15.0-cp314-cp314-win_amd64.whl (197.7 kB view details)

Uploaded CPython 3.14Windows x86-64

jiter-0.15.0-cp314-cp314-win32.whl (206.4 kB view details)

Uploaded CPython 3.14Windows x86

jiter-0.15.0-cp314-cp314-musllinux_1_1_x86_64.whl (548.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

jiter-0.15.0-cp314-cp314-musllinux_1_1_aarch64.whl (517.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

jiter-0.15.0-cp314-cp314-manylinux_2_31_riscv64.whl (352.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

jiter-0.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (345.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

jiter-0.15.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (374.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

jiter-0.15.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (456.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

jiter-0.15.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (364.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

jiter-0.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

jiter-0.15.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (390.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

jiter-0.15.0-cp314-cp314-macosx_11_0_arm64.whl (310.0 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

jiter-0.15.0-cp314-cp314-macosx_10_12_x86_64.whl (308.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

jiter-0.15.0-cp313-cp313t-win_arm64.whl (190.5 kB view details)

Uploaded CPython 3.13tWindows ARM64

jiter-0.15.0-cp313-cp313t-win_amd64.whl (200.4 kB view details)

Uploaded CPython 3.13tWindows x86-64

jiter-0.15.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (347.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

jiter-0.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

jiter-0.15.0-cp313-cp313t-macosx_11_0_arm64.whl (315.1 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

jiter-0.15.0-cp313-cp313-win_arm64.whl (192.2 kB view details)

Uploaded CPython 3.13Windows ARM64

jiter-0.15.0-cp313-cp313-win_amd64.whl (196.8 kB view details)

Uploaded CPython 3.13Windows x86-64

jiter-0.15.0-cp313-cp313-win32.whl (205.8 kB view details)

Uploaded CPython 3.13Windows x86

jiter-0.15.0-cp313-cp313-musllinux_1_1_x86_64.whl (547.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

jiter-0.15.0-cp313-cp313-musllinux_1_1_aarch64.whl (516.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

jiter-0.15.0-cp313-cp313-manylinux_2_31_riscv64.whl (350.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

jiter-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (344.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

jiter-0.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (373.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

jiter-0.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

jiter-0.15.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (363.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

jiter-0.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

jiter-0.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (388.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

jiter-0.15.0-cp313-cp313-macosx_11_0_arm64.whl (308.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

jiter-0.15.0-cp313-cp313-macosx_10_12_x86_64.whl (307.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

jiter-0.15.0-cp312-cp312-win_arm64.whl (192.7 kB view details)

Uploaded CPython 3.12Windows ARM64

jiter-0.15.0-cp312-cp312-win_amd64.whl (197.3 kB view details)

Uploaded CPython 3.12Windows x86-64

jiter-0.15.0-cp312-cp312-win32.whl (206.4 kB view details)

Uploaded CPython 3.12Windows x86

jiter-0.15.0-cp312-cp312-musllinux_1_1_x86_64.whl (548.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

jiter-0.15.0-cp312-cp312-musllinux_1_1_aarch64.whl (517.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

jiter-0.15.0-cp312-cp312-manylinux_2_31_riscv64.whl (351.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

jiter-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (346.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

jiter-0.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (373.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

jiter-0.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (452.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

jiter-0.15.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (363.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

jiter-0.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

jiter-0.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (389.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

jiter-0.15.0-cp312-cp312-macosx_11_0_arm64.whl (309.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

jiter-0.15.0-cp312-cp312-macosx_10_12_x86_64.whl (308.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

jiter-0.15.0-cp311-cp311-win_arm64.whl (195.5 kB view details)

Uploaded CPython 3.11Windows ARM64

jiter-0.15.0-cp311-cp311-win_amd64.whl (200.6 kB view details)

Uploaded CPython 3.11Windows x86-64

jiter-0.15.0-cp311-cp311-win32.whl (209.5 kB view details)

Uploaded CPython 3.11Windows x86

jiter-0.15.0-cp311-cp311-musllinux_1_1_x86_64.whl (551.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

jiter-0.15.0-cp311-cp311-musllinux_1_1_aarch64.whl (520.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

jiter-0.15.0-cp311-cp311-manylinux_2_31_riscv64.whl (355.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

jiter-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

jiter-0.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (375.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

jiter-0.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (459.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

jiter-0.15.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (366.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

jiter-0.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

jiter-0.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (393.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

jiter-0.15.0-cp311-cp311-macosx_11_0_arm64.whl (315.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

jiter-0.15.0-cp311-cp311-macosx_10_12_x86_64.whl (310.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

jiter-0.15.0-cp310-cp310-win_amd64.whl (200.4 kB view details)

Uploaded CPython 3.10Windows x86-64

jiter-0.15.0-cp310-cp310-win32.whl (209.3 kB view details)

Uploaded CPython 3.10Windows x86

jiter-0.15.0-cp310-cp310-musllinux_1_1_x86_64.whl (550.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

jiter-0.15.0-cp310-cp310-musllinux_1_1_aarch64.whl (520.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

jiter-0.15.0-cp310-cp310-manylinux_2_31_riscv64.whl (354.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

jiter-0.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

jiter-0.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (375.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

jiter-0.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (458.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

jiter-0.15.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (365.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

jiter-0.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

jiter-0.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (393.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

jiter-0.15.0-cp310-cp310-macosx_11_0_arm64.whl (315.0 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

jiter-0.15.0-cp310-cp310-macosx_10_12_x86_64.whl (310.8 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

jiter-0.15.0-cp39-cp39-win_amd64.whl (203.2 kB view details)

Uploaded CPython 3.9Windows x86-64

jiter-0.15.0-cp39-cp39-win32.whl (211.6 kB view details)

Uploaded CPython 3.9Windows x86

jiter-0.15.0-cp39-cp39-musllinux_1_1_x86_64.whl (553.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

jiter-0.15.0-cp39-cp39-musllinux_1_1_aarch64.whl (522.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

jiter-0.15.0-cp39-cp39-manylinux_2_31_riscv64.whl (357.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64

jiter-0.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

jiter-0.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (378.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

jiter-0.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (461.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

jiter-0.15.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (367.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

jiter-0.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

jiter-0.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (397.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

jiter-0.15.0-cp39-cp39-macosx_11_0_arm64.whl (311.8 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

jiter-0.15.0-cp39-cp39-macosx_10_12_x86_64.whl (313.8 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for jiter-0.15.0.tar.gz
Algorithm Hash digest
SHA256 4251acc80e2b7c9b7b8823456ea0fceeb0734dac2df7636d3c711b38476b5a76
MD5 942daa60e73c3203884a2f13e4ae1cb1
BLAKE2b-256 66b555f06bb281d92fb3cc86d14e1def2bd908bb77693183e7cb1f5a3c388b0c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 54d5d6090cdc1b7c9e780dfb04949a990adb1e301a2fc0bbcee7de4638d33f9a
MD5 9ec797de16009afc223effa004199a81
BLAKE2b-256 c88d302cb2057b7513327b4d575cff6b1d066ee6431a5357fc3f8867cd684406

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1d54fb5b31dea401a41af3f8a7d2512e9b6a6a005491e6166c7e4ffab9639a9c
MD5 739ad6097cd33eb45dd5b1996cba9d09
BLAKE2b-256 23857270d7ad41d6061a25b950c6bf91d638bd9aacb113200a8c8d57a055fd67

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b6c0ffae686c39bf3737be60793783267628783ea42545632c10b291105aee45
MD5 5177db142a04b6ee67c60bba360ee21a
BLAKE2b-256 e795a06692b29e77473f286e1ec1f426d3ca44d7b5843be8ad21d7a5f3fcdcc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 631f13a3d04e97d4e083993b10f4b99530e3a10d953e2eb5e196b7dc7f812ce0
MD5 6650c25e5a547971b307e4d1d6bb100b
BLAKE2b-256 7338505941b2b092fd5bbbd60a52a880db1173f1690ae6751bed3af1c9ddcb4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b15d3ec9b0449c40e85319bdb4caa8b77ab526e74f5532ed94bec15e2f66822c
MD5 e82bdcc5ac0b0818f349afa3e95ca9c8
BLAKE2b-256 345655d76614af37fe3f22a3347d1e410d2a15da581997cb2da499a625000bb5

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 913d02d29c9606643418d9ccfc3b72492ab25a6bf7889934e09a3490f8d3438b
MD5 e1906d1d937f1723f40c284a27b9d7f1
BLAKE2b-256 3986b695e16f1180c07f43ea98e73ecd21cf63fa2e1b0c1103739013784d11ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b0074e2f56eb2dacca1689760fd2852a068f85a0547a157b82cb4cafeb6768b
MD5 e7bead82d51b6792e421ea40c782b43c
BLAKE2b-256 e8c4dd58fcd9e2df83666e5c1c1347bef58ce919cd8efc3ffa38aeea62ce493b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 411fa4dfa5a7ae3d11491027ffb9beadec3996010a986862db70d91abba1c750
MD5 c33d97c21c2487effacce5972ed54a8b
BLAKE2b-256 65431fc62172aa98b50a7de9a25554060db510f85c89cfbed0dfe13e1907a139

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-win_arm64.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 66b1880df2d01e206e8339769d1c7c1753bcb653efd6289e203f6f24ebada0c0
MD5 fb64c52221c53350050262f1801ec1f4
BLAKE2b-256 0ea4cf8d779feb133a27a2e3bc833bccb9e13aa332cdf820497ebf72c10ce8c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-win_amd64.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 980c256edb05b78a111b99c4de3b1d32e31634b867fd1fc2cf726e7b7bba9854
MD5 7f20d44a009f797800dc72b79d1150e0
BLAKE2b-256 9359984fd9ece895953dad3e0880a650e766f5a2da2c5514f0eafdaaabbeb5f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-win32.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7f6163c0f10b055245f814dcc59f4818da60dfe72f3e72ab89fc24b6bd5e9c52
MD5 f6a53f2cdb8015ae8c1170cc2a93157e
BLAKE2b-256 60e3935b8034fd143f21125c87d51404a9e0e1449186a494405721ff5d1d695e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e7196e56f1cd69af1dbb07dff02dcfb260a50b45a82d409d92a06fedb32473b5
MD5 41e7fa38e900e8f8d547881842339c41
BLAKE2b-256 cacb720662d4c88fcad606e826fef5424365527ba43ce4868a479aed8f8c507e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 acf4ee4d1fc55917239fe72972fb292dd773055d05eb040d36f4326e02cc2c0e
MD5 b1b33a017123e5e26a6033dc0f4d4a1d
BLAKE2b-256 c17846c6f6b56ba85c90021f4afd72ed42f691f8f84daacb5fe27277070e3858

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 a254e10b593624d230c365b6d616b22ca0ad65e63a16e6631c2b3466022e6ba8
MD5 b597fd4564d67daaa313061fce49da91
BLAKE2b-256 93fe67648c35b3594fba8854ac64cc8a826d8bcd18324bbdb53d77697c60b6ef

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c6694a173ecabc12eb60efbc0b474464ead1951ff65cd8b1e72100715c64512b
MD5 698913513fbc679847aaeccb9c0c1bbf
BLAKE2b-256 c4524310821b0ea9277994d3e1f49fc6a4b34e4800caebacb2c0af81da59a454

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 eda3071db3346334beae1360b46da4606da57bf3528c167b3c38533afaf9f2c5
MD5 a4c0ed2fa2f8c6a5b98fa250452c9241
BLAKE2b-256 455b76fc02b0b5c54c3d18c60653156e2f76fde1816f9b4722db68d6ee2c897e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3b3b775e33d3bfaec9899edc526ae97b0da0bf9d071a46124ba419149a414f8
MD5 d26acad0cbc3656168f6efec5518a949
BLAKE2b-256 ab245f8270e0ba9c883582f96f722f8a0b58015c7ce1f8c6d4571cf394e99b6b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6eac374c5c975709b69c10f09afd199df74150172156ad10c8d4fd785b7da995
MD5 469b71ea872bb2653e75afa6855a1a99
BLAKE2b-256 5ddb3ff4176b817b8ea33879e71e13d8bc2b0d481a7ed3fe9e080f333d415c16

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f2143ab06181d2b029eedcb6af3cebe95f11bbac62441781860f98ee9330a6a6
MD5 61e8e8211f962ac8cff13912a9ea5708
BLAKE2b-256 d768ed635ad5acd7b73e454283083bbb7c8205ad10e88b0d9d7d793b09fe8226

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d8d2955167274e15d79a7a020afdd9b39c990eb80b2d89fca695d92dcfdd38ec
MD5 f55397bdf37e6db444fa3db17752ecb5
BLAKE2b-256 cb280a1879d07ad6b3e025a2750027363452ced93c2d16d1c9d4b153ffd51c91

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7553333dd0930c104a5a0db8df72bf7219fe663d731383b576bb6ed6351c984d
MD5 d0ab98fcd0a4f923362cd192465b1ef2
BLAKE2b-256 a0f645bb4670bacf300fd2c7abadbfb3af376e5f1b6ae75fd9bc069891d15870

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 510c8b3c17a0ed9ac69850c0438dada3c9b82d9c4d589fcb62002a5a9cf3a866
MD5 c4358a8db82f3dc269e5299bc7c222a5
BLAKE2b-256 f2c9776b1db01db25fc6c1d58d1979a37b0a9fe787e5f5b1d062d2eaacb77923

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 30ce1a5d16b5641dc935d50ef775af6a0871e3d14ab05d6fc54dff371b78e558
MD5 f78d7fc45bc9b48341193a84f408c603
BLAKE2b-256 1ea9e19addf4b0c1bdce52c6da12351e6bc42c340c45e7c09e2158e46d293ccc

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 50e51156192722a9c58db112837d3f8ef96fb3c5ecc14e95f409134b08b158ec
MD5 45569dfa8810a644d3d49b92ce05ee9c
BLAKE2b-256 0c727de501cf38dcacaf35098796f3a50e0f2e338baba18a58946c618544b809

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 813dfbb17d65328bf86e5f0905dd277ba2265d3ca20556e86c0c7035b7182e5a
MD5 a05800524392a30a9f5fe5d80548bafa
BLAKE2b-256 645e6d1bda880723aae0ad86b4b763f044362448efe31e3e819635d41cb03451

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 0be6f5ad41a809f303f416d17cec92a7a725902fb9b4f3de3d19362ac0ef8554
MD5 c1a0c78b516f5d626be108668df8be61
BLAKE2b-256 a1ecb9cb7d6d29e24ee14910266157d2a279d7a8f60ee0df7fa840882976ba64

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 3e4540b8e74e4268811ac05db226a6a128ff572e7e0ce3f1163b693cadb184cd
MD5 f2cba1feeddc40d8ec1f744358336275
BLAKE2b-256 471389fba6398dab7f202b7278c4b4aac122399d2c0183971c4a57a3b7088df5

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90c5db5527c221249a876160663ab891ace358c17f7b9c93ec1478b7f0550e5c
MD5 8127ca0fb1726bad6300d11130e60310
BLAKE2b-256 6028edcfbbbf0cb15436f36664a8908a0df47ab9006298d4cd937dc08ea932d6

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5157de9f76eb4bc5ea74a1219366a25f945ad305641d74e04f59c54087091aa9
MD5 0837a63c7ba86759d3ecec2fd93b47d5
BLAKE2b-256 daf437f2d2c9f64f49af7da652ed7532bb5a2372e588e6927c3fdd76f911db65

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 30f2218e6a9e5c18bc10fe6d41ac189c442c88eacf11bad9f28ef95a9bef00e6
MD5 e97aa54678da4ebcae623a89527908b3
BLAKE2b-256 b725f442e8af5f3d0dcf47b39e83a0efd9ee45ea946aa6d04625dc3181eae3b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 71683c38c825452999b5717fcae07ea708e8c93003e808be4319c1b02e3d176e
MD5 a3d8897bc08be560967c2deb339a8441
BLAKE2b-256 9b1115a1aa28b120b8ee5b4f1fb894c125046225f09847738bd64233d3b84883

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 182226cbc930c9fab81bc2e41a4da672f89539906dadb05e75670ac07b94f71f
MD5 344afe80e39af0d408fb9f2d4d3a3828
BLAKE2b-256 40902e7cdfd3cf8ca967be38c48f5cf474d79f089efaf559a40f15984a77ae69

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 62ebd14e47e9aed9df4472afcb2663668ce4d74891cd54f86bf6e44029d6dc89
MD5 cf3df9386b035bdc950a088962a5d023
BLAKE2b-256 1bda0f6af8cef2c565a1ab44d970f268c43ccaa72707386ea6388e6fe2b6cd26

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01a8222cf05ab1128e239421156c207949808acaaea2bdfd33130ae666786e86
MD5 f51f46955399ed977d0b3e1d5bce0cd4
BLAKE2b-256 044ea2c30a7f69b48c03b20935d647479106fe932f6e63f75faf53937197e05d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac0d9ddea4350974be7a221fc25895f251a8fee748c889bdced2141c0fec1a49
MD5 ec0f35a77218cbe9881fd6d6b05bcdb0
BLAKE2b-256 ebd2079f350ebf7859d081de30aa890f9e3be68516f754f3ba32366ffff4dcee

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313t-win_arm64.whl.

File metadata

  • Download URL: jiter-0.15.0-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 190.5 kB
  • Tags: CPython 3.13t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for jiter-0.15.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 f1e1754960f38ec40613a07e5e372df67acb3b890fb383b6fb3de3e49ddbf3c7
MD5 b6bbe7e50b552ab5e46c5ee89605af21
BLAKE2b-256 3904a6aa62cd27e8149b0d28df5561f10f6cceaf7935a9ccf3f1c5a05f9a0cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.0-cp313-cp313t-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.15.0-cp313-cp313t-win_amd64.whl.

File metadata

  • Download URL: jiter-0.15.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 200.4 kB
  • Tags: CPython 3.13t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for jiter-0.15.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 774f93f65031856bf14ad9f59bdcab8b8cad501e5ceabd51ba3525f76937a25b
MD5 c34985bc127bd5fe0be2574eb58e1080
BLAKE2b-256 516b69666cec5000fd57734c118437394516c749ae8dbeea9fb66d6fef9c4775

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.0-cp313-cp313t-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.15.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 553fcac2ef2cb990877f9fc0833b8b629a3e6a5670b6b5fd58219b41a653ddc4
MD5 8a2b735e8598aa681f51d517d41dd937
BLAKE2b-256 005590b0c7b9c6896c0f2a591dd36d36b71d22e09674bfef178fa03ba3f81499

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.0-cp313-cp313t-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.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 144f8e72cb53dab146347b91cceac01f5481237f2b93b4a339a1ee8f8878b67c
MD5 1a4e468e1152b11b42419ca796e0d7ad
BLAKE2b-256 46f4008fb7d65e8ac2abf00811651a661e025c4ba80bbc6f378450384ddd3aed

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.0-cp313-cp313t-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.15.0-cp313-cp313t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ef1fd24d9413f6209e00d3d5a453e67acfe004a25cc6c8e8484faed4311ab9e8
MD5 25dc1f4306a5885e81ae9bb6a69b3e28
BLAKE2b-256 8a602fd8d7c79da8acf9b7b277c7616847773779356b92acfc9bb158452174da

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.0-cp313-cp313t-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.15.0-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 5d6a60072b44c3c2b797a7ddcbcbbf2b34ea3cfd4721580fbfd2a09d9d9b84ba
MD5 bbb838b332a8a2e300c603c538d76eff
BLAKE2b-256 6b111eb400ef248e8c925fd883fbe325daf5e42cd1b0d308539dd332bd4f7ffc

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 b15741f501469009ae0ae90b7147958a664a7dede40aa7ff174a8a4645f546d0
MD5 e7d483d548ac6f9d3b56c1c8bacc77d8
BLAKE2b-256 4b235c20d9ad6f02c493e4023e5d2d09e1c1f15fe2753c9102c544aff068a88e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c77496cb10bd7549690fbbab3e5ec05857b83e49276f4a9423a766ddd2afcd4c
MD5 431cee25207a41b99aaad51a18ac06e7
BLAKE2b-256 d211e7b70e91f90bc4477e8eee9e8a5f7cf3cb41b4525d6394dc98a714eb8f7f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a97261f1fccb8e50ecd2890a96e46efdc3f57c80a197324c6777827231eca712
MD5 5fb4f423f69c4b441e8b2f64e6ffa7ac
BLAKE2b-256 499f833c541512cd091b63c10c0381973dfe11bc7a503a818c16384417e0c81e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 75e8a04e91432dde9f1838373cf93d23726c79d3e908d319acf0e796f85592e7
MD5 09d95989989eff1ec164476848e70aaa
BLAKE2b-256 9031cc19f4a1bdb6afb09ce6a2f2615aa8d44d994eba0d8e6105ed1af920e736

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 6550fa135c7deb8ead6af49ed7ff648532ea8334a1447fe34a36315ef79c5c29
MD5 1d92ae06f521230faa488fb0c6f67643
BLAKE2b-256 306f6cca7692e7dddfec6d8d76c54dc97f2af2a41df4ac0674b999df1f09a5f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1aa62e277fc1cbd80e6deacae6f4d983b41b3d7728e0645c5d741a6149bba45
MD5 a1adc32f416b8c38e047a7c60262b44e
BLAKE2b-256 8f7c89fbcabb2739b7a5b8dc959a1b6c5761f6484f5fed3486854b3c789bb1de

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f18f85e4218d1b40f000f42a92239a7a61a902cd42c65e6c360dbd17dcb20894
MD5 52c6bc51652bb8cb10d8147eb39513e0
BLAKE2b-256 22db987f2f086ca4d7a6582eb4ccd513f9b26b42d9e4243a087609a3137a8fc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a2a438005b6f22d0273413484d6094d7c2c5d10ec1b3a3bf128e0d1d3ba53258
MD5 a8a6e484909898be7921d5dd5b22456e
BLAKE2b-256 5b6f11bace093c52e7d4d26c8e606ccd7ae8c972189622469ec0d9e28161e28b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4ab395feec8d249ec4044e228e98a7033f043426a265df439dc3698823f0a4e4
MD5 ab5223d3f75d0b12e205cd1baa0cad09
BLAKE2b-256 58fc2303901b16c4ba05865588990a420c0b4156270b44379c20931544a1d962

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 351a341c2105aa430b7047e30f1bf7975f6313b00165d3fc07be2edaf741f279
MD5 f25e1bdbda28a822f42fe249ed35117b
BLAKE2b-256 3738ea0e13b18c30ef951da0d47d39e7fa9edb82a93a62990ffbd7cea9b622d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 066f8f33f18b2419cd8213b2436fa7fbc9c499f315971cfa3ce1f9820c001b1b
MD5 0b7d8cc6ef47814934952c2e9a1f5005
BLAKE2b-256 39140338d6190cb8e6d22e677ab1d4eabd4117f67cca70c54cd04b82ff64e068

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d1e7b1776f0797956c509e123d0952d10d293a9492dea9f288ab9570ec01d1a5
MD5 ef026bef30fe531fb9989af8c0cdddfe
BLAKE2b-256 8659db537c0949e83668c38481d426b9f2fd5ab758c4ee53a811dd0a510626a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1c11465f97e2abf45a014b83b730222f8f1c5335e802c7055a67d50de6f1f4e3
MD5 4bb3e96858157d6c056a7004e2f07321
BLAKE2b-256 e5f4f708c900ecee41b2025ef8413d5351e5649eb2125c506f6720cc69b06f5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cc0bc345cf2df9d1c00ac443f50d543c1ccfa8b0422cb85b1ab70d681c0b255b
MD5 8719d27651b3ffa293b79f3b842c72de
BLAKE2b-256 f4e49b8a78fb2d894471bc344e37f1949bdd784bd914d031dba0ba3a40c71dd7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 40b2c7e92c44a84d748d21706c68dc6ff8161d80b59c99d774721a0d2317d7c7
MD5 59cdfdd4562d803f30525292ec539d19
BLAKE2b-256 95bf8ead82a87495149542748e828d153fd232a512a22c83b02c4815c1a9c7d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 c2f6bb8b5216ab9e7873bc08b5d7bef2b8abbb578a3069bf1cd14a45d71d771d
MD5 e3e828f6e569673dea82222fe7ae69ee
BLAKE2b-256 234feca9b954942916ba2f453891b8593ab444cd872396fe66a3936616f236f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2fb6a5d26af81fc0f00f9360a891e05cf755e149bba391c4d563adc54812973d
MD5 a6d0c3d8955b7c5ffbd87b6a52b22794
BLAKE2b-256 e876a0c40ad064d3a20a4fde231e35d56e9a01ce82164278180e82d5daf85469

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f0b271b462769543716f92d3a4f90527df6ef5ed05ee95ec4137f513e21e1b77
MD5 22fd10d21afa660e63d199900a046f27
BLAKE2b-256 2d559ddf903deda1413e87fed792f416b7123daee5b8efbad6a202a7421c36a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 2a77aadd57cac1682e4401a72724d2796d89a4ba129b1a5812aa94ee480826eb
MD5 74d7184f4243545ee0663de4cd43bb10
BLAKE2b-256 f0634d2749d8d54d230bad9b3a6b0d00cc28c6ff6b2fdffc26a8ccf76cc5a974

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fa248c9eb220197d363f688818dac2fd4b2f0cd7d843ca7105d652034823427d
MD5 bb6c680854d035c24e494b5089301444
BLAKE2b-256 eecfd46ef1234ba335aabc2f013210db8e0821a22f5e644a2e9449df199ecc23

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0ab068bce62a45aa3e7367eceaffb5dde60b7eb853be8dece45132e3d0ff4879
MD5 cca2e683704807d714dcec88963ff3a5
BLAKE2b-256 e8d560f972840f79c5e7544fce567c56f1e4e50468f996baba3e78d823dd62a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c60e71b6d10cfc284c9bf36bd885e8d44c46f688ce50aa91b5edd90181dea687
MD5 a3ce84ea414ab90d3e0e4984e2fb700b
BLAKE2b-256 e51298a9d9f766665e8a3b6252454e17cb0c464606a28cf2fa09399b003345fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f30bae8bc1c2d613e28e5af3e8cceb09b742f1c8a8a5f839fb67afaffc03b61
MD5 1a67d7c84e25978d541ad13414fe5dd0
BLAKE2b-256 c3b6f5739011d009b3a30f6a53c5240979030ba29ae46a8c67e3a15759f7c37d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c210f8b35dc6f30aafd4b4365ca89b9d1189f21ab49b8e68fa6322a847aef138
MD5 5bdf956455828ab133fcaddcdb49c7fc
BLAKE2b-256 58648fb7f9d45bb98190355454cd04dad8d8f27223d6bd52f83af07f637168a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ae901f3a55bfafdde31d289590fa25e3245735a2b1e8c7cc15871710a002871
MD5 99ce47764e6b83fe7499f37624a47ade
BLAKE2b-256 d9b99965b990035d8773328e0a8c8b457a87bf2b19f6c4126d9d99296be5d16a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8c9004af7c8d67cce7f1aae1026fb55607f4aa600710d08ede3a3ce4aeefe7e0
MD5 c6a347a617988b7142045f4bbe735428
BLAKE2b-256 0184c01099b59a285a1ebba64ae93f62bfa036675340fd1b0045ae65890a0442

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0e90a1c315a0226ec822d973817967f9223b7701546c8c2a7913e7ab0926294d
MD5 18ebfbf81c575ba7c5aa0f8c1cd43d82
BLAKE2b-256 44534f6bddbcde3c71e56d0aa1337ec95950f3d27dd4153e25aadf0feac71751

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 37a10c377ce3a4a85f4a67f28b7afe093154cde77eaf248a72e856aa08b4d865
MD5 2a62b6e868aa4e4f80409a1c6ed59c0b
BLAKE2b-256 3b4fd9b4067feb69b3fa6eb0488e1b59e2ad5b463fe39f59e527eab2aca00bb0

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 860a74063284a2ae9bfedd694f299cc2c68e2696c5f3d440cc9d18bb81b9dd04
MD5 f42997ba4ce134d3804c99874981234e
BLAKE2b-256 1d7d52778b930e5cc3e52a37d950b1c10494244308b4329b25a0ff0d88303a81

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 42bfb257930800cf43e7c62c832402c704ab60797c992faf88d20e903eac8f32
MD5 67e8bff72ad649239ce231b808e034a3
BLAKE2b-256 22edd2d34422143474cadc15b60d482b1c35683dbc5c63c24346ddd0df09bcaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8020c99ec13a7db2b6f96cbe82ef4721c88b426a4892f27478044af0284615ef
MD5 f23ab3823aabe4dc85615ff0c5883af2
BLAKE2b-256 e72c5e07874e59e623a943a0acf1552a80d05b70f31b402287a8fc6d7ec634c7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ae1b0d82ac2d987f9ea512b1c9adfcc71a28de3dea3a6039b54d76cffda9901e
MD5 87cfc07b6ed58b55cd2f68b03b210431
BLAKE2b-256 549d8eb5d4fb8bf7e93a75964a5da71a75c67c864baf7fa3f98598187b3c7e57

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 2c9cb907439d20bd0c7d7565ca01ee52234203208433749bae5b516907526928
MD5 43f6fa3bb94d3d1721aa4551c91e259a
BLAKE2b-256 0094e20d38984fc17a636371bffd2ae0f698124fdc8e75ef969cd2da6ba7cea7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f3d37768fce7f88dd2a8c6091f2325dea27d30d30d5c6e7a1c0f0af77723b708
MD5 818de7661778217383677db2d8f10354
BLAKE2b-256 7b7e1c445c2b6f0e30a274dc8082e0c3c7825411cce80d726bccd697c98cc8d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 032396229564bca02440396bd327710719f724f5e7b7e9f7a8eb3faa4a2c2281
MD5 c355f1d04ab67487781577bf0ef82738
BLAKE2b-256 d17a4a68d331aef8cf2e2393c14a3aacb635c62aa86071b0229899fb5baaa907

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8d2c0c44d569ce0f2850f5c926f8caeb5f245fbc84475aeb36efccc2103e6dbd
MD5 f6324bf0e20fbe1dba3d83518e2b13c3
BLAKE2b-256 c45997e1fa539d124a509a00ab7f669289d1c1d236ecabf12948a18f16c91082

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 773b6eb282ce11ee19f05f6b2d4404fa308e5bbd353b0b80a0262caad6db2cd7
MD5 305dc708603e13538afe1c04d1a492e0
BLAKE2b-256 f62ae71dea19822e2e404e83992a08c1d6b9b617bb944f28c9c2fbd85d02c91e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 392b8ab019e5502d08aff85c6272209c24bc2cbe706ea82a56368f524236614a
MD5 945a9d1b0007562bc6943620bbdc691f
BLAKE2b-256 2a0a8b1a51466f7fe9f31dbe4bc7e0ca848674f9825e0f737b929b97e8c60aa7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9100ddbec09741cc66feb0fc6773f8bdbd0e3c345689368f260082ff85dcc0cd
MD5 92763fd824c02a880f6c8be64590a0f5
BLAKE2b-256 94fa4d09f814779d0ea80a28ed8e4c6662ec9a4a8ecef0ac52190ebac6262d14

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1303d4d68a9b051ea90502402063ecf3807da00ad2affa19ca1ae3b90b3c5f67
MD5 e4ae61eb9894a563a25f4e67ca112dd3
BLAKE2b-256 7f822d2551829b082f4b6d82b9f939b031fb808a10aab1ec0664f82e150bb9a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f862193b8696249d22ec433e85fd2ab0ad9596bc3e45e6c0bc55e8aeba97be2
MD5 0bdcc1c6aaa7e260edbc86af48b7b5fd
BLAKE2b-256 e413daa722f5765c393576f466378f9dfd29d77c9bed939e0688f96afa3601ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e58585a58209d72691ce2d62a9147445f5a87beb0bde97fde284c96ae392a3d1
MD5 499df3efd0d316caf46324dda459d8e3
BLAKE2b-256 d5720528a1eb9f42dd2d8228a0711458628f35924d131f623eaebc35fd23d3d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 d92a5cd21fdb083931d546c207aa29633787c5dc5b02daab2d32b843f88a2c53
MD5 9798684bdcfc390807fd7bd1908dbff8
BLAKE2b-256 d4548c3f65c8a5687925e84708f19d63f7f37d28e2b86a48d951702ad94424d8

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cf4bd113a69c0a740e27cb962ce10630c36d2b8f59d759a651b955ee9d18a823
MD5 52551d6ce0bcf00862b51356b742f227
BLAKE2b-256 a91aaa85027db7ab15829c12feebbc33b404f53fc399bd559d85fd0d6365ff0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2c8aea7781d2a372227871de4e1a1332aa96f5a89fd76c5e835dafdbad102887
MD5 051d0523a3fc065b1eac37fc78895e95
BLAKE2b-256 371cb9c257cd70cb453b6d10f3ebf0402cdb11669ab455389096f09839670290

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ceb8fc27d38793f9c97149be8302720c5b22e5c195a37bf2c45dc36c4600a512
MD5 2f69fe87ebd7440b183b5d9b59c7c758
BLAKE2b-256 7a9098768ad2ed90c1fda15d64157de2dfbf73c1c074d4b1bfaca915480bc7cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2fd73e3da91a0a722d67165e849ce2cdc10de0e0d48738c142be8c6c5f310f4c
MD5 4dd7debf643a41400c94f6be7e276e40
BLAKE2b-256 c32e5d37abe2be0e819c21e2338bebd410e481763ce526a9138c8c3652fa0123

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30ce785d2adb8e32c3f7741442370a74834ec4c01f3c48f0750227a0b4ef27d6
MD5 82748d0f3c0b0b4dbdbed32731458c67
BLAKE2b-256 df04d79962dd49d00c97e2a9b4cacea1947904d02135936960351f9a96d4c1a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 05906b93d72f03339e6bb7cf8dc10ebda64a0266126eed6beba79e20abcf5fd4
MD5 6b067c121da101d412f1cc608a88e251
BLAKE2b-256 913894593d34f8c67a0b6f6cbc027f016ffa9780b3a858a7a86f6fd7a15bcc1e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7c468136b8bd6bb18c8786e4236a1fa27362f24cb23450ba0cb204ab379b8e6f
MD5 d9bc40951477ba5823797b46ffc4afa8
BLAKE2b-256 6dd890f01fb83c0c7ba509303ec93e32a308fbfa167d264860b01c0fd0dbbd06

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 abbf258599526ad0326fe51e252e24f2bd6f24f1852681b4b78feda3808f1d18
MD5 ab3572f17fddb847e646a4a997015cc6
BLAKE2b-256 6d38be2832be361ba1b9517c76f46d30b64e985be1dd43c974f4c3a4b1844436

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d726e3ceeb337191324b49de298142f27c3ad10886341555d1d5315b5f252c6a
MD5 9b9523fa27c98baafe026ecf78730c1c
BLAKE2b-256 d6c4fbfb806209f1fe4b7dccdfb07bc62bb044300734a945b06fd64db446ef6a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f924585cdacf631cd382b657966847bb537bf9ed0a6f9b991da5f05a631480f
MD5 5886fd902da31b5e0f1bcffa3a8aa819
BLAKE2b-256 5d8e827be942883a4dc0862c48626ff41af3320b1902d136a0bf4b9041f2c567

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 edebcf7d1f601199084bb6e844d7dc67e03e04f6ac786b0332d616635c4ff7a4
MD5 6d7848ca809321653dc6f10edca6626a
BLAKE2b-256 1dda76a2c7e510ba15fe323d9509c223ab272da79ea59f54488f4a78da6426db

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1c15024a3d892223b18f597c86d59387249dc396590844ce6b9f6131d1093bae
MD5 3e27a469db8949e4254f464316517af0
BLAKE2b-256 af381749bf02cb91be2dc504c2c8a3fc46815fc3c06f6532e058536406cd436b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for jiter-0.15.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 8f7e9bc0f1135039b22ee6eab588d42df1ce55842b30740a352885eb267bd941
MD5 db4ba79a54461ad98e60e3ba2a632b7e
BLAKE2b-256 9859ba1ec23b16a532ffcafce111827b65cc77e79744de63c81be189262dbe9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 4363818355dbc70ae1a8e9eaba9de350d93ede4ff6992b8f8eb8cbb6e5122d42
MD5 a42f5771a4734e253d463a2ccdb7bfa7
BLAKE2b-256 90a72ec0105572aee537c3bbac6be1dcefb12f59d7f029c4fd28a04a47fea25c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7ce8902f939970048b233087082e7bb829db29375811c7ad50687b8624c6fd08
MD5 5dabbdf6b3f4a4d6a263081385637426
BLAKE2b-256 7d7ccfd0ab10ac58c5c6a711ef17e6b3c13938a8e4c2db97d4b4bfd5aaf529b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-manylinux_2_31_riscv64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp39-cp39-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 d636d5095155afd364247f65070fab7beda13498d7ff4de331046e704ab9657f
MD5 e5efd2ff6872a2646c7d1a3cdd0a7abd
BLAKE2b-256 fa8108911d1ebf7d2780b4438b0073499668869dde9b95bf83fe5e3a54ef4163

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c84c1b7be454b0c16f8499b4ebfbfd82ea5cca6527cceefcbbc06a7557b5ed2e
MD5 42f57a41daf4167fc0df570b038b225c
BLAKE2b-256 06ee8f2da5bd1fc62df6d78890e5c98f6bc1140566a71c7a06b4074955322425

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d72d8af5c1013656a8870c866660627d1a75bc185814ee022c8533caa1de88ae
MD5 affca8d90d3f374d72b0bdca9a5c373d
BLAKE2b-256 5d0b1f325e1c0d83a3fd9c43534755f35dd35d018a6bc78022cd29426182087d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ab596fa3837e91e7e6a31b5f639988bfc6a35d1f915ac3932d946062219d588f
MD5 72c1ba134acc16a1cba3e7b6088c4965
BLAKE2b-256 ee4258c2951603b7beb896a129a2fa0b857149faf71f97f24ae63f358f99bf1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 50164d7610c00e7cd913a873fce30b6beeebf4b37e53983e33f22de4c900f6b8
MD5 4c3b5fcd1a39aa8a06169e2af9f2dd4e
BLAKE2b-256 7d79c5bcc400c4c5fa4a57d8d6ab6fc468d762f800a94b9be3051c29c267de6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5607e6013ed7e6b0ec9661e467b7ffde0aa7ab36833a04850f26fcf88ed4845b
MD5 1d4eab43d329e7b45a5fa354c73d6c6e
BLAKE2b-256 12c41bd1b4e1da9a12a37e92eeacfd850452de208c95265989deda3fa0d172e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d3d6683288c11cbab50e865f2e2f13950179aa45410e30b2cfbd3fb7b0177bf
MD5 5f0af64146ed9068f2ea40f27ef5d59b
BLAKE2b-256 f2684d3db1ca5701ed59f0c5386e59920c5eb389a5aec79e7749c6768428f304

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 25ffbe229aa8cd98c28879d8aa1a6e34ae77992ab984a65fba800859dab16269
MD5 390aa6309db570463cc82ba627c6fe66
BLAKE2b-256 6e6edd0d3f712e2045302a66b1b54dd3d9a9fb095c1c74e60537f0f32760074b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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.15.0-cp39-cp39-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.15.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 04b400bbf8c9efb03d9bdd976475c919c1d85593b04b9fff7ae234065daf87ae
MD5 67d191631e9e4194517288d274f3834a
BLAKE2b-256 fdf533aa7dcd6b470db4c13098ea464e67bf4c32939909e21ce435105924c78a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.15.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