jiter 0.9.0
pip install jiter
Released:
Fast iterable JSON parser.
Navigation
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIMeta
- License: MIT License (MIT)
- Author: Samuel Colvin <samuel@pydantic.dev>
- Tags JSON, parsing, deserialization, iter
- Requires: Python >=3.8
Classifiers
- Development Status
- Environment
- Framework
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
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(
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
Verified details
These details have been verified by PyPIProject links
GitHub Statistics
Maintainers
Unverified details
These details have not been verified by PyPIMeta
- License: MIT License (MIT)
- Author: Samuel Colvin <samuel@pydantic.dev>
- Tags JSON, parsing, deserialization, iter
- Requires: Python >=3.8
Classifiers
- Development Status
- Environment
- Framework
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Uploaded
CPython 3.13t
Windows x86-64
Uploaded
CPython 3.13t
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13t
macOS 11.0+ ARM64
Uploaded
CPython 3.13
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.13
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.13
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.13
macOS 11.0+ ARM64
Uploaded
CPython 3.13
macOS 10.12+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.12
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.12
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.12
macOS 11.0+ ARM64
Uploaded
CPython 3.12
macOS 10.12+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.11
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.11
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.11
macOS 11.0+ ARM64
Uploaded
CPython 3.11
macOS 10.12+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.10
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.10
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.10
macOS 11.0+ ARM64
Uploaded
CPython 3.10
macOS 10.12+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.9
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.9
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.9
macOS 11.0+ ARM64
Uploaded
CPython 3.9
macOS 10.12+ x86-64
Uploaded
CPython 3.8
musllinux: musl 1.1+ x86-64
Uploaded
CPython 3.8
musllinux: musl 1.1+ ARM64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ s390x
Uploaded
CPython 3.8
manylinux: glibc 2.17+ ppc64le
Uploaded
CPython 3.8
manylinux: glibc 2.17+ ARMv7l
Uploaded
CPython 3.8
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.8
manylinux: glibc 2.5+ i686
Uploaded
CPython 3.8
macOS 11.0+ ARM64
Uploaded
CPython 3.8
macOS 10.12+ x86-64
File details
Details for the file jiter-0.9.0.tar.gz
.
File metadata
- Download URL: jiter-0.9.0.tar.gz
- Upload date:
- Size: 162.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aadba0964deb424daa24492abc3d229c60c4a31bfee205aedbf1acc7639d7893 |
|
MD5 | dc0687643215902393b65f31fd832b47 |
|
BLAKE2b-256 | 1ec2e4562507f52f0af7036da125bb699602ead37a2332af0788f8e0a3417f36 |
Provenance
The following attestation bundles were made for jiter-0.9.0.tar.gz
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0.tar.gz
- Subject digest:
aadba0964deb424daa24492abc3d229c60c4a31bfee205aedbf1acc7639d7893
- Sigstore transparency entry: 179859451
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313t-win_amd64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 206.9 kB
- Tags: CPython 3.13t, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6f7838bc467ab7e8ef9f387bd6de195c43bad82a569c1699cb822f6609dd4cdf |
|
MD5 | b171ecf5e0856ecfb3d0474c6ce92d63 |
|
BLAKE2b-256 | ee473729f00f35a696e68da15d64eb9283c330e776f3b5789bac7f2c0c4df209 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313t-win_amd64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313t-win_amd64.whl
- Subject digest:
6f7838bc467ab7e8ef9f387bd6de195c43bad82a569c1699cb822f6609dd4cdf
- Sigstore transparency entry: 179859626
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 350.3 kB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 062b756ceb1d40b0b28f326cba26cfd575a4918415b036464a52f08632731e5a |
|
MD5 | cef65c677dac94a031c48c40629dc7d2 |
|
BLAKE2b-256 | f939a3a1571712c2bf6ec4c657f0d66da114a63a2e32b7e4eb8e0b83295ee034 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
062b756ceb1d40b0b28f326cba26cfd575a4918415b036464a52f08632731e5a
- Sigstore transparency entry: 179859546
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313t-macosx_11_0_arm64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313t-macosx_11_0_arm64.whl
- Upload date:
- Size: 317.3 kB
- Tags: CPython 3.13t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f0b2827fb88dda2cbecbbc3e596ef08d69bda06c6f57930aec8e79505dc17001 |
|
MD5 | 45d373148146c5399d3e5ae7d64eeb21 |
|
BLAKE2b-256 | 780f77a63ca7aa5fed9a1b9135af57e190d905bcd3702b36aca46a01090d39ad |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313t-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313t-macosx_11_0_arm64.whl
- Subject digest:
f0b2827fb88dda2cbecbbc3e596ef08d69bda06c6f57930aec8e79505dc17001
- Sigstore transparency entry: 179859458
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 204.9 kB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c8ae3bf27cd1ac5e6e8b7a27487bf3ab5f82318211ec2e1346a5b058756361f7 |
|
MD5 | 3e86164e10b016f0c71e5cbef4a0802b |
|
BLAKE2b-256 | f41c0c996fd90639acda75ed7fa698ee5fd7d80243057185dc2f63d4c1c9f6b9 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313-win_amd64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313-win_amd64.whl
- Subject digest:
c8ae3bf27cd1ac5e6e8b7a27487bf3ab5f82318211ec2e1346a5b058756361f7
- Sigstore transparency entry: 179859473
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313-win32.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313-win32.whl
- Upload date:
- Size: 206.5 kB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f7e6850991f3940f62d387ccfa54d1a92bd4bb9f89690b53aea36b4364bcab53 |
|
MD5 | ee363224ab9837035c9ce4705c901d85 |
|
BLAKE2b-256 | a03c8a56f6d547731a0b4410a2d9d16bf39c861046f91f57c98f7cab3d2aa9ce |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313-win32.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313-win32.whl
- Subject digest:
f7e6850991f3940f62d387ccfa54d1a92bd4bb9f89690b53aea36b4364bcab53
- Sigstore transparency entry: 179859488
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 512.2 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e057adb0cd1bd39606100be0eafe742de2de88c79df632955b9ab53a086b3c8d |
|
MD5 | 6173b30c374bad80fd5be67282fd9347 |
|
BLAKE2b-256 | 36fd4f0cd3abe83ce208991ca61e7e5df915aa35b67f1c0633eb7cf2f2e88ec7 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313-musllinux_1_1_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313-musllinux_1_1_x86_64.whl
- Subject digest:
e057adb0cd1bd39606100be0eafe742de2de88c79df632955b9ab53a086b3c8d
- Sigstore transparency entry: 179859634
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 520.3 kB
- Tags: CPython 3.13, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6a99bed9fbb02f5bed416d137944419a69aa4c423e44189bc49718859ea83bc5 |
|
MD5 | 789d2160f5e5624d6287f8d0a75f63e5 |
|
BLAKE2b-256 | 162f82e1c6020db72f397dd070eec0c85ebc4df7c88967bc86d3ce9864148f28 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313-musllinux_1_1_aarch64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313-musllinux_1_1_aarch64.whl
- Subject digest:
6a99bed9fbb02f5bed416d137944419a69aa4c423e44189bc49718859ea83bc5
- Sigstore transparency entry: 179859691
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 352.4 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3f22238da568be8bbd8e0650e12feeb2cfea15eda4f9fc271d3b362a4fa0604d |
|
MD5 | c0e52ffd50e359aa6876c098a4416a11 |
|
BLAKE2b-256 | 1187e084ce261950c1861773ab534d49127d1517b629478304d328493f980791 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
3f22238da568be8bbd8e0650e12feeb2cfea15eda4f9fc271d3b362a4fa0604d
- Sigstore transparency entry: 179859720
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 393.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 11509bfecbc319459647d4ac3fd391d26fdf530dad00c13c4dadabf5b81f01a4 |
|
MD5 | b6340cfe1212f870d1a8a45c7f99a88c |
|
BLAKE2b-256 | aeb31ee26b12b2693bd3f0b71d3188e4e5d817b12e3c630a09e099e0a89e28fa |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
11509bfecbc319459647d4ac3fd391d26fdf530dad00c13c4dadabf5b81f01a4
- Sigstore transparency entry: 179859661
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 405.1 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2228eaaaa111ec54b9e89f7481bffb3972e9059301a878d085b2b449fbbde635 |
|
MD5 | d9010596bfe6807c27eb10d56a5dcc1a |
|
BLAKE2b-256 | 758553a3edc616992fe4af6814c25f91ee3b1e22f7678e979b6ea82d3bc0667e |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
2228eaaaa111ec54b9e89f7481bffb3972e9059301a878d085b2b449fbbde635
- Sigstore transparency entry: 179859550
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 363.7 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a1be73d8982bdc278b7b9377426a4b44ceb5c7952073dd7488e4ae96b88e1103 |
|
MD5 | 7379977b21b59b1747d2c68950681f07 |
|
BLAKE2b-256 | 3d5ebbdbb63305bcc01006de683b6228cd061458b9b7bb9b8d9bc348a58e5dc2 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
a1be73d8982bdc278b7b9377426a4b44ceb5c7952073dd7488e4ae96b88e1103
- Sigstore transparency entry: 179859580
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 341.3 kB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 40d8da8629ccae3606c61d9184970423655fb4e33d03330bcdfe52d234d32f69 |
|
MD5 | 54b32336fd6860c0f02df5ad72b430a1 |
|
BLAKE2b-256 | 6a385888b43fc01102f733f085673c4f0be5a298f69808ec63de55051754e390 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
40d8da8629ccae3606c61d9184970423655fb4e33d03330bcdfe52d234d32f69
- Sigstore transparency entry: 179859624
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 384.2 kB
- Tags: CPython 3.13, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17f5d55eb856597607562257c8e36c42bc87f16bef52ef7129b7da11afc779f3 |
|
MD5 | 2b2994f2dbf1f2a105c14eff5d0e39a0 |
|
BLAKE2b-256 | f0067dca84b04987e9df563610aa0bc154ea176e50358af532ab40ffb87434df |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313-manylinux1_i686.manylinux_2_5_i686.whl
- Subject digest:
17f5d55eb856597607562257c8e36c42bc87f16bef52ef7129b7da11afc779f3
- Sigstore transparency entry: 179859594
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 318.2 kB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 387b22fbfd7a62418d5212b4638026d01723761c75c1c8232a8b8c37c2f1003b |
|
MD5 | f0fbfbedf052f33f55b1941f7538b569 |
|
BLAKE2b-256 | 13aa7a890dfe29c84c9a82064a9fe36079c7c0309c91b70c380dc138f9bea44a |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313-macosx_11_0_arm64.whl
- Subject digest:
387b22fbfd7a62418d5212b4638026d01723761c75c1c8232a8b8c37c2f1003b
- Sigstore transparency entry: 179859603
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 308.2 kB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2764891d3f3e8b18dce2cff24949153ee30c9239da7c00f032511091ba688ff7 |
|
MD5 | 2e324bc3eeee6ddbd75107577dcd9e65 |
|
BLAKE2b-256 | e71b4cd165c362e8f2f520fdb43245e2b414f42a255921248b4f8b9c8d871ff1 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp313-cp313-macosx_10_12_x86_64.whl
- Subject digest:
2764891d3f3e8b18dce2cff24949153ee30c9239da7c00f032511091ba688ff7
- Sigstore transparency entry: 179859584
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 208.0 kB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 099500d07b43f61d8bd780466d429c45a7b25411b334c60ca875fa775f68ccb0 |
|
MD5 | f0c0156be8b1134e6c5c2d06ec0bdb60 |
|
BLAKE2b-256 | cd9d742b289016d155f49028fe1bfbeb935c9bf0ffeefdf77daf4a63a42bb72b |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp312-cp312-win_amd64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp312-cp312-win_amd64.whl
- Subject digest:
099500d07b43f61d8bd780466d429c45a7b25411b334c60ca875fa775f68ccb0
- Sigstore transparency entry: 179859699
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp312-cp312-win32.whl
.
File metadata
- Download URL: jiter-0.9.0-cp312-cp312-win32.whl
- Upload date:
- Size: 207.1 kB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 699edfde481e191d81f9cf6d2211debbfe4bd92f06410e7637dffb8dd5dfde06 |
|
MD5 | a9104f08afdf5ed00ed99208f65dac64 |
|
BLAKE2b-256 | 78f3fdc43547a9ee6e93c837685da704fb6da7dba311fc022e2766d5277dfde5 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp312-cp312-win32.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp312-cp312-win32.whl
- Subject digest:
699edfde481e191d81f9cf6d2211debbfe4bd92f06410e7637dffb8dd5dfde06
- Sigstore transparency entry: 179859554
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 512.8 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f48e86b57bc711eb5acdfd12b6cb580a59cc9a993f6e7dcb6d8b50522dcd50d |
|
MD5 | 9229bd50517d82ba3b8ccd78af1f7a5d |
|
BLAKE2b-256 | 951e65680c7488bd2365dbd2980adaf63c562d3d41d3faac192ebc7ef5b4ae25 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp312-cp312-musllinux_1_1_x86_64.whl
- Subject digest:
9f48e86b57bc711eb5acdfd12b6cb580a59cc9a993f6e7dcb6d8b50522dcd50d
- Sigstore transparency entry: 179859567
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp312-cp312-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp312-cp312-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 520.7 kB
- Tags: CPython 3.12, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 528b6b71745e7326eed73c53d4aa57e2a522242320b6f7d65b9c5af83cf49b6e |
|
MD5 | a49a884daf51ac3481f180050b7096be |
|
BLAKE2b-256 | eb8f8a708bc7fd87b8a5d861f1c118a995eccbe6d672fe10c9753e67362d0dd0 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp312-cp312-musllinux_1_1_aarch64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp312-cp312-musllinux_1_1_aarch64.whl
- Subject digest:
528b6b71745e7326eed73c53d4aa57e2a522242320b6f7d65b9c5af83cf49b6e
- Sigstore transparency entry: 179859455
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 351.3 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fca1a02ad60ec30bb230f65bc01f611c8608b02d269f998bc29cca8619a919dc |
|
MD5 | 367a5f7283438e5d2a773e858063f371 |
|
BLAKE2b-256 | 876722728a86ef53589c3720225778f7c5fdb617080e3deaed58b04789418212 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
fca1a02ad60ec30bb230f65bc01f611c8608b02d269f998bc29cca8619a919dc
- Sigstore transparency entry: 179859494
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: jiter-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 395.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 203f28a72a05ae0e129b3ed1f75f56bc419d5f91dfacd057519a8bd137b00c42 |
|
MD5 | 6f3249982d74da5ddbcdf5c0d272b8dd |
|
BLAKE2b-256 | 133a72861883e11a36d6aa314b4922125f6ae90bdccc225cd96d24cc78a66385 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp312-cp312-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
203f28a72a05ae0e129b3ed1f75f56bc419d5f91dfacd057519a8bd137b00c42
- Sigstore transparency entry: 179859526
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: jiter-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 407.0 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 04e8ffa3c353b1bc4134f96f167a2082494351e42888dfcf06e944f2729cbe1d |
|
MD5 | 40e53f047c842024c7169185b4521c91 |
|
BLAKE2b-256 | 9bca978cc3183113b8e4484cc7e210a9ad3c6614396e7abd5407ea8aa1458eef |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp312-cp312-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
04e8ffa3c353b1bc4134f96f167a2082494351e42888dfcf06e944f2729cbe1d
- Sigstore transparency entry: 179859654
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: jiter-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 364.2 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2e89dc075c1fef8fa9be219e249f14040270dbc507df4215c324a1839522ea75 |
|
MD5 | 5c28d3b12580efaa9f009e7f4040267d |
|
BLAKE2b-256 | 356fb8f89ec5398b2b0d344257138182cc090302854ed63ed9c9051e9c673441 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp312-cp312-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
2e89dc075c1fef8fa9be219e249f14040270dbc507df4215c324a1839522ea75
- Sigstore transparency entry: 179859679
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 341.8 kB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d726a3890a54561e55a9c5faea1f7655eda7f105bd165067575ace6e65f80bb2 |
|
MD5 | de6bc5aeeaf1d00d35940bf29473ef39 |
|
BLAKE2b-256 | abb809b73a793714726893e5d46d5c534a63709261af3d24444ad07885ce87cb |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
d726a3890a54561e55a9c5faea1f7655eda7f105bd165067575ace6e65f80bb2
- Sigstore transparency entry: 179859689
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: jiter-0.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 384.6 kB
- Tags: CPython 3.12, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 237e5cee4d5d2659aaf91bbf8ec45052cc217d9446070699441a91b386ae27dc |
|
MD5 | 5ba7b471ae93083ac8a18b68a33845e3 |
|
BLAKE2b-256 | 69b9f39728e2e2007276806d7a6609cda7fac44ffa28ca0d02c49a4f397cc0d9 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp312-cp312-manylinux1_i686.manylinux_2_5_i686.whl
- Subject digest:
237e5cee4d5d2659aaf91bbf8ec45052cc217d9446070699441a91b386ae27dc
- Sigstore transparency entry: 179859593
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 319.7 kB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 609cf3c78852f1189894383cf0b0b977665f54cb38788e3e6b941fa6d982c00e |
|
MD5 | a6291d6a88345122aaa15e28e81e3e77 |
|
BLAKE2b-256 | b001f775dfee50beb420adfd6baf58d1c4d437de41c9b666ddf127c065e5a488 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp312-cp312-macosx_11_0_arm64.whl
- Subject digest:
609cf3c78852f1189894383cf0b0b977665f54cb38788e3e6b941fa6d982c00e
- Sigstore transparency entry: 179859503
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 309.2 kB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7b46249cfd6c48da28f89eb0be3f52d6fdb40ab88e2c66804f546674e539ec11 |
|
MD5 | 1f68f70dc95815833efcd7b5ab5886f4 |
|
BLAKE2b-256 | afd7c55086103d6f29b694ec79156242304adf521577530d9031317ce5338c59 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp312-cp312-macosx_10_12_x86_64.whl
- Subject digest:
7b46249cfd6c48da28f89eb0be3f52d6fdb40ab88e2c66804f546674e539ec11
- Sigstore transparency entry: 179859695
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 210.1 kB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 923b54afdd697dfd00d368b7ccad008cccfeb1efb4e621f32860c75e9f25edbd |
|
MD5 | 6bd93520d4b11fca218dc5236fe83f3b |
|
BLAKE2b-256 | 4c475e0b94c603d8e54dd1faab439b40b832c277d3b90743e7835879ab663757 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp311-cp311-win_amd64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp311-cp311-win_amd64.whl
- Subject digest:
923b54afdd697dfd00d368b7ccad008cccfeb1efb4e621f32860c75e9f25edbd
- Sigstore transparency entry: 179859677
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp311-cp311-win32.whl
.
File metadata
- Download URL: jiter-0.9.0-cp311-cp311-win32.whl
- Upload date:
- Size: 206.9 kB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a25519efb78a42254d59326ee417d6f5161b06f5da827d94cf521fed961b1ff2 |
|
MD5 | aa0c953345528f1c1f12b56ed5ed0fac |
|
BLAKE2b-256 | a6e54e385945179bcf128fa10ad8dca9053d717cbe09e258110e39045c881fe5 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp311-cp311-win32.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp311-cp311-win32.whl
- Subject digest:
a25519efb78a42254d59326ee417d6f5161b06f5da827d94cf521fed961b1ff2
- Sigstore transparency entry: 179859697
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 512.6 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 42f8a68a69f047b310319ef8e2f52fdb2e7976fb3313ef27df495cf77bcad965 |
|
MD5 | 5a319ea05d3b65f71c79ea16f11e02d7 |
|
BLAKE2b-256 | 54d59f51dc90985e9eb251fbbb747ab2b13b26601f16c595a7b8baba964043bd |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp311-cp311-musllinux_1_1_x86_64.whl
- Subject digest:
42f8a68a69f047b310319ef8e2f52fdb2e7976fb3313ef27df495cf77bcad965
- Sigstore transparency entry: 179859499
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 520.7 kB
- Tags: CPython 3.11, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd5ab5ddc11418dce28343123644a100f487eaccf1de27a459ab36d6cca31043 |
|
MD5 | a67aa246e953985db561cf488ff43aa7 |
|
BLAKE2b-256 | db555dcd2693794d8e6f4889389ff66ef3be557a77f8aeeca8973a97a7c00557 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp311-cp311-musllinux_1_1_aarch64.whl
- Subject digest:
dd5ab5ddc11418dce28343123644a100f487eaccf1de27a459ab36d6cca31043
- Sigstore transparency entry: 179859708
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 351.8 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c98d27330fdfb77913c1097a7aab07f38ff2259048949f499c9901700789ac15 |
|
MD5 | 7de6ed00223104a13f27e6d882ba75f7 |
|
BLAKE2b-256 | bebd976b458add04271ebb5a255e992bd008546ea04bb4dcadc042a16279b4b4 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
c98d27330fdfb77913c1097a7aab07f38ff2259048949f499c9901700789ac15
- Sigstore transparency entry: 179859524
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: jiter-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 396.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3c7adb66f899ffa25e3c92bfcb593391ee1947dbdd6a9a970e0d7e713237d572 |
|
MD5 | 99ab1ee04001bc457ba729f5f958a745 |
|
BLAKE2b-256 | dae9c9e6546c817ab75a1a7dab6dcc698e62e375e1017113e8e983fccbd56115 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp311-cp311-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
3c7adb66f899ffa25e3c92bfcb593391ee1947dbdd6a9a970e0d7e713237d572
- Sigstore transparency entry: 179859468
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: jiter-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 406.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2221176dfec87f3470b21e6abca056e6b04ce9bff72315cb0b243ca9e835a4b5 |
|
MD5 | fd8a3bc9c6ddfec0683929baacbd052e |
|
BLAKE2b-256 | 322c6019587e6f5844c612ae18ca892f4cd7b3d8bbf49461ed29e384a0f13d98 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp311-cp311-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
2221176dfec87f3470b21e6abca056e6b04ce9bff72315cb0b243ca9e835a4b5
- Sigstore transparency entry: 179859559
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: jiter-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 365.1 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5f4c677c424dc76684fea3e7285a7a2a7493424bea89ac441045e6a1fb1d7b3b |
|
MD5 | 21e58f06b7eac3139032d2b34b8c4706 |
|
BLAKE2b-256 | a84e754ebce77cff9ab34d1d0fa0fe98f5d42590fd33622509a3ba6ec37ff466 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp311-cp311-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
5f4c677c424dc76684fea3e7285a7a2a7493424bea89ac441045e6a1fb1d7b3b
- Sigstore transparency entry: 179859600
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 341.7 kB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 51c4e1a4f8ea84d98b7b98912aa4290ac3d1eabfde8e3c34541fae30e9d1f08b |
|
MD5 | bbf78a3182dd177e9c0c21e40a5dd4df |
|
BLAKE2b-256 | 60bf8ebdfce77bc04b81abf2ea316e9c03b4a866a7d739cf355eae4d6fd9f6fe |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
51c4e1a4f8ea84d98b7b98912aa4290ac3d1eabfde8e3c34541fae30e9d1f08b
- Sigstore transparency entry: 179859657
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: jiter-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 384.6 kB
- Tags: CPython 3.11, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | eda3f8cc74df66892b1d06b5d41a71670c22d95a1ca2cbab73654745ce9d0419 |
|
MD5 | 3966198c28386e3bd00e0afabdc54a91 |
|
BLAKE2b-256 | 0751fe59e307aaebec9265dbad44d9d4381d030947e47b0f23531579b9a7c2df |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp311-cp311-manylinux1_i686.manylinux_2_5_i686.whl
- Subject digest:
eda3f8cc74df66892b1d06b5d41a71670c22d95a1ca2cbab73654745ce9d0419
- Sigstore transparency entry: 179859472
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 320.9 kB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8f60fb8ce7df529812bf6c625635a19d27f30806885139e367af93f6e734ef58 |
|
MD5 | fd158b5d30dac4c4ddf3b30ca673ab63 |
|
BLAKE2b-256 | fb1ba7e5e42db9fa262baaa9489d8d14ca93f8663e7f164ed5e9acc9f467fc00 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp311-cp311-macosx_11_0_arm64.whl
- Subject digest:
8f60fb8ce7df529812bf6c625635a19d27f30806885139e367af93f6e734ef58
- Sigstore transparency entry: 179859575
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 314.7 kB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6c4d99c71508912a7e556d631768dcdef43648a93660670986916b297f1c54af |
|
MD5 | 04e6ecf57d413a011550acab84aa8456 |
|
BLAKE2b-256 | 2344e241a043f114299254e44d7e777ead311da400517f179665e59611ab0ee4 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp311-cp311-macosx_10_12_x86_64.whl
- Subject digest:
6c4d99c71508912a7e556d631768dcdef43648a93660670986916b297f1c54af
- Sigstore transparency entry: 179859721
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 208.4 kB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c43ca669493626d8672be3b645dbb406ef25af3f4b6384cfd306da7eb2e70322 |
|
MD5 | 87af6717eb57229f281d3e8a325e638b |
|
BLAKE2b-256 | 2c1d5767f23f88e4f885090d74bbd2755518050a63040c0f59aa059947035711 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp310-cp310-win_amd64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp310-cp310-win_amd64.whl
- Subject digest:
c43ca669493626d8672be3b645dbb406ef25af3f4b6384cfd306da7eb2e70322
- Sigstore transparency entry: 179859715
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp310-cp310-win32.whl
.
File metadata
- Download URL: jiter-0.9.0-cp310-cp310-win32.whl
- Upload date:
- Size: 206.6 kB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | cb12e6d65ebbefe5518de819f3eda53b73187b7089040b2d17f5b39001ff31c4 |
|
MD5 | 92750f40b6515fcd63c53122c762be39 |
|
BLAKE2b-256 | 8905d8b90bfb21e58097d5a4e0224f2940568366f68488a079ae77d4b2653500 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp310-cp310-win32.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp310-cp310-win32.whl
- Subject digest:
cb12e6d65ebbefe5518de819f3eda53b73187b7089040b2d17f5b39001ff31c4
- Sigstore transparency entry: 179859581
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 512.6 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6ef5da104664e526836070e4a23b5f68dec1cc673b60bf1edb1bfbe8a55d0678 |
|
MD5 | 94c07323cebe213f84ae064e36906af3 |
|
BLAKE2b-256 | c42bd57900c5c06e6273fbaa76a19efa74dbc6e70c7427ab421bf0095dfe5d4a |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp310-cp310-musllinux_1_1_x86_64.whl
- Subject digest:
6ef5da104664e526836070e4a23b5f68dec1cc673b60bf1edb1bfbe8a55d0678
- Sigstore transparency entry: 179859641
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 520.6 kB
- Tags: CPython 3.10, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1fd19112d1049bdd47f17bfbb44a2c0001061312dcf0e72765bfa8abd4aa30e5 |
|
MD5 | 9d0b2b89a49444f40d84d7cab7a2a6f0 |
|
BLAKE2b-256 | 0f89c12fe7b65a4fb74f6c0d7b5119576f1f16c79fc2953641f31b288fad8a04 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp310-cp310-musllinux_1_1_aarch64.whl
- Subject digest:
1fd19112d1049bdd47f17bfbb44a2c0001061312dcf0e72765bfa8abd4aa30e5
- Sigstore transparency entry: 179859704
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 352.9 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d1d9870561eb26b11448854dce0ff27a9a27cb616b632468cafc938de25e9e51 |
|
MD5 | f99fb70355227dcd95c9179f9bd55c01 |
|
BLAKE2b-256 | aca2522039e522a10bac2f2194f50e183a49a360d5f63ebf46f6d890ef8aa3f9 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
d1d9870561eb26b11448854dce0ff27a9a27cb616b632468cafc938de25e9e51
- Sigstore transparency entry: 179859716
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: jiter-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 397.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e00a1a2bbfaaf237e13c3d1592356eab3e9015d7efd59359ac8b51eb56390a12 |
|
MD5 | ed7c00dd75a24c01e38e3766ec7c498c |
|
BLAKE2b-256 | d3caf4263ecbce7f5e6bded8f52a9f1a66540b270c300b5c9f5353d163f9ac61 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp310-cp310-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
e00a1a2bbfaaf237e13c3d1592356eab3e9015d7efd59359ac8b51eb56390a12
- Sigstore transparency entry: 179859617
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: jiter-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 406.3 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5cfc7d0a8e899089d11f065e289cb5b2daf3d82fbe028f49b20d7b809193958d |
|
MD5 | dc7ecfe05686f24b3de50e1857b0417b |
|
BLAKE2b-256 | 0df74a491c568f005553240b486f8e05c82547340572d5018ef79414b4449327 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp310-cp310-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
5cfc7d0a8e899089d11f065e289cb5b2daf3d82fbe028f49b20d7b809193958d
- Sigstore transparency entry: 179859647
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: jiter-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 364.6 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffba79584b3b670fefae66ceb3a28822365d25b7bf811e030609a3d5b876f538 |
|
MD5 | dc52f6e7190dd640faa015d3225484b2 |
|
BLAKE2b-256 | 13cf6485a4012af5d407689c91296105fcdb080a3538e0658d2abf679619c72f |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp310-cp310-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
ffba79584b3b670fefae66ceb3a28822365d25b7bf811e030609a3d5b876f538
- Sigstore transparency entry: 179859712
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 341.7 kB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1339f839b91ae30b37c409bf16ccd3dc453e8b8c3ed4bd1d6a567193651a4a51 |
|
MD5 | fe452f821cb6655ed115f008ac82c103 |
|
BLAKE2b-256 | 6cb2de3f3446ecba7c48f317568e111cc112613da36c7b29a6de45a1df365556 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
1339f839b91ae30b37c409bf16ccd3dc453e8b8c3ed4bd1d6a567193651a4a51
- Sigstore transparency entry: 179859511
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: jiter-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 384.5 kB
- Tags: CPython 3.10, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9872aeff3f21e437651df378cb75aeb7043e5297261222b6441a620218b58708 |
|
MD5 | a6596060f6be9727f1065fbf09a5962f |
|
BLAKE2b-256 | b167306a5c5abc82f2e32bd47333a1c9799499c1c3a415f8dde19dbf876f00cb |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp310-cp310-manylinux1_i686.manylinux_2_5_i686.whl
- Subject digest:
9872aeff3f21e437651df378cb75aeb7043e5297261222b6441a620218b58708
- Sigstore transparency entry: 179859672
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 321.1 kB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9b1d3086f8a3ee0194ecf2008cf81286a5c3e540d977fa038ff23576c023c0ea |
|
MD5 | 26e5f5b274fbb66e1f8c67970b0edb86 |
|
BLAKE2b-256 | 01077bf6022c5a152fca767cf5c086bb41f7c28f70cf33ad259d023b53c0b858 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp310-cp310-macosx_11_0_arm64.whl
- Subject digest:
9b1d3086f8a3ee0194ecf2008cf81286a5c3e540d977fa038ff23576c023c0ea
- Sigstore transparency entry: 179859681
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 314.5 kB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 816ec9b60fdfd1fec87da1d7ed46c66c44ffec37ab2ef7de5b147b2fce3fd5ad |
|
MD5 | 1ade1b3660e9b0a84139d0f80c78cd76 |
|
BLAKE2b-256 | b08239f7c9e67b3b0121f02a0b90d433626caa95a565c3d2449fea6bcfa3f5f5 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp310-cp310-macosx_10_12_x86_64.whl
- Subject digest:
816ec9b60fdfd1fec87da1d7ed46c66c44ffec37ab2ef7de5b147b2fce3fd5ad
- Sigstore transparency entry: 179859492
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 208.9 kB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8b36d8a16a61993be33e75126ad3d8aa29cf450b09576f3c427d27647fcb4aa |
|
MD5 | 91bac722329db0f6e1365ccc3eb24dd4 |
|
BLAKE2b-256 | 4b13c10f17dcddd1b4c1313418e64ace5e77cc4f7313246140fb09044516a62c |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp39-cp39-win_amd64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp39-cp39-win_amd64.whl
- Subject digest:
e8b36d8a16a61993be33e75126ad3d8aa29cf450b09576f3c427d27647fcb4aa
- Sigstore transparency entry: 179859573
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp39-cp39-win32.whl
.
File metadata
- Download URL: jiter-0.9.0-cp39-cp39-win32.whl
- Upload date:
- Size: 207.1 kB
- Tags: CPython 3.9, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 161d461dcbe658cf0bd0aa375b30a968b087cdddc624fc585f3867c63c6eca95 |
|
MD5 | 1e780cfa4c91230b888fdca487c91b22 |
|
BLAKE2b-256 | 153960d8f17de27586fa1e7c8215ead8222556d40a6b96b20f1ad70528961f99 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp39-cp39-win32.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp39-cp39-win32.whl
- Subject digest:
161d461dcbe658cf0bd0aa375b30a968b087cdddc624fc585f3867c63c6eca95
- Sigstore transparency entry: 179859538
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 513.8 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 27cd1f2e8bb377f31d3190b34e4328d280325ad7ef55c6ac9abde72f79e84d2e |
|
MD5 | 1d515ea8196b1478041fefd38ed6b626 |
|
BLAKE2b-256 | fff5c462d994dcbff43de8a3c953548d609c73a5db8138182408944fce2b68c1 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp39-cp39-musllinux_1_1_x86_64.whl
- Subject digest:
27cd1f2e8bb377f31d3190b34e4328d280325ad7ef55c6ac9abde72f79e84d2e
- Sigstore transparency entry: 179859534
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp39-cp39-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp39-cp39-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 522.0 kB
- Tags: CPython 3.9, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4feafe787eb8a8d98168ab15637ca2577f6ddf77ac6c8c66242c2d028aa5420e |
|
MD5 | 6830525013c737961abc9f58855afab4 |
|
BLAKE2b-256 | 46cf370be59c38e56a6fed0308ca266b12d8178b8d6630284cc88ae5af110764 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp39-cp39-musllinux_1_1_aarch64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp39-cp39-musllinux_1_1_aarch64.whl
- Subject digest:
4feafe787eb8a8d98168ab15637ca2577f6ddf77ac6c8c66242c2d028aa5420e
- Sigstore transparency entry: 179859611
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 354.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c0194f813efdf4b8865ad5f5c5f50f8566df7d770a82c51ef593d09e0b347020 |
|
MD5 | f5631daef04391eb6744682dfe48de3b |
|
BLAKE2b-256 | 12b7364b615a35f99d01cc27d3caea8c3a3ac5451bd5cadf8e5dc4355b102aba |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
c0194f813efdf4b8865ad5f5c5f50f8566df7d770a82c51ef593d09e0b347020
- Sigstore transparency entry: 179859562
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: jiter-0.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 399.3 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d838650f6ebaf4ccadfb04522463e74a4c378d7e667e0eb1865cfe3990bfac49 |
|
MD5 | 870032bbc4a2d6c0131ca4a19e95a454 |
|
BLAKE2b-256 | 044cb6bee52a5b327830abea13eba4222f33f88895a1055eff8870ab3ebbde41 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp39-cp39-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
d838650f6ebaf4ccadfb04522463e74a4c378d7e667e0eb1865cfe3990bfac49
- Sigstore transparency entry: 179859637
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: jiter-0.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 407.8 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7a9aaa5102dba4e079bb728076fadd5a2dca94c05c04ce68004cfd96f128ea34 |
|
MD5 | 952c8b03facac5e9b58bca6d7bfb099b |
|
BLAKE2b-256 | 039ed137a0088be90ba5081f7d5d2383374bd77a1447158e44c3ec4e142f902c |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp39-cp39-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
7a9aaa5102dba4e079bb728076fadd5a2dca94c05c04ce68004cfd96f128ea34
- Sigstore transparency entry: 179859461
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: jiter-0.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 365.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8793b6df019b988526f5a633fdc7456ea75e4a79bd8396a3373c371fc59f5c9b |
|
MD5 | f3638877a0a1e95a7f263ca6bf686404 |
|
BLAKE2b-256 | 89be08d2bae711200d558ab8c5771f05f47cd09b82b2258a8d6fad0ee2c6a1f3 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp39-cp39-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
8793b6df019b988526f5a633fdc7456ea75e4a79bd8396a3373c371fc59f5c9b
- Sigstore transparency entry: 179859542
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 343.0 kB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 113f30f87fb1f412510c6d7ed13e91422cfd329436364a690c34c8b8bd880c42 |
|
MD5 | c8527fb11223ac72674023f327c1ac75 |
|
BLAKE2b-256 | 2ea5a64de757516e5531f8d147a32251905f0e23641738d3520a0a0724fe9651 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
113f30f87fb1f412510c6d7ed13e91422cfd329436364a690c34c8b8bd880c42
- Sigstore transparency entry: 179859649
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: jiter-0.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 385.1 kB
- Tags: CPython 3.9, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a7954a401d0a8a0b8bc669199db78af435aae1e3569187c2939c477c53cb6a0a |
|
MD5 | 59f9c5a32002691b5917daea2f564a3a |
|
BLAKE2b-256 | 65cc5156f75c496aac65080e2995910104d0e46644df1452c20d963cb904b4b1 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp39-cp39-manylinux1_i686.manylinux_2_5_i686.whl
- Subject digest:
a7954a401d0a8a0b8bc669199db78af435aae1e3569187c2939c477c53cb6a0a
- Sigstore transparency entry: 179859529
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 312.6 kB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | efb767d92c63b2cd9ec9f24feeb48f49574a713870ec87e9ba0c2c6e9329c3e2 |
|
MD5 | 66844bc9acf484f28d4bca0c47d82e4d |
|
BLAKE2b-256 | d09b42d5d59585d9af4fe207e96c6edac2a62bca26d76e2471e78c2f5da28bb8 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp39-cp39-macosx_11_0_arm64.whl
- Subject digest:
efb767d92c63b2cd9ec9f24feeb48f49574a713870ec87e9ba0c2c6e9329c3e2
- Sigstore transparency entry: 179859606
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp39-cp39-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 315.2 kB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9ef340fae98065071ccd5805fe81c99c8f80484e820e40043689cf97fb66b3e2 |
|
MD5 | c9fe042f520a1da51f447c0cac2c5827 |
|
BLAKE2b-256 | aa2c9bee940db68d8cefb84178f8b15220c836276db8c6e09cbd422071c01c33 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp39-cp39-macosx_10_12_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp39-cp39-macosx_10_12_x86_64.whl
- Subject digest:
9ef340fae98065071ccd5805fe81c99c8f80484e820e40043689cf97fb66b3e2
- Sigstore transparency entry: 179859519
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 198.3 kB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2685f44bf80e95f8910553bf2d33b9c87bf25fceae6e9f0c1355f75d2922b0ee |
|
MD5 | 9e8889596fc0de67c544bea6e3a5f932 |
|
BLAKE2b-256 | b3c49429ce99ead24b4bf63914b302c789898a6c71f7b34a4a0e7f51d95c5c26 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp38-cp38-win_amd64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp38-cp38-win_amd64.whl
- Subject digest:
2685f44bf80e95f8910553bf2d33b9c87bf25fceae6e9f0c1355f75d2922b0ee
- Sigstore transparency entry: 179859589
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp38-cp38-win32.whl
.
File metadata
- Download URL: jiter-0.9.0-cp38-cp38-win32.whl
- Upload date:
- Size: 206.6 kB
- Tags: CPython 3.8, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3630ec20cbeaddd4b65513fa3857e1b7c4190d4481ef07fb63d0fad59033321 |
|
MD5 | 38fac8afe3420505d2d0163e3ef6a2bd |
|
BLAKE2b-256 | e16df9f6d753e9a57e796f1a2174ec9281f8d1793cdce0e1196390a99ff1a749 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp38-cp38-win32.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp38-cp38-win32.whl
- Subject digest:
e3630ec20cbeaddd4b65513fa3857e1b7c4190d4481ef07fb63d0fad59033321
- Sigstore transparency entry: 179859613
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl
- Upload date:
- Size: 513.6 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1537a890724ba00fdba21787010ac6f24dad47f763410e9e1093277913592784 |
|
MD5 | 32ef765d993eb403a0ac302b3d06b6cc |
|
BLAKE2b-256 | e6c1a8456847dd62dcd2edd85e549f285b435c0c4c1fbe0ef9d17baf9ef9c999 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp38-cp38-musllinux_1_1_x86_64.whl
- Subject digest:
1537a890724ba00fdba21787010ac6f24dad47f763410e9e1093277913592784
- Sigstore transparency entry: 179859467
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp38-cp38-musllinux_1_1_aarch64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp38-cp38-musllinux_1_1_aarch64.whl
- Upload date:
- Size: 521.0 kB
- Tags: CPython 3.8, musllinux: musl 1.1+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d45807b0f236c485e1e525e2ce3a854807dfe28ccf0d013dd4a563395e28008a |
|
MD5 | 78c7a33a49ef1bd5b52550b2f22510de |
|
BLAKE2b-256 | aef7db358b9594e35be021005c2073a193989a6cbc883a2edb587c428877e07c |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp38-cp38-musllinux_1_1_aarch64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp38-cp38-musllinux_1_1_aarch64.whl
- Subject digest:
d45807b0f236c485e1e525e2ce3a854807dfe28ccf0d013dd4a563395e28008a
- Sigstore transparency entry: 179859479
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 345.1 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9897115ad716c48f0120c1f0c4efae348ec47037319a6c63b2d7838bb53aaef4 |
|
MD5 | c0493876e6ceb9786e2cbac34e0d769a |
|
BLAKE2b-256 | 6c94cb3e4a5b6c54b86792aafb17a010ffb4b7632ca8e32c712cc024e7ce3f8b |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
- Subject digest:
9897115ad716c48f0120c1f0c4efae348ec47037319a6c63b2d7838bb53aaef4
- Sigstore transparency entry: 179859632
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
.
File metadata
- Download URL: jiter-0.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
- Upload date:
- Size: 398.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ s390x
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c058ecb51763a67f019ae423b1cbe3fa90f7ee6280c31a1baa6ccc0c0e2d06e |
|
MD5 | 459d3474ebfac916e763688d55204257 |
|
BLAKE2b-256 | 483a6961d6575e34990e19e186b5b7f6d66e1112ab028dcbb934682547a6cbb5 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp38-cp38-manylinux2014_s390x.manylinux_2_17_s390x.whl
- Subject digest:
0c058ecb51763a67f019ae423b1cbe3fa90f7ee6280c31a1baa6ccc0c0e2d06e
- Sigstore transparency entry: 179859506
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
.
File metadata
- Download URL: jiter-0.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
- Upload date:
- Size: 406.8 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ppc64le
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d82a811928b26d1a6311a886b2566f68ccf2b23cf3bfed042e18686f1f22c2d7 |
|
MD5 | 009a82fd82ba7b8c725883ca80007952 |
|
BLAKE2b-256 | f1c6cac7517d42f94ec5049210bcb93d16f2df184e7f63c82e491786c471d44c |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp38-cp38-manylinux2014_ppc64le.manylinux_2_17_ppc64le.whl
- Subject digest:
d82a811928b26d1a6311a886b2566f68ccf2b23cf3bfed042e18686f1f22c2d7
- Sigstore transparency entry: 179859515
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
.
File metadata
- Download URL: jiter-0.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
- Upload date:
- Size: 365.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARMv7l
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7825f46e50646bee937e0f849d14ef3a417910966136f59cd1eb848b8b5bb3e4 |
|
MD5 | 3cd9597702f06163e4296c3f2e2fe2fa |
|
BLAKE2b-256 | 620a3f8d91741fc5ef397ade812b54cb358373ced1a036026b8cdb73e71e7458 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp38-cp38-manylinux2014_armv7l.manylinux_2_17_armv7l.whl
- Subject digest:
7825f46e50646bee937e0f849d14ef3a417910966136f59cd1eb848b8b5bb3e4
- Sigstore transparency entry: 179859486
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 342.0 kB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9f3c848209ccd1bfa344a1240763975ca917de753c7875c77ec3034f4151d06c |
|
MD5 | 5a6976913aa52f8d9ea8025b21c10e0b |
|
BLAKE2b-256 | 29b2f27c5cdc7cfd2711b8aeff75694ecbd00bf53c35fddcfed70b082496fd45 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
- Subject digest:
9f3c848209ccd1bfa344a1240763975ca917de753c7875c77ec3034f4151d06c
- Sigstore transparency entry: 179859684
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
.
File metadata
- Download URL: jiter-0.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
- Upload date:
- Size: 385.2 kB
- Tags: CPython 3.8, manylinux: glibc 2.5+ i686
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 351f4c90a24c4fb8c87c6a73af2944c440494ed2bea2094feecacb75c50398ae |
|
MD5 | ead6f3be53e28e529317d0d4725a68db |
|
BLAKE2b-256 | 5eaa8f6c79b183f3a3f5f1de2753163ea55318a6f2edd9add9f43196f0f35b88 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp38-cp38-manylinux1_i686.manylinux_2_5_i686.whl
- Subject digest:
351f4c90a24c4fb8c87c6a73af2944c440494ed2bea2094feecacb75c50398ae
- Sigstore transparency entry: 179859482
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 312.0 kB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e84ed1c9c9ec10bbb8c37f450077cbe3c0d4e8c2b19f0a49a60ac7ace73c7452 |
|
MD5 | bbffde5765511bc86c3ce7401fed7121 |
|
BLAKE2b-256 | fca539ca1ac93aa21383fb3680f0ec6e7c04aa3f14096d538ff4c54083dcbcef |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp38-cp38-macosx_11_0_arm64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp38-cp38-macosx_11_0_arm64.whl
- Subject digest:
e84ed1c9c9ec10bbb8c37f450077cbe3c0d4e8c2b19f0a49a60ac7ace73c7452
- Sigstore transparency entry: 179859668
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type:
File details
Details for the file jiter-0.9.0-cp38-cp38-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: jiter-0.9.0-cp38-cp38-macosx_10_12_x86_64.whl
- Upload date:
- Size: 315.0 kB
- Tags: CPython 3.8, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a2d16360d0642cd68236f931b85fe50288834c383492e4279d9f1792e309571 |
|
MD5 | 88ef6a2b8e85580ee7294293514bed05 |
|
BLAKE2b-256 | c69dd308c4c16995fd9013df69efd7c162c553591e256095ffccd15d64e95511 |
Provenance
The following attestation bundles were made for jiter-0.9.0-cp38-cp38-macosx_10_12_x86_64.whl
:
Publisher:
ci.yml
on pydantic/jiter
-
Statement:
- Statement type:
https://in-toto.io/Statement/v1
- Predicate type:
https://docs.pypi.org/attestations/publish/v1
- Subject name:
jiter-0.9.0-cp38-cp38-macosx_10_12_x86_64.whl
- Subject digest:
4a2d16360d0642cd68236f931b85fe50288834c383492e4279d9f1792e309571
- Sigstore transparency entry: 179859508
- Sigstore integration time:
- Permalink:
pydantic/jiter@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Branch / Tag:
refs/tags/v0.9.0
- Owner: https://github.com/pydantic
- Access:
public
- Token Issuer:
https://token.actions.githubusercontent.com
- Runner Environment:
github-hosted
- Publication workflow:
ci.yml@9fb9c686fe8532d3e8ebcd2f54f3ecaf5b33e0c2
- Trigger Event:
push
- Statement type: