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

Uploaded Source

Built Distributions

jiter-0.6.0-cp313-none-win_amd64.whl (199.5 kB view details)

Uploaded CPython 3.13 Windows x86-64

jiter-0.6.0-cp313-none-win32.whl (196.2 kB view details)

Uploaded CPython 3.13 Windows x86

jiter-0.6.0-cp313-cp313-musllinux_1_1_x86_64.whl (495.2 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

jiter-0.6.0-cp313-cp313-musllinux_1_1_aarch64.whl (513.1 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

jiter-0.6.0-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.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (387.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

jiter-0.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

jiter-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

jiter-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (335.8 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

jiter-0.6.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (366.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

jiter-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (300.1 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

jiter-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl (289.3 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

jiter-0.6.0-cp312-none-win_amd64.whl (199.3 kB view details)

Uploaded CPython 3.12 Windows x86-64

jiter-0.6.0-cp312-none-win32.whl (196.8 kB view details)

Uploaded CPython 3.12 Windows x86

jiter-0.6.0-cp312-cp312-musllinux_1_1_x86_64.whl (496.2 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

jiter-0.6.0-cp312-cp312-musllinux_1_1_aarch64.whl (513.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

jiter-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

jiter-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (388.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

jiter-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (370.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

jiter-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

jiter-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

jiter-0.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (367.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

jiter-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (300.4 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

jiter-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl (289.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

jiter-0.6.0-cp311-none-win_amd64.whl (203.6 kB view details)

Uploaded CPython 3.11 Windows x86-64

jiter-0.6.0-cp311-none-win32.whl (196.8 kB view details)

Uploaded CPython 3.11 Windows x86

jiter-0.6.0-cp311-cp311-musllinux_1_1_x86_64.whl (496.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

jiter-0.6.0-cp311-cp311-musllinux_1_1_aarch64.whl (514.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

jiter-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

jiter-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

jiter-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (370.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

jiter-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

jiter-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

jiter-0.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (365.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

jiter-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (301.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

jiter-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl (290.7 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

jiter-0.6.0-cp310-none-win_amd64.whl (201.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

jiter-0.6.0-cp310-none-win32.whl (196.7 kB view details)

Uploaded CPython 3.10 Windows x86

jiter-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl (496.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

jiter-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl (514.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

jiter-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

jiter-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

jiter-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (370.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

jiter-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

jiter-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

jiter-0.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (365.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

jiter-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (302.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

jiter-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl (290.4 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

jiter-0.6.0-cp39-none-win_amd64.whl (201.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

jiter-0.6.0-cp39-none-win32.whl (197.5 kB view details)

Uploaded CPython 3.9 Windows x86

jiter-0.6.0-cp39-cp39-musllinux_1_1_x86_64.whl (497.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

jiter-0.6.0-cp39-cp39-musllinux_1_1_aarch64.whl (515.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

jiter-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

jiter-0.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

jiter-0.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

jiter-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

jiter-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

jiter-0.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (366.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

jiter-0.6.0-cp39-cp39-macosx_11_0_arm64.whl (288.9 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

jiter-0.6.0-cp39-cp39-macosx_10_12_x86_64.whl (291.5 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

jiter-0.6.0-cp38-none-win_amd64.whl (190.0 kB view details)

Uploaded CPython 3.8 Windows x86-64

jiter-0.6.0-cp38-none-win32.whl (197.3 kB view details)

Uploaded CPython 3.8 Windows x86

jiter-0.6.0-cp38-cp38-musllinux_1_1_x86_64.whl (496.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

jiter-0.6.0-cp38-cp38-musllinux_1_1_aarch64.whl (514.5 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

jiter-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

jiter-0.6.0-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.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

jiter-0.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (355.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

jiter-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

jiter-0.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (366.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

jiter-0.6.0-cp38-cp38-macosx_11_0_arm64.whl (288.3 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

jiter-0.6.0-cp38-cp38-macosx_10_12_x86_64.whl (291.1 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for jiter-0.6.0.tar.gz
Algorithm Hash digest
SHA256 5b3e2b9e8fbd57d176b97e5530a20514cd20d7f98d02e11140b309537897dac0
MD5 cbc785828a5d9a5e24b92430d2326c84
BLAKE2b-256 3a87f3d746e8d87b9f04683266d23ae730435cb646e88064c324407a0c0a98e3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.0-cp313-none-win_amd64.whl
  • Upload date:
  • Size: 199.5 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.6.0-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 c8d3dc171bc2ba8ecec61a436bf22d339f2ad8691db6863aa0e92e9c8f9792d4
MD5 d7d67a2c97fc42e17f76bd63fb8dc2f4
BLAKE2b-256 23435d0cd656d3aab0ec02363cf87451ca54cbd7dfe1dcf8355be06283ae3fab

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.0-cp313-none-win32.whl
  • Upload date:
  • Size: 196.2 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.6.0-cp313-none-win32.whl
Algorithm Hash digest
SHA256 0d15f405faed12a64936f05edd7242326f693c9f714be07ab3da73265b8999b6
MD5 2c56bcea393a8dde1624f47d3e3fcb63
BLAKE2b-256 8aa603e889013bccee04ab46faf40b3a103688bde065164a4af759e248cf0e5f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 175571408eb86c3c53601051d3778bb0a1ed8bfa18a32b0aa5eb44de811f298b
MD5 54a38b3b63ffdcfedb36c07aae112ce3
BLAKE2b-256 bbfd518f11a32b643a1e456dd19287d13ef7c5c9d7bbc24f1dc221cb28e25912

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bab4a4e0be03704cea7b7fc78817f02d4581b2e991e9518be63bc38cb6db070a
MD5 b0558b457199d6798aa861ee93d6c637
BLAKE2b-256 a142b0e8f83e4d9c927bbeadfa4d686c5d490473bece8a503d3928a01ef13e44

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ff2d3a3f69470c50dcf94fe967f78eea47d0ed3ef25a6dd598e70f307eb4d34c
MD5 7f3f226b7645001539352b8315a80ea2
BLAKE2b-256 4a0dae4f5e0eb69488cb5c666310fb1ec617f14edb4ca42be104edf908ef90fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fffa77126cbd665e65412771936471c2247e460158f32a669395d8443ac488f4
MD5 ad6c0e87150c6d6e5ce6a35b4e438cd2
BLAKE2b-256 9fd68432c532c45a8abb445f333106c10f5899b4ed7eda88cd4969b9526f5ec5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6eb790f1031cdd47c9a6ef4b1804e33d0befa7e9cea02bd81a8998f47d9441e7
MD5 2cd35e8621a564d0e4c01cf028106e80
BLAKE2b-256 872545209f570a794202bfe22a8b2b1fdd3f8ef6f823fd58a8915f22b9acc364

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 01608099272231a0baf21474e11abccc0aad76f7f0936d0d6f29040dc1d28bea
MD5 58dbb65621f1f1a446be83b0175a70e2
BLAKE2b-256 d8756648b9cf736cbd3a898601ce57b07aa1f58b5b3e25e38d4b11d1cb1f12f0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c4bc8d845cc78aa3f5fff3bb1d535d783b81ea9de9add74f03bbe7ebd68c683
MD5 f9bcf2a3200352b7c8e4ad77ddd07e16
BLAKE2b-256 7f7e25b07062230333205977dd642af2d70771d1361b337f3faf4a016f3e0d49

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 49d03ba025d0a5265ba451910427b79cb9de9b9157dc56419602df91d53b91d2
MD5 3848fc8fc658c490d56343f0b3bc3be8
BLAKE2b-256 94f9201217ede4a7350e7c35e4e183db1ec376414fa9cba270a77b57cfe529d0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b2988ed4ad6a83ee8c8680dbe51090695e0856070bdaf62b48694aeb252779a
MD5 291ba5f28542960ee54bad25ca2ebaa0
BLAKE2b-256 cf458e3c1d5bf42ab6ba4a2726b8f0ea856345350ade7a82a98f474e6b98140a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9d2451cd1b5c496289d056682ee18bb40faca5fd1a4b99f2167af179c8c9fd5f
MD5 eb4847d6a304cbf0a06333849f5b1caa
BLAKE2b-256 db5d15cc564510a18efaef26d22fe81eec9a3f681c611cc061a535202dd183d4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.0-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 199.3 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.6.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a02039eea922b34c2cc843b5fcd0461c681baeffa1e3093bf36e429674ba11e6
MD5 c27ba93bb568a5418fad3a347dbe0daa
BLAKE2b-256 a795119f0987201fc7a4b8fe31032e84fe7e95c11979c71bf853c66d3458ffcb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.0-cp312-none-win32.whl
  • Upload date:
  • Size: 196.8 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.6.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 56e7b18a84a2de312713db4bfcaee84bb8ef2c78cebaae6bac7b59883dab309c
MD5 4a991ae06751aea487c0182cdab6faa4
BLAKE2b-256 50c60f45038d5e04ba359942bdab3d4973d02d176d58aafa7e217a906914d23e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6c1c6c2f1b44acd82ca1aeb94dfb95918b0800d6f158a691100407acc5c014f0
MD5 8cec445b4030fd5af292356318c52209
BLAKE2b-256 0222f77844008b15a61b0d312fb768d243bb7d7a7d938163706975763be43575

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 2f81a1ffe140270d4ae4548f25b4fec36d4e846612b800a8fd36342624f38c26
MD5 e440532819cd4387c5e4aaa29deda583
BLAKE2b-256 c645ba4e61d873321853b6432453b9a4b559362eae98188b7480de06cf13615d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4937ba740f0666fbc8c25f22fdd33315120b127c3b96d043746af923b9356436
MD5 bd32f13a4bc89adf54c8849a8b1c028d
BLAKE2b-256 9cd403e10ea64ef8fab5b6d298c395fec5438e9f92373cd91b0fcf9459736d70

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0b3d62892cf9feb371b72a46cdfb0edc97f26f35975b0d35ba1b97943a1b3071
MD5 68f1998bcf10ab3e16ab7f119a2f75e4
BLAKE2b-256 9527fe0948781bb4a6f6ad63fb337ac815bf2958bc86fb0d2a69df6e3cbcf43b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b1be995ac9f4f4b8d1b16ea080d3781e13b021b29e949615bbfbef49186cfed1
MD5 a8e7fad7b54fb557bf56bad6a5bb33e0
BLAKE2b-256 2ada8924d1d761444920663e0ed507c8193655886a6dd9f44032403779067d03

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b80516ccacf87e293e21ee97d28cf00bbf4731142ec9292358628b1ea0c41bef
MD5 48a541d90c40d33da2a104b8f2092bfa
BLAKE2b-256 a3140dc81bb4e61daf2cf7e56e1594772e5903233285c11b5911f376ca4e3385

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9336f332984abe61aecbc7c7d0338ffba03667fbb8c3c0476ae3a66cb0633545
MD5 6bb04bdd8f9b34aa56f68840f895dcb6
BLAKE2b-256 8dc2aa7cc48ace2fd54212c1fcaf40a2ccdfbd0adef0df39726ce61a17413fdc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6923051dcd7f96c74cbb2999d7ec5bf3f2914fd3d2d8c5095ba3863bae937117
MD5 4930ddc3877c83aaf633c003381e7290
BLAKE2b-256 c831e811418fa062b59b46897646209798f60c320a36262a15ee3b9e42705ce6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 748056437635d4cdca414c09e498099a2beb595b53ff179f640bae345325b627
MD5 25def9646fa29866bd336bb74a63654d
BLAKE2b-256 5ce9399bb35bd2ae520a98b9b109a0d27227d1a654090e4d3cd241a43b7bb5d1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 709303e4f07f908119bb8e76440a6a8bbe835b95ae41d376d9caa95722062088
MD5 4547f7a2b89f256f9a72020b89611bee
BLAKE2b-256 b03bc5be45d143e620aa4d460058d09205b3119ce0969676c22c993a5742417d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.0-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 203.6 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.6.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 889443dfa07a3db6f493a427c33114f3e9dacb70bb4966d636475772c8afb8e8
MD5 1acba7396f53de42ba5d1b3428cb7d61
BLAKE2b-256 9c93098750bd26aedb70e4f8adc6a62b1eb4f25549e2bc660ba1b85e2a9c8732

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.0-cp311-none-win32.whl
  • Upload date:
  • Size: 196.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.6.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 aaa581d55d2340b0d8978fba3ff38a8d2751495b838222de7bc240e760a2e778
MD5 ea44f04240bf163c8e0340b0fb37382f
BLAKE2b-256 ea098b121b2db3a3287af3c93495d97ce54a9d28ec00be4f88e5541444b824de

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 49e81adb4f0b1ef27777e5bdd72817209acf0376721bafab9b6bb3d17aa5d21d
MD5 849a0bf88dc86f2b3c4437c4179a80ad
BLAKE2b-256 b55485ad8f69692ef834b46002552db5febcced91e38bb0a3bc180286f05130f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 25679f3579e641670782894cef5b7df7db47738e129bba3dd30b5639bb792d3c
MD5 2a3cff4c2fc5f255a522a57f72242649
BLAKE2b-256 32b1390b122cb4a36f21e787f50868f55fdaeeadd6982ae1c4c94fc87f2b64aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9789042c4535f13dbbb7019b9e9c04ed4eafda3ed26b735a61eabab414c4565d
MD5 c7fa1ee222bf8536c39a1d8bdba66a05
BLAKE2b-256 186b4f66ba0602ff8079379be088e3559460a9e90affec9140ec0d92d84cee46

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e149d0c96f4cd25bfd5871d9c2d0c7988b7312a87604a59990a320b94b0b6dd7
MD5 c6ee1d1c14d931cefb3ecd89442ba486
BLAKE2b-256 ccd83cbef6236b04d79fafd7703846430b88316b4cdcbfa6386ad841e5ddc038

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec179d9afcca6211a0496edf6f8a728ea386bbc222d5a69ba35bdfb496de1737
MD5 d9f028a1e070ae0a27893f964c39c8c4
BLAKE2b-256 2cef9353d69d2fa59b05b6244f6509d76b923a85766cc48c6fbc3774930c61e7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1ad22496f468f7f26e2444a0d19ac1a85139d1902d4700fdec974427a0b99e2d
MD5 483db09d6b02b24386a358b9056e351a
BLAKE2b-256 e7c6a742b61705e43cd2242ec6de3e22050c81a08eefa9c952077fa3e8e07558

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a03402ec1cdc466e69481bd44475435816916d45a4191032743b827e6ca9ab09
MD5 1f1ead211749ea9af787d4059551039b
BLAKE2b-256 3686482c6668d9d6df0a26cc87885e985e2940bfc4bdaa798484b00a4eebb5cc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cebe8ffcd36addaaae523e1dc48df998c927ed1000b9331d1828a0b682d312b7
MD5 2515649c0fc80671329e380dad5bfed3
BLAKE2b-256 d17823a0bebea4547fb008acf202f02ee0f0c8e91db9fe6761978c6ef3b9258f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f66c17bebd62f6c69c33d66c7db371a34e358627d903271c885936d4fd0c0ffc
MD5 4b3bb80ba87be2cc9402c70ce8b705c1
BLAKE2b-256 a2d1e499f8b374531705ed7e7cb81410accaca3f2d7f2682c1a05ee57acca37f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f99d23cc67cc838bca32bfb0d0cab7b90c2a87992ce1e18746a0d1cf6ab55306
MD5 765b10ef8ca2d0c5491f57dae3c7e11a
BLAKE2b-256 594f088e93cd426e407edb9fdb290fe2b625e2a5c30a11ea801c0e753db3c6ac

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.0-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 201.3 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.6.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 5128a0261407357b88a62e1cf5e1d8b2c7e6b0bb32b8a9f832ece4d3e8b86775
MD5 66c86b0a000b6f9a7592f993e8e480d5
BLAKE2b-256 786488abc67a6824ce593c2dcd155fc8cf987e90e194a46178a5a44e119f17f0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.0-cp310-none-win32.whl
  • Upload date:
  • Size: 196.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.6.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 58d8bc9df91f90dd0504158feb1e504e0335865ebf6db26b01f2abb36c901390
MD5 e97162b487a555651534f11c0c110774
BLAKE2b-256 b7e5016f58f580d91f0ef829d7f6e7862ee0fb72ff9ffff6b544a167da896e14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e1ce06d9876d52967eaddffef7295a0c0f28d85d75725517860588b52291881c
MD5 04145322e906032a12bd1d09938afb72
BLAKE2b-256 343701e9908ed059bd55d9b33afed965bfd0d277af5756418f53977233673eba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c93163cb0e89bd04f4fb4820ef97d5f7658a9332c1fbd5e121e7750b552545e3
MD5 8564b9c77f386f4abd1b1c236c9a9806
BLAKE2b-256 ff84b31c11c9fdd5af7e093643f6b00047510ed37e90f3fb7318c216dbb715a8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 64883ff80169fc16020f2eaae134ed4bd4c7c821f62e4ae944f05ee3068848b7
MD5 48c4bff785beafc0e9cf13b034ca8043
BLAKE2b-256 70d92c4d8faf710c7281d51d5bb24701e0bb51e0dd213c117e161b5ab0377347

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b315638c8a107683f45f07028935a3869e85fa9d6ded3358d65e099ddb8564be
MD5 cd4e70a751c8aa1f24ae475b6fb50a34
BLAKE2b-256 9a9867b5bbaeeececf6c93d761265c208007ebfee70241015f30cad423a25000

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 35fe9b01eb5b66dd719b317918f5b4897a2861fd4e863a03fa6604d9d143e8ca
MD5 2bb86453700a56972a4220a57080a327
BLAKE2b-256 910c63ea79efecec44484a33e144bf218c017f08d26ba2df9d99f3bdae1574c3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a15677aea10e7623b2301577b701996c136609955b2f9f457044bba454514790
MD5 05c11f956bedd4049eb0c543d6ea6b50
BLAKE2b-256 332eee3235efbaf0c547722c13132388fec716edf964ae38b63612e169f00c81

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bbc86363345205d4891ae4fe71b836050685f7397c6bc27bfba087a6ca1f195a
MD5 447332fcca8abe769b85a09159f3bcfe
BLAKE2b-256 f297a954ebd10aa0f7cd8b411d32ccc197555a01d9e2c84ea1f5ce8f9c9236f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e26768ff694b648cdeb4d7a201d089e3d77ee1449c76d701f5824d05d6697606
MD5 8077317b99483dacb7c666f387f2bcfa
BLAKE2b-256 521517b893db56de920fc979362a8fd25c2652d3236e34cd61f1be0c2fb304ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ce161ae90a4e433cfec3b32f0cb8c12c29a99e7f7d97392608dce0eae4a1ffda
MD5 523ecee7bd2d97dfa3b7d7ae5ffd49e6
BLAKE2b-256 fdf1ef07500824de75062590acda3a3fd7f5ce6a05c9d69b8af9a57984a396f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0f0926955ab2c9096ee2a00c3cf4e683e992afd97ff3f6fb7dd55b8db217cd66
MD5 706ad70fa7e33c4d26967a80b714eafe
BLAKE2b-256 7608ce200932078bebe834b1a8e7d15da22d86a9c24d7ed85654dfa72f59359b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.0-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 201.7 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.6.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 6222926d7189f79beda076234783f9bf3977ec820bde9c5aa1dda23f6629affc
MD5 7181e174f1e39afd3c4f5e14a5f66cf5
BLAKE2b-256 d5d947be38c463f95e0a26ddbe111588a9f1923c12714ad1dd334bc2d7b3662a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.0-cp39-none-win32.whl
  • Upload date:
  • Size: 197.5 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.6.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c561fb3bfef04fc939bf02ce387a710b66df39a9d60c5fd637de4ed2596d54bb
MD5 c850e355ec692db76c1fd46f05f1940e
BLAKE2b-256 dd5cde5d68a36f85f67787a051eebc40de5642f46db8da119379294ade9c1d1c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f9f1144e286ff581d9278f7e537992306aef62b40339790740d5affdd473d9cd
MD5 6b34d328d7d90c3ce7cace0d9f3ace2f
BLAKE2b-256 e62b4b6fa332aca5f83c503ab1e5c2ae2519f807081db6f24808f29065b0e122

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 78d57379a269a9558379c075468501b2b794c6b048ffcf9f4f12cf9ad3e8ba91
MD5 d4b7e3811bd9f05448b52208662f9978
BLAKE2b-256 3ef56ab27ca7b1449a5c8ee8e9bac5042725472aabc42b2adb29e99b7d925f82

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e1e25c75a616ad2ab08df78c102ce4f2d4d60455f3c33035f0617e144408e8ba
MD5 245eb08fe19f9e1b2cdf5228be89e7b8
BLAKE2b-256 8d103a4435d411e127f0ccf31e61a35ec951df059271729727d5c787832858b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0898cad9d2cbd1f7373b06a2d045815c0e0ab712676310a74b313c0b3eb7aef0
MD5 6438ba89337ee53fd2a23bc87f78ba77
BLAKE2b-256 770e79709d3720f2d575f83b35b4cda2bd286763e8aa81701ccb653a5d33866e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 79b8a48ff63f45d03bcb45f213884a4492e106bdc31ffdee71e3ed1e9c685db6
MD5 fd038c2b905c99379b9f512d5d67eaa6
BLAKE2b-256 4298914107041afaecf7195a065b6a4a2d25591104edec231c8b715db700d28d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0848965a678080b0faa230aa659ec43e5a9fd5595d63b976a815b6641f99c196
MD5 48fbf3a361e867ab0c4ce4261b5a0cd7
BLAKE2b-256 5dd66da5b45f803079091897eae2e818b8ec44bb3b7cc50db4aab8c44d85e104

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f65585dde34662f76e91ce31a48a6b2155055a3b326c46cf6bc23b6ad1cbdf96
MD5 016c7e2c4edc9bb4a7d9c59f727637d4
BLAKE2b-256 dd1c6918f783eb8f15708f1d0e8d3997870c645e077af72b50a9fdddfac13a4a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 69e5d674331d048748bd8206f46ee554606a5d7b7de3bae56a7dab0ff8d3b4ab
MD5 bc68a2cacb15218dbb2b0c72dc48599d
BLAKE2b-256 8c35c7350dd05a45dddf74c3a4aafe1b81878fc432e4b23e169fa5f8a06425a4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f081b4100f899c3d89add9851a03a298e44f270554ccdb777ec9d718d9e823d
MD5 ee970619c007849d652e681bb4b4d3ce
BLAKE2b-256 a49580ae36ea7c877f3071b50a12b451baa0ddc67214f1908f997358018b172c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7e167113feeb292ffb5c99e4e595c4a27d8e5e9abe9943377af9e73a97ee326
MD5 7947f312f27cc479a80235c67d79e77b
BLAKE2b-256 e99447fae302ad60a016bf40d0f6699b4ceea75c3a8c7ce413bd9deedaa6c78f

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.0-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 190.0 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.6.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 90bea9c466708173892c4511253078b279a94b9e6c778161b60b0499b52bdaa0
MD5 2002e92be75db42a0baf350cae90ebbe
BLAKE2b-256 c1d2f7cc3a5e2beaddbba8183055710748c73ceecde7331b260b3487f0fabf1d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.0-cp38-none-win32.whl
  • Upload date:
  • Size: 197.3 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.6.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a22968c599bb9f432b17ff2c5ecdefb2729b386e109f4db2d81c706f6393b405
MD5 1f7b5065fa7db5f447e39a69273742e5
BLAKE2b-256 4c925e5a03cffe006aa92dee0d1bb083eda758bf7f91a91727854a67d0bc24bb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e25f38d840b715e5187cbd802e96d7fb2e3b7b917340eb8690907ba94075632c
MD5 1772766ed7ffd9000ea49fa75264b68f
BLAKE2b-256 9e7be820dc9ded60d3f2c37539072ca54fa57d6ad34a6c08f2f414257d46536f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3ca51043da8acaf0fe32fa75fcc276a1b425ae05057afad03ddc533308ae3886
MD5 e67bb6b29f27c6cb8ac1d96575e32cbc
BLAKE2b-256 fb9cddbc27fb7ad87f54bdcfc8ae035e1becc84e1a858acda9bacbe457af1292

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73cad79bc9cce5e6b71c82b994937a1f59ed692a21bce0de6cebe416ace3ab9d
MD5 3834104ed650f1485576e4f7e78c27e7
BLAKE2b-256 c950352bf79cb4f1aa8c491897e6eaac1880ac8372a3a87034be79a2b72f23bc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0dbd58f17c7a6cb05ac85036062602da40b358f2dc10ba142982e8856114ac2b
MD5 007cd1801ea7846639bfddf96c864d69
BLAKE2b-256 4b02c8c29032e9b0cbf2abe7c1be8062b8b8bb2876128848d50f0081f923f142

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fe08ce5cc18ba77462230b1708db4a53d54ea51227f1ff01801a72db3d9b56f3
MD5 edc3654933fbe140372536511f7e249d
BLAKE2b-256 cd0783c044cbb07aa3f5fa6e5c1f83dbce1f894991d99fcae42b52582c8030f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ef72045cd9051867d65fcf2144c7cffd69cbd3790eef6878b51e6ecf0d2db1f1
MD5 c9c76b645495b3537970fa45753075db
BLAKE2b-256 c5993538288698d2424c20655432cec0ab9afc93acb512ddd90aef97ae7061f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 801b45ed73bccf4028fe6a3ba0e6acd586b7370e88efc4887b97c91f3c15d6db
MD5 2dc4a091238ca6aefe7dedd269341a67
BLAKE2b-256 89eb8fc03846e8d85c2bd3a6b48462d2affbe6e09586891873a08ec7671fddea

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 05d7753b61490d8327774cb3671fc18f03677be176ea420605cfe855819f486a
MD5 a1a747220e31c9fbf9698cd88878349a
BLAKE2b-256 46da0dcc0d4ffeef3fc39c0ad62229c13da7aa80f41bc54f984d2d1bfefbf795

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5840e703a1f23e2df60c8157aed49de3bc37a68f02ee1bb620f7e79637008057
MD5 113845bd109ab0b7bfb85742c23dbad2
BLAKE2b-256 a38ddf07e71387d251686dcba9ed5583807375932832bc07d17c908c95425367

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6e50bcd40e0c2b7533171fbd911b8fea04b465f5e2c07a22d884b67a7633e204
MD5 4ab03d1d28cf1f2d9429ef29cd77d940
BLAKE2b-256 b5b5080643e0bc67be9042aeee93f178ba94c82cf1e4f52174c9141ca549febe

See more details on using hashes here.

Provenance

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