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,
    lossless_floats: bool = 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
        lossless_floats: if True, preserve full detail on floats using `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.
    """

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

Uploaded Source

Built Distributions

jiter-0.4.1-cp312-none-win_amd64.whl (200.1 kB view details)

Uploaded CPython 3.12 Windows x86-64

jiter-0.4.1-cp312-none-win32.whl (208.3 kB view details)

Uploaded CPython 3.12 Windows x86

jiter-0.4.1-cp312-cp312-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

jiter-0.4.1-cp312-cp312-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

jiter-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

jiter-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

jiter-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

jiter-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

jiter-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

jiter-0.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

jiter-0.4.1-cp312-cp312-macosx_11_0_arm64.whl (311.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

jiter-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl (304.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

jiter-0.4.1-cp311-none-win_amd64.whl (201.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

jiter-0.4.1-cp311-none-win32.whl (206.9 kB view details)

Uploaded CPython 3.11 Windows x86

jiter-0.4.1-cp311-cp311-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

jiter-0.4.1-cp311-cp311-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

jiter-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

jiter-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

jiter-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

jiter-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

jiter-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

jiter-0.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

jiter-0.4.1-cp311-cp311-macosx_11_0_arm64.whl (311.8 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

jiter-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl (305.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

jiter-0.4.1-cp310-none-win_amd64.whl (203.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

jiter-0.4.1-cp310-none-win32.whl (207.4 kB view details)

Uploaded CPython 3.10 Windows x86

jiter-0.4.1-cp310-cp310-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

jiter-0.4.1-cp310-cp310-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

jiter-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

jiter-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

jiter-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

jiter-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

jiter-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

jiter-0.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

jiter-0.4.1-cp310-cp310-macosx_11_0_arm64.whl (314.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

jiter-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl (306.0 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

jiter-0.4.1-cp39-none-win_amd64.whl (204.5 kB view details)

Uploaded CPython 3.9 Windows x86-64

jiter-0.4.1-cp39-none-win32.whl (208.5 kB view details)

Uploaded CPython 3.9 Windows x86

jiter-0.4.1-cp39-cp39-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

jiter-0.4.1-cp39-cp39-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

jiter-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

jiter-0.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

jiter-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

jiter-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

jiter-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

jiter-0.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

jiter-0.4.1-cp39-cp39-macosx_11_0_arm64.whl (304.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

jiter-0.4.1-cp39-cp39-macosx_10_12_x86_64.whl (305.7 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

jiter-0.4.1-cp38-none-win_amd64.whl (203.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

jiter-0.4.1-cp38-none-win32.whl (208.4 kB view details)

Uploaded CPython 3.8 Windows x86

jiter-0.4.1-cp38-cp38-musllinux_1_1_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

jiter-0.4.1-cp38-cp38-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

jiter-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

jiter-0.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

jiter-0.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

jiter-0.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

jiter-0.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

jiter-0.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (1.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

jiter-0.4.1-cp38-cp38-macosx_11_0_arm64.whl (304.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

jiter-0.4.1-cp38-cp38-macosx_10_12_x86_64.whl (305.8 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: jiter-0.4.1.tar.gz
  • Upload date:
  • Size: 159.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for jiter-0.4.1.tar.gz
Algorithm Hash digest
SHA256 741851cf5f37cf3583f2a56829d734c9fd17334770c9a326e6d25291603d4278
MD5 98a4910b537b4c71b0eb29afe4c4b45e
BLAKE2b-256 f62753d3ffa863e7ef40023b1730fc5c999a616f3695145fd6fd7a351e8a8ae7

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.1-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 200.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for jiter-0.4.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 fde004e47a801512c4167f188a6372960374fbd59e635753b3ee536e81953eb3
MD5 45cd8e9a7d91e6dcbd535f7400ef5783
BLAKE2b-256 35d9245d530da38b7d75d043e08b1d0f190ec0797eca19de67835bf7fe1b8b22

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.1-cp312-none-win32.whl
  • Upload date:
  • Size: 208.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for jiter-0.4.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 fffdf137c3ab7f0c5facb7c478b57ad3e1eb9b149daff48687844de77b78ab70
MD5 7cb7866b1ed589ee97fcb2f1ba698185
BLAKE2b-256 b2f09ea95ce41f60cd1f3c4ace429b745047b213f3371fa381034d0fb98f7634

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 dcd3d6a142d7b267a8c5f1e28d02759e2e29343b095f6d8aaf463333a842e1f8
MD5 71a412009d490a2a2bed930ed1132a41
BLAKE2b-256 ea2f3991920976f456ca303a3225192f081e402a8d875d85c11be155ded4aa3b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 19f7953b8ada7ee109764ad91d4afb1a9f69b77cde0b890844744c513612dbf8
MD5 95257eeb6eab8b09ab6e3fb6b0797416
BLAKE2b-256 7e7114c7befa54c023479a3da7d0ec54d81e71686ea57e3970685b6bc2502c02

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7cbf41da6506b42db21a1a0befa48e16384591e84e80db002a826ccf07668f1
MD5 f9eae4434e34935a17a62cf4a69a4244
BLAKE2b-256 4c02ff6dda6b0f89233d86490100302f89970de345c6881cf23cec854191bd76

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7387998c6585ce0f02ae4f5338fabf72b99494860c347f27bc34720290eafb15
MD5 efceb3241c5b9d61286cacf602bc44be
BLAKE2b-256 1d515cf3ff53804d2088d9ffc2399cf54ebcb8e94812273a9963750ba6fde8ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a60f8e495448d8e02d291fa9a8522cfe775a10210ba428994f383965e6f6e65
MD5 e40b372f8d15d90192399d816efcd7f5
BLAKE2b-256 0c29e5c660c223d6237a6df07f897567bbf8cd6c3377882bee96bbe3c5550705

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8f91a19eba23b4a1bb1e5b64c19cfdbf46604180e5dee40548b53ca13afd2d9
MD5 7cc8e2ba6e1346ad4fb6448fe78a8756
BLAKE2b-256 cd23e415ad48c12dd444e233ba932475a0426dfc50fa5b1737d2db8bb2ea5d3f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b5f1f33e9fd4de4369a8d00fdf2571a8246a942095fb2a9d4cd25135ee675c85
MD5 01e80f1097004309df9b4b26c4958c38
BLAKE2b-256 08d91dee74ce09f493d0eadd207799d0787874fc75723d1e807f10117f917d96

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 793ae2499722b9fc31e300abd07418902512109bca17f617598a31a9e17bddce
MD5 6dec5b9c27ef03f33ac4d5aa12a59eae
BLAKE2b-256 6c515c61d81cce3e72c02567f90719e5d2644389f1e1804804ab58c417b031d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ffbc61349f2f27676d40d68e8ef83fc2a9dd2c1464962b1d1b1d8504bccbf85
MD5 f4b8cf7d88ad847fe9a15a9062c08124
BLAKE2b-256 78dc0ae90670436e5a5429dabc34aa7f8ed86b16583f9351483c37d825744911

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 93a8869c18a3721e41d7adb289c5c71aea8887eb368a3411219a0afb62955cbe
MD5 7b8b804b6789117371537fd4d585cb14
BLAKE2b-256 f18223e8724a4a0d6b95b14fe30389fb096ac06316ce1289cfb5edc9bbb9ce43

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.1-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 201.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for jiter-0.4.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b71758befea8dbdc10e0fb40a776e085eed0e74afef42468ebb58562289e9190
MD5 c432cb8ed15ea8c52487f603d314fce2
BLAKE2b-256 48c6ff3d497824ff7eec251b5681303e85f24f34f7a533811bd0fb383f500093

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.1-cp311-none-win32.whl
  • Upload date:
  • Size: 206.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for jiter-0.4.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 37875f56222f2bb61410e15196d9b91510ccca322c391f3d20c91d667130d15e
MD5 5550401b9c57a1b078cdec54090a7762
BLAKE2b-256 efdae211eba23bd8c5f2d5563e5ed64b964a44b9ec19c144355d1b2ec9826300

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b3c85c586f1cd71c2a1e78756f6857119947b532379bd9be4338bf3dacf1e87f
MD5 7f533cbf63cd406b3018bda2932fd1b2
BLAKE2b-256 520864e6f309e0f4be0fa9631badcde88481d1fa5e74f8b659344174dc9379b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e55b2f4d2d5066979b0e0e58d85e3fffd0f6e6a0523aab7e0ce75950259387da
MD5 00b7edb347a038a4f9dc8e53df88a63f
BLAKE2b-256 8556dc73371e2b9d2bf744ccdb66420eaf8348c964af2a58319aac2a78776888

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 fdc90017cd22dca6b40f2f8518b38363e78aee3cb32f84e1cb08900a598ca91b
MD5 cf688ce9240ddcb86617241ec037852a
BLAKE2b-256 4275aa2a89456b5398336f550db56b1abd3c4e8410ffd1d07457beca7aa0a686

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cd333eca1090cf21e6359721eecbb2a7fe031cc4db3dd595081430b4a59371c5
MD5 f775de9f8d3c9c7f6ce1d12b4a5516f0
BLAKE2b-256 30fb96db69a9e3414a0e6641073502ba51b4b07570b66279522e807020cb2037

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88d06af883524e5429d75395bb4ee6ddeda4c30818b2f3e3b8f4afa2dd8f28c0
MD5 f6aa84145a6b38b944943ef92d3d834f
BLAKE2b-256 381c739cf1bc5c6e4cea73ad76392c6defba236b532d5b19137ff5c42cc9d270

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b02ddd65513705ec38211ea48ffc0fde41aa46166d9f7706972daf97b57c8599
MD5 efbc9534c710239516362b95097ecf0b
BLAKE2b-256 35dd186ce9510ea65e01e6292a1d6a3c0200abc8c8920771b5cff504f1eee3df

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c2933c04ebd77b3e9cf34f80ba45c093739c687c9c5a4fd0a8c701a3bfd90940
MD5 c6fffe11e04a00eab211657c8e275ff3
BLAKE2b-256 55378c52b25fb6e5f6e3a9fd1ea65a11249505865716f1ae5406efc7305833cb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aedce5b11ca58853d46461e1880079836bfab4e132be2b7d2093ec193081bbc8
MD5 9a3e79766405dc5bf5685ea0ae35908e
BLAKE2b-256 5e8c8057f439d75a0d344548071e2edede28dbaeb951e89714f5a19241401353

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f813b49db21c946aa010accc54b8e5c9d0007be252bda4738159fa6c65d6d396
MD5 09a7ff882559b5fd13a0ae1cbfbf2028
BLAKE2b-256 851245405c5e396ed8f8d21b60e12440467141ab93056026db7cc58837a7593f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b56e4f2fa5767976f2332e9e067010ddfe1379b6456b5458123ba50657c33e02
MD5 bd958f1df6e75e2ad85b13cc72829b8a
BLAKE2b-256 ce254dfbe04df51ec077e0c5a7a53aefa8ecb3b76902691616d76f8e54e03eda

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.1-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 203.3 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for jiter-0.4.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 2509868b8dacf4f65d04b4d951d390f30f403a87a997a14e2db2d232c7a468a7
MD5 3aa82b2de7ba99ac94da7ac88ebe3bf1
BLAKE2b-256 6383f4aa4c65502390219a47d9b28ead3a901da109989748831afad66c0f72a5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.1-cp310-none-win32.whl
  • Upload date:
  • Size: 207.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for jiter-0.4.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 b2ac90b94dd717644c61c8ed0c2ec6e9505bd7314b91a1549680d7f1cb8f1da4
MD5 f1fe8af8579739e7e921a677b17c625b
BLAKE2b-256 cdd63d099e6c81a62e1bcb1f2bf88a31a20435526fad8e3e1268676daf4a0d4c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 5e50468d5acfef335ba8bc3892bb304354c38ba18acb3f7ae428451e47136e49
MD5 2b06ac2c5805394a28b4ef3a21b98ab9
BLAKE2b-256 9d42974b75fb2067ddb8f709b08dad3a05ddb5828744089ecc2282332529d8a6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c0e413999a819ccef9b5fd22ef4b9b8c48a98e49da4d09b43ebce286d0d80e26
MD5 b122d159894b0750e9b2155eda97ffcc
BLAKE2b-256 43d15c8b28d6833cef0c1fb43766e919872e61d48943c6e5377a709142c9b375

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5cb32457296351c98da289d21a092a6c53c75beb80e7127c8e16224ee342c7c7
MD5 7c21befb960ad6de3ec12282153c531f
BLAKE2b-256 b70e96a3349c4d20b0862fda087fc094b6309d48011eef3b08b37179e33f6453

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 639b766bde088546b5205fd31608502b5b42abee3294b43cc95c6ea8f9a257c3
MD5 ae6b9095c29b2b8c40a50d1421ebb4d7
BLAKE2b-256 ebdd3831bcf3e49af023abc19689e08a820b107b680f50bcaf61b55fae49cce0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8586e68702666b6acd919c65f718a09603adcfd8b4c7026bade2441d9e7bd34e
MD5 b05446cc0223e2499d6b5eee40078cc2
BLAKE2b-256 4cfc9f70b5f1c2d2cef7b826024bf4146a77c970c6fa5eec82a2997fd6ab0aba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91bf2d31e906a3ca26fc8ee0cb979e0e51b12aa7e83999c6afea047538f95e5c
MD5 f85ba4b9ecaf6f2b13f4dc44e6d80c08
BLAKE2b-256 2b7fbb10209e5d42d27f557ab4ceba981acb80865f481489504246370d00fb20

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 df8788d34545d47de864032a78bae49a14b66b67196c73cd95f1c1e3081d9c73
MD5 829ee3dad1c6b4a803ba5856a7d5c4ba
BLAKE2b-256 6df162b5d1cdf5d158561227c0b4af2fd8c9338b8a106ab45eca09ae90cefa5f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 583263bd81bce5426806cf27ba85e4b97746797fae13c71e50a8689e06e57f81
MD5 b7c29f06a688ea374da35177b045d929
BLAKE2b-256 e272878ca58222846b35cb938aec31d045734dc8e7b684b8a7a40659a45ead9b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3587af23140a2eb282bba980010dae60f3b8b1579a034c5e869e9b94220a5972
MD5 d0391c86e63003ef0508468a384f7b85
BLAKE2b-256 5781b601580e608a20731009e2335793ed7372cbcdd4c9f428aec320dc6f2659

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3c2370cd8826b484f3fc6ed729cb58510ba24b4bc277c92323a57d35cf4df223
MD5 63917ddd6cd9358f65619957980e0b63
BLAKE2b-256 603c6ceee11945f90e0b533f348d433baaaf6072c80d9268a80c6aaa1db557da

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.1-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 204.5 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for jiter-0.4.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3db5c83c8655ce031943b6f08434dac1a91e1477b0df452de0c44f3390a9b22c
MD5 44f415f88ec781242be3b5e122a20820
BLAKE2b-256 907b3ac578fed062447cc88bbbb7ca4f80b0ca28a1684e30577b852df43eba70

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.1-cp39-none-win32.whl
  • Upload date:
  • Size: 208.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for jiter-0.4.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b0c93ef95b896a4ce5edff23071e4dcad77c9e9262fcb6ca2b050f781e8335a9
MD5 1fff022173d9751e0d202c6d75a4eced
BLAKE2b-256 5ba69904aea7694af2c584c9985d9111434da60abd6e5674a8dd5c4969ffe965

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7b0f34544923bff0f3393aa3d60087686d86089c9361f6530bb5d19ebfb3db47
MD5 c198cf2bf7e7e0a23389442a2c089412
BLAKE2b-256 263ccb370de3c86c885e5e3943479a41747236d728ff9e9bffb7b6102fe5025c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9b67a97fbce3ec35ee97439c8b786393f71ecbe7458d5e9279d4c172772eac36
MD5 730115d7e0aada29eaa7a5efde853d2d
BLAKE2b-256 aece4dc64b401ce540ddede0fda9204cabebace61354fb7cc507c5d9396e36ac

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 13314287782782be8439dfafca50f13fcab18046227068a3a8e8d8ac888f092b
MD5 195cbe70ab107491d4d5447b725995d5
BLAKE2b-256 df9d237608b3604efff8ff0b6f0daf5d8786dc2f1b62205e064f38e7d921347a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b082223f2e7e6f506d837df935f58f25cabf0a2b35902b4ec73fb561fbf2694a
MD5 78508688f561e67e45ed541cc05ed988
BLAKE2b-256 c8c86e44d1fc070bbb3a24950e3f439d7ab33c53db4b1f127fa58d211210767f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d126ffc3876cfc1fba6ae2be37f2532b5db593a96cf4b845724b50b44339c4fd
MD5 e0ca13e5fdd6526814c832ad14c496ff
BLAKE2b-256 0539a04ab0972b3233ba8b7fa0cd32d0722f7d0a78cbaef2cbd76c5aa62b09e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68697317170d8f851dfe978ba278b886e54e837ecd2a80c4a33ae780a0f19526
MD5 a9661f7076371f6ea768960594c54163
BLAKE2b-256 c2bb11dee6605ff4e37bfb74d3fc0b70f5d5488c548f80c8b67c8adefd9e3e20

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 78820599693bda34be17119abf9fad1f02e501b4816e47addbee9c5c768fb361
MD5 5e70b331a3e190e0faef89f8101b7fce
BLAKE2b-256 ccaaffd9c221cbfa61c07137f55f46403a75aa201e2b1d276d5ba8ed0b2a9931

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3da1346375605926f1ca4604d154ff41f5e3b933c6e01005e534bca2197d919f
MD5 01b808ad3155f058d9772214b9a7f039
BLAKE2b-256 81dcc5f5b78119fd3f4a7ac79867a12835904b8b4acbe8933518199bcd71835b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 36b10d945b9ccd2e9f2720e37395daf9e63cfa47e5e0e2887c4931888f0800cd
MD5 b62cd731065dfe0d0f5db70640c91730
BLAKE2b-256 98a4ba5aa322f0c29d9e1ef5248f56b596b61edbb7f261d3c6826d912be16296

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6680785a9273a87e463c86a962042d620c00c7bb8100dde1a4c78b2184cdd613
MD5 b93b181d2d78f8340368f0a223d1f972
BLAKE2b-256 183266742c941f9b37ae11a087ace0bc07d3823cb67309b902b8be858875c472

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.1-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 203.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for jiter-0.4.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 46b6364a0b2a81cc259768bda131e8528aa3af4312f23f7e10aa04d24f54bbb1
MD5 7287ffd63b1235e8621128ef06da32d6
BLAKE2b-256 c45e83fce9dc0c89088613c561624ecc8a29cfa730f04437d247633401424cdb

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.1-cp38-none-win32.whl
  • Upload date:
  • Size: 208.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.0.0 CPython/3.12.3

File hashes

Hashes for jiter-0.4.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6f618d1b04493bc9196e466ef59e0a6388eb85e936d1a61833449677643bbdd9
MD5 b678834bd303adb4ee2557ba602b019f
BLAKE2b-256 a1843a5cb782fa8d8455f688e0218fe75dcb711dfb69c36cd77542e458d1f4d7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7d9c443b2a71a8c3ab6578f5faf7725ad5f63dbb92d87f820eec56de9da0560f
MD5 7eed7b4e92318c659374bb536cd892ef
BLAKE2b-256 828d976470da652a726b9c7e09ea4b7c660917f2df3dfc776f0b3a7364c2d947

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7888f165a0fe285e015ee18cfcb8b5432c4fa389235b4c24c339ca0cc51ba979
MD5 51f58cda494b2a6fd4edd6c87e3fea5a
BLAKE2b-256 af31dc9d58665e772daf4c52ebebadc88dd1170c1aca2e02045dd191f01a24e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ba671e60570cd99b8ed83ce0d82703040dc34c793229ac607f09683ba1981163
MD5 99a92c6e75f6a15b3156f4bd12934efb
BLAKE2b-256 326fd94772d359710c9b96f24259dc0fea1c77b110b1d39ba43b656ee0965450

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5bf58f878d43294bea400a9df86ef7796dd2e67969109bce22d337ca77372c69
MD5 6334a7d29637ab0963111f76416f5506
BLAKE2b-256 091ee43b983436f9f9bca82f41cead37c21777b19999e05931cf7aa4d672c656

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ebead86e80e352753f6e6f78ca96c12d764a8dbbc7c4b25938ce657ab0e4e879
MD5 d925fdb95f702cba1988fc967675d5dd
BLAKE2b-256 a1f693facb20d94b61fc9f429a8d1cd4b24ddc2c3892fea0a4f1fe8e59743ab6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c218458ac32ce0b495f013293867649b40c067a4d7533fa0d70a46f7194febae
MD5 6a44b6e3892ffad38e8d861fdeb35752
BLAKE2b-256 dd742bcf803484032f510bf9e5e8ddd5bf71b892508bd283c5b63376fa74b78f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eb68736a0e2b00eda83937c1937f999e8d7dab68820c04343ac2e2eb2c5c2193
MD5 8f889dc18981beaaab70e8652b8b0687
BLAKE2b-256 886d279488ed464739679e4ec3dbce7e17a07c98e4b8040c4e753397573cd1c1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ef0bd8b68ad14f045544989b6ad3758bee6dc01f6924bce5b4fd7060b0a09b1b
MD5 f2bd13378080a7798dbc11aae832000f
BLAKE2b-256 7c2da8d5cebb85f34e148674b052daf5a0be83ae8f63a2ad2fe2ca50cce9a786

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 27df9925d0282c80bdd41613ace7cd799bd6355acdfe25cc48ec16843541999e
MD5 1e6e1129aa6b9a87b9e2f5e237dfa1ab
BLAKE2b-256 6cafa119f9fdcc5c64b63d767ca3f28e71a0edcb976c91b835a5a65d0eb6028b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.1-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b429ba25e05ca28d5e7efa4249032746ac28ec6ad68017ed3ea009989c597911
MD5 c301fdc67f109e20dd9256f5177abb43
BLAKE2b-256 09712ddd8f35a3e41d8a22af764b40cd2a4f5f31d9c43d9681c1fe391ac6d9b9

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