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"] = False,
) -> 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}")

Project details


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.7.1.tar.gz (162.3 kB view details)

Uploaded Source

Built Distributions

jiter-0.7.1-cp313-none-win_amd64.whl (199.2 kB view details)

Uploaded CPython 3.13 Windows x86-64

jiter-0.7.1-cp313-none-win32.whl (198.1 kB view details)

Uploaded CPython 3.13 Windows x86

jiter-0.7.1-cp313-cp313-musllinux_1_1_x86_64.whl (497.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

jiter-0.7.1-cp313-cp313-musllinux_1_1_aarch64.whl (514.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

jiter-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

jiter-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (388.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

jiter-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

jiter-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

jiter-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.4 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

jiter-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (365.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

jiter-0.7.1-cp313-cp313-macosx_11_0_arm64.whl (302.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

jiter-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl (291.0 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

jiter-0.7.1-cp312-none-win_amd64.whl (202.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

jiter-0.7.1-cp312-none-win32.whl (198.5 kB view details)

Uploaded CPython 3.12 Windows x86

jiter-0.7.1-cp312-cp312-musllinux_1_1_x86_64.whl (497.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

jiter-0.7.1-cp312-cp312-musllinux_1_1_aarch64.whl (515.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

jiter-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

jiter-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (388.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

jiter-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

jiter-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

jiter-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

jiter-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (365.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

jiter-0.7.1-cp312-cp312-macosx_11_0_arm64.whl (304.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

jiter-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl (291.9 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

jiter-0.7.1-cp311-none-win_amd64.whl (203.8 kB view details)

Uploaded CPython 3.11 Windows x86-64

jiter-0.7.1-cp311-none-win32.whl (198.8 kB view details)

Uploaded CPython 3.11 Windows x86

jiter-0.7.1-cp311-cp311-musllinux_1_1_x86_64.whl (498.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

jiter-0.7.1-cp311-cp311-musllinux_1_1_aarch64.whl (514.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

jiter-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

jiter-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

jiter-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

jiter-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

jiter-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

jiter-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (365.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

jiter-0.7.1-cp311-cp311-macosx_11_0_arm64.whl (303.5 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

jiter-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl (291.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

jiter-0.7.1-cp310-none-win_amd64.whl (201.7 kB view details)

Uploaded CPython 3.10 Windows x86-64

jiter-0.7.1-cp310-none-win32.whl (198.7 kB view details)

Uploaded CPython 3.10 Windows x86

jiter-0.7.1-cp310-cp310-musllinux_1_1_x86_64.whl (498.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

jiter-0.7.1-cp310-cp310-musllinux_1_1_aarch64.whl (515.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

jiter-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

jiter-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

jiter-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

jiter-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

jiter-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

jiter-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (365.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

jiter-0.7.1-cp310-cp310-macosx_11_0_arm64.whl (303.8 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

jiter-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl (291.0 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

jiter-0.7.1-cp39-none-win_amd64.whl (202.1 kB view details)

Uploaded CPython 3.9 Windows x86-64

jiter-0.7.1-cp39-none-win32.whl (199.0 kB view details)

Uploaded CPython 3.9 Windows x86

jiter-0.7.1-cp39-cp39-musllinux_1_1_x86_64.whl (498.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

jiter-0.7.1-cp39-cp39-musllinux_1_1_aarch64.whl (516.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

jiter-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

jiter-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

jiter-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

jiter-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (348.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

jiter-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

jiter-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (365.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

jiter-0.7.1-cp39-cp39-macosx_11_0_arm64.whl (290.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

jiter-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl (292.0 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

jiter-0.7.1-cp38-none-win_amd64.whl (190.9 kB view details)

Uploaded CPython 3.8 Windows x86-64

jiter-0.7.1-cp38-none-win32.whl (198.7 kB view details)

Uploaded CPython 3.8 Windows x86

jiter-0.7.1-cp38-cp38-musllinux_1_1_x86_64.whl (497.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

jiter-0.7.1-cp38-cp38-musllinux_1_1_aarch64.whl (515.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

jiter-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

jiter-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

jiter-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

jiter-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (348.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

jiter-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

jiter-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (365.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

jiter-0.7.1-cp38-cp38-macosx_11_0_arm64.whl (290.7 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

jiter-0.7.1-cp38-cp38-macosx_10_12_x86_64.whl (291.8 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: jiter-0.7.1.tar.gz
  • Upload date:
  • Size: 162.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1.tar.gz
Algorithm Hash digest
SHA256 448cf4f74f7363c34cdef26214da527e8eeffd88ba06d0b80b485ad0667baf5d
MD5 48e09ef7228be9e3dcd50d4b904c0989
BLAKE2b-256 46e550ff23c9bba2722d2f0f55ba51e57f7cbab9a4be758e6b9b263ef51e6024

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp313-none-win_amd64.whl.

File metadata

  • Download URL: jiter-0.7.1-cp313-none-win_amd64.whl
  • Upload date:
  • Size: 199.2 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 0302f0940b1455b2a7fb0409b8d5b31183db70d2b07fd177906d83bf941385d1
MD5 7dc4deb67224681e7b9cbf58a2303bb8
BLAKE2b-256 7601cbc0136784a3ffefb5ca5326f8167780c5c3de0c81b6b81b773a973c571e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp313-none-win32.whl.

File metadata

  • Download URL: jiter-0.7.1-cp313-none-win32.whl
  • Upload date:
  • Size: 198.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1-cp313-none-win32.whl
Algorithm Hash digest
SHA256 f892e547e6e79a1506eb571a676cf2f480a4533675f834e9ae98de84f9b941ac
MD5 9264e174cb3b1ca5b63a6a6003a7db4c
BLAKE2b-256 1ec3766f9ec97df0441597878c7949da2b241a12a381c3affa7ca761734c8c74

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 81d968dbf3ce0db2e0e4dec6b0a0d5d94f846ee84caf779b07cab49f5325ae43
MD5 6a545518ef4b7f5547aaf63366400b66
BLAKE2b-256 a781b3c72c6691acd29cf707df1a0b300e6726385b3c1ced8dc20424c4452699

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e550e29cdf3577d2c970a18f3959e6b8646fd60ef1b0507e5947dc73703b5627
MD5 6859810bb47fa4b89e843d74b8b24c1f
BLAKE2b-256 214ebfebe799924a39f181874b5e9041b792ee67768a8b160814e016a7c9a40d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7ba9a358d59a0a55cccaa4957e6ae10b1a25ffdabda863c0343c51817610501d
MD5 5432b8e481a4e71f1967cab63f43b819
BLAKE2b-256 6439369e6ff198003f55acfcdb58169c774473082d3303cddcd24334af534c4e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65df9dbae6d67e0788a05b4bad5706ad40f6f911e0137eb416b9eead6ba6f044
MD5 76341339c111d6e0fe61816478c3b91f
BLAKE2b-256 2496c75633b99d57dd8b8457f88f51201805c93b314e369fba69829d726bc2a5

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 de3674a5fe1f6713a746d25ad9c32cd32fadc824e64b9d6159b3b34fd9134143
MD5 5f7149065a348be09743f94a63882cec
BLAKE2b-256 300c0b89bd3dce7d330d8ee878b0a95899b73e30cb55d2b2c41998276350d4a0

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dacca921efcd21939123c8ea8883a54b9fa7f6545c8019ffcf4f762985b6d0c8
MD5 3645534cb350d85da4313e40f3bf361f
BLAKE2b-256 28af7fa53804a2e7e309ce66822c9484fd7d4f8ef452be3937aab8a93a82c54b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 12fd88cfe6067e2199964839c19bd2b422ca3fd792949b8f44bb8a4e7d21946a
MD5 4619314355e8c98c0db98d91ed0c6cd8
BLAKE2b-256 b195b4da75e93752edfd6dd0df8f7723a6575e8a8bdce2e82f4458eb5564936a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 576eb0f0c6207e9ede2b11ec01d9c2182973986514f9c60bc3b3b5d5798c8f50
MD5 20542e8c8d5940639e4ced24a7f16621
BLAKE2b-256 80260c386fa233a78997db5fa7b362e6f35a37d2656d09e521b0600f29933992

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3298af506d4271257c0a8f48668b0f47048d69351675dd8500f22420d4eec378
MD5 7b1f525cc76ad914a489e91370fbdc93
BLAKE2b-256 229a0eb3eddffeca703f6adaaf117ba93ac3336fb323206259a86c2993cec9ad

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 097676a37778ba3c80cb53f34abd6943ceb0848263c21bf423ae98b090f6c6ba
MD5 5709eccae538d2c03c8d2d2f75301629
BLAKE2b-256 b5cf00a93a9968fc21b9ecfcabb130a8c822138594ac4a00b7bff9cbb38daa7f

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp312-none-win_amd64.whl.

File metadata

  • Download URL: jiter-0.7.1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 202.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 7824c3ecf9ecf3321c37f4e4d4411aad49c666ee5bc2a937071bdd80917e4533
MD5 4baac0880b972a79946bd1b38d30be34
BLAKE2b-256 01d2d8ec257544f7991384a46fccee6abdc5065cfede26354bb2c86251858a92

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp312-none-win32.whl.

File metadata

  • Download URL: jiter-0.7.1-cp312-none-win32.whl
  • Upload date:
  • Size: 198.5 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 701d90220d6ecb3125d46853c8ca8a5bc158de8c49af60fd706475a49fee157e
MD5 4dfea3172b83c61455348bfb50b7086f
BLAKE2b-256 3060f60e12469afc9096bac3df0fda53de707ed5105d84322a0d1bc4ad03ee3e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5970cf8ec943b51bce7f4b98d2e1ed3ada170c2a789e2db3cb484486591a176a
MD5 3b1455054393a400804b576ebf772ee0
BLAKE2b-256 165fc98f6e6362fbc7c87ad384ba8506983fca9bb55ea0af7efcb23e7dd22817

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 80dae4f1889b9d09e5f4de6b58c490d9c8ce7730e35e0b8643ab62b1538f095c
MD5 4405b56a9096cb885e1757f9a43403b0
BLAKE2b-256 e9cac773f0ce186090cc69a2c97b8dab3dad14ae9988a657a20d879458a8407e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c244261306f08f8008b3087059601997016549cb8bb23cf4317a4827f07b7d74
MD5 c2375f174c0d092f1717969884b426a7
BLAKE2b-256 fb05894144e4cbc1b9d46756db512268a90f84fc1d8bd28f1a17e0fef5aaf5c5

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25d0e5bf64e368b0aa9e0a559c3ab2f9b67e35fe7269e8a0d81f48bbd10e8963
MD5 1d4e9baa5976228b040f7e2c23ca7b59
BLAKE2b-256 7d35c7e9a06a49116e3618954f6c8a26816a7959c0f9e5617b0073e4145c5d6d

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 627164ec01d28af56e1f549da84caf0fe06da3880ebc7b7ee1ca15df106ae172
MD5 dc0f75309f378993cf2d8945ad101009
BLAKE2b-256 c602795a3535262c54595bd97e375cc03b443717febb37723a7f9c077049825b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9463b62bd53c2fb85529c700c6a3beb2ee54fde8bef714b150601616dcb184a6
MD5 df3407721c027dadd2c6afb171d62451
BLAKE2b-256 7192644dc215cbb9816112e28f3b43a8c8e769f083434a05fc3afd269c444f51

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b7de0b6f6728b678540c7927587e23f715284596724be203af952418acb8a2d
MD5 d0fab8d0d5f527ac130efbb5c5ae9229
BLAKE2b-256 e826c258bef532d113a7ac26242893fc9760040a4846dec731098b7f5ac3fca7

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ded4e4b75b68b843b7cea5cd7c55f738c20e1394c68c2cb10adb655526c5f1b
MD5 2f6dffade56290c430483bb7178e25cc
BLAKE2b-256 19d3e6674ac34de53787504e4fb309084f824df321f24113121d94bf53808be3

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ba52e6aaed2dc5c81a3d9b5e4ab95b039c4592c66ac973879ba57c3506492bb
MD5 fe47bafc1758c64f9794333a948ab83e
BLAKE2b-256 c0ff0d804eff4751fceeabc6311d4b07e956daa06fa58f05931887dc7454466b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ad36a1155cbd92e7a084a568f7dc6023497df781adf2390c345dd77a120905ca
MD5 85eb7ce4b1b0cf5d582e269f51038760
BLAKE2b-256 10b3de89eae8f57dc0ee5f6e3aa1ffcdee0364ef9ef85be81006fd17d7710ffa

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp311-none-win_amd64.whl.

File metadata

  • Download URL: jiter-0.7.1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 203.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 f3ea649e7751a1a29ea5ecc03c4ada0a833846c59c6da75d747899f9b48b7282
MD5 57ee61f056be1c7ba07f4bd2f278fc53
BLAKE2b-256 2b306a79fd25f36660cec4fb46c5fd0d52375584fdc7a874889b24111cb666af

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp311-none-win32.whl.

File metadata

  • Download URL: jiter-0.7.1-cp311-none-win32.whl
  • Upload date:
  • Size: 198.8 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f7605d24cd6fab156ec89e7924578e21604feee9c4f1e9da34d8b67f63e54892
MD5 ddf2ac18f43d8dbfe5b8cd09ddd0d12d
BLAKE2b-256 ee130e726eaee6c5dcd14582d28e90a1381ff4ab1c6b583e597f4e0d4a0950bd

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3dc9939e576bbc68c813fc82f6620353ed68c194c7bcf3d58dc822591ec12490
MD5 42ebba6f88be0942cec87533273af372
BLAKE2b-256 068cfa1f8b98618b476c346ad57e9eb85293cd2acd7680926b2f27f884c7aebc

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3d8bae77c82741032e9d89a4026479061aba6e646de3bf5f2fc1ae2bbd9d06e0
MD5 ebfd65a35e194217f3ed9daee80fff55
BLAKE2b-256 92fe85fc2dd31473bf71b1e78311d09bb1f90211b5b327b9b884684d45e9ae48

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f20de711224f2ca2dbb166a8d512f6ff48c9c38cc06b51f796520eb4722cc2ce
MD5 301a82a862794efb6a9686709a682e22
BLAKE2b-256 62021dacf3b95d13f36298a261723c52b45701db485ee104f7677cb931697395

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 da8589f50b728ea4bf22e0632eefa125c8aa9c38ed202a5ee6ca371f05eeb3ff
MD5 67ede598b618e3b0453fc0186aec1fb8
BLAKE2b-256 b7ab38c652c71bfd7a8e00fc0962a6985186e9741cfd9dde00a0d8c0138a9c07

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f22cf8f236a645cb6d8ffe2a64edb5d2b66fb148bf7c75eea0cb36d17014a7bc
MD5 1befd9c3219f854d661c98f8aa7f4d32
BLAKE2b-256 8ef6afa8d156b7c166dceae66e01d0aa9933f7c3afcc5af3901e717237e5b98c

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 df0a1d05081541b45743c965436f8b5a1048d6fd726e4a030113a2699a6046ea
MD5 9e995721491f80722e4dca5ee8b4cd13
BLAKE2b-256 de8855747df3d3472a08d25ab59752cc7a2682c9bfb38d8dbe00d5fadc35ae49

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e44fff69c814a2e96a20b4ecee3e2365e9b15cf5fe4e00869d18396daa91dab
MD5 54d65adcc1ab1413cee19ac0d52eb1b3
BLAKE2b-256 3435c44064c12e2d189dd3a6135e3b4f9f64167d81abada4eeb0dd75313ad9ad

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8a9803396032117b85ec8cbf008a54590644a062fedd0425cbdb95e4b2b60479
MD5 c19c82ea6365d5a72685757eeed675ff
BLAKE2b-256 b9a8ac3509099030304b28c226b432347f5420297e8bec4cb1f27f716a4f23cf

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1e47a554de88dff701226bb5722b7f1b6bccd0b98f1748459b7e56acac2707a5
MD5 7d4c9d93a4b463e7f4230505d16597aa
BLAKE2b-256 7de3a70e5b98602d24c617e829d6714b3e4f7f9912fdc2844682653dafb5eba0

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ad04a23a91f3d10d69d6c87a5f4471b61c2c5cd6e112e85136594a02043f462c
MD5 889c2a446db9382ff4aadee91e61c8e8
BLAKE2b-256 26e518b30b3015ae1df916cadd42b428f9a47a7277a52b041e4caf939e6c3c21

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp310-none-win_amd64.whl.

File metadata

  • Download URL: jiter-0.7.1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 201.7 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 75bf3b7fdc5c0faa6ffffcf8028a1f974d126bac86d96490d1b51b3210aa0f3f
MD5 a7248cf2eb0ef7bf667062a0b1e266d0
BLAKE2b-256 b61b79d038a632e2d00657ca4965b6f93454eb0e563ad9168f40050f320e5460

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp310-none-win32.whl.

File metadata

  • Download URL: jiter-0.7.1-cp310-none-win32.whl
  • Upload date:
  • Size: 198.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 c915e1a1960976ba4dfe06551ea87063b2d5b4d30759012210099e712a414d9f
MD5 7efa10bad134958d278c07d2908f39d7
BLAKE2b-256 16b7489465de0f73896a3507c028faff791f16e0010c790264717fb557d299cb

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f84c9996664c460f24213ff1e5881530abd8fafd82058d39af3682d5fd2d6316
MD5 6161ebdf206bd6df8c086ded43aeef69
BLAKE2b-256 8256f1dc02e26f780aa8e1c7bd856a7cd8d343c8e0e8111bdab2d2c0b77972c7

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b1a0508fddc70ce00b872e463b387d49308ef02b0787992ca471c8d4ba1c0fa1
MD5 78bda1f29087422708d449466d72280d
BLAKE2b-256 55ddf4c0c9bbff937fd90de576df44feb310a533b9389a7b61542261fd9b29be

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9f9568cd66dbbdab67ae1b4c99f3f7da1228c5682d65913e3f5f95586b3cb9a9
MD5 984bd79993a66ab74f8eace91b264756
BLAKE2b-256 1d0ce7ac4ac5327eff2b93bcd70e74ca76a0d6b0a6d2fc27f40707ddabfe7739

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5ae2d01e82c94491ce4d6f461a837f63b6c4e6dd5bb082553a70c509034ff3d4
MD5 f38369b41455bbadfccae7f7c60ee0f4
BLAKE2b-256 a25e6bb5d28e9e7e046737b617ad9a05777ffa45d5ba355edd116efdad1fcd14

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4aa919ebfc5f7b027cc368fe3964c0015e1963b92e1db382419dadb098a05192
MD5 dbc7534952807247716d13daf98d113c
BLAKE2b-256 75b76cd1e8b42a1dbc9d4c3a05401a80383ddb5d3d740015bf786cfb0a1c36db

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9cd3cccccabf5064e4bb3099c87bf67db94f805c1e62d1aefd2b7476e90e0ee2
MD5 4cc991be9d0b0df4b5ad9aa5ef1752f6
BLAKE2b-256 5b73b62c385cd8389a984449e749840d3ffcac727eadb59d636514b30681144e

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 935f10b802bc1ce2b2f61843e498c7720aa7f4e4bb7797aa8121eab017293c3d
MD5 e1ef69217313a1a92fca86839ec5bba9
BLAKE2b-256 f765a20de47be232547ee8a32f47989ac6a8f912a357af12eb48365ba7497003

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9ecbf4e20ec2c26512736284dc1a3f8ed79b6ca7188e3b99032757ad48db97dc
MD5 4756fc714adec6417546797acc09941e
BLAKE2b-256 72190188794f2e3f8aedd16e4758fff810438f9f4207977553a8453c7e7382c4

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 be6de02939aac5be97eb437f45cfd279b1dc9de358b13ea6e040e63a3221c40d
MD5 60dc032a356c9ba4222f208fef95d160
BLAKE2b-256 317e6abbccd6f22c4d90b836b654a3e12fa56c167f65439249c23ee36644630b

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 262e96d06696b673fad6f257e6a0abb6e873dc22818ca0e0600f4a1189eb334f
MD5 33af00e2404caa625c66944e00ed3925
BLAKE2b-256 36f5c6ccaa2331037cbb69d82e3ab2f2beaec485dd9e42a2ac409e6219b2d7f0

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp39-none-win_amd64.whl.

File metadata

  • Download URL: jiter-0.7.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 202.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 6592f4067c74176e5f369228fb2995ed01400c9e8e1225fb73417183a5e635f0
MD5 579f9bbab59e850d0d19b784debd7dc7
BLAKE2b-256 e575fc5a34b0376437eaac80c22886840d8f39ee7f0992c2e3bd4c246b91cab3

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp39-none-win32.whl.

File metadata

  • Download URL: jiter-0.7.1-cp39-none-win32.whl
  • Upload date:
  • Size: 199.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 5c08adf93e41ce2755970e8aa95262298afe2bf58897fb9653c47cd93c3c6cdc
MD5 e9e6809729db1567b7d1954cf426ba23
BLAKE2b-256 f82046fbd90d4792bf2b3e03fe3a906c5e6381e0b2cc2e959999902fba01f7f1

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e0c91a0304373fdf97d56f88356a010bba442e6d995eb7773cbe32885b71cdd8
MD5 e6c3c6327f2afad173125b78eb39cf6a
BLAKE2b-256 ab29dc69d8a345163336ed1aebf6bf61c7f8ce0b984799975662db81af13ca35

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f52ce5799df5b6975439ecb16b1e879d7655e1685b6e3758c9b1b97696313bfb
MD5 4d6a5aa4f60f0f24aefb54e2744eee78
BLAKE2b-256 d6698a9b9a321a471d297f21a1427ea74480459792902c00ab56d3fa012aadb2

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e81ccccd8069110e150613496deafa10da2f6ff322a707cbec2b0d52a87b9671
MD5 a7c912e879d82a550abd457c41e466d5
BLAKE2b-256 65aed503db7183fdc46295e8e88a4cbb71438e7f959c5635b03c5e839b4f3d33

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 93c20d2730a84d43f7c0b6fb2579dc54335db742a59cf9776d0b80e99d587382
MD5 273da7331aad71fd965289f2111ddcf5
BLAKE2b-256 0abaccb2132633faa7ba517b8264db5e2c4299077356a0ca88fa4464423c120a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f281aae41b47e90deb70e7386558e877a8e62e1693e0086f37d015fa1c102289
MD5 aa0a66649ea88f8653922109b91a0cb3
BLAKE2b-256 079dd361cb3d242771b2d2c695a6c6d24e685f2fb321f28e1f40a4a46c9c7a5a

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bc1b55314ca97dbb6c48d9144323896e9c1a25d41c65bcb9550b3e0c270ca560
MD5 6931271c732f42d2f0225720019240a9
BLAKE2b-256 3c0fa272f19755618714d82de4f61d8f97fe2b0d6104551d4ce77b390e5bd5ca

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f0aacaa56360139c53dcf352992b0331f4057a0373bbffd43f64ba0c32d2d155
MD5 5b11efeea51c15dbfffa9f50c8dfaa34
BLAKE2b-256 cff4e2ea79dc299cf3aa664bc668dcb82ede23ed49ff75696ef19d0969abae33

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0a7d5e85766eff4c9be481d77e2226b4c259999cb6862ccac5ef6621d3c8dcce
MD5 7ff2aee1c4fdff46cbb2de9c0c9a6170
BLAKE2b-256 612ffe51bb7b28674e8f612fa138aec7838e6778e567a2b3e79429925d444deb

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9e247079d88c00e75e297e6cb3a18a039ebcd79fefc43be9ba4eb7fb43eb726
MD5 1c2a4418e3ae1b277173648b0edca1e1
BLAKE2b-256 87c6d9fa1c21a96b1b64c67b348f30d3e27906db7c0e07ea9c286bf6014da1b3

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f212eeacc7203256f526f550d105d8efa24605828382cd7d296b703181ff11d
MD5 7869c00207a045a268cbd64077442b82
BLAKE2b-256 8e8a255d604a3c4f7d4a561f3154dbc46f7e9ee07d680e876c7777f1225dcf26

See more details on using hashes here.

Provenance

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

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp38-none-win_amd64.whl.

File metadata

  • Download URL: jiter-0.7.1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 190.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 60b49c245cd90cde4794f5c30f123ee06ccf42fb8730a019a2870cd005653ebd
MD5 85bbea22c7fc3e6cfd6e525194d9412b
BLAKE2b-256 43423bc9041ef35ae35a964f8250c2e9e4ee0b659484e4e22ebc62fd188169c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.1-cp38-none-win_amd64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp38-none-win32.whl.

File metadata

  • Download URL: jiter-0.7.1-cp38-none-win32.whl
  • Upload date:
  • Size: 198.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 47ac4c3cf8135c83e64755b7276339b26cd3c7ddadf9e67306ace4832b283edf
MD5 d8739213c19e0fb4aa04cc980ff75697
BLAKE2b-256 adad8231dbc50192c730afe3f57ef89c39c93b3d88e85109392d17cadc7b52c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.1-cp38-none-win32.whl:

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.7.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0e2b445e5ee627fb4ee6bbceeb486251e60a0c881a8e12398dfdff47c56f0723
MD5 c3367318c2b9dc45c4315ac1788a6a32
BLAKE2b-256 ba3ef44c9795c59600c87dde581465d3088e759b5d7ab1aa05b5353d3688ac1d

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.1-cp38-cp38-musllinux_1_1_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.7.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 191fbaee7cf46a9dd9b817547bf556facde50f83199d07fc48ebeff4082f9df4
MD5 4d3450de728d77821e2b2f963c1b0b32
BLAKE2b-256 a37788d7c59b53b0ab6fc01ce5e07d0019ca9b7b4293b1b41a8b8fd58b45232e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.1-cp38-cp38-musllinux_1_1_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 af29c5c6eb2517e71ffa15c7ae9509fa5e833ec2a99319ac88cc271eca865519
MD5 e54a8b45465a34c7228d0a5259477e94
BLAKE2b-256 aea1c3726f3392c2552e3a550a93114fd3478eb0015032f576f4ca6a9e281f27

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8dbbd52c50b605af13dbee1a08373c520e6fcc6b5d32f17738875847fea4e2cd
MD5 eb1bfacadabfa94eaa3c7a5b0de48b16
BLAKE2b-256 b70acd67cd34730f1b18e814cfc869ee9ea2b788041c3abd5b04310bbcc1c770

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b096ca72dd38ef35675e1d3b01785874315182243ef7aea9752cb62266ad516f
MD5 0cf3f69f3c6f6b896fa9ab5afa484535
BLAKE2b-256 a9ed037747b119ebf0026bae2d5e4474686842dae13f1334a661a0625aa0d179

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c1288bc22b9e36854a0536ba83666c3b1fb066b811019d7b682c9cf0269cdf9f
MD5 1c21b6423337eb58918406196fe660b0
BLAKE2b-256 3b244deeb8a461ac32a9a750608b259366dbb8cfca8d7d08bbca0330369984df

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 70a497859c4f3f7acd71c8bd89a6f9cf753ebacacf5e3e799138b8e1843084e3
MD5 0464e09002ecdb8cb0955206da5d3540
BLAKE2b-256 072750ee10576a0fda794e6d5c36da72e663ee7683f8b2924c56d0f3797ffafa

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f114a4df1e40c03c0efbf974b376ed57756a1141eb27d04baee0680c5af3d424
MD5 12baf1a3a5f2bbdc65f0b763e82512db
BLAKE2b-256 4662d93e05782c782b66f3bab78e989af49e18cc0619aabbdfa0076e79875528

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.7.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e80052d3db39f9bb8eb86d207a1be3d9ecee5e05fdec31380817f9609ad38e60
MD5 0d55bf8324932791f3bd76834c6937de
BLAKE2b-256 188abda0b6b92a5096a201d065a8c8a62f595d18eccaf680c4c88f62e0c547ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.1-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations:

File details

Details for the file jiter-0.7.1-cp38-cp38-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.7.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c65a3ce72b679958b79d556473f192a4dfc5895e8cc1030c9f4e434690906076
MD5 9f335871395ceb81372b5853b09ad2f7
BLAKE2b-256 8e7563851ce9e4f88356712b7815cee9914866679de8b3515a57e75eaf80cead

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.1-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: ci.yml on pydantic/jiter

Attestations:

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page