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.14.0.tar.gz (165.7 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.14.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (349.6 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ x86-64

jiter-0.14.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.0 kB view details)

Uploaded graalpy312manylinux: glibc 2.17+ ARM64

jiter-0.14.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl (308.4 kB view details)

Uploaded graalpy312macOS 11.0+ ARM64

jiter-0.14.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl (308.8 kB view details)

Uploaded graalpy312macOS 10.12+ x86-64

jiter-0.14.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (351.4 kB view details)

Uploaded graalpy311manylinux: glibc 2.17+ x86-64

jiter-0.14.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.8 kB view details)

Uploaded graalpy311manylinux: glibc 2.17+ ARM64

jiter-0.14.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl (309.9 kB view details)

Uploaded graalpy311macOS 11.0+ ARM64

jiter-0.14.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl (311.4 kB view details)

Uploaded graalpy311macOS 10.12+ x86-64

jiter-0.14.0-cp314-cp314t-win_arm64.whl (191.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

jiter-0.14.0-cp314-cp314t-win_amd64.whl (204.7 kB view details)

Uploaded CPython 3.14tWindows x86-64

jiter-0.14.0-cp314-cp314t-win32.whl (208.0 kB view details)

Uploaded CPython 3.14tWindows x86

jiter-0.14.0-cp314-cp314t-musllinux_1_1_x86_64.whl (553.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ x86-64

jiter-0.14.0-cp314-cp314t-musllinux_1_1_aarch64.whl (521.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.1+ ARM64

jiter-0.14.0-cp314-cp314t-manylinux_2_31_riscv64.whl (358.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

jiter-0.14.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

jiter-0.14.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (378.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

jiter-0.14.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (463.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

jiter-0.14.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (368.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

jiter-0.14.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (348.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

jiter-0.14.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (393.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

jiter-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl (323.4 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

jiter-0.14.0-cp314-cp314-win_arm64.whl (192.3 kB view details)

Uploaded CPython 3.14Windows ARM64

jiter-0.14.0-cp314-cp314-win_amd64.whl (202.2 kB view details)

Uploaded CPython 3.14Windows x86-64

jiter-0.14.0-cp314-cp314-win32.whl (207.0 kB view details)

Uploaded CPython 3.14Windows x86

jiter-0.14.0-cp314-cp314-musllinux_1_1_x86_64.whl (553.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ x86-64

jiter-0.14.0-cp314-cp314-musllinux_1_1_aarch64.whl (521.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.1+ ARM64

jiter-0.14.0-cp314-cp314-manylinux_2_31_riscv64.whl (358.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

jiter-0.14.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (354.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

jiter-0.14.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

jiter-0.14.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (461.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

jiter-0.14.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

jiter-0.14.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (344.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

jiter-0.14.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (394.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

jiter-0.14.0-cp314-cp314-macosx_11_0_arm64.whl (315.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

jiter-0.14.0-cp314-cp314-macosx_10_12_x86_64.whl (315.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

jiter-0.14.0-cp313-cp313t-win_arm64.whl (190.1 kB view details)

Uploaded CPython 3.13tWindows ARM64

jiter-0.14.0-cp313-cp313t-win_amd64.whl (203.5 kB view details)

Uploaded CPython 3.13tWindows x86-64

jiter-0.14.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (357.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ x86-64

jiter-0.14.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (346.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

jiter-0.14.0-cp313-cp313t-macosx_11_0_arm64.whl (320.9 kB view details)

Uploaded CPython 3.13tmacOS 11.0+ ARM64

jiter-0.14.0-cp313-cp313-win_arm64.whl (191.1 kB view details)

Uploaded CPython 3.13Windows ARM64

jiter-0.14.0-cp313-cp313-win_amd64.whl (201.3 kB view details)

Uploaded CPython 3.13Windows x86-64

jiter-0.14.0-cp313-cp313-win32.whl (205.7 kB view details)

Uploaded CPython 3.13Windows x86

jiter-0.14.0-cp313-cp313-musllinux_1_1_x86_64.whl (552.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ x86-64

jiter-0.14.0-cp313-cp313-musllinux_1_1_aarch64.whl (520.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.1+ ARM64

jiter-0.14.0-cp313-cp313-manylinux_2_31_riscv64.whl (356.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

jiter-0.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

jiter-0.14.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (378.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

jiter-0.14.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (461.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

jiter-0.14.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (369.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

jiter-0.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

jiter-0.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (392.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

jiter-0.14.0-cp313-cp313-macosx_11_0_arm64.whl (314.9 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

jiter-0.14.0-cp313-cp313-macosx_10_12_x86_64.whl (315.5 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

jiter-0.14.0-cp312-cp312-win_arm64.whl (191.5 kB view details)

Uploaded CPython 3.12Windows ARM64

jiter-0.14.0-cp312-cp312-win_amd64.whl (201.6 kB view details)

Uploaded CPython 3.12Windows x86-64

jiter-0.14.0-cp312-cp312-win32.whl (206.0 kB view details)

Uploaded CPython 3.12Windows x86

jiter-0.14.0-cp312-cp312-musllinux_1_1_x86_64.whl (553.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ x86-64

jiter-0.14.0-cp312-cp312-musllinux_1_1_aarch64.whl (520.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.1+ ARM64

jiter-0.14.0-cp312-cp312-manylinux_2_31_riscv64.whl (357.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

jiter-0.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (353.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

jiter-0.14.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (378.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

jiter-0.14.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (461.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

jiter-0.14.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (370.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

jiter-0.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (343.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

jiter-0.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (393.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

jiter-0.14.0-cp312-cp312-macosx_11_0_arm64.whl (315.9 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

jiter-0.14.0-cp312-cp312-macosx_10_12_x86_64.whl (316.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

jiter-0.14.0-cp311-cp311-win_arm64.whl (194.8 kB view details)

Uploaded CPython 3.11Windows ARM64

jiter-0.14.0-cp311-cp311-win_amd64.whl (204.7 kB view details)

Uploaded CPython 3.11Windows x86-64

jiter-0.14.0-cp311-cp311-win32.whl (208.7 kB view details)

Uploaded CPython 3.11Windows x86

jiter-0.14.0-cp311-cp311-musllinux_1_1_x86_64.whl (556.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ x86-64

jiter-0.14.0-cp311-cp311-musllinux_1_1_aarch64.whl (522.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.1+ ARM64

jiter-0.14.0-cp311-cp311-manylinux_2_31_riscv64.whl (360.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

jiter-0.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (358.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

jiter-0.14.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

jiter-0.14.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (463.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

jiter-0.14.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (372.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

jiter-0.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

jiter-0.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (397.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

jiter-0.14.0-cp311-cp311-macosx_11_0_arm64.whl (321.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

jiter-0.14.0-cp311-cp311-macosx_10_12_x86_64.whl (316.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

jiter-0.14.0-cp310-cp310-win_amd64.whl (204.6 kB view details)

Uploaded CPython 3.10Windows x86-64

jiter-0.14.0-cp310-cp310-win32.whl (208.4 kB view details)

Uploaded CPython 3.10Windows x86

jiter-0.14.0-cp310-cp310-musllinux_1_1_x86_64.whl (556.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ x86-64

jiter-0.14.0-cp310-cp310-musllinux_1_1_aarch64.whl (522.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.1+ ARM64

jiter-0.14.0-cp310-cp310-manylinux_2_31_riscv64.whl (360.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

jiter-0.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (358.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

jiter-0.14.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (380.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

jiter-0.14.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (463.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

jiter-0.14.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

jiter-0.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (347.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

jiter-0.14.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (397.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

jiter-0.14.0-cp310-cp310-macosx_11_0_arm64.whl (321.2 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

jiter-0.14.0-cp310-cp310-macosx_10_12_x86_64.whl (316.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

jiter-0.14.0-cp39-cp39-win_amd64.whl (206.8 kB view details)

Uploaded CPython 3.9Windows x86-64

jiter-0.14.0-cp39-cp39-win32.whl (211.1 kB view details)

Uploaded CPython 3.9Windows x86

jiter-0.14.0-cp39-cp39-musllinux_1_1_x86_64.whl (558.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9musllinux: musl 1.1+ ARM64

jiter-0.14.0-cp39-cp39-manylinux_2_31_riscv64.whl (362.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.31+ riscv64

jiter-0.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

jiter-0.14.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (382.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

jiter-0.14.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

jiter-0.14.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (373.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

jiter-0.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (350.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

jiter-0.14.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (399.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

jiter-0.14.0-cp39-cp39-macosx_11_0_arm64.whl (315.3 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

jiter-0.14.0-cp39-cp39-macosx_10_12_x86_64.whl (319.9 kB view details)

Uploaded CPython 3.9macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for jiter-0.14.0.tar.gz
Algorithm Hash digest
SHA256 e8a39e66dac7153cf3f964a12aad515afa8d74938ec5cc0018adcdae5367c79e
MD5 0112bb6f4a34a070906569f6fa0f41e1
BLAKE2b-256 6ec10cddc6eb17d4c53a99840953f95dd3accdc5cfc7a337b0e9b26476276be9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-graalpy312-graalpy250_312_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67f00d94b281174144d6532a04b66a12cb866cbdc47c3af3bfe2973677f9861a
MD5 1320f901b41eea3009a7a921dcae47e4
BLAKE2b-256 dae91f9ada30cef7b05e74bb06f52127e7a724976c225f46adb65c37b1dadfb6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-graalpy312-graalpy250_312_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 432c4db5255d86a259efde91e55cb4c8d18c0521d844c9e2e7efcce3899fb016
MD5 760827176eef14f2124dc18bef1fe0f0
BLAKE2b-256 ca44e26ede3f0caeff93f222559cb0cc4ca68579f07d009d7b6010c5b586f9b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-graalpy312-graalpy250_312_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33a20d838b91ef376b3a56896d5b04e725c7df5bc4864cc6569cf046a8d73b6d
MD5 5c4e2845352561277eedf77a3a774f11
BLAKE2b-256 60cfa7e19b308bd86bb04776803b1f01a5f9a287a4c55205f4708827ee487fbf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-graalpy312-graalpy250_312_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 fbd9e482663ca9d005d051330e4d2d8150bb208a209409c10f7e7dfdf7c49da9
MD5 e10d68af73681e2e9fee55e03ae46980
BLAKE2b-256 21429042c3f3019de4adcb8c16591c325ec7255beea9fcd33a42a43f3b0b1000

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-graalpy311-graalpy242_311_native-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e52c076f187405fc21523c746c04399c9af8ece566077ed147b2126f2bcba577
MD5 69e70014f9de481b41f70c660e8aea58
BLAKE2b-256 998f15e7741ff19e9bcd4d753f7ff22f988fd54592f134ca13701c13ea8c20e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-graalpy311-graalpy242_311_native-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 844e73b6c56b505e9e169234ea3bdea2ea43f769f847f47ac559ba1d2361ebea
MD5 d2958b41efd5ea75eae693ce06319e3d
BLAKE2b-256 b27cc16db114ea1f2f532f198aa8dc39585026af45af362c69a0492f31bc4821

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-graalpy311-graalpy242_311_native-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ac9cbaa86c10996b92bd12c91659b60f939f8e28fcfa6bc11a0e90a774ce95b
MD5 dc009265fb9369b4420313086e3bec20
BLAKE2b-256 60bb520576a532a6b8a6f42747afed289c8448c879a34d7802fe2c832d4fd38f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-graalpy311-graalpy242_311_native-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 a25ffa2dbbdf8721855612f6dca15c108224b12d0c4024d0ac3d7902132b4211
MD5 75b790e6eb6d2347001204346626ab2f
BLAKE2b-256 32a1ef34ca2cab2962598591636a1804b93645821201cc0095d4a93a9a329c9d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 191.3 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.14.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 5419d4aa2024961da9fe12a9cfe7484996735dca99e8e090b5c88595ef1951ff
MD5 5e10ef85ea7422a189adf5966a03167b
BLAKE2b-256 dc2ea44c20c58aeed0355f2d326969a181696aeb551a25195f47563908a815be

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 204.7 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.14.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 14c0cb10337c49f5eafe8e7364daca5e29a020ea03580b8f8e6c597fed4e1588
MD5 bd706a7066002d7ad4f0d87e9ab4520b
BLAKE2b-256 d6ac2b760516c03e2227826d1f7025d89bf6bf6357a28fe75c2a2800873c50bf

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 208.0 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.14.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 2f7877ed45118de283786178eceaf877110abacd04fde31efff3940ae9672674
MD5 cba55a6fb7b0a5ad88b9bfcf411fb35f
BLAKE2b-256 97f833d78c83bd93ae0c0af05293a6660f88a1977caef39a6d72a84afab94ce0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314t-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 645be49c46f2900937ba0eaf871ad5183c96858c0af74b6becc7f4e367e36e06
MD5 145a86f45b6e071ea17ea93e0d296d0b
BLAKE2b-256 0b7b3b0649983cbaf15eda26a414b5b1982e910c67bd6f7b1b490f3cfc76896a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314t-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 37826e3df29e60f30a382f9294348d0238ef127f4b5d7f5f8da78b5b9e050560
MD5 a18179dcb4ada1e69fe853d5282a2345
BLAKE2b-256 3ca1b1ff7d70deef61ac0b7c6c2f12d2ace950cdeecb4fdc94500a0926802857

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 b08997c35aee1201c1a5361466a8fb9162d03ae7bf6568df70b6c859f1e654a4
MD5 a7116615dea8003c4e3e1b584eb3aa40
BLAKE2b-256 7226e054771be889707c6161dbdec9c23d33a9ec70945395d70f07cfea1e9a6f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 78d918a68b26e9fab068c2b5453577ef04943ab2807b9a6275df2a812599a310
MD5 a79e5c47aefc0013b3494a07d8991c6b
BLAKE2b-256 c4c3da43bd8431ee175695777ee78cf0e93eacbb47393ff493f18c45231b427d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8b39b7d87a952b79949af5fef44d2544e58c21a28da7f1bae3ef166455c61746
MD5 339e03103317c0b3154b907a4634a223
BLAKE2b-256 acf019046ef965ed8f349e8554775bb12ff4352f443fbe12b95d31f575891256

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1aca29ba52913f78362ec9c2da62f22cdc4c3083313403f90c15460979b84d9b
MD5 fe321168b1eb17d6a163d586d0891257
BLAKE2b-256 3b5f188e09a1f20906f98bbdec44ed820e19f4e8eb8aff88b9d1a5a497587ff3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e74663b8b10da1fe0f4e4703fd7980d24ad17174b6bb35d8498d6e3ebce2ae6a
MD5 98b5f153a4f60f2695c924799b13bac3
BLAKE2b-256 ae4f8dc674bcd7db6dba566de73c08c763c337058baff1dbeb34567045b27cdc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8ef8791c3e78d6c6b157c6d360fbb5c715bebb8113bc6a9303c5caff012754a
MD5 f405dbddb71948ce3b3b7c5a8b34be32
BLAKE2b-256 836e7b3314398d8983f06b557aa21b670511ec72d3b79a68ee5e4d9bff972286

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 260bf7ca20704d58d41f669e5e9fe7fe2fa72901a6b324e79056f5d52e9c9be2
MD5 7f66d4a7f808501cdccd1401437724de
BLAKE2b-256 c30f7bea65ea2a6d91f2bf989ff11a18136644392bf2b0497a1fa50934c30a9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bf7ff85517dd2f20a5750081d2b75083c1b269cf75afc7511bdf1f9548beb3b
MD5 c71194c637263bdb62201db555948a1f
BLAKE2b-256 05577dbc0ffbbb5176a27e3518716608aa464aee2e2887dc938f0b900a120449

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 192.3 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.14.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f2d4c61da0821ee42e0cdf5489da60a6d074306313a377c2b35af464955a3611
MD5 a766d83e36702bb26d9650f3b0fdf4cf
BLAKE2b-256 aa1f6e39ac0b4cdfa23e606af5b245df5f9adaa76f35e0c5096790da430ca506

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 202.2 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.14.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 bd77945f38866a448e73b0b7637366afa814d4617790ecd88a18ca74377e6c02
MD5 46098f742a045d075b5958778385a29e
BLAKE2b-256 e5435c2e08da1efad5e410f0eaaabeadd954812612c33fbbd8fd5328b489139d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 207.0 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.14.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7282342d32e357543565286b6450378c3cd402eea333fc1ebe146f1fabb306fc
MD5 2080389665902b062dc0ea3349b694fc
BLAKE2b-256 add86fe5b42011d19397433d345716eac16728ac241862a2aac9c91923c7509a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7609cfbe3a03d37bfdbf5052012d5a879e72b83168a363deae7b3a26564d57de
MD5 561a4675bb0b5ac11dec594165298284
BLAKE2b-256 896bb00b45c4d1b4c031777fe161d620b755b5b02cdade1e316dcb46e4471d63

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2492e5f06c36a976d25c7cc347a60e26d5470178d44cde1b9b75e60b4e519f28
MD5 242770dc9e48bf02ec7dc1b4c9ee01dc
BLAKE2b-256 e388837566dd6ed6e452e8d3205355afd484ce44b2533edfa4ed73a298ea893e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 004df5fdb8ecbd6d99f3227df18ba1a259254c4359736a2e6f036c944e02d7c5
MD5 4752faa5c21ba9390b300dd1aeeea14a
BLAKE2b-256 7d97e15b33545c2b13518f560d695f974b9891b311641bdcf178d63177e8801e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80381f5a19af8fa9aef743f080e34f6b25ebd89656475f8cf0470ec6157052aa
MD5 7ba8e6077318a7d6cd51fc48c87f2fb7
BLAKE2b-256 50023c05c1666c41904a2f607475a73e7a4763d1cbde2d18229c4f85b22dc253

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 26679d58ba816f88c3849306dd58cb863a90a1cf352cdd4ef67e30ccf8a77994
MD5 87215b7b1815ac54277a36bdf8966681
BLAKE2b-256 cea9c31cbec09627e0d5de7aeaec7690dba03e090caa808fefd8133137cf45bc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 be808176a6a3a14321d18c603f2d40741858a7c4fc982f83232842689fe86dd9
MD5 0b35532dc0f6474c56dbe82573bbd0e7
BLAKE2b-256 012f541c9ba567d05de1c4874a0f8f8c5e3fd78e2b874266623da9a775cf46e0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f4f1c4b125e1652aefbc2e2c1617b60a160ab789d180e3d423c41439e5f32850
MD5 68199af940045be28d498c45c0979e81
BLAKE2b-256 fc1f670f92adee1e9895eac41e8a4d623b6da68c4d46249d8b556b60b63f949e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ce17f8a050447d1b4153bda4fb7d26e6a9e74eb4f4a41913f30934c5075bf615
MD5 f5dc75522b9b26d4dbb242fe72a07da2
BLAKE2b-256 4740e2a852a44c4a089f2681a16611b7ce113224a80fd8504c46d78491b47220

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cff5708f7ed0fa098f2b53446c6fa74c48469118e5cd7497b4f1cd569ab06928
MD5 0e0d88bb725446103d195196c1560434
BLAKE2b-256 add28b1461def6b96ba44530df20d07ef7a1c7da22f3f9bf1727e2d611077bf1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4d50ea3d8ba4176f79754333bd35f1bbcd28e91adc13eb9b7ca91bc52a6cef9
MD5 759c72073a5863418f362b6b61e89143
BLAKE2b-256 a6958c7c7028aa8636ac21b7a55faef3e34215e6ed0cbf5ae58258427f621aa3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6f396837fc7577871ca8c12edaf239ed9ccef3bbe39904ae9b8b63ce0a48b140
MD5 233d590a461d193b4bcd5ff8cfbb6079
BLAKE2b-256 4f1e354ed92461b165bd581f9ef5150971a572c873ec3b68a916d5aa91da3cc2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp313-cp313t-win_arm64.whl
  • Upload date:
  • Size: 190.1 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.14.0-cp313-cp313t-win_arm64.whl
Algorithm Hash digest
SHA256 2e692633a12cda97e352fdcd1c4acc971b1c28707e1e33aeef782b0cbf051975
MD5 8b84d2154287431b543782e07a009011
BLAKE2b-256 966d9fc8433d667d2454271378a79747d8c76c10b51b482b454e6190e511f244

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp313-cp313t-win_amd64.whl
  • Upload date:
  • Size: 203.5 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.14.0-cp313-cp313t-win_amd64.whl
Algorithm Hash digest
SHA256 e1a7eead856a5038a8d291f1447176ab0b525c77a279a058121b5fccee257f6f
MD5 9910081904311114aeed482cbca10c5d
BLAKE2b-256 475bac1a974da29e35507230383110ffec59998b290a8732585d04e19a9eb5ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 651a8758dd413c51e3b7f6557cdc6921faf70b14106f45f969f091f5cda990ea
MD5 8c4704d329ff972dae128463411fc674
BLAKE2b-256 f93bf8d07580d8706021d255a6356b8fab13ee4c869412995550ce6ed4ddf97d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7b25beaa0d4447ea8c7ae0c18c688905d34840d7d0b937f2f7bdd52162c98a40
MD5 bb99dab2a012f6d592f5d25a357b4af1
BLAKE2b-256 adc7b002a7d8b8957ac3d469bd59c18ef4b1595a5216ae0de639a287b9816023

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e89bcd7d426a75bb4952c696b267075790d854a07aad4c9894551a82c5b574ab
MD5 1bc94682c819d59164426efd89e1bfd7
BLAKE2b-256 9128292916f354f25a1fe8cf2c918d1415c699a4a659ae00be0430e1c5d9ffea

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 191.1 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.14.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 34f19dcc35cb1abe7c369b3756babf8c7f04595c0807a848df8f26ef8298ef92
MD5 240a5894f206569486ff00bdd4c5c29d
BLAKE2b-256 5056752dd89c84be0e022a8ea3720bcfa0a8431db79a962578544812ce061739

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 201.3 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.14.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9b8c571a5dba09b98bd3462b5a53f27209a5cbbe85670391692ede71974e979f
MD5 d954cb0c4528e31095a5028b71fa0fa9
BLAKE2b-256 4c193f339a5a7f14a11730e67f6be34f9d5105751d547b615ef593fa122a5ded

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 205.7 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.14.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 882bcb9b334318e233950b8be366fe5f92c86b66a7e449e76975dfd6d776a01f
MD5 ebacb9e768528e021f8961439e9f864e
BLAKE2b-256 b689b1a0985223bbf3150ff9e8f46f98fc9360c1de94f48abe271bbe1b465682

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ad425b087aafb4a1c7e1e98a279200743b9aaf30c3e0ba723aec93f061bd9bc8
MD5 8abecfd327e9148ed5d9bff34618ee30
BLAKE2b-256 412468d7b883ec959884ddf00d019b2e0e82ba81b167e1253684fa90519ce33c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 801028dcfc26ac0895e4964cbc0fd62c73be9fd4a7d7b1aaf6e5790033a719b7
MD5 a3dabdea455eca2ca64d2372889919e4
BLAKE2b-256 b0cc8c6c74a3efb5bd671bfd14f51e8a73375464ca914b1551bc3b40e26ac2c9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 3a99c1387b1f2928f799a9de899193484d66206a50e98233b6b088a7f0c1edb2
MD5 a1efcffa2816e1dbe14e2be005d3f1c0
BLAKE2b-256 58ea8050cb0dc654e728e1bfacbc0c640772f2181af5dedd13ae70145743a439

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fc4ab96a30fb3cb2c7e0cd33f7616c8860da5f5674438988a54ac717caccdbaa
MD5 c9f2602846beb06558ff1da9f520f91b
BLAKE2b-256 5d37c16d9d15c0a471b8644b1abe3c82668092a707d9bedcf076f24ff2e380cd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 215a6cb8fb7dc702aa35d475cc00ddc7f970e5c0b1417fb4b4ac5d82fa2a29db
MD5 b134d3b60b3d7471374ac37a1218f02d
BLAKE2b-256 f6c9c5299e826a5fe6108d172b344033f61c69b1bb979dd8d9ddd4278a160971

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6112f26f5afc75bcb475787d29da3aa92f9d09c7858f632f4be6ffe607be82e9
MD5 388f884667109acb54b2a67d696fbf76
BLAKE2b-256 0f838e8561eadba31f4d3948a5b712fb0447ec71c3560b57a855449e7b8ddc98

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62fe2451f8fcc0240261e6a4df18ecbcd58327857e61e625b2393ea3b468aac9
MD5 fbca25fd5038d7590a3b65b4066757bf
BLAKE2b-256 70afbf9ee0d3a4f8dc0d679fc1337f874fe60cdbf841ebbb304b374e1c9aaceb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 77f4ea612fe8b84b8b04e51d0e78029ecf3466348e25973f953de6e6a59aa4c1
MD5 a0df98d7ebd75e8145906877207a25a2
BLAKE2b-256 7d5e2d0fee155826a968a832cc32438de5e2a193292c8721ca70d0b53e58245b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ab18d11074485438695f8d34a1b6da61db9754248f96d51341956607a8f39985
MD5 775bd7d78c0b73ba4f5ba6edc13287fc
BLAKE2b-256 b03bcf71506d270e5f84d97326bf220e47aed9b95e9a4a060758fb07772170ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b77da71f6e819be5fbcec11a453fde5b1d0267ef6ed487e2a392fd8e14e4e3a
MD5 3f5ad0ded087b0390660392ff360e3e8
BLAKE2b-256 d6be080c96a45cd74f9fce5db4fd68510b88087fb37ffe2541ff73c12db92535

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 af72f204cf4d44258e5b4c1745130ac45ddab0e71a06333b01de660ab4187a94
MD5 755c90322308f21158a8270b0f6ba510
BLAKE2b-256 972a09f70020898507a89279659a1afe3364d57fc1b2c89949081975d135f6f5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 191.5 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.14.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 ee4a72f12847ef29b072aee9ad5474041ab2924106bdca9fcf5d7d965853e057
MD5 c2010ef5fe87779c68f293bbf9368736
BLAKE2b-256 01c375d847f264647017d7e3052bbcc8b1e24b95fa139c320c5f5066fa7a0bdd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 201.6 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.14.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fc7e37b4b8bc7e80a63ad6cfa5fc11fab27dbfea4cc4ae644b1ab3f273dc348f
MD5 74e1f1c56147cbd4f0130f27b40e88f4
BLAKE2b-256 36ac96369141b3d8a4a8e4590e983085efe1c436f35c0cda940dd76d942e3e40

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 206.0 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.14.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5dec7c0a3e98d2a3f8a2e67382d0d7c3ac60c69103a4b271da889b4e8bb1e129
MD5 0181bb94afd3065840ba2250b9bb8f7a
BLAKE2b-256 ef32e2d298e1a22a4bbe6062136d1c7192db7dba003a6975e51d9a9eecabc4c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ff3a6465b3a0f54b1a430f45c3c0ba7d61ceb45cbc3e33f9e1a7f638d690baf3
MD5 a06ed82b594e2f90fe85ea05b9f61875
BLAKE2b-256 a89f2020e0984c235f678dced38fe4eec3058cf528e6af36ebf969b410305941

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d824ca4148b705970bf4e120924a212fdfca9859a73e42bd7889a63a4ea6bb98
MD5 8a360643dbee0e8dd3534975aa4e67bb
BLAKE2b-256 a660456c4e81d5c8045279aefe60e9e483be08793828800a4e64add8fdde7f2a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ae039aaef8de3f8157ecc1fdd4d85043ac4f57538c245a0afaecb8321ec951c3
MD5 1f2b2df59c4677e40feae44dde77e12d
BLAKE2b-256 ded9137d65ade9093a409fe80955ce60b12bb753722c986467aeda47faf450ad

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c1dcfbeb93d9ecd9ca128bbf8910120367777973fa193fb9a39c31237d8df165
MD5 6a9a35e0cd4f2493150ee249904b182f
BLAKE2b-256 9178256013667b7c10b8834f8e6e54cd3e562d4c6e34227a1596addccc05e38c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 351bf6eda4e3a7ceb876377840c702e9a3e4ecc4624dbfb2d6463c67ae52637d
MD5 848b34f661987024d7ab325dd2e99808
BLAKE2b-256 e31bdd157009dbc058f7b00108f545ccb72a2d56461395c4fc7b9cfdccb00af4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 92cd8b6025981a041f5310430310b55b25ca593972c16407af8837d3d7d2ca01
MD5 d020f672c00d687917c2b310908e0868
BLAKE2b-256 94c15e3dfc59635aa4d4c7bd20a820ac1d09b8ed851568356802cf1c08edb3cf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7ede4331a1899d604463369c730dbb961ffdc5312bc7f16c41c2896415b1304a
MD5 e06a7deedd6b2bb176f2dbf187c10046
BLAKE2b-256 4864a329e9d469f86307203594b1707e11ae51c3348d03bfd514a5f997870012

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c409578cbd77c338975670ada777add4efd53379667edf0aceea730cabede6fb
MD5 9e993562dae7150a9ae2fb89cc6a5063
BLAKE2b-256 41a14f44832650a16b18e8391f1bf1d6ca4909bc738351826bcc198bba4357f4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d9d51eb96c82a9652933bd769fe6de66877d6eb2b2440e281f2938c51b5643e
MD5 0114bc0210b2a2ed961ac22efbd5eab4
BLAKE2b-256 2e4876750835b87029342727c1a268bea8878ab988caf81ee4e7b880900eeb5a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5252a7ca23785cef5d02d4ece6077a1b556a410c591b379f82091c3001e14844
MD5 a553cc2a5c9c0b95fd0d1c5e3dc68aa5
BLAKE2b-256 60a05854ac00ff63551c52c6c89534ec6aba4b93474e7924d64e860b1c94165b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2fb2ce3a7bc331256dfb14cefc34832366bb28a9aca81deaf43bbf2a5659e607
MD5 229c07cd09548cc4fd2505dff3683835
BLAKE2b-256 5a687390a418f10897da93b158f2d5a8bd0bcd73a0f9ec3bb36917085bb759ef

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 194.8 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.14.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6dd689f5f4a5a33747b28686e051095beb214fe28cfda5e9fe58a295a788f593
MD5 080d46022ead83d48e72fb90546fdff8
BLAKE2b-256 754aa676249049d42cb29bef82233e4fe0524d414cbe3606c7a4b311193c2f77

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 204.7 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.14.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 42d6ed359ac49eb922fdd565f209c57340aa06d589c84c8413e42a0f9ae1b842
MD5 9bb1fd69bba572b0c0159377472591a6
BLAKE2b-256 b886c500b53dcbf08575f5963e536ebd757a1f7c568272ba5d180b212c9a87fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 208.7 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.14.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 4927d09b3e572787cc5e0a5318601448e1ab9391bcef95677f5840c2d00eaa6d
MD5 bdc3e10d4525be1f6cd88acc5e9bde4d
BLAKE2b-256 605bbbb2189f62ace8d95e869aa4c84c9946616f301e2d02895a6f20dcc3bba3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 69539d936fb5d55caf6ecd33e2e884de083ff0ea28579780d56c4403094bb8d9
MD5 61f3526928b6621deb08817947df202d
BLAKE2b-256 5c00d1e3ff3d2a465e67f08507d74bafb2dcd29eba91dc939820e39e8dea38b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a7e4ccff04ec03614e62c613e976a3a5860dc9714ce8266f44328bdc8b1cab2c
MD5 03e763998f4625fa01c5a85bfdebd097
BLAKE2b-256 e90579d8f33fb2bf168db0df5c9cd16fe440a8ada57e929d3677b22712c2568f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 834bb5bdabca2e91592a03d373838a8d0a1b8bbde7077ae6913fd2fc51812d00
MD5 7d24f90491a21585220ee5a6636a0959
BLAKE2b-256 e9d1fe0c46cd7fda9cad8f1ff9ad217dc61f1e4280b21052ec6dfe88c1446ef2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c001d5a646c2a50dc055dd526dad5d5245969e8234d2b1131d0451e81f3a373
MD5 5be23bdc754c6a31323c2425e05773a1
BLAKE2b-256 ad5e0ddeb7096aca099114abe36c4921016e8d251e6f35f5890240b31f1f60ae

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 54b3ddf5786bc7732d293bba3411ac637ecfa200a39983166d1df86a59a43c9f
MD5 cd3381449c320d97af4d63052a259c12
BLAKE2b-256 f1e3f61b71543e746e6b8b805e7755814fc242715c16f1dba58e1cbccb8032c2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 23ad2a7a9da1935575c820428dd8d2490ce4d23189691ce33da1fc0a58e14e1c
MD5 91d0b9266c8516be664eea1b61e0ee14
BLAKE2b-256 b0960dcba1d7a82c1b720774b48ef239376addbaf30df24c34742ac4a57b67b2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 376e9dafff914253bb9d46cdc5f7965607fbe7feb0a491c34e35f92b2770702e
MD5 9741f4c7c6cb2bc1c06b7a295a3fa9bc
BLAKE2b-256 bcdb9b39e09ceafa9878235c0fc29e3e3f9b12a4c6a98ea3085b998cadf3accc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 02c4a7ab56f746014874f2c525584c0daca1dec37f66fd707ecef3b7e5c2228c
MD5 9409feef2ad9a5e4dddd6d0bfef5962e
BLAKE2b-256 ed364c72e67180d4e71a4f5dcf7886d0840e83c49ab11788172177a77570326e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4e9178be60e229b1b2b0710f61b9e24d1f4f8556985a83ff4c4f95920eea7314
MD5 45c365b9a76b15bd4004cbd743e4bfc0
BLAKE2b-256 ac21f5317f91729b501019184771c80d60abd89907009e7bfa6c7e348c5bdd44

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 71527ce13fd5a0c4e40ad37331f8c547177dbb2dd0a93e5278b6a5eecf748804
MD5 2f5490e43f4fc996ad4c5f0df9d8d7ea
BLAKE2b-256 cf34da67cff3fce964a36d03c3e365fb0f8726ade2a6cfd4d3c70107e216ead6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7e791e247b8044512e070bd1f3633dc08350d32776d2d6e7473309d0edf256a2
MD5 3f0678e23e370355025309344381b0be
BLAKE2b-256 8a1f198ae537fccb7080a0ed655eb56abf64a92f79489dfbf79f40fa34225bcd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 204.6 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.14.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cb8b682d10cb0cce7ff4c1af7244af7022c9b01ae16d46c357bdd0df13afb25d
MD5 c575b64314a7bbb4c0a3af602c95fcbd
BLAKE2b-256 2e99781a1b413f0989b7f2ea203b094b331685f1a35e52e0a45e5d000ecaab27

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 208.4 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.14.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ffb2a08a406465bb076b7cc1df41d833106d3cf7905076cc73f0cb90078c7d10
MD5 7f74e3bc0075717e818c10f045cb8de9
BLAKE2b-256 b183c25f3556a60fc74d11199100f1b6cc0c006b815c8494dea8ca16fe398732

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 107465250de4fce00fdb47166bcd51df8e634e049541174fe3c71848e44f52ce
MD5 2cb8f900d60b6ae941f7cf3a2957fa66
BLAKE2b-256 3d6b5c2e17559a0f4e96e934479f7137df46c939e983fa05244e674815befb73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9f541eaf7bb8382367a1a23d6fc3d6aad57f8dd8c18c3c17f838bee20f217220
MD5 f413f6bfb01cec199822c45389de5921
BLAKE2b-256 cf716768edc09d7c45c39f093feb3de105fa718a3e982b5208b8a2ed6382b44b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 df63a14878da754427926281626fd3ee249424a186e25a274e78176d42945264
MD5 e8ba937dfaad165dc6abb2e68851b972
BLAKE2b-256 ef24ca452fbf2ea33548ed30ce68a39a50442d3f7c9bf0704a7af958a930c057

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d597cd1bf6790376f3fffc7c708766e57301d99a19314824ea0ccc9c3c70e1e2
MD5 df645ea98ae56dda71fb539ea8bac25b
BLAKE2b-256 2a3b4347e1d6c2a973d653bbb7a2d671a2d2426e54b52ba735b8ff0d0a29b75c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7054adcdeb06b46efd17b5734f75817a44a2d06d3748e36c3a023a1bb52af9ec
MD5 e53940c0bcdfa4d36b2698110abe4cbc
BLAKE2b-256 252f97a32a05fed14ed58a18e181fdfb619e05163f3726b54ee6080ec0539c09

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb3dbf7cc0d4dbe73cce307ebe7eefa7f73a7d3d854dd119ea0c243f03e40927
MD5 0ca0277d4c0f7c1966ec0f97d7560161
BLAKE2b-256 f166549c40fa068f08710b7570869c306a051eb67a29758bd64f4114f730554c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b80c7b41a628e6be2213ad0ece763c5f88aa5ee003fa394d58acaaee1f4b8342
MD5 ee5ef960b81ff924b8a632aa1d03b90a
BLAKE2b-256 4962655c0ad5ce6a8e90f9068c175b8a236877d753e460762b3183c136db1c5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5cf4d4c109641f9cfaf4a7b6aebd51654e405cd00fa9ebbf87163b8b97b325aa
MD5 807acd27081b4dbace43de9785292bd5
BLAKE2b-256 dbd82040b9efa13c917f855c40890ae4119fe02c25b7c7677d5b4fa820a851fc

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4ea73187627bcc5810e085df715e8a99da8bdfd96a7eb36b4b4df700ba6d4c9c
MD5 723c94488b65f59a3b40cbb0798e3e49
BLAKE2b-256 e3a394470a0d199287caabeb4da2bb2ae5f6d17f3cf05dfc975d7cb064d58e0f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 41eab6c09ceffb6f0fe25e214b3068146edb1eda3649ca2aee2a061029c7ba2e
MD5 2ca366c2f8177ee9d9eee9f148bee2f4
BLAKE2b-256 2772b6de8a531e0adbadd839bec301165feb1fccf00e9ff55073ba2dd20f0043

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 02f36a5c700f105ac04a6556fe664a59037a2c200db3b7e88784fac2ddf02531
MD5 9cfd04863a8980c3633f488aa1d321f7
BLAKE2b-256 642ea9959997739c403378d0a4a3a1c4ed80b60aeace216c4d37b303a9fc60a4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 206.8 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.14.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e1765c3ef3ea31fe6e282376a16def1a96f5f11a0235055696c18d9d23ff30cb
MD5 8f29541aceb1b7a121a1eca5655d36d2
BLAKE2b-256 0b191a7be527189cdd61694cd98b83fd382e614e52053bc992728d1cda55022e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: jiter-0.14.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 211.1 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.14.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 0fbad7aa06f87e8215d660fc6f05a9b07b58751a29967bbd9c81ff22d21dbe8c
MD5 934c21becd5ad01fa372ddcd4db74a8d
BLAKE2b-256 b8d0aaed54dfa1c0375df395b2fc6cf7cfb86d480c1e38b821006207774c04de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f16b76d7d6aadbbaf7f79a76ff3a51dae14b7ebaaf9c1ba61607784ef51c537c
MD5 ae2392139f1c72457585b9e0b6a9de0b
BLAKE2b-256 4a0be2416d657d1a9a2503f3edcb493cec5b770b8cb417ccab7ed013b56242c8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 155dab67beac8d66cec9479c93ee2cbe7bfbc67509e5c2860e02ec2d9b0ecca1
MD5 b2192a1a4aa62502d2cb63ea2173cb3e
BLAKE2b-256 b60aef4bce553be8d9e2bbbdbdd3c0337c54773c8a9057c969242afa770d24d3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp39-cp39-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 78a4c677fe5689e0e129b39f5affe9210a500b6620ebb0386ebccf5922bee9a6
MD5 6b5310c8f6768d6895dc94d3697afded
BLAKE2b-256 e84853b5627bf5027fd9d49a35c5921e3c220140b51ef68814bfc93750c562b1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32959d7285d1d0deb5a8c913349e476ad9271b384f3e54cca1931c4075f54c6e
MD5 b028b73f4d6d3e910bf0e94e112b3c3a
BLAKE2b-256 fa8c0522d2dac614f141111d80fb9ca1363251dcef796b21523d4a9f78684f88

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 758d19dae7ea4c4da3cbc463dc323d1660e7353144ef17509ff43beab6da5a47
MD5 f4d830aef26264906e1f3c7848d202eb
BLAKE2b-256 c07d2d7f2d29543f8d2960396cc44068228ef9badaac35998b255277b439d3b4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d45fc7ea86a46bd9b5bceb9e8d43e5d10a392378713fb32cf1ce851b4b0d1f8
MD5 80ab7cb84e5ed50d103b673f6db1ee5b
BLAKE2b-256 e448153044aee4ebc7e4c92be697dd96da8e8eb7f920e1e90e4dda0c5aa7e400

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 55bee2b6a2657434984d9144c20cf27ba3b6acd495539539953e447778515efd
MD5 25e5b34b3111db1b8b2152672c4a1b1c
BLAKE2b-256 4bfdb6c8b38d1c53bd115abdd3143038f6f29fa4eaad915205ca959e5a16cc08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 59940ef6ac9f8b34c800838416f105f0503485fa8d71cae99f71d44a7285b01e
MD5 69c30d8dcb3a548d469fa7ec4a85b92f
BLAKE2b-256 63c1ba033578d36c99455f5fbd8bbce891c29e2348dfa25811875a636975d82f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6ae66782ecffb1a266e1a07f5abbfc3832afdd260fc9b478982c3f8e01eba5fa
MD5 42cdff2ec40d81ce5121dba26cc59857
BLAKE2b-256 7eb55dde259eec978b54be123128311ee0e9eb4cc095019d06ad45401913567f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6279c63849444a4fe9b9abf82e5df0fc7d13dea07f53f084b362485bd1f2bbe
MD5 5f6665dba19c7cdbe1a5d616b760bf5f
BLAKE2b-256 54f6ee3ddf36a0989959760417fbe662e4f7bc6451547a54262ef17c2882875d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for jiter-0.14.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 85581c4c3e4060fe3424cdfd7f3aa610f2dc5e9dde8b6863358eb68560018472
MD5 354d9781491f2d2cdd6c43cc3d52292d
BLAKE2b-256 d0a0704f5027508138f22cda277779bc6b9cace77af1a87ef93c73daf61b5b12

See more details on using hashes here.

Provenance

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