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

Uploaded Source

Built Distributions

jiter-0.5.0-cp312-none-win_amd64.whl (189.7 kB view details)

Uploaded CPython 3.12 Windows x86-64

jiter-0.5.0-cp312-none-win32.whl (195.4 kB view details)

Uploaded CPython 3.12 Windows x86

jiter-0.5.0-cp312-cp312-musllinux_1_1_x86_64.whl (493.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

jiter-0.5.0-cp312-cp312-musllinux_1_1_aarch64.whl (511.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

jiter-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

jiter-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (378.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

jiter-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

jiter-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

jiter-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (331.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

jiter-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (357.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

jiter-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (297.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

jiter-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (283.5 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

jiter-0.5.0-cp311-none-win_amd64.whl (191.0 kB view details)

Uploaded CPython 3.11 Windows x86-64

jiter-0.5.0-cp311-none-win32.whl (195.2 kB view details)

Uploaded CPython 3.11 Windows x86

jiter-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl (492.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

jiter-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl (511.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

jiter-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

jiter-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (378.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

jiter-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

jiter-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (342.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

jiter-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (332.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

jiter-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (357.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

jiter-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (299.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

jiter-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (284.1 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

jiter-0.5.0-cp310-none-win_amd64.whl (191.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

jiter-0.5.0-cp310-none-win32.whl (195.1 kB view details)

Uploaded CPython 3.10 Windows x86

jiter-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl (492.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

jiter-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl (511.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

jiter-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (318.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

jiter-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (379.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

jiter-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (363.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

jiter-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (342.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

jiter-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (332.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

jiter-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (357.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

jiter-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (299.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

jiter-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl (284.1 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

jiter-0.5.0-cp39-none-win_amd64.whl (191.8 kB view details)

Uploaded CPython 3.9 Windows x86-64

jiter-0.5.0-cp39-none-win32.whl (195.6 kB view details)

Uploaded CPython 3.9 Windows x86

jiter-0.5.0-cp39-cp39-musllinux_1_1_x86_64.whl (494.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

jiter-0.5.0-cp39-cp39-musllinux_1_1_aarch64.whl (512.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

jiter-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (320.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

jiter-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (378.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

jiter-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

jiter-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

jiter-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (333.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

jiter-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (358.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

jiter-0.5.0-cp39-cp39-macosx_11_0_arm64.whl (283.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

jiter-0.5.0-cp39-cp39-macosx_10_12_x86_64.whl (284.8 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

jiter-0.5.0-cp38-none-win_amd64.whl (192.7 kB view details)

Uploaded CPython 3.8 Windows x86-64

jiter-0.5.0-cp38-none-win32.whl (195.5 kB view details)

Uploaded CPython 3.8 Windows x86

jiter-0.5.0-cp38-cp38-musllinux_1_1_x86_64.whl (494.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

jiter-0.5.0-cp38-cp38-musllinux_1_1_aarch64.whl (512.1 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

jiter-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (319.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

jiter-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (379.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

jiter-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (364.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

jiter-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (343.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

jiter-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (333.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

jiter-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (358.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

jiter-0.5.0-cp38-cp38-macosx_11_0_arm64.whl (283.5 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

jiter-0.5.0-cp38-cp38-macosx_10_12_x86_64.whl (284.5 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: jiter-0.5.0.tar.gz
  • Upload date:
  • Size: 158.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for jiter-0.5.0.tar.gz
Algorithm Hash digest
SHA256 1d916ba875bcab5c5f7d927df998c4cb694d27dceddf3392e58beaf10563368a
MD5 366e5f449588a2fa8aca45908e65ceed
BLAKE2b-256 d71aaa64be757afc614484b370a4d9fc1747dc9237b37ce464f7f9d9ca2a3d38

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.5.0-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 189.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for jiter-0.5.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a586832f70c3f1481732919215f36d41c59ca080fa27a65cf23d9490e75b2ef5
MD5 4c48de376f9c7d9a2fdcc651bab8d696
BLAKE2b-256 1581296b1e25c43db67848728cdab34ac3eb5c5cbb4955ceb3f51ae60d4a5e3d

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.5.0-cp312-none-win32.whl
  • Upload date:
  • Size: 195.4 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for jiter-0.5.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 e3bbe3910c724b877846186c25fe3c802e105a2c1fc2b57d6688b9f8772026e4
MD5 7f327e439841e8a0c0c996d806767671
BLAKE2b-256 df678a4f975aa834b8aecdb6b131422390173928fd47f42f269dcc32034ab432

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ea189db75f8eca08807d02ae27929e890c7d47599ce3d0a6a5d41f2419ecf338
MD5 04439e63871a1b1194a9718c809ea629
BLAKE2b-256 334f9f23d79c0795e0a8e56e7988e8785c2dcda27e0ed37977256d50c77c6a19

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 7f5ad4a7c6b0d90776fdefa294f662e8a86871e601309643de30bf94bb93a64e
MD5 f128c1a2176c8a19274d61f6e267905d
BLAKE2b-256 bd8c2bb76a9a84474d48fdd133d3445db8a4413da4e87c23879d917e000a9d87

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c451f7922992751a936b96c5f5b9bb9312243d9b754c34b33d0cb72c84669f4e
MD5 55c290eb6b983485de511d7d9014c8cd
BLAKE2b-256 07de353ce53743c0defbbbd652e89c106a97dbbac4eb42c95920b74b5056b93a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 44dfc9ddfb9b51a5626568ef4e55ada462b7328996294fe4d36de02fce42721f
MD5 8e3c3789eb5f2897ca51cbff2dacbf5a
BLAKE2b-256 baadef32b173191b7a53ea8a6757b80723cba321f8469834825e8c71c96bde17

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8cf80e5fe6ab582c82f0c3331df27a7e1565e2dcf06265afd5173d809cdbf9ba
MD5 8a4dc607cecaf504358e626767102179
BLAKE2b-256 2ade90360be7fc54b2b4c2dfe79eb4ed1f659fce9c96682e6a0be4bbe71371f7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 528d742dcde73fad9d63e8242c036ab4a84389a56e04efd854062b660f559544
MD5 3eaa1d816acd6a27ef57b89972622582
BLAKE2b-256 4f541d9a2209b46d39ce6f0cef3ad87c462f9c50312ab84585e6bd5541292b35

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 702e3520384c88b6e270c55c772d4bd6d7b150608dcc94dea87ceba1b6391248
MD5 2cd06ed5efc6c9aa6a59834bba1e0254
BLAKE2b-256 4db86faeff9eed8952bed93a77ea1cffae7b946795b88eafd1a60e87a67b09e0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 308fce789a2f093dca1ff91ac391f11a9f99c35369117ad5a5c6c4903e1b3e3a
MD5 f4abd0fad91934a4ed9c0d3a9829f7dd
BLAKE2b-256 3f9242d47310bf9530b9dece9e2d7c6d51cf419af5586ededaf5e66622d160e2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 044f2f1148b5248ad2c8c3afb43430dccf676c5a5834d2f5089a4e6c5bbd64df
MD5 9d7a2e2fe06fb3f762fc5ca977297388
BLAKE2b-256 801c8ce58d8c37a589eeaaa5d07d131fd31043886f5e77ab50c00a66d869a361

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9f664e7351604f91dcdd557603c57fc0d551bc65cc0a732fdacbf73ad335049a
MD5 d7eaab484032ed7a7971dcbf6ad4d815
BLAKE2b-256 aabdc3950e2c478161e131bed8cb67c36aed418190e2a961a1c981e69954e54b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.5.0-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 191.0 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for jiter-0.5.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 aa9d2b85b2ed7dc7697597dcfaac66e63c1b3028652f751c81c65a9f220899ae
MD5 b009a8058cb709a94bb280a89a69fa68
BLAKE2b-256 ab5905d1c3203c349b37c4dd28b02b9b4e5915a7bcbd9319173b4548a67d2e93

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.5.0-cp311-none-win32.whl
  • Upload date:
  • Size: 195.2 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for jiter-0.5.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 aa1db0967130b5cab63dfe4d6ff547c88b2a394c3410db64744d491df7f069bb
MD5 31be7885b21b3483e1e0cb37ec308a37
BLAKE2b-256 4df22e987e0eb465e064c5f52c2f29c8d955452e3b316746e326269263bfb1b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 2cec323a853c24fd0472517113768c92ae0be8f8c384ef4441d3632da8baa646
MD5 77a19fa6203e28b941dbf4e5c1dafa65
BLAKE2b-256 aec94f85f97c9894382ab457382337aea0012711baaa17f2ed55c0ff25f3668a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e6375923c5f19888c9226582a124b77b622f8fd0018b843c45eeb19d9701c403
MD5 788d6fc48e4f641ebb19597b12603624
BLAKE2b-256 7d2f83ff1058cb56fc3ff73e0d3c6440703ddc9cdb7f759b00cfbde8228fc435

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a42a4bdcf7307b86cb863b2fb9bb55029b422d8f86276a50487982d99eed7c6e
MD5 8c5e373a2eedea1b85b7a28e21e126d6
BLAKE2b-256 47e75d88031cd743c62199b125181a591b1671df3ff2f6e102df85c58d8f7d31

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4829df14d656b3fb87e50ae8b48253a8851c707da9f30d45aacab2aa2ba2d614
MD5 62da359c0a12d229b7e66eac4725e697
BLAKE2b-256 30c37ab2ca2276426a7398c6dfb651e38dbc81954c79a3bfbc36c514d8599499

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 26351cc14507bdf466b5f99aba3df3143a59da75799bf64a53a3ad3155ecded9
MD5 7f1d73ce80b120b0c9f071ddcc28e28a
BLAKE2b-256 55311efbfff2ae8e4d919144c53db19b828049ad0622a670be3bbea94a86282c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 583c57fc30cc1fec360e66323aadd7fc3edeec01289bfafc35d3b9dcb29495e4
MD5 20cad1050266edbe059303fd11a886a4
BLAKE2b-256 69f764e0a7439790ec47f7681adb3871c9d9c45fff771102490bbee5e92c00b7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5280e68e7740c8c128d3ae5ab63335ce6d1fb6603d3b809637b11713487af9e6
MD5 dd291f32dfa9a4f853332ae750c31be4
BLAKE2b-256 3cf6dba34ca10b44715fa5302b8e8d2113f72eb00a9297ddf3fa0ae4fd22d1d1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 04d461ad0aebf696f8da13c99bc1b3e06f66ecf6cfd56254cc402f6385231c06
MD5 c0376b281aa51769d5401a67bcf70689
BLAKE2b-256 4c2d09ea58e1adca9f0359f3d41ef44a1a18e59518d7c43a21f4ece9e72e28c0

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c6f16e21276074a12d8421692515b3fd6d2ea9c94fd0734c39a12960a20e85f3
MD5 880080d7ca9c08658e11f810c5a2d539
BLAKE2b-256 03eb2308fa5f5c14c97c4c7720fef9465f1fa0771826cddb4eec9866bdd88846

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4c8e1ed0ef31ad29cae5ea16b9e41529eb50a7fba70600008e9f8de6376d553
MD5 78cd289fa5560fafdfe8485f299a2b75
BLAKE2b-256 945f3ac960ed598726aae46edea916e6df4df7ff6fe084bc60774b95cf3154e6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.5.0-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 191.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for jiter-0.5.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 b2950e4798e82dd9176935ef6a55cf6a448b5c71515a556da3f6b811a7844f1e
MD5 c7960160a6b933127d1108ebe31395da
BLAKE2b-256 31208cda4faa9571affea6130b150289522a22329778bdfa45a7aab4e7edff95

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.5.0-cp310-none-win32.whl
  • Upload date:
  • Size: 195.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for jiter-0.5.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 f16ca8f10e62f25fd81d5310e852df6649af17824146ca74647a018424ddeccf
MD5 7cc0e173fabbc8dc07d18110fb1f77c8
BLAKE2b-256 68c1491a8ef682508edbaf2a32e41c1b1e34064078b369b0c2d141170999d1c9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 afa66939d834b0ce063f57d9895e8036ffc41c4bd90e4a99631e5f261d9b518e
MD5 5154e247aedaf3e56aa2cb2fc58d2dec
BLAKE2b-256 ff33135c0c33565b6d5c3010d047710837427dd24c9adbc9ca090f3f92df446e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c95980207b3998f2c3b3098f357994d3fd7661121f30669ca7cb945f09510a87
MD5 18451d75bc03336919eefa1874b6114f
BLAKE2b-256 569ecbd8f6612346c38cc42e41e35cda19ce78f5b12e4106d1186e8e95ee839b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 503b2c27d87dfff5ab717a8200fbbcf4714516c9d85558048b1fc14d2de7d8dc
MD5 f46e12f65154fe2d6eb75a5ee046f01f
BLAKE2b-256 416ac038077509d67fe876c724bfe9ad15334593851a7def0d84518172bdd44a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a25fbd8a5a58061e433d6fae6d5298777c0814a8bcefa1e5ecfff20c594bd749
MD5 25ccf90d837bbe197ca1099a7a95b399
BLAKE2b-256 73a19ef99a279c72a031dbe8a4085db41e3521ae01ab0058651d6ccc809a5e93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 63314832e302cc10d8dfbda0333a384bf4bcfce80d65fe99b0f3c0da8945a91a
MD5 d595376d033117ae572bd93385c0e004
BLAKE2b-256 766f21576071b8b056ef743129b9dacf9da65e328b58766f3d1ea265e966f000

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c22541f0b672f4d741382a97c65609332a783501551445ab2df137ada01e019e
MD5 c8e8a93a199a968a02967b2fc3ea69b5
BLAKE2b-256 cf4f6353179174db10254549bbf2eb2c7ea102e59e0460ee374adb12071c274d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acc0d5b8b3dd12e91dd184b87273f864b363dfabc90ef29a1092d269f18c7e28
MD5 ee1ccf92d8cab09480769c3d21cc76e5
BLAKE2b-256 74bd964485231deaec8caa6599f3f27c8787a54e9f9373ae80dcfbda2ad79c02

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d1f3d27cce923713933a844872d213d244e09b53ec99b7a7fdf73d543529d6d
MD5 29dc658d76a9eca3474ed64690abfeb3
BLAKE2b-256 670dd82673814eb38c208b7881581df596e680f8c2c003e2b80c25ca58975ee4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2a063f71c4b06225543dddadbe09d203dc0c95ba352d8b85f1221173480a71d5
MD5 c8fee0d0a4c98588656b3e3256bb8dee
BLAKE2b-256 072d5bdaddfefc44f91af0f3340e75ef327950d790c9f86490757ac8b395c074

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b599f4e89b3def9a94091e6ee52e1d7ad7bc33e238ebb9c4c63f211d74822c3f
MD5 1ee12c6d45e804129a33a2e36ea1f6fc
BLAKE2b-256 af09f659fc67d6aaa82c56432c4a7cc8365fff763acbf1c8f24121076617f207

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.5.0-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 191.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for jiter-0.5.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 ce03f7b4129eb72f1687fa11300fbf677b02990618428934662406d2a76742a1
MD5 14b13b5b0a78ee9cb9c843ca598ce7a6
BLAKE2b-256 48b0d4d684022f835b87bfdf6d3b33543935345675e661a2720757871f7eb93e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.5.0-cp39-none-win32.whl
  • Upload date:
  • Size: 195.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for jiter-0.5.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 368084d8d5c4fc40ff7c3cc513c4f73e02c85f6009217922d0823a48ee7adf61
MD5 b31ce68ac7e38007d2fb3aad8f9ce12b
BLAKE2b-256 76137b3c04fb343d16bd0a99de98c91c670236110c67c251f2a539c44018e183

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cccd3af9c48ac500c95e1bcbc498020c87e1781ff0345dd371462d67b76643eb
MD5 4efce7a3109c008e7cc3cdf720c86002
BLAKE2b-256 89cadda70c1e6a508429245e9cf1f81d47129e348eaec1f97384dd6a00940fe9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ab3a71ff31cf2d45cb216dc37af522d335211f3a972d2fe14ea99073de6cb104
MD5 7d33a49e7766e78a4403a4f0a1221b84
BLAKE2b-256 9428481c234f8c1d86e448f0ca5be860df4eb9b0f18d7f693cdf732c1bafe102

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 92cc68b48d50fa472c79c93965e19bd48f40f207cb557a8346daa020d6ba973b
MD5 96f9f6d4eb29619f671e94f52d153157
BLAKE2b-256 c16216ca89739acd12308a7d1f07af81edac2fecd2f813f65fc6d12c53afa65a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 462a52be85b53cd9bffd94e2d788a09984274fe6cebb893d6287e1c296d50653
MD5 84ba7c7876382531bbb6028c8770e3c5
BLAKE2b-256 ebffd6c3fb425e50e208bbbb2e35bc0ab4683708f7a71c462abcfd3ff0c20fa7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8ea18e01f785c6667ca15407cd6dabbe029d77474d53595a189bdc813347218e
MD5 6db55f28fc2f47ca0f3e82b7e5d20e84
BLAKE2b-256 1d723b9b62776acc7bfb065897febdcdef2ac3c17e2021cf62aec5507b35232b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b250ca2594f5599ca82ba7e68785a669b352156260c5362ea1b4e04a0f3e2389
MD5 156a56745c9f9dc865c8563a40a00ca2
BLAKE2b-256 a41932061103bd528a6f2e4b1560933655acfc99f1a4342ddbde90c09d4abc3c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 489875bf1a0ffb3cb38a727b01e6673f0f2e395b2aad3c9387f94187cb214bbf
MD5 aa974dadb38844cf30931e661ea2eafb
BLAKE2b-256 143ae316a32d8383db5d2a705ce05ab8397e356df4d5e5b38c605ee7866d945d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1c834133e59a8521bc87ebcad773608c6fa6ab5c7a022df24a45030826cf10bc
MD5 cdf2f4a92d1cb39cd73d25e7c199ef4a
BLAKE2b-256 a861b96158add48392afdca7aaddca53a12a223f7cb67fa9816792ae71fc5f1f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 550b11d669600dbc342364fd4adbe987f14d0bbedaf06feb1b983383dcc4b961
MD5 f25ddaad769e2b92e270b831a72689e3
BLAKE2b-256 15826e1e36d4081fdb3e73c521c0a3fbe07320d2b903ac068a954e96bd0ed036

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0af3838cfb7e6afee3f00dc66fa24695199e20ba87df26e942820345b0afc566
MD5 01a04e29a8e669af13deb90e81f21189
BLAKE2b-256 4632e5dfd8407d1c751aaa26c34c6a2392286add84c881f85de2d7736acd8b9e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.5.0-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 192.7 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for jiter-0.5.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 c59614b225d9f434ea8fc0d0bec51ef5fa8c83679afedc0433905994fb36d631
MD5 4d6010d236ba3d53761a2bfc79d6a0cd
BLAKE2b-256 d29d35771dc59a49aecc370c620949cf52f6841efc1edac4288def77ac85afb6

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.5.0-cp38-none-win32.whl
  • Upload date:
  • Size: 195.5 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.0 CPython/3.12.4

File hashes

Hashes for jiter-0.5.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 6f1223f88b6d76b519cb033a4d3687ca157c272ec5d6015c322fc5b3074d8a5e
MD5 7466bbd67e7ec1a43ea31dbeb0a819fe
BLAKE2b-256 5f76aee96f75c361a8dc098923910c36563bc78039f91372e1aab05c960d2688

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 8120c60f8121ac3d6f072b97ef0e71770cc72b3c23084c72c4189428b1b1d3b6
MD5 a3dd10a01d5667d4987af950e810ae21
BLAKE2b-256 a1c710790bb64e7fbe7546befa7a3b53d226b659484643f3c94aa52167b374d9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 5206144578831a6de278a38896864ded4ed96af66e1e63ec5dd7f4a1fce38a3a
MD5 8133aa724ea72b37cfa28a0c2077f0e7
BLAKE2b-256 61352663fe3141e9fd695d69aa374c2da511dd909dea102c7bca210780a758d8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 649b0ee97a6e6da174bffcb3c8c051a5935d7d4f2f52ea1583b5b3e7822fbf14
MD5 8cb521ab9708026c368693ca4ba975be
BLAKE2b-256 b52c1d84255c3a49aa1fa5c5fb0b000c2efa06a210358c9fe1d8bb399e944ddb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 335942557162ad372cc367ffaf93217117401bf930483b4b3ebdb1223dbddfa7
MD5 bee1c979b2db0b2f6afd499af69463e6
BLAKE2b-256 abbb12ff473d996cc93e33ac97fc89aa4d377c946e1ba7cf59b674b9988621b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1ece0a115c05efca597c6d938f88c9357c843f8c245dbbb53361a1c01afd7148
MD5 9d715124dbe588fb9b64819e3088a518
BLAKE2b-256 163746c0712bb9104b102c6cfe9fa912450f74be594d499d5d61a23e186c0374

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6baa88334e7af3f4d7a5c66c3a63808e5efbc3698a1c57626541ddd22f8e4fbf
MD5 4597feaebe26bb7a3301a4799096e720
BLAKE2b-256 b1080e4b5a2c66c6a395a7665922564414da2a301a190cb9f6822bd07aa9bc64

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ad4a6398c85d3a20067e6c69890ca01f68659da94d74c800298581724e426c7e
MD5 d30fbfbc641c11886b9e9bf249108bc0
BLAKE2b-256 64b64a28c75470e9099ee3fcf5a81852cf8cecb6ed7d74f8e39a0e80af80214d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f4be354c5de82157886ca7f5925dbda369b77344b4b4adf2723079715f823989
MD5 ad6ee5d1b231c5cd0452b00b06cfff0d
BLAKE2b-256 cab9db2d2e39177edc12923e701e49878bb97ae604b84a8160ab45313adbe217

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6f433a4169ad22fcb550b11179bb2b4fd405de9b982601914ef448390b2954f3
MD5 4320220649f07ce833025a0bdfa5392c
BLAKE2b-256 01636f6255a8b0ccc7c2b80a4c07ab5f7d5baaa7473ba699acfe8b23ee4ec526

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.5.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f04bc2fc50dc77be9d10f73fcc4e39346402ffe21726ff41028f36e179b587e6
MD5 cbf69836e92b520fe87db6e8a3988122
BLAKE2b-256 5116bbe41101af6594d4356251b444bd62f668a1b2c6e714f222176fd4b3c71e

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