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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.12 Windows x86-64

jiter-0.4.0-cp312-none-win32.whl (207.4 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

jiter-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

jiter-0.4.0-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.0-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.0-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.0-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.0-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.0-cp312-cp312-macosx_11_0_arm64.whl (311.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

jiter-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (303.3 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

jiter-0.4.0-cp311-none-win_amd64.whl (202.1 kB view details)

Uploaded CPython 3.11 Windows x86-64

jiter-0.4.0-cp311-none-win32.whl (206.2 kB view details)

Uploaded CPython 3.11 Windows x86

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

jiter-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

jiter-0.4.0-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.0-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.0-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.0-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.0-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.0-cp311-cp311-macosx_11_0_arm64.whl (313.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

jiter-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (304.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

jiter-0.4.0-cp310-none-win32.whl (206.9 kB view details)

Uploaded CPython 3.10 Windows x86

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

jiter-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

jiter-0.4.0-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.0-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.0-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.0-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.0-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.0-cp310-cp310-macosx_11_0_arm64.whl (312.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

jiter-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (305.4 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

jiter-0.4.0-cp39-none-win_amd64.whl (204.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

jiter-0.4.0-cp39-none-win32.whl (207.9 kB view details)

Uploaded CPython 3.9 Windows x86

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

jiter-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.9 macOS 11.0+ ARM64

jiter-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl (305.0 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

jiter-0.4.0-cp38-none-win_amd64.whl (204.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

jiter-0.4.0-cp38-none-win32.whl (207.8 kB view details)

Uploaded CPython 3.8 Windows x86

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

jiter-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

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

Uploaded CPython 3.8 macOS 11.0+ ARM64

jiter-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl (305.1 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: jiter-0.4.0.tar.gz
  • Upload date:
  • Size: 158.0 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.0.tar.gz
Algorithm Hash digest
SHA256 68203e02e0419bc3eca717c580c2d8f615aeee1150e2a1fb68d6600a7e52a37c
MD5 18a16127bac71ba33e73f401e686ba31
BLAKE2b-256 6423f96bd45eabae0beb79d38199fb71a51ec1ffc888cbeaf2949e4b833f558e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.0-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.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 8d4a78b385b93ff59a67215d26000fcb4789a388fca3730d1b60fab17fc81e3c
MD5 64e8580a63cb408f0aa2b5c104b369b7
BLAKE2b-256 e68f50c69590e767b9aaadf7a414117f31d4cc5ffab14696c4723c0f9b00aecc

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.0-cp312-none-win32.whl
  • Upload date:
  • Size: 207.4 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.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 eeaa7a2b47a99f4ebbb4142bb58b95617e09f24c87570f6a57d2770687c9ddbe
MD5 d592d7fb99408e12979382a5883e3c76
BLAKE2b-256 b7b2385fd579975b810cab259d7ca130a8d2bc3ff9c02f4135004dc0cd20eb79

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 78e2f3cc2a32a21d43ccc5afcf66f5d17e827ccc4e6d21c0b353bdad2c7dcc9c
MD5 3620eb61b4eaae1ca8361cdfbe8a7893
BLAKE2b-256 1a20f4cc75ba0b5bce4fd6cfa2752b2121ca66f990618850b6b2c7d728385bf9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e1a9e9ee69c80b63951c93226b68d0e955953f64fe758bad2afe7ef7f9016af9
MD5 e48bdfd32a87413fedeca54f9d273ce0
BLAKE2b-256 ff1804811383d14119753424dec0bec9f11c6161c42315b38d1c49850070cffa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 488b7e777be47f67ce1a1f8f8eb907f9bbd81af5c03784a9bab09d025c250233
MD5 ef827a82f3a4e3d880016e7477358a57
BLAKE2b-256 0651eea4039241b2ff214b65005412c3120fb780bb34294875ae4de23934fc57

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 56de8b518ebfe76a70f856741f6de248ce396c50a87acef827b6e8388e3a502d
MD5 9adecf8ff243f7a9054e9643452bcd3f
BLAKE2b-256 56ba5a6cdeaeb5de3bed41af92b483798a0fa4fdb75427f481b874b3a085f5d6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d39e99f8b7df46a119b6f84321f6ba01f16fa46abfa765d44c05c486d8e66829
MD5 13aa770eddb8443ab624995de42b754e
BLAKE2b-256 895c0ffeaebb947f7b2b45e43a565b843c0a5efa8f10e65541d4004afa219084

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2609cc0d1d8d470e921ff9a604afeb4c701bbe13e00bd9834d5aa6e7ea732a9b
MD5 9c48185b4da5fe024e9f087513af24f7
BLAKE2b-256 d8304d288af189ebdb9eb0c28ba4c59e3ebab61e845d2b8d021c27b3ea848a72

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b857adb127b9c533907226791eafa79c5038c3eb5a477984994bf7c4715ba518
MD5 0d34efa340072c14dc4572224b59f295
BLAKE2b-256 b4aa451ec2c88d64e13aecf3b1fd027492ff744aa1d963876df26c3108961803

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7ea35e0ecbb5dadd457855eb980dcc548c14cf5341bcd22a43814cb56f2bcc79
MD5 c6f95cd41ceb73b387fc41b96da02e0a
BLAKE2b-256 5f64093ac5562674c761b26defcee1d099cbe981b9fe28869adb02762fac1dfb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ab8bb0ec8b97cec4422dc8b37b525442d969244488c805b834609ab0ccd788e2
MD5 13c10ee89292024de96933f85ccf134c
BLAKE2b-256 a42c07a078c365b2468159be9c6e69a0bd3c210e4e9278a566bf3c4c3af68a96

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 923432a0563bbae404ff25bb010e348514a69bfab979f2f8119b23b625dbf6d9
MD5 2c39e381ab300f629ac32204e01c7343
BLAKE2b-256 e8058047e025506d27749c71516dfe553aab0b8653e863bc782134d748df4c99

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.0-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 202.1 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.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 6b300f9887c8e4431cd03a974ea3e4f9958885636003c3864220a9b2d2f8462b
MD5 39176829838ec779d1620ec09d90e4ee
BLAKE2b-256 d0bb5b769aeff760b69ca96f65719f1775e94aee713289f5f430112e70a1f944

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.0-cp311-none-win32.whl
  • Upload date:
  • Size: 206.2 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.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 20545ac1b68e7e5b066a1e8347840c9cebdd02ace65faae2e655fc02ec5c915c
MD5 a7a6f0d5f4556e34713eaa1e131da05d
BLAKE2b-256 a6ff7647d86b4525a8fdc56defa51e93b908713d57041139ac9e5fdce93e6a93

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0efb4208889ebdbf933bf08dbcbc16e64ffd34c8e2b28044ee142789a9dc3a67
MD5 91b8bb405e769955081ede06e962a0fe
BLAKE2b-256 99cc9212c63f120ba02f51f4c1e71fd5f28eab054f942ccd5e27371a709602fe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 cb1b09b16d40cf9ba1d11ba11e5b96ad29286a6a1c4ad5e6a2aef5e352a89f5d
MD5 013a776319d4c1d34344e034c08c2afa
BLAKE2b-256 f4b53f476e5cc21813e020abd584d81100ecc70a7a60628045195667144f101c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 123c2a77b066bf17a4d021e238e8351058cfa56b90ac04f2522d120dc64ea055
MD5 deca6148b59910a31647cd4a02b25ed7
BLAKE2b-256 cd34846d397a0db0d8fcc3f19a2867a3556802d4b675b3c1b8d6b3e4d3285bd4

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6258837d184c92c9cb91c983c310ad7269d41afb49d34f00ca9246e073943a03
MD5 c3d62896a0f52f7c2bb3201fcaeaf91e
BLAKE2b-256 95ac724d5e8d77c38fb6e838abc5c595468b49348576f0fbe83e989c31c7d854

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 eac2ed1ec1e577b92b7ea2d4e6de8aec0c1164defd8af8affdc8ec0f0ec2904a
MD5 09223101354aa2aa212329cbc4641ac3
BLAKE2b-256 2850d4addf0242c0dac6c08bc80329332cbecd4d183701026b88ce79ed7703c6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 39be97d5ce0c4d0dae28c23c03a0af0501a725589427e99763f99c42e18aa402
MD5 40ff79b6a095c4bc4404bee768588856
BLAKE2b-256 062dc601559de10742a9f612cc521f92ecad8172ce0543fe1e3e7340af0792b6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef7d01c52f3e5a56ae73af36bd13797dd1a56711eb522748e5e84d15425b3f10
MD5 01f8951d644acaa1688b9e1a9e6bf323
BLAKE2b-256 a54f441e39970c664dc7732094c35f3380248a815376ee863984b9a2bcb3aefe

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2df939f792c7a40e55f36700417db551b9f6b84d348990fa0f2c608adeb1f11b
MD5 888b4d21a542e2ddef5d1d754a3a0104
BLAKE2b-256 31ad1554b20a72eb024be0ddc70ba33decfea1c5dfa114ff7513d807e9a73f55

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 69f7221ac09ab421abf04f89942026868297c568133998fb181bcf435760cbf3
MD5 a1af3672da92cd547ecae5e8f7165669
BLAKE2b-256 26bc08f3c0251743d8cd80aaa7a0babe8c927c1ebb019bcb068c5466aaf5d9c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b2cc498345fa37ca23fbc20271a553aa46e6eb00924600f49b7dc4b2aa8952ee
MD5 a6c2aa237a2411a89daa3560b9b28d0f
BLAKE2b-256 c259d7a8f643f2b512eb6859ea0aa52d2f8cde09f709dae39e2057da8671ae2e

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.0-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.3

File hashes

Hashes for jiter-0.4.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 6a1c84b44afafaf0ba6223679cf17af664b889da14da31d8af3595fd977d96fa
MD5 f325c12bab3f308b8b80008c2fe600ca
BLAKE2b-256 9bce71117db2438fe9fad922e391b9e3359572db6ebd6472198a391c82a5ea9a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.0-cp310-none-win32.whl
  • Upload date:
  • Size: 206.9 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.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 0b48ea71673a97b897e4b94bbc871e62495a5a85f836c9f90712a4c70aa3ef7e
MD5 dda6e2a701b3ad57c8b5dcf3478a5904
BLAKE2b-256 55782480de7925bd9c2fe5197a6cb20b121a156d5e29f34dfc7e1c2551735753

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 413adb15372ac63db04373240f40925788e4282c997eeafc2040530049a0a599
MD5 4251c873b11717f19afec65e87e0f344
BLAKE2b-256 d0616479baa6e8409f92bd013705a2c70c582667d92639287081e39fe6d3b1f6

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 44dc045decb2545bffe2da04ea4c36d9438d3f3d49fc47ed423ea75c352b712e
MD5 8635c67bfdf856888f8de3017ef76557
BLAKE2b-256 296a5ef3cc8c0e2f5c14bae5cade101aff7709f31d4a0214731aef959f17e89e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2e358df6fd129f3a4e087539f086355ad0107e5da16dbc8bc857d94222eaeed5
MD5 c811e7288872609c3bee9aee406c8492
BLAKE2b-256 c1ee89dbee567ab1fb045b2254ffb19c26bbf231dae7a345775ff80168b10929

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 49110ce693f07e97d61089d894cea05a0b9894d5ccc6ac6fc583028726c8c8af
MD5 8d84dd0c27d8722b61b3d7c51ca1eacd
BLAKE2b-256 ae400c982055fcbc0b8bc432a3360e3a2b89209c38df1397b59b7db60f1e6a5e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d4f346e54602782e66d07df0d1c7389384fd93680052ed6170da2c6dc758409e
MD5 a0e480a1f5df006991c6de762ae5b0b9
BLAKE2b-256 80666c54656df3226e52a22fc914dc94e68fc82bc6aed84d8bb9b191b5226c07

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ba6046cbb5d1baa5a781b846f7e5438596a332f249a857d63f86ef5d1d9563b0
MD5 54db513ae8d9b1ac40c1e908d5b2bcbe
BLAKE2b-256 91b53ed1126fc480cc08ffd832f4651f3ffa17ba90851dbbb54c713420f6e64d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 69572ffb4e84ae289a7422b9af4ea123cae2ce0772228859b37d4b26b4bc92ea
MD5 2e779a47c5a4d0a1250978ad4675be8b
BLAKE2b-256 298dbfa418d8ae7412b4562230afb88774a36f07d11df439c2a338f9afb21fd8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7eb852ca39a48f3c049def56f0d1771b32e948e4f429a782d14ef4cc64cfd26e
MD5 1f092e81ef271d153f567ee47049e94c
BLAKE2b-256 3a5f50ae1db9471e8f6159c4000fd1ed8fbe2ecd9f8b28f303424b30d8f8b8dd

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 947111ac906740a948e7b63799481acd3d5ef666ccb178d146e25718640b7408
MD5 82a7224a668250d2f907709e210f68ac
BLAKE2b-256 6311a2c06905d2fe45cd407c46564d936b431cfc4deb0c7b7e7beed171019b65

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 4aa6226d82a4a4505078c0bd5947bad65399635fc5cd4b226512e41753624edf
MD5 d31a19cc6fb460e229cb11edf81032f5
BLAKE2b-256 0accbc9f62bdbf3648959353696f2d8d98807597d87017e1b750645c33849b90

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.0-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 204.7 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.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3a729b2631c6d5551a41069697415fee9659c3eadc9ab87369376ba51930cd00
MD5 53593bb9ffb0c5edc9fb6b4bcbe510af
BLAKE2b-256 6bdd6d29ed71daf823a4e18ea4a076f8bab8de22df4b9e97ba0c58c6b8e29309

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.0-cp39-none-win32.whl
  • Upload date:
  • Size: 207.9 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.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 13139b05792fbc13a0f9a5b4c89823ea0874141decae1b8f693f12bb1d28e061
MD5 c8f453d1866b7e2d3298e0b7ff6413f5
BLAKE2b-256 28aba24d19ac9d41aaf6e743c9000e0eab311d5448a4162b8b3bd111c6e4ccfa

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 ccde31d0bc114aedad0dbd71b7f63ba0f0eecd7ec9ae1926a0ca01c1eb2854e7
MD5 057da5424dbd999bd7cdefd5dde7587c
BLAKE2b-256 e6ffe125980f5be26b2a34cae0748aa9fc50dfadb4c6178017b5d362b062b931

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 9a1c172ec47d846e25881dfbd52438ddb690da4ea04d185e477abd3db6c32f8a
MD5 cfbc00e8d408d223df0878c8102768d4
BLAKE2b-256 9a3e0e8403375516d326f67370283bb8e70a98a7f8cedb19d527e5426dcae6f1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ae12e3906f9e565120ab569de261b738e3a1ec50c40e30c67499e4f893e9a8c
MD5 ede30fec94f23b296a0f285de68a9673
BLAKE2b-256 aa57ef902d47e614d1676c1bb847d76fe414214244d8aac4eb03162d563db6ad

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42ef59f9e513bf081a8b5c5578933ea9c3a63e559e6e3501a3e72edcd456ff5e
MD5 307db22bd071624b919517460c4a6d94
BLAKE2b-256 28a871b345080f722a7c58a66bf2b0361c248fb6f0b13da2c404cca0b566a8ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f2805e28941751ebfe0948596a64cde4cfb9b84bea5282affd020063e659c96
MD5 01db0ad38f8b85994b5847d0ae2339b8
BLAKE2b-256 bf75328bd956cf56d03ea40a5303e70aca2bdf98000ae0998bcc59266c32afdb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bb84b8930da8b32b0b1fdff9817e2c4b47e8981b5647ad11c4975403416e4112
MD5 35abc045e1cb014eb754e2d8c142000a
BLAKE2b-256 c6f014c9367314b9e02c13a73e3f6dead7d323e013c8401f72d09867624cef07

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c471473e0b05058b5d729ff04271b6d45a575ac8bd9948563268c734b380ac7e
MD5 c8639484494a0935caacbb73cf7e01c4
BLAKE2b-256 982119bcc423c1b9bb3d551ab9bfa6ddca74dd2b19ce2d4195e03a655999ca53

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 264dc1324f45a793bc89af4f653225229eb17bca9ec7107dce6c8fb4fe68d20f
MD5 bc32af8a0c0d334d1bd52f8bb0d33aab
BLAKE2b-256 98fb2d141af35060e5ee096689dd94e0a8827e4d7694a326ae1258c968ae1b29

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 79134b2d601309bcbe3304a262d7d228ad61d53c80883231c637773000a6d683
MD5 ee11d72b5513ec6ce24623e2a023739a
BLAKE2b-256 637759429819a6073ef47fd49cc0b76574be5ca3784b2d47197bed476558c512

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 091e978f4e586a2f1c69bf940d45f4e6a23455877172a0ab7d6de04a3b119299
MD5 1d51dc4fe71869ef42e9659918271467
BLAKE2b-256 12cb56468e1ac5dc00ccafccead55fa927b6ba0a9e6a1614f2f86e0e1f54cd7a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.0-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 204.2 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.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d920035c869053e3d9a0b3ff94384d16a8ef5fde3dea55f97bd29916f6e27554
MD5 e78b794cb3955540094e458eb4b7f577
BLAKE2b-256 5ce810a0b402093348179a98ad6a855151af8c51353d90e0aa08c46e16792ba4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.4.0-cp38-none-win32.whl
  • Upload date:
  • Size: 207.8 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.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a044c53ab1aaa4af624ac9574181b5bad8e260aea7e03104738156511433deba
MD5 bfbffcd9c09d76d41773b25b3310d810
BLAKE2b-256 9935e5115ff17e5a59e536eb104672404d360b7d48fa15780f109584b19a1e2f

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 81a883104aa96e494d3d28eaf7070780d03ecee8ccfdfaf7e4899710340c47f1
MD5 bbe13284973e84c8df52e462802f216a
BLAKE2b-256 f7e9d2d876eff40132dbc48a9375ff485a3cbdba48cda1777fa5ecec11596413

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8dc0132b728f3b3e90ff0d1874504cd49c78f3553bf3745168a7fc0b4cf674e1
MD5 e8a6cbf9197dcad373a3465fa93e35b4
BLAKE2b-256 20aca88ec2e984edcc8c17bd362ab6d6c84a0801f20d704e5ca2f166550f1d14

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19e3de515801c954e8f1dc1f575282a4a86df9e782d4993ea1ed2be9a8dedaa0
MD5 8d5ed65f54e1af1b9b259b3abe7893ba
BLAKE2b-256 9a915117eec8db8b353caf7a99e70626e407b76c80abe0823276dee26cf46eb2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f0fec16adab8d3d3d6d74e3711a1f380836ebeab2a20e3f88cfe2ec5094d8b84
MD5 effbd86bec00c1bbcf8a8c32697cc1e3
BLAKE2b-256 27417ccede3f16f70f1cbaa996dc4ebf99a26039c1fc3b270d39547d36796168

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a56e6f980b89d7cfe5c43811dcf52d6f37b319428a4540511235dafda9ea7808
MD5 113e2cf5fda4546184c7d13f246e9ed7
BLAKE2b-256 aa2d006c3fcf1f745ff6acebd1b31883aed50e1304befdc764a3a5b332786716

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e51fc0a22021ec8905b9b00a2f7d25756f2ff7a653e35a790a2067ae126b51f6
MD5 07cdbd14d86d5f74fced84408f2d45f9
BLAKE2b-256 5a0c963d522aa75ed2fbf37c06de6b5f5aaba5cdf09b316a04ef80a9ec891051

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 40b2cde77446a41cec595739fd168be87edff2428eaf7c3438231224dd0ab7a5
MD5 aa4ca1135b957fb3b5d71ae07726bd1f
BLAKE2b-256 04b99e54a7b0a43441d19ba6d98219be5d7822f67d4a3bf10b813659ea38d0b9

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17e0ad8abf0bb04d81810eaeaab35d2c99b5da11fcd1058e0a389607ff6503b0
MD5 77ec5b72e45e9555000a7c05d98ef221
BLAKE2b-256 b7bc24d58e6ee0800783cea735876f09b33de8555fa115e6b4c3d4ddd70021a5

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d62244ffc6a168187452277adeefb7b2c30170689c6bf543a51e98e8c17ddab7
MD5 b139ec77d72ebf1c9c6dcbfb7e6dbcd0
BLAKE2b-256 8a53fe2e50075a6c4f4cd184fa7a3a6b26e2ee3a4860fd29eefb6b309ed5799a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.4.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ebf20a3fac1089ce26963bf04140da0f803d55332ec69d59c5a87cf1a87d29c4
MD5 e780d3eb638b871198a9c2bb3135b5fc
BLAKE2b-256 ca8d470d7a2344593ae8a16c06906f8645cc3883ddd04553de10c48b7dcafba1

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