Skip to main content

No project description provided

Project description

jiter

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(
    data: bytes,
    *,
    allow_inf_nan: bool = True,
    cache_strings: Literal[True, False, 'all', 'keys', 'none'] = True,
    allow_partial: bool = False,
    catch_duplicate_keys: bool = False,
) -> Any:
    """
    Parse input bytes into a JSON string.

    allow_inf_nan: if True, to allow Infinity and NaN as values in the JSON
    cache_strings: cache Python strings to improve performance at the cost of some memory usage
        - True / 'all' - cache all strings
        - 'keys' - cache only object keys
        - 'none' - cache nothing
    allow_partial: if True, return parsed content when reaching EOF without closing objects and arrays
    catch_duplicate_keys: if True, raise an exception if objects contain the same key multiple times
    """
    ...

def cache_clear() -> None:
    """Clear the string cache"""
    ...

def cache_usage() -> int:
    """Get number of strings in the cache"""
    ...

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

Uploaded Source

Built Distributions

jiter-0.1.0-cp312-none-win_amd64.whl (164.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

jiter-0.1.0-cp312-none-win32.whl (173.8 kB view details)

Uploaded CPython 3.12 Windows x86

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

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

jiter-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

jiter-0.1.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.1.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.1.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.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

jiter-0.1.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.1.0-cp312-cp312-macosx_11_0_arm64.whl (270.0 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

jiter-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl (266.6 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

jiter-0.1.0-cp311-none-win_amd64.whl (165.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

jiter-0.1.0-cp311-none-win32.whl (172.6 kB view details)

Uploaded CPython 3.11 Windows x86

jiter-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

jiter-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

jiter-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

jiter-0.1.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.1.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.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

jiter-0.1.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.1.0-cp311-cp311-macosx_11_0_arm64.whl (270.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

jiter-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl (267.6 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

jiter-0.1.0-cp310-none-win_amd64.whl (165.8 kB view details)

Uploaded CPython 3.10 Windows x86-64

jiter-0.1.0-cp310-none-win32.whl (172.6 kB view details)

Uploaded CPython 3.10 Windows x86

jiter-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

jiter-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

jiter-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

jiter-0.1.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.1.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.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

jiter-0.1.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.1.0-cp310-cp310-macosx_11_0_arm64.whl (270.5 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

jiter-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl (267.8 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

jiter-0.1.0-cp39-none-win_amd64.whl (165.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

jiter-0.1.0-cp39-none-win32.whl (172.6 kB view details)

Uploaded CPython 3.9 Windows x86

jiter-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

jiter-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

jiter-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

jiter-0.1.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.1.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.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

jiter-0.1.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.1.0-cp39-cp39-macosx_11_0_arm64.whl (265.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

jiter-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl (267.5 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

jiter-0.1.0-cp38-none-win_amd64.whl (165.6 kB view details)

Uploaded CPython 3.8 Windows x86-64

jiter-0.1.0-cp38-none-win32.whl (172.4 kB view details)

Uploaded CPython 3.8 Windows x86

jiter-0.1.0-cp38-cp38-musllinux_1_1_x86_64.whl (1.2 MB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

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

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

jiter-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (285.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

jiter-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (1.2 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

jiter-0.1.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.1.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.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (1.0 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

jiter-0.1.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.1.0-cp38-cp38-macosx_11_0_arm64.whl (264.9 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

jiter-0.1.0-cp38-cp38-macosx_10_12_x86_64.whl (267.7 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

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

File hashes

Hashes for jiter-0.1.0.tar.gz
Algorithm Hash digest
SHA256 d77da07222a42d2ae907dbd03bca708079e4268bb7e155006c2c6960281f7f1a
MD5 cc7f08921f6a538972198ddff182f9fb
BLAKE2b-256 d3db9947da2428c3c25ab624f1bf0d05f8b5aac0398a5e1e7958d23aa7805642

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.1.0-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 164.8 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.1.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 5cf60df741bc80439cb2d9b2923c7b712c6c82ac6848387f95d77c5723e01d0a
MD5 febb4c1aab801e57890db9fb0e7f5b12
BLAKE2b-256 77d4a3e6d8176c3c4ce1eb8d835d409da876747b469e44640ee2c8a24f325242

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.1.0-cp312-none-win32.whl
  • Upload date:
  • Size: 173.8 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.1.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 c6445c37eca8d79bedf3bd74683ad668137b05880c7af95f0b96222d62be2db9
MD5 c4a3d732372526c034eddf20cc4317cf
BLAKE2b-256 ecc027de811e86a0d0b8df7673086d135d786deb70638b9a6b300dee945af433

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 e6be9c021ca191c186275d5a9c70b7767cde0852454a8827c9edde995518c856
MD5 c058671c2445bdb6906b81dd53cc58af
BLAKE2b-256 e0274ff901be48e78c0da287224ba624fd4ffb848238cc8c8df2b08000cb5302

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 17a45f16e7253c23c81969086707229591645b192935cb2db226e01bd3abd148
MD5 06fa46283a6f4d3d14cb4f5a690a2848
BLAKE2b-256 2812d2958148008a4d28d02607a174259f85a3a283ccbafa10559a5bb7ced923

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b53bd047ee136f38c0b56779423bae99cab1b9a65b586f1c19e94a6f65013599
MD5 532d6f2c9fc98d539baeae33dde6b53d
BLAKE2b-256 18c33bc6362bfd9cb867321de97dc956f1bb6de4721db992975d31850c7c28eb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2b29b49fe73c7da72f29d922ce85ee5a74772678ecbc2542e99bc4935c68965
MD5 11876496b0e39f0b1f3ecfa930a7f959
BLAKE2b-256 4c34d8fa7a79f659c9dd2e75c5d0e4411403689104d370a5a8f483d3a9e732d7

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 88ba8abb7025fa4e806a1fa03a2be23cb8584ec737bdf62554873ba2698e44d3
MD5 ed3e9eebe908dbbd66c48bb98c5a0839
BLAKE2b-256 fed5d733e10393ef33a87185d35bda6bd8f3f9703759f964ef381a529c18c44a

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2149878ed5c8d1909546d6bb259aaa3ca6b6f81487b03504ea618264f79f4e3b
MD5 b47bb70e3fcd11ea742c9bf822c1f71b
BLAKE2b-256 831d732282b98d1c7c05f360281b435f015c56a1a2eb2933785e3e89214949c2

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c7f620a558d5952218fe924c7257ce3592835a23e651a140957ba66128675c0d
MD5 610caab22176759ff5c6b6468f608249
BLAKE2b-256 e38aed6b98457430c2a27f960926a77aec0c02694be5047a71dbf869a8077593

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 92bd461af7766d7f091216942951b603d546f16c1818b9072f5ec7c89bb8a7d2
MD5 3825c8687d28c02bf85a744817951962
BLAKE2b-256 1b1b9689a0a247abab9770c89450fc1cbb7aa546e380614ff18ad88bfe202f61

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 832e1a91fea7819507b1d1215e1a82e02da423ea298231af842b35c41d8411db
MD5 94525607e60a380fab9f141040a5b441
BLAKE2b-256 0ff561d9fe39e2be1f6a2d97dbb9fc687b6e76dc890f0e8750f6fc0df8b028b8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2a1e6335a4ce98dc64d0871ba3316f06d32728beefe336a621f9877b71a237be
MD5 9c715a9ebb3274aeaee868c0cef5a070
BLAKE2b-256 e75db127058de1d19c416845b6e0b207de99e6c1f389c245a83aa1f9f202dfc2

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for jiter-0.1.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 40d361aa7e728a186495b7b00a47f83f7153714a8b49d9d38dfc45f7b6630f99
MD5 2df8610a386cfde9b809b6566fd4daa2
BLAKE2b-256 ee08af0fa20c22c34861821e5c41437e07248078c87d8be510761699d1d83f7c

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.1.0-cp311-none-win32.whl
  • Upload date:
  • Size: 172.6 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.1.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 1c41463f82b67d2efa8f269f7cd150c6c16c5902a0508277f5b1c1569e93dc1d
MD5 2883a6a82e4e9bc26feb609fd70cc8b3
BLAKE2b-256 9bf30b963e280d121bcd57053df4dc68bd38ac77174148c9f77035e0256b1424

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 fe94ab7e548e492dfd35118de7de613078b7e4ddc276976e8fa2f0f37029cad5
MD5 75eb1986cb59e1d9702dbb7b76c8a175
BLAKE2b-256 b11cd7ea5e581dc04b62cd542f2c7d9a4da1d902bd817dad4e3126b0fccf4bcc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 c22d684e663cc99f887c3133a7714c5ecba73524438bc3c93e6bb868c55a9097
MD5 4bccece921119c9cea5a9290d2b4dab9
BLAKE2b-256 53f85bd40bd91cc70214067653af9a9117aa161b95406949db387b9f911b6c68

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bfcf0996949a9435a2ebba2455934ad72d9faa1de2069c65aeaeaa8c6219820d
MD5 29c2492ab7c349da477c19034230f0e8
BLAKE2b-256 9413ecb77b6b719c124cfc46330312ef2b310b1135d95c21f818ba168c554056

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 050252cde3ae0b0a1eca028a30d953ce2d90e0150c1eef0e5ad75ce163d32484
MD5 6fec09148e0dd417d4047c2ed3c270f0
BLAKE2b-256 c32c205e570f45b97a1bdad92484301aa7215b3f8c2819134d5af8a6ad525338

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8cd365396e9c50b1c458bad0b21452f4c33fea222413aea78826bca98097f487
MD5 d773d18e88920f4fa4188889672c5ed9
BLAKE2b-256 5b56e2a8297f280b1043ac058edaefa2692adb61880fbce6b3a0464c17123323

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 08d7401e20fc660871a02ec05dda9dd93c95052a3c1588385230bca59d9d525b
MD5 b582cb5cc603842e155fc7de47c7c804
BLAKE2b-256 17f8f19fb31329681cdb70b4218868765cf2ca41abfe1a1623d157b42839c0ec

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 215ca1178d30e7a652849b9ca145a4666e1ed0941aef0c61bbaf88a0cd084b66
MD5 3a3095bcd706b889d9a8283b71ed2e6d
BLAKE2b-256 8a52d665e17fe2685ffc658d2f8e5f30649cae4867f684007308092729d9fe89

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cfce158151a3a7d0b8f8af549540e1d8328a9dce4ee61c2fb10b12f269d68b6d
MD5 aca558b2a02dbd9a4e4ea90cb73c1960
BLAKE2b-256 0d59df7eec40d143539ded55bce426eb95c23cf94067998423d948c5331a757b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 80d1bf437ea70f43c0976f96cd83fa4618aceb526ba3eaccf9f736d0c3185f5c
MD5 6e595d354db157a919ff2d6eb99da7d1
BLAKE2b-256 3536749cdf5d8d0d94c80b90c3f66418064926bd43ae32de6d19b4ac5dba9045

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f47eb274aae20ee3b565886ab315c3f16f9831c0e4fd6722dc100a2dbc0923f9
MD5 5ab8db0646bb4d791108964a39ae2995
BLAKE2b-256 237f149ffa864a08c307226b358d11cd75ed06e0a2eb10303eda64031b63d9b4

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.1.0-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 165.8 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.1.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 0316fa82ee4dab455bac2ec05362f3ac19d77e3139225683289c366ce35605b9
MD5 63c6fc9284ef4ecdda4d100f379f0308
BLAKE2b-256 469b8502bc72af81cce4313f1232a299a66e2701767ae89c86a7d0add6d710b5

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.1.0-cp310-none-win32.whl
  • Upload date:
  • Size: 172.6 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.1.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 47c1e12bd0789bd4f76cc4973a04d512832568a2a4925cd0b52d0ed413aa5e8d
MD5 ced82a67bd6ab7ee97f35ab7fc6cbfd5
BLAKE2b-256 b217bcc32226c464efadc5e1e0deb1749951806c87cfa5061d53421da384e5fb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 f446f1f5e8466fc4dfe775f9c5d8b6c3f0b8b07dc24d4ce76d8de3468d7447a8
MD5 569f6ec6d58a7dd7fb353681600ba812
BLAKE2b-256 efaf46c3bde3f024e8f2f4237c9dc7ab0e7597a217605d472040e655e35cfeeb

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ce5866bb5ff7dc14d036fede7e7ddb86b3b67064dc66dde15de4771e2697e539
MD5 008157f450903108435bc90f68b5499c
BLAKE2b-256 5c89b2cde115a1c2e554efae5802208fac47241bbfe9189b19f60322a01d6f0b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f12ce8243d1adb4657cfd9f23ec73fbd206bd5387bea0ebb5514c41fd268a1c1
MD5 4bbce4d83f19641a634bcad4f80e380a
BLAKE2b-256 b711f7a2846c9de97ef2915b8aeef21af98da95593ee3f7c50124b87dd18103d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 148ae1c97be312f1e969d76fbf507818d53e2867e90cf3c7f78941a199d5b84c
MD5 fe77b0e02db6bef04cdb9cad969af549
BLAKE2b-256 cb172317357859e0cddb7af9698bd8335c6b384759ddc2e8d99a1a836b1fbe53

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5da72cf6582049d2b802e48dd647a096103994a21a7a762fe813b727565ac0ef
MD5 99fb354bc65a79f8231807fd0128fc0a
BLAKE2b-256 2bf7b17df0cfe11fe10c33593bdcbf847941f8bd3735c3ec4111c648f3e2528b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 657ca4cf8d99e2e899a5ef778daed5f42eff6de6f23403a6225b6d6bafb55f38
MD5 051f57135e29448ff12fda08a5b6561d
BLAKE2b-256 948a68b8ad2a70986c1081407278f68946367f895c75785855f6d0863dcbd374

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51fcd4bdb23de3a26c2b64f7bd87e9e43c82f1171145ba13434a654d7c8e9aa9
MD5 45e40eb17526edb62286a283471322e8
BLAKE2b-256 65ee6ffea6ea640062e914728179bf68a1a8ba447699f040ca529b2b2999875b

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 067cc20889627a0afcaf6b465e942990b9f32d1ad88b0a083ece74becc3831b0
MD5 0a2006847b2751614f8eb88f2f963ad7
BLAKE2b-256 771de8e5cf503128867a8f66d2f99741e56789b7bdfe69ab2a7b38f5c4044e94

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 46eed20f7d9642787eed4143f7b25e16cf9915bb45656980cc9b966bb1e00f59
MD5 9530dc53bfc2124ab82ce0b12a03b5aa
BLAKE2b-256 4cff4331f3920470717667aaaa93a6ce898524cc708ae5e37dba36f1a3352a90

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 3aa466e89664cb94e69571df326f0c28e25e2e728f90fa4c3c235bbd35b40609
MD5 6071cee5a193209399d3c0442df5b470
BLAKE2b-256 a7c09d3cd9874a8f5e25f404ff31fc6fe5924107f05e00dd0f79cab984d0e78a

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.1.0-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 165.6 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.1.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 28f3d4f3e88313ef20e51e3330c22c6ce636ca2eb167b185c298a2ea1ab67b8c
MD5 dd0fadf9bdd338bf4a534b0de247c34a
BLAKE2b-256 801ca1d0cf219d042e7893408e2293cfd0536f5e141910018e2e820dfa8da09b

See more details on using hashes here.

Provenance

File details

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

File metadata

  • Download URL: jiter-0.1.0-cp39-none-win32.whl
  • Upload date:
  • Size: 172.6 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.1.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 9c6d24f8f1764b1c0917bc35131982bea5517cc7b12226f19c4c01215e1be208
MD5 fe8e1cfd9b7ed1834a080c014a270d7e
BLAKE2b-256 774ba3f7e36d8f4eaa922f55f15c4219aeb3aab059754ed740a9523ebb84a3ae

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c98bddd0dd5cfe638f1a7e4341edfae0a1c97aed879207e594b221f8c5058aa6
MD5 e5d058800bf04a22aa2731330cb1eac9
BLAKE2b-256 66eba5a7626cf44607d17496d9eaf613765d1e50caf8faea049dd0616c518301

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 eb3e9a062ddba709db2afde1ef2c72244dfbae09a27b4aa3701267e489ef7a30
MD5 44e44bfb36b98c83f88ebd68ee77542b
BLAKE2b-256 b9193fbd93a7c9223ef7d42e4032e1d7e3884b3ffceb49b2f76dd8022dca31ef

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8ab154d2f877e66757202a71669142c1ba9e9b5c5d1cf81510924950d74f62a3
MD5 421e53c88007a1dc9488f73a6fa1537d
BLAKE2b-256 f7d87726e347de8a53f0d6b8e01b2b44f57512ec15432beb95fd3b5834c5d99d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b80b4b64aa5dd63e79bf5addc903855a9a5b7b2493a826cc2cbf9cc9ecfcd23a
MD5 f87c1d14fac843561f9033fec25499ed
BLAKE2b-256 a8e2204f2ba2291a5a4e85d613295272037a92d0c0bbc39e0e81fac762bed92c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7f867893fb7b458c5cb302b33fbe769bb8c8e60594057f29e005fc8ad21b2a58
MD5 95bcf8a0881df38f6cb9c650def7c07f
BLAKE2b-256 1d147aaed501086c68b9c538774ac1803812fcb876dbd22cd5207bfc124916e8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 230fc4dd9c2c3f4b6608fda3f34891cabee2537eef7c7fd0cd68792def14bcc6
MD5 51f3b6aac3c739b627aa802f6b06f378
BLAKE2b-256 f27447b29045eb53a7fa1b0492dc36517e3594e40d8666e10847e37538a9da34

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eae1f35e062a71deaad689fb2f51b202c1d55ac941733bdcd7587577e17b8a16
MD5 b7d5388ccf3351f995a30c40413d4e05
BLAKE2b-256 bf8dade854829d433e51e27fb759af6979042e56820d07196f55212475fd8f2e

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b43b3fa25b828a2fc4ed7c42f788c261df17d82fb5ced129140ef8be2577ee2
MD5 63c306010ac7f3b6b626ae5d879a8141
BLAKE2b-256 c21d565e4a6d0c898157fb31db8c640a60f10d10819b1e74d705efbbe7d76f2d

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2d7272eefa5b390c6e450760959e224033b925b0ab76e3279dfdad7f5ec65db0
MD5 d47233314c07308f4bd265dc6fe4b039
BLAKE2b-256 9f107dacc318d49d6953a13e72cd75bfb59eadc99e4107971c19f030a8e0fb89

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e04740a9ea37118fe6788754eb2ef043ad83809dd677bf3c5f331cc41f8ef70d
MD5 da01fb71f619252e963f76a0cec5071f
BLAKE2b-256 8f42b6db72072138cc52f390d5ca1775a9b666a904b01f8e535e4d4f0172b35b

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for jiter-0.1.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 c1e798a92daf8c6511907c3861c0cf500f23241c160d1c09cb0e9ba668fde667
MD5 d505df9252bbdde0c6c534bb57de35d1
BLAKE2b-256 9e818ecb406616d3cb1917d8f1d2888f759218a312b0968cf9aaa2d6b06e2093

See more details on using hashes here.

Provenance

File details

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

File metadata

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

File hashes

Hashes for jiter-0.1.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 631d92b82f228774e9f0b79927016fafed369521b8bf059fa8c0353ba4cd76b2
MD5 2b7dec259ca3d453bf6cb50d161ed2a5
BLAKE2b-256 32e4573079aed198da2358aae279efa6212ec83d9af5b90a659b78c04ee570af

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 c1c0e8b99b4e9fed57b7dbd5be63aa0fc36d45551dedc3c3697aa2694c9a0be3
MD5 1911f31615a94375b5ae0736b0de8260
BLAKE2b-256 437871c3e1f0977f6f82ae58af3328a891e35bc84fabd27d8b939985126e1eb8

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 f9f521361cf3633b314edb2313e7abc4fce59dfa1d918561263474fb5c7e17b8
MD5 8adcc742130f9efb72580283bba54213
BLAKE2b-256 a2ef9e105d8473acc9fb2a793dd6cf57f3ae88f95e5e457325449cfd0fb53c75

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c0f55e5cd7b2f649d934b1397bc104200043cdf35addf4892ed66e472e6fe05
MD5 1bfa4bdd283253c8b49dfb4f4cfd9d3c
BLAKE2b-256 11644c5341fc358fcf124901c0c123f41fbcdfb06da7a9df628238b5f3b65603

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 194fcbd242b35bda13196b501b116e50fa553c414e1cb0350dc1bc910bceb00d
MD5 168326ec0f8b00c81fb5aab32151c579
BLAKE2b-256 9cdfee16da9631c06957e91d3686586d0db04cb32f5e14377fab195936ea6165

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fb78293d40e38ee5c4370c547af06fb63c7e810f3895ecb76ddcc5fa413e9ccf
MD5 7ab4c2c7447e1709dd90195cd38a7ba5
BLAKE2b-256 c5fb68423af9be072f3ee8c32d1e2bd21eacf3bc48fc77fd30317529175ec1ca

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fb02700ad165a81b0993ad3c550f3b590f0952ff3ce10826fc62aeb064b47b6a
MD5 1936ebefacf3a880bb6f98985f6245c5
BLAKE2b-256 3f8405f9e783539a51e4fbfbf7b35b3246142074d79bcdf67a98e1f9abc0cd85

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e3de99e3983c0697c449f45ec740096ac559656485aea48066c982530066dd8d
MD5 056b31d414230a4562bcf641270e8a85
BLAKE2b-256 4ad771592662737d9fdde0f8624e50fab4ecb6c01b4a529c7a60b05b88620d4c

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6a5c6ae1587f60eb995724e34e7257291c919d163906edd030ced77af9f420b
MD5 2844a42bc7ebada34833a2bc0c870312
BLAKE2b-256 3889871484c15d1df8bb9f293d3f6522ada03097b5a085afa3ec43fc65a4a7b1

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ceea8e8ac9af7b0f098660f3837bc3ec975716103788f36d228c543b1319c475
MD5 090416dc127242b4925146a0900ea06c
BLAKE2b-256 ce5f3c80f17b14391af15c93aec1bdb6f4afe3bc8b2f2413ccfcb27b41370dcc

See more details on using hashes here.

Provenance

File details

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

File metadata

File hashes

Hashes for jiter-0.1.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 977d8b322f5f661f16903d2ff8e981e210ba0e057d2d70a1f7b59b8d478e6d45
MD5 3c998a2706aaca645918c9fc404b9dd8
BLAKE2b-256 a96a27683065d92cf2107cd5f803fa8cedf7824f0db36c6de80a928422ff876e

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