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,
    float_mode: Literal["float", "decimal", "lossless-float"] = 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
        float_mode: How to return floats: as a `float`, `Decimal` or `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.
    """

Examples

The main function provided by Jiter is from_json(), which accepts a bytes object containing JSON and returns a Python dictionary, list or other value.

import jiter

json_data = b'{"name": "John", "age": 30}'
parsed_data = jiter.from_json(json_data)
print(parsed_data)  # Output: {'name': 'John', 'age': 30}

Handling Partial JSON

Incomplete JSON objects can be parsed using the partial_mode= parameter.

import jiter

partial_json = b'{"name": "John", "age": 30, "city": "New Yor'

# Raise error on incomplete JSON
try:
    jiter.from_json(partial_json, partial_mode=False)
except ValueError as e:
    print(f"Error: {e}")

# Parse incomplete JSON, discarding incomplete last field
result = jiter.from_json(partial_json, partial_mode=True)
print(result)  # Output: {'name': 'John', 'age': 30}

# Parse incomplete JSON, including incomplete last field
result = jiter.from_json(partial_json, partial_mode='trailing-strings')
print(result)  # Output: {'name': 'John', 'age': 30, 'city': 'New Yor'}

Catching Duplicate Keys

The catch_duplicate_keys=True option can be used to raise a ValueError if an object contains duplicate keys.

import jiter

json_with_dupes = b'{"foo": 1, "foo": 2}'

# Default behavior (last value wins)
result = jiter.from_json(json_with_dupes)
print(result)  # Output: {'foo': 2}

# Catch duplicate keys
try:
    jiter.from_json(json_with_dupes, catch_duplicate_keys=True)
except ValueError as e:
    print(f"Error: {e}")

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

Uploaded Source

Built Distributions

jiter-0.7.0-cp313-none-win_amd64.whl (199.3 kB view details)

Uploaded CPython 3.13 Windows x86-64

jiter-0.7.0-cp313-none-win32.whl (198.7 kB view details)

Uploaded CPython 3.13 Windows x86

jiter-0.7.0-cp313-cp313-musllinux_1_1_x86_64.whl (497.7 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ x86-64

jiter-0.7.0-cp313-cp313-musllinux_1_1_aarch64.whl (515.0 kB view details)

Uploaded CPython 3.13 musllinux: musl 1.1+ ARM64

jiter-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ x86-64

jiter-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (388.2 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ s390x

jiter-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (374.1 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ppc64le

jiter-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARMv7l

jiter-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (328.3 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.17+ ARM64

jiter-0.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (366.9 kB view details)

Uploaded CPython 3.13 manylinux: glibc 2.5+ i686

jiter-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (304.7 kB view details)

Uploaded CPython 3.13 macOS 11.0+ ARM64

jiter-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl (292.6 kB view details)

Uploaded CPython 3.13 macOS 10.12+ x86-64

jiter-0.7.0-cp312-none-win_amd64.whl (199.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

jiter-0.7.0-cp312-none-win32.whl (198.9 kB view details)

Uploaded CPython 3.12 Windows x86

jiter-0.7.0-cp312-cp312-musllinux_1_1_x86_64.whl (498.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ x86-64

jiter-0.7.0-cp312-cp312-musllinux_1_1_aarch64.whl (515.3 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.1+ ARM64

jiter-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (326.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

jiter-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (388.9 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

jiter-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (374.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

jiter-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

jiter-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

jiter-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (367.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

jiter-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (302.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

jiter-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl (292.8 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

jiter-0.7.0-cp311-none-win_amd64.whl (205.7 kB view details)

Uploaded CPython 3.11 Windows x86-64

jiter-0.7.0-cp311-none-win32.whl (198.5 kB view details)

Uploaded CPython 3.11 Windows x86

jiter-0.7.0-cp311-cp311-musllinux_1_1_x86_64.whl (498.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

jiter-0.7.0-cp311-cp311-musllinux_1_1_aarch64.whl (514.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

jiter-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

jiter-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (390.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

jiter-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (373.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

jiter-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

jiter-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

jiter-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (367.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

jiter-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (306.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

jiter-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl (292.7 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

jiter-0.7.0-cp310-none-win_amd64.whl (202.0 kB view details)

Uploaded CPython 3.10 Windows x86-64

jiter-0.7.0-cp310-none-win32.whl (198.4 kB view details)

Uploaded CPython 3.10 Windows x86

jiter-0.7.0-cp310-cp310-musllinux_1_1_x86_64.whl (498.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

jiter-0.7.0-cp310-cp310-musllinux_1_1_aarch64.whl (514.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

jiter-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

jiter-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (391.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

jiter-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (374.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

jiter-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

jiter-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

jiter-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (367.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

jiter-0.7.0-cp310-cp310-macosx_11_0_arm64.whl (306.2 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

jiter-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl (292.4 kB view details)

Uploaded CPython 3.10 macOS 10.12+ x86-64

jiter-0.7.0-cp39-none-win_amd64.whl (202.4 kB view details)

Uploaded CPython 3.9 Windows x86-64

jiter-0.7.0-cp39-none-win32.whl (199.3 kB view details)

Uploaded CPython 3.9 Windows x86

jiter-0.7.0-cp39-cp39-musllinux_1_1_x86_64.whl (498.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

jiter-0.7.0-cp39-cp39-musllinux_1_1_aarch64.whl (514.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

jiter-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (328.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

jiter-0.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (392.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

jiter-0.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (374.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

jiter-0.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (348.1 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

jiter-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

jiter-0.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (367.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

jiter-0.7.0-cp39-cp39-macosx_11_0_arm64.whl (291.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

jiter-0.7.0-cp39-cp39-macosx_10_12_x86_64.whl (293.3 kB view details)

Uploaded CPython 3.9 macOS 10.12+ x86-64

jiter-0.7.0-cp38-none-win_amd64.whl (191.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

jiter-0.7.0-cp38-none-win32.whl (198.7 kB view details)

Uploaded CPython 3.8 Windows x86

jiter-0.7.0-cp38-cp38-musllinux_1_1_x86_64.whl (497.6 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

jiter-0.7.0-cp38-cp38-musllinux_1_1_aarch64.whl (515.0 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

jiter-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (327.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

jiter-0.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (391.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

jiter-0.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (374.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

jiter-0.7.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (347.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

jiter-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (329.1 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

jiter-0.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (367.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

jiter-0.7.0-cp38-cp38-macosx_11_0_arm64.whl (291.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

jiter-0.7.0-cp38-cp38-macosx_10_12_x86_64.whl (292.9 kB view details)

Uploaded CPython 3.8 macOS 10.12+ x86-64

File details

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

File metadata

  • Download URL: jiter-0.7.0.tar.gz
  • Upload date:
  • Size: 162.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0.tar.gz
Algorithm Hash digest
SHA256 c061d9738535497b5509f8970584f20de1e900806b239a39a9994fc191dad630
MD5 fcc09b13d8e457bcab5aedc47d3cf10b
BLAKE2b-256 ac3d4ca1c6b8d1d15ea747da474891f9879c0f0777e2e44e87c0be81657ed016

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0.tar.gz:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0.tar.gz
    • Subject digest: c061d9738535497b5509f8970584f20de1e900806b239a39a9994fc191dad630
    • Transparency log index: 145627236
    • Transparency log integration time:

File details

Details for the file jiter-0.7.0-cp313-none-win_amd64.whl.

File metadata

  • Download URL: jiter-0.7.0-cp313-none-win_amd64.whl
  • Upload date:
  • Size: 199.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0-cp313-none-win_amd64.whl
Algorithm Hash digest
SHA256 7417c2b928062c496f381fb0cb50412eee5ad1d8b53dbc0e011ce45bb2de522c
MD5 8e37ba429b4f65a9bcc11a2f3bd46d6b
BLAKE2b-256 ca9658b3d260e212add0087563672931b1176e70bef1225839a4470ec66157a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp313-none-win_amd64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp313-none-win_amd64.whl
    • Subject digest: 7417c2b928062c496f381fb0cb50412eee5ad1d8b53dbc0e011ce45bb2de522c
    • Transparency log index: 145627617
    • Transparency log integration time:

File details

Details for the file jiter-0.7.0-cp313-none-win32.whl.

File metadata

  • Download URL: jiter-0.7.0-cp313-none-win32.whl
  • Upload date:
  • Size: 198.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0-cp313-none-win32.whl
Algorithm Hash digest
SHA256 4a8e2d866e7eda19f012444e01b55079d8e1c4c30346aaac4b97e80c54e2d6d3
MD5 6fcb518a15e7840d4b69018f31ee9d2b
BLAKE2b-256 94311e59f246e264414b004864b63783e54aa3397be88f53dda3b01db3ae4251

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp313-none-win32.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp313-none-win32.whl
    • Subject digest: 4a8e2d866e7eda19f012444e01b55079d8e1c4c30346aaac4b97e80c54e2d6d3
    • Transparency log index: 145627281
    • Transparency log integration time:

File details

Details for the file jiter-0.7.0-cp313-cp313-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.7.0-cp313-cp313-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 febf3179b2fabf71fbd2fd52acb8594163bb173348b388649567a548f356dbf6
MD5 66f597949859dca574373da693003be8
BLAKE2b-256 97c81876add533606ff1204450dd2564638cac7f164ff90844cb921cdf25cf68

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp313-cp313-musllinux_1_1_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp313-cp313-musllinux_1_1_x86_64.whl
    • Subject digest: febf3179b2fabf71fbd2fd52acb8594163bb173348b388649567a548f356dbf6
    • Transparency log index: 145627241
    • Transparency log integration time:

File details

Details for the file jiter-0.7.0-cp313-cp313-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.7.0-cp313-cp313-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 41d15ccc53931c822dd7f1aebf09faa3cda2d7b48a76ef304c7dbc19d1302e51
MD5 45e4e8b6966247d07e7060e6845c29f7
BLAKE2b-256 14a153df95b8248968936e7ba9eb5839918e3cfd183e56356d2961b9b29a49fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp313-cp313-musllinux_1_1_aarch64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp313-cp313-musllinux_1_1_aarch64.whl
    • Subject digest: 41d15ccc53931c822dd7f1aebf09faa3cda2d7b48a76ef304c7dbc19d1302e51
    • Transparency log index: 145627496
    • Transparency log integration time:

File details

Details for the file jiter-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6d77449d2738cf74752bb35d75ee431af457e741124d1db5e112890023572c7c
MD5 87ceeaf262ec64e04f91d24ad3d96e82
BLAKE2b-256 921ecc3d0655bcbc026e4b7746cb1ccab10d6eb2c29ffa64e574072db4d55f73

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 6d77449d2738cf74752bb35d75ee431af457e741124d1db5e112890023572c7c
    • Transparency log index: 145627677
    • Transparency log integration time:

File details

Details for the file jiter-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for jiter-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7ea52a8a0ff0229ab2920284079becd2bae0688d432fca94857ece83bb49c541
MD5 f833f5ecd56fe2a56944791a017bb8fc
BLAKE2b-256 a1b1b368ccdeff3eabb4b293a21a94317a6f717ecc5bfbfca4eecd12ff39da3f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: 7ea52a8a0ff0229ab2920284079becd2bae0688d432fca94857ece83bb49c541
    • Transparency log index: 145627314
    • Transparency log integration time:

File details

Details for the file jiter-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for jiter-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 997706c683195eeff192d2e5285ce64d2a610414f37da3a3f2625dcf8517cf90
MD5 c3b99e55f930a489c569116ee9512d98
BLAKE2b-256 421824517f9f8575daf36fdac9dd53fcecde3d4c5bdd9f7b97a55e26ed2555b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: 997706c683195eeff192d2e5285ce64d2a610414f37da3a3f2625dcf8517cf90
    • Transparency log index: 145627328
    • Transparency log integration time:

File details

Details for the file jiter-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for jiter-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d1c8d91e0f0bd78602eaa081332e8ee4f512c000716f5bc54e9a037306d693a7
MD5 1ba949e9b6dbcad8d0112e12590d15db
BLAKE2b-256 fdf29e3ed9ac0b122dd65250fc83cd0f0979da82f055ef6041411191f6301284

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
    • Subject digest: d1c8d91e0f0bd78602eaa081332e8ee4f512c000716f5bc54e9a037306d693a7
    • Transparency log index: 145627406
    • Transparency log integration time:

File details

Details for the file jiter-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for jiter-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b160db0987171365c153e406a45dcab0ee613ae3508a77bfff42515cb4ce4d6e
MD5 cf217e9ee853713c1b87f2a9fcb61c10
BLAKE2b-256 496556f78dfccfb22e43815cad4a468b4360f8cfebecc024edb5e2a625b83a04

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: b160db0987171365c153e406a45dcab0ee613ae3508a77bfff42515cb4ce4d6e
    • Transparency log index: 145627259
    • Transparency log integration time:

File details

Details for the file jiter-0.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for jiter-0.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a8203519907a1d81d6cb00902c98e27c2d0bf25ce0323c50ca594d30f5f1fbcf
MD5 47e73c18633e3b965839c7ad376656ea
BLAKE2b-256 bb24d410c732326738d4f392689621ff14e10d3717efe7de9ecb97c44d8765a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp313-cp313-manylinux1_i686.manylinux_2_5_i686.whl
    • Subject digest: a8203519907a1d81d6cb00902c98e27c2d0bf25ce0323c50ca594d30f5f1fbcf
    • Transparency log index: 145627338
    • Transparency log integration time:

File details

Details for the file jiter-0.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for jiter-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d41b46236b90b043cca73785674c23d2a67d16f226394079d0953f94e765ed76
MD5 1401d04a135b8bb65c06ad544342aea5
BLAKE2b-256 11c23b6d4596eab2ff81ebfe5bab779f457433cc2ffb8a2d1d6ab5ac187f26f6

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
    • Subject digest: d41b46236b90b043cca73785674c23d2a67d16f226394079d0953f94e765ed76
    • Transparency log index: 145627669
    • Transparency log integration time:

File details

Details for the file jiter-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for jiter-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 24cecd18df540963cd27c08ca5ce1d0179f229ff78066d9eecbe5add29361340
MD5 64d0ac7e9243ec8396b0cc2f6babe888
BLAKE2b-256 50bb82c7180dc126687ddcc25386727b3a1688ab8eff496afe7838b69886fcc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
    • Subject digest: 24cecd18df540963cd27c08ca5ce1d0179f229ff78066d9eecbe5add29361340
    • Transparency log index: 145627349
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: jiter-0.7.0-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 199.9 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 cc989951f73f9375b8eacd571baaa057f3d7d11b7ce6f67b9d54642e7475bfad
MD5 90ae8567f6b1317685c4634bbea09148
BLAKE2b-256 d08e80b2afd0391a3530966d8fc2f9c104955ba41093b3c319ae40b25e68e323

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp312-none-win_amd64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp312-none-win_amd64.whl
    • Subject digest: cc989951f73f9375b8eacd571baaa057f3d7d11b7ce6f67b9d54642e7475bfad
    • Transparency log index: 145627584
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: jiter-0.7.0-cp312-none-win32.whl
  • Upload date:
  • Size: 198.9 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0-cp312-none-win32.whl
Algorithm Hash digest
SHA256 9dcd54fa422fb66ca398bec296fed5f58e756aa0589496011cfea2abb5be38a5
MD5 ab80d5816cfadcd00930c80a4e1a8dc1
BLAKE2b-256 3ea5d0afb758c02d2d3c8ac3214a5be26579594d790944eaee7a47af06915e0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp312-none-win32.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp312-none-win32.whl
    • Subject digest: 9dcd54fa422fb66ca398bec296fed5f58e756aa0589496011cfea2abb5be38a5
    • Transparency log index: 145627652
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp312-cp312-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 15cf691ebd8693b70c94627d6b748f01e6d697d9a6e9f2bc310934fcfb7cf25e
MD5 33200f6fc52b5658bbe15cf2309eb1c9
BLAKE2b-256 af9d816d2d7f19070b72cf0133437cbacf99a9202f6fbbc2cfa2111fb686b0e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp312-cp312-musllinux_1_1_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp312-cp312-musllinux_1_1_x86_64.whl
    • Subject digest: 15cf691ebd8693b70c94627d6b748f01e6d697d9a6e9f2bc310934fcfb7cf25e
    • Transparency log index: 145627277
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp312-cp312-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 db7a8d99fc5f842f7d2852f06ccaed066532292c41723e5dff670c339b649f88
MD5 000a456fca3da6b0700bad5c58f07acb
BLAKE2b-256 4bebddc874819382081f9ad71cf681ee76450b17ac981f78a8db6408e7e28f34

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp312-cp312-musllinux_1_1_aarch64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp312-cp312-musllinux_1_1_aarch64.whl
    • Subject digest: db7a8d99fc5f842f7d2852f06ccaed066532292c41723e5dff670c339b649f88
    • Transparency log index: 145627470
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 90443994bbafe134f0b34201dad3ebe1c769f0599004084e046fb249ad912425
MD5 e72b7c34581a23cb25c0c3b47e46d111
BLAKE2b-256 9da2914587a68cba16920b1f979267a4e5c19f6977cac8fb8a6fbbd00035d0ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 90443994bbafe134f0b34201dad3ebe1c769f0599004084e046fb249ad912425
    • Transparency log index: 145627606
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6d28a92f28814e1a9f2824dc11f4e17e1df1f44dc4fdeb94c5450d34bcb2602
MD5 eac6b0af294ad52270c6de6da7aa4701
BLAKE2b-256 f7aec1c892861796aa0adb720da75c59de5dbcf74ad51243c2aeea46681dcb16

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: e6d28a92f28814e1a9f2824dc11f4e17e1df1f44dc4fdeb94c5450d34bcb2602
    • Transparency log index: 145627538
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6b487247c7836810091e9455efe56a52ec51bfa3a222237e1587d04d3e04527
MD5 4bb0874d55f32f9d03b41bab6e99c995
BLAKE2b-256 0b7455f00ca01223665e1418bec76cdeebb17a5f9ffae94e886da5c9bef5abd2

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: c6b487247c7836810091e9455efe56a52ec51bfa3a222237e1587d04d3e04527
    • Transparency log index: 145627374
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bd028d4165097a611eb0c7494d8c1f2aebd46f73ca3200f02a175a9c9a6f22f5
MD5 fa852ed3aa91a0a83e4e9fc7efa8aa5a
BLAKE2b-256 883c1af75094cbeba25df672b3f772dc717203be843e08248a0e03ef0ca382bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
    • Subject digest: bd028d4165097a611eb0c7494d8c1f2aebd46f73ca3200f02a175a9c9a6f22f5
    • Transparency log index: 145627710
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a8af4df8a262fa2778b68c2a03b6e9d1cb4d43d02bea6976d46be77a3a331af1
MD5 0440fc2b5b3915a226f3b53dce4fbf7e
BLAKE2b-256 8d4f38d0e87c8863c1b1f2dbac48acca8da85f6931a7b735e7163781843170a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: a8af4df8a262fa2778b68c2a03b6e9d1cb4d43d02bea6976d46be77a3a331af1
    • Transparency log index: 145627271
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f9abf464f9faac652542ce8360cea8e68fba2b78350e8a170248f9bcc228702a
MD5 c4bcbfcb82278e1eff8b7604f2f41686
BLAKE2b-256 c8ea79abc48a6c9ba9ee3ccb0c194ec4cc1dd62e523c7c7003189380d00e5f16

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp312-cp312-manylinux1_i686.manylinux_2_5_i686.whl
    • Subject digest: f9abf464f9faac652542ce8360cea8e68fba2b78350e8a170248f9bcc228702a
    • Transparency log index: 145627479
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 571feae3e7c901a8eedde9fd2865b0dfc1432fb15cab8c675a8444f7d11b7c5d
MD5 ccdd259a3031068fd0b4aefb2adfd435
BLAKE2b-256 d844d0409912bc28508abffd99b9d55baba869592c1d27f9ee1cc035ef62371e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
    • Subject digest: 571feae3e7c901a8eedde9fd2865b0dfc1432fb15cab8c675a8444f7d11b7c5d
    • Transparency log index: 145627564
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ac7930bcaaeb1e229e35c91c04ed2e9f39025b86ee9fc3141706bbf6fff4aeeb
MD5 e007d5c613a8652a4841b2c41e572681
BLAKE2b-256 d97bed881a65e8f0989913408643b68a3a0913365c5c3884e85bae01a9679dd5

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
    • Subject digest: ac7930bcaaeb1e229e35c91c04ed2e9f39025b86ee9fc3141706bbf6fff4aeeb
    • Transparency log index: 145627419
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: jiter-0.7.0-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 205.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 ed27b2c43e1b5f6c7fedc5c11d4d8bfa627de42d1143d87e39e2e83ddefd861a
MD5 6112f872e8668933e0c304744de25559
BLAKE2b-256 9619e9b32c69c6dea404d983847e92cf86c3287b0f2f3e7621180a544c0ff153

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp311-none-win_amd64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp311-none-win_amd64.whl
    • Subject digest: ed27b2c43e1b5f6c7fedc5c11d4d8bfa627de42d1143d87e39e2e83ddefd861a
    • Transparency log index: 145627570
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: jiter-0.7.0-cp311-none-win32.whl
  • Upload date:
  • Size: 198.5 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0-cp311-none-win32.whl
Algorithm Hash digest
SHA256 c07f55a64912b0c7982377831210836d2ea92b7bd343fca67a32212dd72e38e0
MD5 ea01fd11371ec72a22bb54d095664abd
BLAKE2b-256 85359fb7c7fea9b9c159d2089ea9b5ff4e3e56e2d42069456e3568dadf904e99

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp311-none-win32.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp311-none-win32.whl
    • Subject digest: c07f55a64912b0c7982377831210836d2ea92b7bd343fca67a32212dd72e38e0
    • Transparency log index: 145627491
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 7ba426fa7ff21cb119fa544b75dd3fbee6a70e55a5829709c0338d07ccd30e6d
MD5 4b804158a435b85e9446d284c626134c
BLAKE2b-256 6f0350c665a3d9067c5e384604310d67a184ae3176f27f677ca0c2670bb061ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp311-cp311-musllinux_1_1_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp311-cp311-musllinux_1_1_x86_64.whl
    • Subject digest: 7ba426fa7ff21cb119fa544b75dd3fbee6a70e55a5829709c0338d07ccd30e6d
    • Transparency log index: 145627430
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 6e46a63c7f877cf7441ffc821c28287cfb9f533ae6ed707bde15e7d4dfafa7ae
MD5 69e8dca104a573b3c7c3c92cdd414527
BLAKE2b-256 a16d73bb48ca87951c6c01b902258d0b792ed9404980bafceb1aa87ac43eb925

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp311-cp311-musllinux_1_1_aarch64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp311-cp311-musllinux_1_1_aarch64.whl
    • Subject digest: 6e46a63c7f877cf7441ffc821c28287cfb9f533ae6ed707bde15e7d4dfafa7ae
    • Transparency log index: 145627462
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ca7c287da9c1d56dda88da1d08855a787dbb09a7e2bd13c66a2e288700bd7c7
MD5 ca588ac3c4d0700094176746ab11feca
BLAKE2b-256 659b70f3ecbd3f18ef19e50fbe5a51bdb1c520282720896c16ae1a68b90675b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 3ca7c287da9c1d56dda88da1d08855a787dbb09a7e2bd13c66a2e288700bd7c7
    • Transparency log index: 145627643
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a4d27e09825c1b3c7a667adb500ce8b840e8fc9f630da8454b44cdd4fb0081bb
MD5 c75e9592e49d9a993ec22557bb845c6e
BLAKE2b-256 32082c7432ed26d194927ec07c1dfc08cdae5b6d302369df7fdda320d6393736

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: a4d27e09825c1b3c7a667adb500ce8b840e8fc9f630da8454b44cdd4fb0081bb
    • Transparency log index: 145627687
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9aaf564094c7db8687f2660605e099f3d3e6ea5e7135498486674fcb78e29165
MD5 fa7065ab95dcfa745c335cb5d73bbad2
BLAKE2b-256 ec12a3c43061d5e189def91c07472e64a569196687f60c2f86150e29a5692ce7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: 9aaf564094c7db8687f2660605e099f3d3e6ea5e7135498486674fcb78e29165
    • Transparency log index: 145627334
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8e7a7a00b6f9f18289dd563596f97ecaba6c777501a8ba04bf98e03087bcbc60
MD5 61e3d7d7bf40a71f38dd5fdb6ea8ebb3
BLAKE2b-256 184254d6527bcdea2909396849491b96a6fe595bd97ec43bdc522399c534ed33

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
    • Subject digest: 8e7a7a00b6f9f18289dd563596f97ecaba6c777501a8ba04bf98e03087bcbc60
    • Transparency log index: 145627452
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a9d866ec066c3616cacb8535dbda38bb1d470b17b25f0317c4540182bc886ce2
MD5 41cece16852a73062d38cac852e887dc
BLAKE2b-256 e9dbd88002c550f6405dbf98962cc3dc1c8e66de9c4f3246abebe1582b2f919f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: a9d866ec066c3616cacb8535dbda38bb1d470b17b25f0317c4540182bc886ce2
    • Transparency log index: 145627657
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 db19a6d160f093cbc8cd5ea2abad420b686f6c0e5fb4f7b41941ebc6a4f83cda
MD5 9545b953ded83e27fef782ed82d63dab
BLAKE2b-256 2c30ba97e50e5fe1f58a1012257e0cfac0cc09e548b63f81982546c6dac8f1e7

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp311-cp311-manylinux1_i686.manylinux_2_5_i686.whl
    • Subject digest: db19a6d160f093cbc8cd5ea2abad420b686f6c0e5fb4f7b41941ebc6a4f83cda
    • Transparency log index: 145627343
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 feba70a28a27d962e353e978dbb6afd798e711c04cb0b4c5e77e9d3779033a1a
MD5 6ee6f812b63d726e1f805addede72385
BLAKE2b-256 9dcbd2e612729676cbe022ad732aaed9c842ac459a70808a927f7f845cfc6dc1

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
    • Subject digest: feba70a28a27d962e353e978dbb6afd798e711c04cb0b4c5e77e9d3779033a1a
    • Transparency log index: 145627500
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 91cec0ad755bd786c9f769ce8d843af955df6a8e56b17658771b2d5cb34a3ff8
MD5 08136092b67b180e6d06e4d317432321
BLAKE2b-256 f301ac41fe6d402da0ff454e2abaee6b8cc29ad2c97cf985f503e46ca7724aca

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
    • Subject digest: 91cec0ad755bd786c9f769ce8d843af955df6a8e56b17658771b2d5cb34a3ff8
    • Transparency log index: 145627696
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: jiter-0.7.0-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 202.0 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 2221d5603c139f6764c54e37e7c6960c469cbcd76928fb10d15023ba5903f94b
MD5 061195e4169144130ec51b6cf1b61079
BLAKE2b-256 ecf909bc1517db057653f899ff0b9413322e1c38d925f7e72932984564ec3831

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp310-none-win_amd64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp310-none-win_amd64.whl
    • Subject digest: 2221d5603c139f6764c54e37e7c6960c469cbcd76928fb10d15023ba5903f94b
    • Transparency log index: 145627559
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: jiter-0.7.0-cp310-none-win32.whl
  • Upload date:
  • Size: 198.4 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0-cp310-none-win32.whl
Algorithm Hash digest
SHA256 243f38eb4072763c54de95b14ad283610e0cd3bf26393870db04e520f60eebb3
MD5 825249ea3c453139a2ebfc3ad005e47d
BLAKE2b-256 d855d2c31837a6d52980a3c16e732472a7215d6e56ecc57a192f6627db40d7f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp310-none-win32.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp310-none-win32.whl
    • Subject digest: 243f38eb4072763c54de95b14ad283610e0cd3bf26393870db04e520f60eebb3
    • Transparency log index: 145627624
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 cb316dacaf48c8c187cea75d0d7f835f299137e6fdd13f691dff8f92914015c7
MD5 b9f9fa7813eb7d0fa93370c65315b15e
BLAKE2b-256 31bf4e66350cbf146c86955ba25e0d91d4fa05cd544065e4abdb5b4ab64a0728

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp310-cp310-musllinux_1_1_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp310-cp310-musllinux_1_1_x86_64.whl
    • Subject digest: cb316dacaf48c8c187cea75d0d7f835f299137e6fdd13f691dff8f92914015c7
    • Transparency log index: 145627364
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a5cb97e35370bde7aa0d232a7f910f5a0fbbc96bc0a7dbaa044fd5cd6bcd7ec3
MD5 309b70596c15232d2ccbcc40b2428357
BLAKE2b-256 ef2b3b776823ed958b38b1ae0480446b2c6208d5861f1f7f638cd5b6238ba90b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp310-cp310-musllinux_1_1_aarch64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp310-cp310-musllinux_1_1_aarch64.whl
    • Subject digest: a5cb97e35370bde7aa0d232a7f910f5a0fbbc96bc0a7dbaa044fd5cd6bcd7ec3
    • Transparency log index: 145627323
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 43a87a9f586636e1f0dd3651a91f79b491ea0d9fd7cbbf4f5c463eebdc48bda7
MD5 77a2f974a73a366c0f80d800fc6a5386
BLAKE2b-256 814ec8f250bb19be3f5917a190185aa427a2d3988ace0fa14d1c378a9ba646d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 43a87a9f586636e1f0dd3651a91f79b491ea0d9fd7cbbf4f5c463eebdc48bda7
    • Transparency log index: 145627318
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c9e82daaa1b0a68704f9029b81e664a5a9de3e466c2cbaabcda5875f961702e7
MD5 47558fad6180fd1feebb04ac56e04f47
BLAKE2b-256 43557e24c63008273fd7fa7f213b2eb4c8b7b9ea06f42bb4d241c6d15f00e1bd

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: c9e82daaa1b0a68704f9029b81e664a5a9de3e466c2cbaabcda5875f961702e7
    • Transparency log index: 145627402
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8b16c35c846a323ce9067170d5ab8c31ea3dbcab59c4f7608bbbf20c2c3b43f
MD5 0d0f835efff7de0eaeb054c6646ea9a5
BLAKE2b-256 6e7870361666aef02757a66f6c353c4a8f48446abcccc67c571637559266144e

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: a8b16c35c846a323ce9067170d5ab8c31ea3dbcab59c4f7608bbbf20c2c3b43f
    • Transparency log index: 145627546
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d89008fb47043a469f97ad90840b97ba54e7c3d62dc7cbb6cbf938bd0caf71d
MD5 b00332626e4a539d980b43f00650aecc
BLAKE2b-256 d63c4fa3cd08d59cc0f7759274ce77c84b10d879cf2cb65638ae71c76557872b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
    • Subject digest: 1d89008fb47043a469f97ad90840b97ba54e7c3d62dc7cbb6cbf938bd0caf71d
    • Transparency log index: 145627665
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 662d5d3cca58ad6af7a3c6226b641c8655de5beebcb686bfde0df0f21421aafa
MD5 d84dce02bf517ba8e3b550a56e3b6b39
BLAKE2b-256 1ce564d40bc0645af6047247c5f2d1f2af030fc6d543a375401e13856eaa7d13

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: 662d5d3cca58ad6af7a3c6226b641c8655de5beebcb686bfde0df0f21421aafa
    • Transparency log index: 145627358
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2ec05b1615f96cc3e4901678bc863958611584072967d9962f9e571d60711d52
MD5 48472df829dfd764aaad31a11aa93c69
BLAKE2b-256 a20eedce16ed30322581da359f91d8d0b5366119215fd60f27ac3fa79d05a1dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp310-cp310-manylinux1_i686.manylinux_2_5_i686.whl
    • Subject digest: 2ec05b1615f96cc3e4901678bc863958611584072967d9962f9e571d60711d52
    • Transparency log index: 145627503
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 979ec4711c2e37ac949561858bd42028884c9799516a923e1ff0b501ef341a4a
MD5 7a4ef9abb9097d7a2ad251bafbadc51f
BLAKE2b-256 5e327f26c2721ecd3232589a37d7693360d96505ab07b786a8a6abe4b6a8f6c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
    • Subject digest: 979ec4711c2e37ac949561858bd42028884c9799516a923e1ff0b501ef341a4a
    • Transparency log index: 145627443
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e14027f61101b3f5e173095d9ecf95c1cac03ffe45a849279bde1d97e559e314
MD5 d5b6a7a0e2beaff226ee8c3a331ed488
BLAKE2b-256 64ffedc3f8a58813a6fc4e686019bcf04a4ac6525953536c2d66c3aeea0183e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp310-cp310-macosx_10_12_x86_64.whl
    • Subject digest: e14027f61101b3f5e173095d9ecf95c1cac03ffe45a849279bde1d97e559e314
    • Transparency log index: 145627523
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: jiter-0.7.0-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 202.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 abf596f951370c648f37aa9899deab296c42a3829736e598b0dd10b08f77a44d
MD5 5014066d3e3b5a7a539713b49bfb972a
BLAKE2b-256 7dc36307260481dac74a0c0531f1337b38b0212805badcb0098568a012c15226

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp39-none-win_amd64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp39-none-win_amd64.whl
    • Subject digest: abf596f951370c648f37aa9899deab296c42a3829736e598b0dd10b08f77a44d
    • Transparency log index: 145627412
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: jiter-0.7.0-cp39-none-win32.whl
  • Upload date:
  • Size: 199.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ebc30ae2ce4bc4986e1764c404b4ea1924f926abf02ce92516485098f8545374
MD5 46b6a35974bb9160fb66c159fb87909f
BLAKE2b-256 c537828e42ee504645e0e9cd8c0d68bff6186b675c96c25e6d6ce8b7d00f2a98

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp39-none-win32.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp39-none-win32.whl
    • Subject digest: ebc30ae2ce4bc4986e1764c404b4ea1924f926abf02ce92516485098f8545374
    • Transparency log index: 145627576
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 836f03dea312967635233d826f783309b98cfd9ccc76ac776e224cfcef577862
MD5 4e9171502c80f29d0457e514940634a7
BLAKE2b-256 f3a635c076ca4363617a4bed31aaca23cdb05885421087b2d1d221bb1cca5d5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp39-cp39-musllinux_1_1_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp39-cp39-musllinux_1_1_x86_64.whl
    • Subject digest: 836f03dea312967635233d826f783309b98cfd9ccc76ac776e224cfcef577862
    • Transparency log index: 145627296
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 ae60ec89037a78d60bbf3d8b127f1567769c8fa24886e0abed3f622791dea478
MD5 4c40dbb6f62e3b9949a7d0766113309c
BLAKE2b-256 586b44b7529589cd83aca0633427c5604a5562a299af83ae4e3dc83db5dfd226

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp39-cp39-musllinux_1_1_aarch64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp39-cp39-musllinux_1_1_aarch64.whl
    • Subject digest: ae60ec89037a78d60bbf3d8b127f1567769c8fa24886e0abed3f622791dea478
    • Transparency log index: 145627303
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c138414839effbf30d185e30475c6dc8a16411a1e3681e5fd4605ab1233ac67a
MD5 f9187a773a081e43d6501f13590be603
BLAKE2b-256 017cab36796c093133578b3017518d33a57a420d8e1ef58d8b2dfcb02fe24e4c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: c138414839effbf30d185e30475c6dc8a16411a1e3681e5fd4605ab1233ac67a
    • Transparency log index: 145627398
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 189cc4262a92e33c19d4fd24018f5890e4e6da5b2581f0059938877943f8298c
MD5 52c718e17e91c9f853a95fa3254b005d
BLAKE2b-256 c447bc3fb928663b573ec8f238ed563a94544d0b78c7980293500d23d90f6b2a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: 189cc4262a92e33c19d4fd24018f5890e4e6da5b2581f0059938877943f8298c
    • Transparency log index: 145627611
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b6045fa0527129218cdcd8a8b839f678219686055f31ebab35f87d354d9c36e
MD5 a10d6c6f4af95196384c302c5201a2ad
BLAKE2b-256 0be0d229aba559680be82bf04c5770de53d99d43c0d3566e12ef9c1a477a025f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: 7b6045fa0527129218cdcd8a8b839f678219686055f31ebab35f87d354d9c36e
    • Transparency log index: 145627631
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 17ecb1a578a56e97a043c72b463776b5ea30343125308f667fb8fce4b3796735
MD5 0d2f20794263bedfa35015ad22b4a8bf
BLAKE2b-256 22c72f2184af8668ea970851c4dd1116bd255fd45d6439d70e723ca4af38e4e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
    • Subject digest: 17ecb1a578a56e97a043c72b463776b5ea30343125308f667fb8fce4b3796735
    • Transparency log index: 145627307
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a282e1e8a396dabcea82d64f9d05acf7efcf81ecdd925b967020dcb0e671c103
MD5 96fc3a4584c294bf24d4638e43b07b82
BLAKE2b-256 6a98c2f5593b45fd7b14e8fb8fbf20ca16085cec4b7fa156de11923d5ce0283c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: a282e1e8a396dabcea82d64f9d05acf7efcf81ecdd925b967020dcb0e671c103
    • Transparency log index: 145627704
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2791604acef33da6b72d5ecf885a32384bcaf9aa1e4be32737f3b8b9588eef6a
MD5 900c2fba9e836861cec5332ea97db935
BLAKE2b-256 2d890658f3210b79c23f3def9a0b16e8cd24972730dc0abb47fd7ab71656917c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp39-cp39-manylinux1_i686.manylinux_2_5_i686.whl
    • Subject digest: 2791604acef33da6b72d5ecf885a32384bcaf9aa1e4be32737f3b8b9588eef6a
    • Transparency log index: 145627510
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b5be919bacd73ca93801c3042bce6e95cb9c555a45ca83617b9b6c89df03b9c2
MD5 384932291d173ea4c13421588e667165
BLAKE2b-256 22b743de43067e48309c8a58f1c2a8e28b1172f7abe490aba72b7c189ef77ff6

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp39-cp39-macosx_11_0_arm64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp39-cp39-macosx_11_0_arm64.whl
    • Subject digest: b5be919bacd73ca93801c3042bce6e95cb9c555a45ca83617b9b6c89df03b9c2
    • Transparency log index: 145627552
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp39-cp39-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c9b669ff6f8ba08270dee9ccf858d3b0203b42314a428a1676762f2d390fbb64
MD5 bbc486c87cd4aa9adc69e2c9abe7f2d1
BLAKE2b-256 49d1fd1e118236357879d8832c7d58cdb9f6f11084cd970ed0387baeacf94f73

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp39-cp39-macosx_10_12_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp39-cp39-macosx_10_12_x86_64.whl
    • Subject digest: c9b669ff6f8ba08270dee9ccf858d3b0203b42314a428a1676762f2d390fbb64
    • Transparency log index: 145627645
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: jiter-0.7.0-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 191.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 b928c76a422ef3d0c85c5e98c498ce3421b313c5246199541e125b52953e1bc0
MD5 bec43159103f8388334fe2172022082d
BLAKE2b-256 15b544d1b8bfbdd1b9da5c9f71e1b362fd4f23a0ec0140ed63db476c72532809

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp38-none-win_amd64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp38-none-win_amd64.whl
    • Subject digest: b928c76a422ef3d0c85c5e98c498ce3421b313c5246199541e125b52953e1bc0
    • Transparency log index: 145627532
    • Transparency log integration time:

File details

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

File metadata

  • Download URL: jiter-0.7.0-cp38-none-win32.whl
  • Upload date:
  • Size: 198.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for jiter-0.7.0-cp38-none-win32.whl
Algorithm Hash digest
SHA256 897745f230350dcedb8d1ebe53e33568d48ea122c25e6784402b6e4e88169be7
MD5 ef812d0fcaa8af46bc2e2c888e5877b8
BLAKE2b-256 ccf7bb9a542b6a0303dd47c7e4c0073185e57e66e48fbc7154620e2888846b60

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp38-none-win32.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp38-none-win32.whl
    • Subject digest: 897745f230350dcedb8d1ebe53e33568d48ea122c25e6784402b6e4e88169be7
    • Transparency log index: 145627392
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 aca4d950863b1c238e315bf159466e064c98743eef3bd0ff9617e48ff63a4715
MD5 af549f9a3bb774f3bc699dffd6932b19
BLAKE2b-256 ebd98549473e6b9795ea3ce5de507650da18a1dd192536e252bb9533c2ea5103

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp38-cp38-musllinux_1_1_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp38-cp38-musllinux_1_1_x86_64.whl
    • Subject digest: aca4d950863b1c238e315bf159466e064c98743eef3bd0ff9617e48ff63a4715
    • Transparency log index: 145627516
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 d1ef6bb66041f2514739240568136c81b9dcc64fd14a43691c17ea793b6535c0
MD5 797dd981aa3c99d1a5e898024a329605
BLAKE2b-256 fa2f1d02f18c87e317b1146f3cceef5540b1c1ea00f505aa858048c25eed0f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp38-cp38-musllinux_1_1_aarch64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp38-cp38-musllinux_1_1_aarch64.whl
    • Subject digest: d1ef6bb66041f2514739240568136c81b9dcc64fd14a43691c17ea793b6535c0
    • Transparency log index: 145627247
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 48592c26ea72d3e71aa4bea0a93454df907d80638c3046bb0705507b6704c0d7
MD5 923f4f45949f8fa6e19a62a83f1ee3fc
BLAKE2b-256 1c403736ea1fc5e46b40539c4b9030a5f03a77d5decd55cdd6d7aafcd65c52f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
    • Subject digest: 48592c26ea72d3e71aa4bea0a93454df907d80638c3046bb0705507b6704c0d7
    • Transparency log index: 145627487
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 63ee47a149d698796a87abe445fc8dee21ed880f09469700c76c8d84e0d11efd
MD5 f4ab64b5015e9dc47c8854ef2af5484f
BLAKE2b-256 dea45eb8ee67705185b6fe88710bfc72a44c0b40a20ca2c3835cfc1c56a01d79

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl
    • Subject digest: 63ee47a149d698796a87abe445fc8dee21ed880f09469700c76c8d84e0d11efd
    • Transparency log index: 145627592
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc5190ea1113ee6f7252fa8a5fe5a6515422e378356c950a03bbde5cafbdbaab
MD5 f55b674599ffd58e98c7c974abf0eb5a
BLAKE2b-256 149cffed0b9ed8fea2be803b66fbf6f69c8aa705f71d70616b646f25d469c2fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
    • Subject digest: cc5190ea1113ee6f7252fa8a5fe5a6515422e378356c950a03bbde5cafbdbaab
    • Transparency log index: 145627384
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0cf5d42beb3514236459454e3287db53d9c4d56c4ebaa3e9d0efe81b19495129
MD5 0429d54bd2ca69e880a732fbf6544e77
BLAKE2b-256 2ae77aa4409edd98ec30dd93ce648c6d7befc3d4c5b3f8642fde82cf3371b141

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
    • Subject digest: 0cf5d42beb3514236459454e3287db53d9c4d56c4ebaa3e9d0efe81b19495129
    • Transparency log index: 145627309
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f367488c3b9453eab285424c61098faa1cab37bb49425e69c8dca34f2dfe7d69
MD5 55acbe53f07245014f0c0659800d7447
BLAKE2b-256 e1955387d32d1f6e93aa61225bcbb024146a9e5bfbd404d47adf3e2bf74b700a

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
    • Subject digest: f367488c3b9453eab285424c61098faa1cab37bb49425e69c8dca34f2dfe7d69
    • Transparency log index: 145627286
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 79fef541199bd91cfe8a74529ecccb8eaf1aca38ad899ea582ebbd4854af1e51
MD5 948d40ff38df656d5f03aa4f92342bb5
BLAKE2b-256 142eaf5f1eb7906287eeb343a11fe577883a2eb5271c2d019b182ae5efdff97f

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp38-cp38-manylinux1_i686.manylinux_2_5_i686.whl
    • Subject digest: 79fef541199bd91cfe8a74529ecccb8eaf1aca38ad899ea582ebbd4854af1e51
    • Transparency log index: 145627600
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4640722b1bef0f6e342fe4606aafaae0eb4f4be5c84355bb6867f34400f6688
MD5 635f1f61850c6327ee85d700b1b8d071
BLAKE2b-256 d42643ea0cecea06b824cddd4e295d0d3e70a9e6dc29810775d26a1e702b97e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp38-cp38-macosx_11_0_arm64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp38-cp38-macosx_11_0_arm64.whl
    • Subject digest: e4640722b1bef0f6e342fe4606aafaae0eb4f4be5c84355bb6867f34400f6688
    • Transparency log index: 145627639
    • Transparency log integration time:

File details

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

File metadata

File hashes

Hashes for jiter-0.7.0-cp38-cp38-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9c62c737b5368e51e74960a08fe1adc807bd270227291daede78db24d5fbf556
MD5 57f80c458a4399d071bb8351f39bfbc6
BLAKE2b-256 c10f4a9fe8ca3c46d2f6909dd807e1e4834584958845e205cd5e6dd8e872e03c

See more details on using hashes here.

Provenance

The following attestation bundles were made for jiter-0.7.0-cp38-cp38-macosx_10_12_x86_64.whl:

Publisher: GitHub
  • Repository: pydantic/jiter
  • Workflow: ci.yml
Attestations:
  • Statement type: https://in-toto.io/Statement/v1
    • Predicate type: https://docs.pypi.org/attestations/publish/v1
    • Subject name: jiter-0.7.0-cp38-cp38-macosx_10_12_x86_64.whl
    • Subject digest: 9c62c737b5368e51e74960a08fe1adc807bd270227291daede78db24d5fbf556
    • Transparency log index: 145627493
    • Transparency log integration time:

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