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

Uploaded Source

Built Distributions

jiter-0.4.2-cp312-none-win_amd64.whl (200.0 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

jiter-0.4.2-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.2-cp312-cp312-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

jiter-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

jiter-0.4.2-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.2-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.2-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.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (312.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

jiter-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl (303.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

jiter-0.4.2-cp311-none-win32.whl (207.0 kB view details)

Uploaded CPython 3.11 Windows x86

jiter-0.4.2-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.2-cp311-cp311-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

jiter-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

jiter-0.4.2-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.2-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.2-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.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (313.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

jiter-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl (304.4 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

jiter-0.4.2-cp310-none-win_amd64.whl (203.9 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

jiter-0.4.2-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.2-cp310-cp310-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

jiter-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

jiter-0.4.2-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.2-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.2-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.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (314.1 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

jiter-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl (305.3 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

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

Uploaded CPython 3.9 Windows x86-64

jiter-0.4.2-cp39-none-win32.whl (208.6 kB view details)

Uploaded CPython 3.9 Windows x86

jiter-0.4.2-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.2-cp39-cp39-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

jiter-0.4.2-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.2-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.2-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.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (304.6 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

jiter-0.4.2-cp39-cp39-macosx_10_12_x86_64.whl (305.3 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

jiter-0.4.2-cp38-none-win_amd64.whl (202.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

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

Uploaded CPython 3.8 Windows x86

jiter-0.4.2-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.2-cp38-cp38-musllinux_1_1_aarch64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

jiter-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

jiter-0.4.2-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.2-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.2-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.2-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.2-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.2-cp38-cp38-macosx_11_0_arm64.whl (304.2 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

jiter-0.4.2-cp38-cp38-macosx_10_12_x86_64.whl (305.2 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for jiter-0.4.2.tar.gz
Algorithm Hash digest
SHA256 29b9d44f23f0c05f46d482f4ebf03213ee290d77999525d0975a17f875bf1eea
MD5 cff0adc0ffc5dba276358c7f5953740e
BLAKE2b-256 3e7c030735d07ef00562ae0a6cde7ccebdbc38f26d1d861ed8f5d6364600727f

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for jiter-0.4.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 4a3a8197784278eb8b24cb02c45e1cad67c2ce5b5b758adfb19b87f74bbdff9c
MD5 d01e67370d996749bdd7fb7b8a14f09c
BLAKE2b-256 a39e97cfe748420a5290893113b44d82f6415870269d61a3469bf96eac53886e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.2-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.4

File hashes

Hashes for jiter-0.4.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 853b35d508ee5b66d06630473c1c0b7bb5e29bf4785c9d2202437116c94f7e21
MD5 2b3e10b9cc4eb50d1e3e4e04ae413ec9
BLAKE2b-256 3118442533b5b1d33473cfe69ca93136f6c109cff4c8c5a0b710b9a8f0606fe9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 3512f8b00cafb6780b427cb6282800d2bf8277161d9c917830661bd4ed1d3528
MD5 8fc5a397c15c9ef88494ffa98ab2bbb5
BLAKE2b-256 dfafe28da40333afdee984d43420fdb5b35bdd00beb9efd4e31696a893372a2b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 faa7e667454b77ad2f0ef87db39f4944de759617aadf210ea2b73f26bb24755f
MD5 e6eb7e2a422568bcf4cbb59a3ab3b7e5
BLAKE2b-256 264ad77d4be6aa2ac992e5f6cc53b123346ad7a2f756a3d9af981116a6dc42da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d8860766d1c293e75c1bb4e25b74fa987e3adf199cac3f5f9e6e49c2bebf092f
MD5 11b490df0982ec85d1f006389d5ca8b7
BLAKE2b-256 cc82a000e84840d6483fe2afdbb6fd78122ba589a9df387b79c3207d76a5c2da

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 24a0458efac5afeca254cf557b8a654e17013075a69905c78f88d557f129d871
MD5 d86e17b0ebe69fffd1af4f2a860e976d
BLAKE2b-256 672f33e51effdd869eec6cdd7270ca52b5edc2e156fef94a6752750c619127a2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59672774daa44ee140aada0c781c82bee4d9ac5e522966186cfb6b3c217d8a51
MD5 8b2eb18f6130fbf7d774dac521db74b8
BLAKE2b-256 3179f1c0bae2a14a8f27d31121b6e725ca0d6e73066c4bc4dde98b0b06bde44a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f509d23606e476852ee46a2b65b5c4ad3905f17424d9cc19c1dffa1c94ba3c6
MD5 a2ce39c50517c4689195a9dab01e8c70
BLAKE2b-256 4244583fdcdb8d8e0e73d5b7d129119cda67f92bde72f8f51518f4883a53e6e3

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af6bf39954646e374fc47429c656372ac731a6a26b644158a5a84bcdbed33a47
MD5 87b21a7baa9f98e92729f215923b727b
BLAKE2b-256 ce5749be4b56f4ad7ff7547f378aa9268fc2d250f029f77f286a5131f010a0a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a109f3281b72bbf4921fe43db1005c004a38559ca0b6c4985add81777dfe0a44
MD5 eb2375eb251e1fabb69a14a2a568221d
BLAKE2b-256 853f7801819d7f15a931993aecdc94289ca141846cb6ececac8d70a78da86d02

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eef607dc0acc251923427808dbd017f1998ae3c1a0430a261527aa5cbb3a942
MD5 ae432f095bd2c5f9b61db9ceb370dfe2
BLAKE2b-256 13e9d1eae3fe386a7f8f9a210d19e18bbd4afe44eee73a9e08a424c260c0a365

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d61d59521aea9745447ce50f74d39a16ef74ec9d6477d9350d77e75a3d774ad2
MD5 9807ca0f93a9f4aa17e8a11749e74a83
BLAKE2b-256 ab6f20865d95b8f0159426ff55d125a2dcd920f04aead696458922d226096241

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.2-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.4

File hashes

Hashes for jiter-0.4.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 e15a65f233b6b0e5ac10ddf3b97ceb18aa9ffba096259961641d78b4ee321bd5
MD5 2b214cc7feff12d62c87d0c4d6be3aa0
BLAKE2b-256 daf16f4c976b4354fe15125814717a7718701135a5e07058aaec43f0e972a94d

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for jiter-0.4.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f2445234acfb79048ce1a0d5d0e181abb9afd9e4a29d8d9988fe26cc5773a81a
MD5 ce15f6cf4fb2fc2fb02054648963a972
BLAKE2b-256 1db185a340bbdd72f936a4824d6d5abdc16940bae2eb2d37e9d8302451a04714

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 159b8416879c0053b17c352f70b67b749ef5b2924c6154318ecf71918aab0905
MD5 425c97a45e24bce194e51e160acb6507
BLAKE2b-256 b15f4f702e03dc8569a21fb859abba2595798dad7dcd57e87036c7db98da6148

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 01427458bc9550f2eda09d425755330e7d0eb09adce099577433bebf05d28d59
MD5 d4de70ca6727696c3a6f17fc25720571
BLAKE2b-256 22dbc44176ef6b976ab9018cb4fdf2ab0b6f263864ce19ded02d9dee1b5a47c5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f0a447533eccd62748a727e058efa10a8d7cf1de8ffe1a4d705ecb41dad9090
MD5 df5339c92bc4e99fd1ee71d9076ba5a7
BLAKE2b-256 deb3eaf649816fe36ef7eece53c2ebbf12b9acad3f798e32c9895a3f9ffd5d5e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 194e28ef4b5f3b61408cb2ee6b6dcbcdb0c9063d01b92b01345b7605692849f5
MD5 476e659f6e5878661b9d0f752d99d79c
BLAKE2b-256 42b078f5434279e9fdadc604332fb5cb061f7d0c483771ff57e602b5e053be3c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbb46d1e9c82bba87f0cbda38413e49448a7df35b1e55917124bff9f38974a23
MD5 fb63769bad809b64adaa57640ffbd1d5
BLAKE2b-256 e4bb5b9755f2055b2f534a5a753e6060b07aa783e031a77086da74b5106f03b2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c10ad76722ee6a8c820b0db06a793c08b7d679e5201b9563015bd1e06c959a09
MD5 974d938cc8a304e420a471b4c5233b76
BLAKE2b-256 6a9ae277e9415e8a86de7ab780a671e0e8bc08d897a71a2cff1ceb37186c6915

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c1fdc408de36c81460896de0176f2f7b9f3574dcd35693a0b2c00f4ca34c98e4
MD5 98674e58bd76f8b761928110197ca820
BLAKE2b-256 4b0687213927c2be78c1343e16413f96f75d810ade9c9d0fe29b40ef26757585

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5f7704d7260bbb88cca3453951af739589132b26e896a3144fa2dae2263716d7
MD5 af668688352fa7208dcc5dcab7b35d5d
BLAKE2b-256 85859a5415c3e0dbaf9063142c532c78f5dcf116aa9df5f205a0bd0d010a54ba

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc392a220095730afe365ce1516f2f88bb085a2fd29ea191be9c6e3c71713d9a
MD5 c00a73effe2a54f308a518f41a3984ea
BLAKE2b-256 5edbaed8e4fb6961eb60f13c9efb99d681cf308dd2cb651670e167daef87979b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24ad336ac47f274fa83f6fbedcabff9d3387c80f67c66b992688e6a8ba2c47e9
MD5 dde12cb26ef5b7a1ac3abf5bc3cfe299
BLAKE2b-256 7d2390d8045fb8a082e06d6a290f1add325209025b16f681c4e5f779f2d19e95

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for jiter-0.4.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 bb8f7b43259efc6add0d721ade2953e064b24e2026d26d979bc09ec080844cef
MD5 763cb1449579384901e8312964cfee98
BLAKE2b-256 d59a7ca923facab92c3274e8617542487103d48d3fab40406e175602679ff5a0

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.2-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.4

File hashes

Hashes for jiter-0.4.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 881b6e67c50bc36acb3570eda693763c8cd77d590940e06fa6d325d0da52ec1b
MD5 a20018aa149d5d6c87bfbe8380d0107e
BLAKE2b-256 f3189864c69a7747eeb561680d77e83fcbd6978fbbd788246c4988c22980b8fd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e48e43d9d999aaf55f53406b8846ff8cbe3e47ee4b9dc37e5a10a65ce760809f
MD5 3d68c6623d8ceba2e80ede7b32553089
BLAKE2b-256 c006da4784c04da2efe625566fc754fa4afd1b8eb4fe15202c8be5e26ac5901e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 675e8ab98c99495091af6b6e9bf2b6353bcf81f25ab6ce27d36127e315b4505d
MD5 cbb0e73bb13b38f7217d9cb400eca87b
BLAKE2b-256 a25467e972fc7f8f8c6c11bd4bb9390e23b5d366bfa0a519b81a478585fb6f0b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3c536589be60e4c5f2b20fadc4db7e9f55d4c9df3551f29ddf1c4a18dcc9dd54
MD5 d32e3a89cfca8ac77f64f44bebcdc1da
BLAKE2b-256 0a9ca1b58666553e19dfc206c7f6a9babb25085c019c086475611c44c16f360f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4b4e847c13b0bf1255c711a92330e7a8cb8b5cdd1e37d7db309627bcdd3367ff
MD5 8d67ea688ad86d569b7323c46039f08c
BLAKE2b-256 79ba5255c3bfbed0851e6633c760cdf48eaa04ba8c74a9f0e3d5f35e5f2d061d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 16646ef23b62b007de80460d303ebb2d81e355dac9389c787cec87cdd7ffef2f
MD5 9fc1a529c594c9ee5d4932a9bf8739cd
BLAKE2b-256 18b11c7ecb09b74c33127659b39247aec32976a76d639e75868a2f5a2d653ed9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 95f6001e86f525fbbc9706db2078dc22be078b0950de55b92d37041930f5f940
MD5 100fa1d3cc8b8176196d3e3895383948
BLAKE2b-256 b9bbaaab54db1c57d046d88a105edefd84f248a638caa25c21af6725a2183e26

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9f50ad6b172bde4d45f4d4ea10c49282a337b8bb735afc99763dfa55ea84a743
MD5 c03486ccec3958343ddc8e0d7e8ddda1
BLAKE2b-256 05bac4bf4ba4e1bad7ff92d4116832cd066eb2bacd6a5ebc4dd8c0a1db380983

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b3b2763996167830889a854b4ded30bb90897f9b76be78069c50c3ec4540950e
MD5 e82e5d1f8267716928abf43ac7d6a273
BLAKE2b-256 4f78f5c4631b9f3185e21604b04a5aa04117fc808c49c8039caf9361f5cc02f1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b48c77c25f094707731cd5bad6b776046846b60a27ee20efc8fadfb10a89415f
MD5 fb7e91070f245759f7fbe8f954dc3e2e
BLAKE2b-256 0615643fafdaaadc15698846ef371dc1fb81389dc75fb1ad855b90afebfc19b5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c2b003ff58d14f5e182b875acd5177b2367245c19a03be9a2230535d296f7550
MD5 deba5f4b50d4e9bbe040a3bc7d952612
BLAKE2b-256 39f72f9818e31a96c48ef7a5ae177dc973ce00c1f83c54df151c394f4e21da3b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.2-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.4

File hashes

Hashes for jiter-0.4.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 bef62cea18521c5b99368147040c7e560c55098a35c93456f110678a2d34189a
MD5 6d74accb35f7c0181bc33059ce49e47b
BLAKE2b-256 41abf382fcc61fb9e4f31b86297d7e28475e89f5abb6c787691b701bbb78b7db

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for jiter-0.4.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 25b174997c780337b61ae57b1723455eecae9a17a9659044fd3c3b369190063f
MD5 5f836bbbf8c1c74ea1346976fd3f5e89
BLAKE2b-256 d62031ab842eee87ec0e5f50b2aeb4a91886fa74eb30374f26ec1eaffe3ffbee

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 a90f1a8b3d29aea198f8ea2b01148276ced8056e5103f32525266b3d880e65c9
MD5 a68d086945803d95aa2561c4677cfe14
BLAKE2b-256 b29e3e6e29645d8728c604062a3a6da93b05b903969025ee416054d6f11f1680

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 14b7c08cadbcd703041c66dc30e24e17de2f340281cac0e69374223ecf153aa4
MD5 64c527ff91126a53d80209753dec0f6d
BLAKE2b-256 174b0dd1853158c167a17e1dd6715eba446cbf493786c11978d46ca23bb2bf84

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 36353caee9f103d8ee7bda077f6400505b0f370e27eabcab33a33d21de12a2a6
MD5 e424df9ebbeb8fc24a247409039b87d6
BLAKE2b-256 63c4c4a033af6c56beab152844b01acc9262ba1d8d9c8df8b11dd3f58fe32471

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8d179e7bca89cf5719bd761dd37a341ff0f98199ecaa9c14af09792e47e977cc
MD5 bd302637f27963186125340f75efa373
BLAKE2b-256 ba4c13d39a07bc37bf6ca61783ecdf6309e170a849c0d3f9e6de31990f2864bf

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0fad5d64af0bc0545237419bf4150d8de56f0bd217434bdd1a59730327252bef
MD5 07154a9fe902bb41429b29c5338a6a76
BLAKE2b-256 40e93ab58704e92a4e386dee76a3e09b03b83f1e11c9aa3a0a55014a00e5e0bd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eba5d6e54f149c508ba88677f97d3dc7dd75e9980d234bbac8027ac6db0763a3
MD5 d56fde16ae88adc95db8249144e14e80
BLAKE2b-256 07b590a0e6bfcd3f347624c63638d5cb10e8f455c6059fb593c597847f2040c8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c5d13d8128e853b320e00bb18bd4bb8b136cc0936091dc87633648fc688eb705
MD5 d6064f5c588d592965d4c1908da5724b
BLAKE2b-256 2ef5bda2691aabfc126456e87c25dd580a85012622e6d24afec3fd3bc3c60cff

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dd146c25bce576ca5db64fc7eccb8862af00f1f0e30108796953f12a53660e4c
MD5 3fc19c2f90aae795620ef09bbab64341
BLAKE2b-256 4c424e9d8ca117f37f9e4c8b0de335a813a961d2eb7c238ce4c10381074c44aa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f2420cebb9ba856cb57dcab1d2d8def949b464b0db09c22a4e4dbd52fff7b200
MD5 e58c1a662c65358a000f236547cf2a88
BLAKE2b-256 dbcb9e9fbf842d417e84c5d6a91c114e23eec3cc4282482c73e10c89f748e185

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6128838a2f357b3921b2a3242d5dc002ae4255ecc8f9f05c20d56d7d2d79c5ad
MD5 526681275d033367c28224597242c0e5
BLAKE2b-256 9019053996c9e8cc60c9a0f133afa1c5c1ec0e7fad2e181469bc46de8c1d1256

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for jiter-0.4.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 ce858af19f7ce0d4b51c9f6c0c9d08f1e9dcef1986c5875efd0674a7054292ca
MD5 596d81bb9703dfba4ef46afbc891e29b
BLAKE2b-256 00cbdb1ead2da26bd6108f7f53557350945ada37f38144483d8b5fdc4a510487

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.2-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.4

File hashes

Hashes for jiter-0.4.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 bb77438060bad49cc251941e6701b31138365c8a0ddaf10cdded2fcc6dd30701
MD5 a7474385a80644dadf575791ad347c65
BLAKE2b-256 349cfa1aa245dae7440c5327d6f0314baab7dfd75aaf7b41176caedae57f2236

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 76c255308cd1093fb411a03756b7bb220e48d4a98c30cbc79ed448bf3978e27d
MD5 fc0862324e7d28849dde61bfeefc8e9c
BLAKE2b-256 42af22f391a41764230ee91a3a27a17b6add5d9ed203037200934060ff4d158d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 b27189847193708c94ad10ca0d891309342ae882725d2187cf5d2db02bde8d1b
MD5 0d3e4eb04bed202093d942fed9f34350
BLAKE2b-256 1ed31d99f59967f7722ed2921002542f12400eb4f6defe0ef664d9f85e55064a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 479990218353356234669e70fac53e5eb6f739a10db25316171aede2c97d9364
MD5 d53f39faf6a0e6820a3824ff90091760
BLAKE2b-256 23589a61f7645a35b707c8690b6f901764071105389501e00053f5b2b7760a3d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5a427716813ff65480ca5b5117cfa099f49b49cd38051f8609bd0d5493013ca0
MD5 36d583f9b894de2a3f6c9b18890fb7f9
BLAKE2b-256 8714b75a34519c1b9098d8f1f69689bb3debad0964dfae53b735188168c2cdfd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce197ee044add576afca0955b42142dd0312639adb6ebadbdbe4277f2855614f
MD5 b3c63e15b66712592dff2119210cdd6a
BLAKE2b-256 32022a2f4488e5c98115e257ae48b003bdf354ee28f5c924f0d165410186079b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8c93383875ab8d2e4f760aaff335b4a12ff32d4f9cf49c4498d657734f611466
MD5 c0ac4332286c66fd9492fadae72316f9
BLAKE2b-256 1af127d07bbed4ede4002f7a1fbfbdda65b6f8f9cc09a40b5fdbc53754a2b3fa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7cc34ac708ae1750d077e490321761ec4b9a055b994cbdd1d6fbd37099e4aa7b
MD5 622c5099e7764abae4938e636788fa82
BLAKE2b-256 e8332225df9af317334eb4bc2912435bb94d9a87e3cd931d7d2a3f9eca45f97c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d35a91ec5ac74cf33234c431505299fa91c0a197c2dbafd47400aca7c69489d4
MD5 7c98b32b044a61c69fa29fd5effbe5bd
BLAKE2b-256 954ce5c4418e155c56fef6f4a8cb629a557c11bb97a320709ed5e417c142f96c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e6c304b3cc6896256727e1fb8991c7179a345eca8224e201795e9cacf4683b0
MD5 a6af50c98021300db3ed042974a19d3f
BLAKE2b-256 e03b24148b7ee054c16302866e498cc5d688b1ccfe77041e6c8b7fd51f47a2c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.2-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca2a4d750aed3154b89f2efb148609fc985fad8db739460797aaf9b478acedda
MD5 8a554a2aff5a92cc2b2bc1ee4998047d
BLAKE2b-256 9d646023d1717f1a5d577c8293518b01ec8abf2a6579ccc58292d24993c212c0

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