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

Uploaded Source

Built Distributions

jiter-0.6.1-cp313-none-win_amd64.whl (198.9 kB view details)

Uploaded CPython 3.13 Windows x86-64

jiter-0.6.1-cp313-none-win32.whl (196.9 kB view details)

Uploaded CPython 3.13 Windows x86

jiter-0.6.1-cp313-cp313-musllinux_1_1_x86_64.whl (495.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

jiter-0.6.1-cp313-cp313-musllinux_1_1_aarch64.whl (512.9 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

jiter-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

jiter-0.6.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (389.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

jiter-0.6.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (369.7 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

jiter-0.6.1-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.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (336.0 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

jiter-0.6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (367.6 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

jiter-0.6.1-cp313-cp313-macosx_11_0_arm64.whl (301.5 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

jiter-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl (288.7 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

jiter-0.6.1-cp312-none-win_amd64.whl (199.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

jiter-0.6.1-cp312-none-win32.whl (197.4 kB view details)

Uploaded CPython 3.12 Windows x86

jiter-0.6.1-cp312-cp312-musllinux_1_1_x86_64.whl (496.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

jiter-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (324.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

jiter-0.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

jiter-0.6.1-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.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

jiter-0.6.1-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.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (368.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

jiter-0.6.1-cp312-cp312-macosx_11_0_arm64.whl (300.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

jiter-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl (289.3 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

jiter-0.6.1-cp311-none-win_amd64.whl (202.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

jiter-0.6.1-cp311-none-win32.whl (197.6 kB view details)

Uploaded CPython 3.11 Windows x86

jiter-0.6.1-cp311-cp311-musllinux_1_1_x86_64.whl (496.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

jiter-0.6.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.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (392.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

jiter-0.6.1-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.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

jiter-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

jiter-0.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (366.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

jiter-0.6.1-cp311-cp311-macosx_11_0_arm64.whl (302.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

jiter-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl (291.0 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

jiter-0.6.1-cp310-none-win_amd64.whl (200.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

jiter-0.6.1-cp310-none-win32.whl (197.4 kB view details)

Uploaded CPython 3.10 Windows x86

jiter-0.6.1-cp310-cp310-musllinux_1_1_x86_64.whl (496.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

jiter-0.6.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.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (393.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

jiter-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (370.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

jiter-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (353.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

jiter-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

jiter-0.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (366.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

jiter-0.6.1-cp310-cp310-macosx_11_0_arm64.whl (301.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

jiter-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl (290.5 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

jiter-0.6.1-cp39-none-win_amd64.whl (202.3 kB view details)

Uploaded CPython 3.9 Windows x86-64

jiter-0.6.1-cp39-none-win32.whl (198.3 kB view details)

Uploaded CPython 3.9 Windows x86

jiter-0.6.1-cp39-cp39-musllinux_1_1_x86_64.whl (497.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

jiter-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

jiter-0.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (392.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

jiter-0.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (372.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

jiter-0.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

jiter-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

jiter-0.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (367.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

jiter-0.6.1-cp39-cp39-macosx_11_0_arm64.whl (289.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

jiter-0.6.1-cp39-cp39-macosx_10_12_x86_64.whl (290.7 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

jiter-0.6.1-cp38-none-win_amd64.whl (190.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

jiter-0.6.1-cp38-none-win32.whl (198.0 kB view details)

Uploaded CPython 3.8 Windows x86

jiter-0.6.1-cp38-cp38-musllinux_1_1_x86_64.whl (496.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

jiter-0.6.1-cp38-cp38-musllinux_1_1_aarch64.whl (514.2 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

jiter-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (325.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

jiter-0.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (392.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

jiter-0.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (371.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

jiter-0.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (354.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

jiter-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (337.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

jiter-0.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (367.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

jiter-0.6.1-cp38-cp38-macosx_11_0_arm64.whl (288.6 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

jiter-0.6.1-cp38-cp38-macosx_10_12_x86_64.whl (290.6 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: jiter-0.6.1.tar.gz
  • Upload date:
  • Size: 161.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.6.1.tar.gz
Algorithm Hash digest
SHA256 e19cd21221fc139fb032e4112986656cb2739e9fe6d84c13956ab30ccc7d4449
MD5 3d79879d4c065b5d9e975a7c2975017e
BLAKE2b-256 26ef64458dfad180debd70d9dd1ca4f607e52bb6de748e5284d748556a0d5173

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.1-cp313-none-win_amd64.whl
  • Upload date:
  • Size: 198.9 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.1-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 be7503dd6f4bf02c2a9bacb5cc9335bc59132e7eee9d3e931b13d76fd80d7fda
MD5 947092207768298a135e7d657b9f085a
BLAKE2b-256 7afc8709ee90837e94790d8b50db51c7b8a70e86e41b2c81e824c20b0ecfeba7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.1-cp313-none-win32.whl
  • Upload date:
  • Size: 196.9 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.1-cp313-none-win32.whl
Algorithm Hash digest
SHA256 352cd24121e80d3d053fab1cc9806258cad27c53cad99b7a3cac57cf934b12e4
MD5 b15b8524e7483f78c3c8f45161bd40b8
BLAKE2b-256 f32f4f3cc5c9067a6fd1020d3c4365546535a69ed77da7fba2bec24368f3662c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 928bf25eb69ddb292ab8177fe69d3fbf76c7feab5fce1c09265a7dccf25d3991
MD5 8f434073d71cd9b656dcdec9b1c906b1
BLAKE2b-256 6960af26168bd4916f9199ed433161e9f8a4eeda581a4e5982560d0f22dd146c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 825651a3f04cf92a661d22cad61fc913400e33aa89b3e3ad9a6aa9dc8a1f5a71
MD5 e6c95791cf9b3368dd744ad800a57101
BLAKE2b-256 affc51ba30875125381bfe21a1572c176de1a7dd64a386a7498355fc100decc4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c74a8d93718137c021d9295248a87c2f9fdc0dcafead12d2930bc459ad40f885
MD5 8e6f969b2fabecf6d88ec2e1ca9e35d4
BLAKE2b-256 a8f32e01294712faa476be9e6ceb49e424c3919e03415ded76d103378a06bb80

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03a025b52009f47e53ea619175d17e4ded7c035c6fbd44935cb3ada11e1fd592
MD5 5a223854f0d0893d01dda47176bc1809
BLAKE2b-256 5f85037ed5261fa622312471ef5520b2135c26b29256c83adc16c8cc55dc4108

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5f79ce15099154c90ef900d69c6b4c686b64dfe23b0114e0971f2fecd306ec6c
MD5 38837f2af8e39785b7887965535e4dab
BLAKE2b-256 eebe7f26b258ef190f6d582e21c76c7dd1097753a2203bad3e1643f45392720a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 51b58f7a0d9e084a43b28b23da2b09fc5e8df6aa2b6a27de43f991293cab85fd
MD5 7e6d1c709474ed6cb207b72b2150b0d4
BLAKE2b-256 4a4df9c0ba82b154c66278e28348086086264ccf50622ae468ec215e4bbc2873

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cc56c8f0b2a28ad4d8047f3ae62d25d0e9ae01b99940ec0283263a04724de1f3
MD5 046429e98377dee4b9db62dc6a6d6fbe
BLAKE2b-256 cf549681f112cbec4e197259e9db679bd4bc314f4bd24f74b9aa5e93073990b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 40b03b75f903975f68199fc4ec73d546150919cb7e534f3b51e727c4d6ccca5a
MD5 faecf5294dd6d0ed8acf16a4c759c955
BLAKE2b-256 004550377814f21b6412c7785be27f2dace225af52e0af20be7af899a7e3f264

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f491cc69ff44e5a1e8bc6bf2b94c1f98d179e1aaf4a554493c171a5b2316b701
MD5 ffbf5acd688964031f34efcbb1f0db8a
BLAKE2b-256 853b96d15b483d82a637279da53a1d299dd5da6e029b9905bcd1a4e1f89b8e4f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 852508a54fe3228432e56019da8b69208ea622a3069458252f725d634e955b31
MD5 0283b4995fccd3cc55a3bd85c9533cfe
BLAKE2b-256 23387b48e0149778ff4b893567c9fd997ecfcc013e290375aa7823e1f681b3d3

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 199.0 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.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 91e63273563401aadc6c52cca64a7921c50b29372441adc104127b910e98a5b6
MD5 7688fa807fe4fd0a4cae64644932e041
BLAKE2b-256 43b2bd6665030f7d7cd5d9182c62a869c3d5ceadd7bff9f1b305de9192e7dbf8

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.1-cp312-none-win32.whl
  • Upload date:
  • Size: 197.4 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.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 883d2ced7c21bf06874fdeecab15014c1c6d82216765ca6deef08e335fa719e0
MD5 453451817e22236c37e86ba4d207727f
BLAKE2b-256 52015f65dd1387d39aa3fd4a98a5be1d8470e929a0cb0dd6cbfebaccd9a20ac5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e7b75436d4fa2032b2530ad989e4cb0ca74c655975e3ff49f91a1a3d7f4e1df2
MD5 47c08754308f9e960c99dfe8066f63df
BLAKE2b-256 5fe8e47734280e19cd465832e610e1c69367ee72947de738785c4b6fc4031e25

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 540fcb224d7dc1bcf82f90f2ffb652df96f2851c031adca3c8741cb91877143b
MD5 dabad57b95f1193bd47f76acb566e7a0
BLAKE2b-256 62125d75729e0a57804852de0affc6f03b3df8518259e47ed4cd89aeeb671a71

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a3567c8228afa5ddcce950631c6b17397ed178003dc9ee7e567c4c4dcae9fa0
MD5 ca701b8b1f07086ee7353bd66231ac03
BLAKE2b-256 bd3b612ea6daa52d64bc0cc46f2bd2e138952c58f1edbe86b17fd89e07c33d86

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18aa9d1626b61c0734b973ed7088f8a3d690d0b7f5384a5270cd04f4d9f26c86
MD5 72a03f5476f7f5e688b81a9979b7ebe8
BLAKE2b-256 1f9d9ec03c07325bc3a3c5b5082840b8ecb7e7ad38f3071c149b7c6fb9e78706

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26d2bdd5da097e624081c6b5d416d3ee73e5b13f1703bcdadbb1881f0caa1933
MD5 5e1a0d986cb9cc26e73a263f64aca475
BLAKE2b-256 19153f27f4b9d40bc7709a30fda99876cbe9e9f75a0ea2ef7d55f3dd4d04f927

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 defee3949313c1f5b55e18be45089970cdb936eb2a0063f5020c4185db1b63c9
MD5 bfd2f0adae1953ed18ab37e9e7682ee7
BLAKE2b-256 298a4c1e1229f89127187df166de760438b2a20e5a311391ba10d2b69db0da6f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 691352e5653af84ed71763c3c427cff05e4d658c508172e01e9c956dfe004aba
MD5 2e86bbb9cadd391a39e61a2ca9d2f331
BLAKE2b-256 ea4ffbb1e11fcc3881d108359d3db8456715c9d30ddfce84dc5f9e0856e08e11

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e5c0507131c922defe3f04c527d6838932fcdfd69facebafd7d3574fa3395314
MD5 0df0ebcd9368608e25277e2078a9f2d0
BLAKE2b-256 210ff3a1ffd9f203d4014b4e5045c0ea2c67ee71a7eee8bf3408dbf11007cf07

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4e6e340e8cd92edab7f6a3a904dbbc8137e7f4b347c49a27da9814015cc0420c
MD5 6cd6166e7d671dbb04a669de1edf5b84
BLAKE2b-256 9a478e4a7704a267b8d1d3287b4353fc07f1f4a3541b27988ea3e49ccbf3164a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1fad93654d5a7dcce0809aff66e883c98e2618b86656aeb2129db2cd6f26f867
MD5 7719adde7ad1b17a31fd809fc7ff7d0e
BLAKE2b-256 2ed5fcdfbcea637f8b9b833597797d6b77fd7e22649b4794fc571674477c8520

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 202.0 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.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 3e36a320634f33a07794bb15b8da995dccb94f944d298c8cfe2bd99b1b8a574a
MD5 36667acb9694749b007c1e5dac587c4d
BLAKE2b-256 658a78d337464e2b2e552d2988148e3e51da5445d910345c0d00f1982fd9aad4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.1-cp311-none-win32.whl
  • Upload date:
  • Size: 197.6 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.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 7d72fc86474862c9c6d1f87b921b70c362f2b7e8b2e3c798bb7d58e419a6bc0f
MD5 98fb35b64f0d09d20cbff50a687d7c82
BLAKE2b-256 ca379e0638d2a129a1b72344a90a03b2b518c048066db0858aaf0877cb9d4acd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a2e861658c3fe849efc39b06ebb98d042e4a4c51a8d7d1c3ddc3b1ea091d0784
MD5 3963faf7bab18217faa8fe688a62f599
BLAKE2b-256 58559b7e0021e567731b076a8bf017a1df7d6f148bb175be2ac647a0c6433bbd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 3c843e7c1633470708a3987e8ce617ee2979ee18542d6eb25ae92861af3f1d62
MD5 e8a60a099180926e59e961ae9b41a9b3
BLAKE2b-256 d39b967752fb36ddb4b6ea7a2a8cd0ef3f167a112a2d3a2131ee544969203659

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3343d4706a2b7140e8bd49b6c8b0a82abf9194b3f0f5925a78fc69359f8fc33c
MD5 ea14930811f3cbaf87b437534f913877
BLAKE2b-256 636dbff2bce7cc17bd7e0f517490cfa4444ad94d20720eb2ccd3152a6cd57a30

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e51a2d80d5fe0ffb10ed2c82b6004458be4a3f2b9c7d09ed85baa2fbf033f54b
MD5 2cf86d4a28ac467a45454206c03ebf48
BLAKE2b-256 bae3ef93fc307278d98c981b09b4f965f49312d0639ba31c2db4fe073b78a833

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9ac7c2f092f231f5620bef23ce2e530bd218fc046098747cc390b21b8738a7a
MD5 f35babaffc2255439dedb596c2f7b34e
BLAKE2b-256 b9866e4ef77c86175bbcc2cff6e8c6a8f98a554f88ce99b9c892c9330858d07c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0b809e39e342c346df454b29bfcc7bca3d957f5d7b60e33dae42b0e5ec13e027
MD5 1f690497cff9d26cb5d4693d6479aafc
BLAKE2b-256 bf70c31f21c109a01e6ebb0e032c8296d24761b5244b37d16bb3e9b0789a0eb0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25f0d2f6e01a8a0fb0eab6d0e469058dab2be46ff3139ed2d1543475b5a1d8e7
MD5 206600d6ffcaf50037c86f4b7f6545a0
BLAKE2b-256 3bc787a809bf95eb6fbcd8b30ea1d0f922c2187590de64a7f0944615008fde45

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 82521000d18c71e41c96960cb36e915a357bc83d63a8bed63154b89d95d05ad1
MD5 b2a3cc538098a8fda9be2ae9076fcc60
BLAKE2b-256 494b56e8a5e2be5439e503b77d2c9479197e0d8199827d7f79b06592747c5210

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 47fee1be677b25d0ef79d687e238dc6ac91a8e553e1a68d0839f38c69e0ee491
MD5 27b5bbe5778d5edfb96d415a1b4c4c9c
BLAKE2b-256 913585ef9eaef7dec14f28dd9b8a2116c07075bb2731a405b650a55fda4c74d7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b03c24e7da7e75b170c7b2b172d9c5e463aa4b5c95696a368d52c295b3f6847f
MD5 a4ed2db77371836e941e8dade793d921
BLAKE2b-256 9591d1605f3cabcf47193ecab3712e5a4c55a19cf1a4d86ef67402325e28a44e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 200.0 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.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 7cea41c4c673353799906d940eee8f2d8fd1d9561d734aa921ae0f75cb9732f4
MD5 9bdd82d78056539b30d025bbd9649f33
BLAKE2b-256 5bbdff2f6a84574e0e01759dd81255c3145cacd9f374d01efc49574b03638105

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.1-cp310-none-win32.whl
  • Upload date:
  • Size: 197.4 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.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 33af2b7d2bf310fdfec2da0177eab2fedab8679d1538d5b86a633ebfbbac4edd
MD5 d7302fdff6e7367671d301e38837b9a6
BLAKE2b-256 c18e2854fe24b38e7180396a991e34363f3e7a72ea99c4a05f2c3940ae01fda8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 67723a011964971864e0b484b0ecfee6a14de1533cff7ffd71189e92103b38a8
MD5 a9c87682b551340cd540b9723ad82ffe
BLAKE2b-256 3318ed55ecd669f5ce963045f9cd3404c937d51509324070af5bba17cda789fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e90552109ca8ccd07f47ca99c8a1509ced93920d271bb81780a973279974c5ab
MD5 a00751a7b3041db23b5167c37cf542bc
BLAKE2b-256 0c4b487e2623703da76405d3ccd5f6047a7c7f9e238eda7a3043b806542e53ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 220e0963b4fb507c525c8f58cde3da6b1be0bfddb7ffd6798fb8f2531226cdb1
MD5 ac75f5caaa485bb5066fecc9aab4bdad
BLAKE2b-256 bd5ad2fe7904a3f12cb2a425e83382186d23325c3316d40382cd17cd4a2205b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 36c0b51a285b68311e207a76c385650322734c8717d16c2eb8af75c9d69506e7
MD5 69691688f36499dee733224ad4e6a6ae
BLAKE2b-256 aec34e68a0e52a3790df68b95a5fa0d70aae3f6d1f376adf515fb9016080ccf3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2019d966e98f7c6df24b3b8363998575f47d26471bfb14aade37630fae836a1
MD5 b35461991e1851c4485f17dfbb772185
BLAKE2b-256 4478fb2bf870418360ac523ac1591a7418add2e9385e207ca6320907d22a0699

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed69a7971d67b08f152c17c638f0e8c2aa207e9dd3a5fcd3cba294d39b5a8d2d
MD5 d790ef2a3273640ab6a9d0e9ddf98a2c
BLAKE2b-256 253abb625446b95b7f964ac8c5e9260190262b629c1aecc9f7e9fd7730e2e2b1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b3e02f7a27f2bcc15b7d455c9df05df8ffffcc596a2a541eeda9a3110326e7a3
MD5 b616f95919e2bdbef64ddd3a7183b093
BLAKE2b-256 6bab07e67b0a9ad816f5130def05537177f2efdfe451480a584ae9fbb31cdaf8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa25c7a9bf7875a141182b9c95aed487add635da01942ef7ca726e42a0c09058
MD5 41481f9b448c7866c4bc65d05215d290
BLAKE2b-256 d64a9db9f1f7034187290ffb370c9b579e647b3e5889a541b54d113353d29a14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 adef59d5e2394ebbad13b7ed5e0306cceb1df92e2de688824232a91588e77aa7
MD5 810ac008ce494a00b0a066e4c5551bcc
BLAKE2b-256 b228cf5586637c8c21ad1d68bcc3361d60ade8e81524340454f21c68e8368b70

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d08510593cb57296851080018006dfc394070178d238b767b1879dc1013b106c
MD5 1cbb3810f38e9f4dec33ad375d11cafb
BLAKE2b-256 0c1d9dede54580112c1403a9b6ef0cab33d10c58e3e7e55548d6b97bfd890748

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 202.3 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.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 d465db62d2d10b489b7e7a33027c4ae3a64374425d757e963f86df5b5f2e7fc5
MD5 df1fd87925684dd2ee8371e4f3a32205
BLAKE2b-256 b4ee6d9873144f860391fd1130be0e1e5a1dbd7e9d128da1c7baf1ae71babb99

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.1-cp39-none-win32.whl
  • Upload date:
  • Size: 198.3 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.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 d71c962f0971347bd552940ab96aa42ceefcd51b88c4ced8a27398182efa8d80
MD5 da2e293d557fdbded98b28212a1032f6
BLAKE2b-256 c0065e3317f8a62e09507efe384710cb0de8dff9b80200122d93b3e83a14a2a1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 db459ed22d0208940d87f614e1f0ea5a946d29a3cfef71f7e1aab59b6c6b2afb
MD5 fe01f52dc3787c3f261d1edb4d2b38b9
BLAKE2b-256 8e807d1c6b7166667ccea4efe4a274264e2f3891c33ded54e98c1f682724f385

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 bd95375ce3609ec079a97c5d165afdd25693302c071ca60c7ae1cf826eb32022
MD5 76302872fc7e2c97f2ae39d2a248f949
BLAKE2b-256 5045506bcb3ea5cfe0ae87f96f5ef8502728501d22b9788852001a8f6ad7a379

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 677be9550004f5e010d673d3b2a2b815a8ea07a71484a57d3f85dde7f14cf132
MD5 c2ee39ef24e3b3d429c27845cb95fc28
BLAKE2b-256 0d64214e4ee74aa2fb3152551307b98c34ddc63f07d4730634162c3e5e5f1d29

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 08be33db6dcc374c9cc19d3633af5e47961a7b10d4c61710bd39e48d52a35824
MD5 7aaac6f0eb654db0499fceacbdd897c4
BLAKE2b-256 35f45eb28bd61fac9ffe29c780351ce8c6fbad9f8128234ad1ae527cd6e91847

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e4e85f9e12cd8418ab10e1fcf0e335ae5bb3da26c4d13a0fd9e6a17a674783b6
MD5 d7a4e47ed44cfeb20e1fd92d25753597
BLAKE2b-256 1218154338f87aabf90f4e512a52bc4769dea21db113da47619152d5033612e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3cbc1a66b4e41511209e97a2866898733c0110b7245791ac604117b7fb3fedb7
MD5 2d4153bb556d5ce5d6ddab0d92cd9f7b
BLAKE2b-256 45af8395b60c4a9f124eefaa0d197554183e90e5aa17650a32d815c351b76984

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8c97e90fec2da1d5f68ef121444c2c4fa72eabf3240829ad95cf6bbeca42a301
MD5 8e5c04a108b983b25f4b34f1953b022b
BLAKE2b-256 cd6571c98b1840f4e4e4778dcf1f0e27da68afd1430e9a8d0304db633f2c1773

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e8bd065be46c2eecc328e419d6557bbc37844c88bb07b7a8d2d6c91c7c4dedc9
MD5 ba461c4a4a73f36c58f26b055821405a
BLAKE2b-256 062c4b1c7d0e1044ed7f8ce7879e4d3336f57d7c771107971254bb765a220982

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f791b6a4da23238c17a81f44f5b55d08a420c5692c1fda84e301a4b036744eb1
MD5 fb01d489ca741c956cb09e1b288119c7
BLAKE2b-256 82ba2ed5094c80a3c38cdfddbc733197e0cdbdb523dc80273282d16224395ca3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f1c53615fcfec3b11527c08d19cff6bc870da567ce4e57676c059a3102d3a082
MD5 0c1a574282ee20c6e407fa4f19c4c10e
BLAKE2b-256 e7029afdf80aff25a0068cad936f0c73242863c914833cbce7d787f4d5ffd3bf

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 190.6 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.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 13f9084e3e871a7c0b6e710db54444088b1dd9fbefa54d449b630d5e73bb95d0
MD5 822187f662d597ba3b2c083bf343a6e7
BLAKE2b-256 f93585ff8f3bb53cb1eaa945dfc9be9476fffd7a300fd083df17befb0e67defd

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.6.1-cp38-none-win32.whl
  • Upload date:
  • Size: 198.0 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.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 81116a6c272a11347b199f0e16b6bd63f4c9d9b52bc108991397dd80d3c78aba
MD5 2b1f6ebfded13a536cb03028217a56b4
BLAKE2b-256 44c78fbacc807bdea31b6abf125fbcdf45c703c7038d2bf56546a22e2a71ff07

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a311df1fa6be0ccd64c12abcd85458383d96e542531bafbfc0a16ff6feda588f
MD5 1c4bad83364127bf2c55174858399f63
BLAKE2b-256 20d0cc8af0b8a958f57ac12ed64e80f7715549fb6df81f8167adfc1aa5bbdc15

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5a99d4e0b5fc3b05ea732d67eb2092fe894e95a90e6e413f2ea91387e228a307
MD5 9e2f27f1131560f8ac24c74b59070b3b
BLAKE2b-256 47f2bcdecf5c5c940e364899493d7766e5f46735ec31a38527a7992e7cd12a02

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9df588e9c830b72d8db1dd7d0175af6706b0904f682ea9b1ca8b46028e54d6e9
MD5 295df0517bfcc3f2ba1f44d4e84184c1
BLAKE2b-256 0c202b8bd55f0ff333e029b1aaed2663c4be55adae0de16fd8a10d9544d0a1a4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bae5ae4853cb9644144e9d0755854ce5108d470d31541d83f70ca7ecdc2d1637
MD5 fcb7450938e70a5bfb27990939fe54c7
BLAKE2b-256 faa54887175b9da7463a16c365f283137d73192b052392cf481c8cfd9c336a6e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59e2b37f3b9401fc9e619f4d4badcab2e8643a721838bcf695c2318a0475ae42
MD5 840cc7336349bf509e7a3986af909df1
BLAKE2b-256 83c72781a1977d702b69b853b5e9263793e6ccbb2bbe1bb8ebb94584fa07b9d2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a31c6fcbe7d6c25d6f1cc6bb1cba576251d32795d09c09961174fe461a1fb5bd
MD5 1fd57e235698fdc255435ca0f10a0953
BLAKE2b-256 1e5947f7888400a6a2bba89911b87ac065b0de443de7be20f5744283549db2c8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aeeb0c0325ef96c12a48ea7e23e2e86fe4838e6e0a995f464cf4c79fa791ceeb
MD5 ce61fa50b50c70b6763a60d69dfc0393
BLAKE2b-256 ff9e344c43b3d1695b24a12e5090106917fb4861e5aac8fc01353d4833f4bc97

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 15f8395e835cf561c85c1adee72d899abf2733d9df72e9798e6d667c9b5c1f30
MD5 1ae5ba4a783be97d7cd7d4928d887f74
BLAKE2b-256 4e126d21543b2772b497acf315e8b3772e637fd78cd419dc5cf1f751d72dbdcc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77c296d65003cd7ee5d7b0965f6acbe6cffaf9d1fa420ea751f60ef24e85fed5
MD5 2e272bb4706354412ef7f1b9e1a3d300
BLAKE2b-256 749d9e34af4f886db2c1b2bb2c8db31e053bb4e2bc555d2d3061038888fe71bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.6.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 31d8e00e1fb4c277df8ab6f31a671f509ebc791a80e5c61fdc6bc8696aaa297c
MD5 2f5f3c2170afe7878b4f055d80b99660
BLAKE2b-256 08bde52ff93dfa3c1f424c0dd88a39d0ee4ee32eae5d10c50f1f9128cbf9510d

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