Cython SCALE Codec Library
Project description
cyscale
Cython-accelerated SCALE codec library for Substrate-based blockchains (Polkadot, Kusama, Bittensor, etc.).
A drop-in replacement for py-scale-codec — same scalecodec module name, same public API, compiled with Cython for improved throughput.
Installation
pip install cyscale
Performance
Benchmarked on Apple M-series (Python 3.13) against py-scale-codec 1.2.12. All timings are µs per call; speedup = py ÷ cy.
Primitives and small types
| Benchmark | py (µs) | cy (µs) | speedup |
|---|---|---|---|
| u8 decode | 3.01 | 1.16 | 2.60× |
| u16 decode | 2.99 | 1.25 | 2.40× |
| u32 decode | 3.11 | 1.26 | 2.47× |
| u64 decode | 3.09 | 1.22 | 2.53× |
| u128 decode | 2.91 | 1.22 | 2.39× |
| Compact decode | 9.59 | 4.38 | 2.19× |
| bool decode | 2.93 | 1.18 | 2.48× |
| H256 decode | 2.93 | 1.21 | 2.41× |
| AccountId decode (SS58 format 42) | 11.45 | 6.11 | 1.87× |
| Str decode | 12.89 | 5.82 | 2.22× |
| (u32, u64, bool) decode | 21.96 | 5.59 | 3.93× |
| u32 encode | 2.34 | 1.10 | 2.13× |
| u64 encode | 2.33 | 1.20 | 1.93× |
| Compact encode | 8.85 | 4.42 | 2.00× |
| H256 encode | 2.47 | 1.01 | 2.44× |
Large payloads
| Benchmark | py (µs) | cy (µs) | speedup |
|---|---|---|---|
| Vec decode (64 elements) | 224.20 | 98.13 | 2.28× |
| Vec decode (1,024 elements) | 3217.32 | 1423.46 | 2.26× |
| Vec decode (16,384 elements) | 50396.95 | 22435.45 | 2.25× |
| Bytes decode (1 KB) | 14.67 | 6.87 | 2.14× |
| Bytes decode (64 KB) | 64.15 | 45.05 | 1.42× |
| Bytes decode (512 KB) | 379.99 | 300.14 | 1.27× |
| Vec decode (5 events, V10) | 301.10 | 135.32 | 2.23× |
| MetadataVersioned decode (V10, 85 KB) | 64958.83 | 29839.68 | 2.18× |
| MetadataVersioned decode (V13, 219 KB) | 143029.99 | 65651.69 | 2.18× |
| MetadataVersioned decode (V14, 300 KB) | 390902.34 | 183644.98 | 2.13× |
| Bittensor metadata + portable registry (254 KB) | 443089.47 | 212345.78 | 2.09× |
Primitives and small types see ~2.0–2.6× speedup. Large metadata decoding
sees ~2.1–2.3× speedup — the gain compounds across thousands of recursive
decode calls. Raw bulk byte operations (Bytes/Vec<u8>) above ~64 KB are
dominated by memcpy and see a reduced ~1.3–1.4× speedup.
AccountId with SS58 encoding shows a 1.87× speedup — the SS58 encoding
itself (ss58_encode) is pure Python and limits gains in that path.
batch_decode (cyscale-only API)
batch_decode(type_strings, bytes_list) amortises Python dispatch overhead
across a list of decodes. The baseline below is a py-scale-codec decode loop,
which is the equivalent operation without this API.
Note: bt_decode is excluded from this comparison because it does not perform
SS58 encoding — including it without that post-processing step would be unfair.
| Benchmark | py loop (µs) | cy batch (µs) | speedup |
|---|---|---|---|
| batch_decode AccountId ×10 | 116.66 | 42.07 | 2.77× |
| batch_decode AccountId ×100 | 1159.47 | 415.44 | 2.79× |
| batch_decode AccountId ×1,000 | 11530.59 | 4112.27 | 2.80× |
| Mixed (AccountId/u32/u128) ×100 | 599.73 | 147.75 | 4.06× |
To reproduce, run:
# save a py-scale-codec baseline
python benchmarks/bench.py --save-baseline benchmarks/baseline_py.json
# compare against cy-scale-codec
PYTHONPATH=. python benchmarks/bench.py --compare benchmarks/baseline_py.json
Examples of different types
| Type | Description | Example SCALE decoding value | SCALE encoded value |
|---|---|---|---|
bool |
Boolean values are encoded using the least significant bit of a single byte. | True |
0x01 |
u16 |
Basic integers are encoded using a fixed-width little-endian (LE) format. | 42 |
0x2a00 |
Compact |
A "compact" or general integer encoding is sufficient for encoding large integers (up to 2**536) and is more efficient at encoding most values than the fixed-width version. | 1 |
0x04 |
Vec |
A collection of same-typed values is encoded, prefixed with a compact encoding of the number of items, followed by each item's encoding concatenated in turn. | [4, 8, 15, 16, 23, 42] |
0x18040008000f00100017002a00 |
str, Bytes |
Strings are Vectors of bytes (Vec<u8>) containing a valid UTF8 sequence. |
"Test" |
0x1054657374 |
AccountId |
An SS58 formatted representation of an account. | "5GDyPHLVHcQYPTWfygtPYeogQjyZy7J9fsi4brPhgEFq4pcv" |
0xb80269ec... |
Enum |
A fixed number of variants, each mutually exclusive. Encoded as the first byte identifying the index of the variant. | {'Int': 8} |
0x002a |
Struct |
For structures, values are named but that is irrelevant for the encoding (only order matters). | {"votes": [...], "id": 4} |
0x04b80269... |
License
Project details
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file cyscale-0.2.2.tar.gz.
File metadata
- Download URL: cyscale-0.2.2.tar.gz
- Upload date:
- Size: 1.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
8e514ee0b6b3bdd5013bdbf9199d335409bad0380d6a8c3af6c1689912b2e5f1
|
|
| MD5 |
6255623e4d112f5174392512ec546b43
|
|
| BLAKE2b-256 |
d1ea455da601393043d4987e090e8eb732af92f8914204a55d1e45b6fb5d0f17
|
Provenance
The following attestation bundles were made for cyscale-0.2.2.tar.gz:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2.tar.gz -
Subject digest:
8e514ee0b6b3bdd5013bdbf9199d335409bad0380d6a8c3af6c1689912b2e5f1 - Sigstore transparency entry: 1317179743
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp314-cp314-win_arm64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp314-cp314-win_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ca129e00aa0aa42a49544e8441aa7267e27cf7264da93568432dd2c4b5faf185
|
|
| MD5 |
03e39bed1dece7d16aa32e49300bb4ff
|
|
| BLAKE2b-256 |
23433aada82e94ab6efb88e55776da28f3341c8bd7d9fa1a7ded7add05e3f7be
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp314-cp314-win_arm64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp314-cp314-win_arm64.whl -
Subject digest:
ca129e00aa0aa42a49544e8441aa7267e27cf7264da93568432dd2c4b5faf185 - Sigstore transparency entry: 1317179977
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
95068c18b240b2b333c3ddace0ad3a574e09d98e285b14bf1e404468e44d87a0
|
|
| MD5 |
1c37fd4a7720dab14cafd3947df8fe06
|
|
| BLAKE2b-256 |
1b493c0e6ca4783a9cdb098b014697014c72d9f316518ddf56cab91af6a14753
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp314-cp314-win_amd64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp314-cp314-win_amd64.whl -
Subject digest:
95068c18b240b2b333c3ddace0ad3a574e09d98e285b14bf1e404468e44d87a0 - Sigstore transparency entry: 1317180052
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp314-cp314-win32.whl.
File metadata
- Download URL: cyscale-0.2.2-cp314-cp314-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.14, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
456829d2bf0956370199763bb15f20798109c2f8a58c322f76215204ccd4253d
|
|
| MD5 |
14bc3ce4c27f1ab2b2a182609c802459
|
|
| BLAKE2b-256 |
6dd70e2b68f63d854edc36a42bc99a3061262e6d661448d08732acf4010d3111
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp314-cp314-win32.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp314-cp314-win32.whl -
Subject digest:
456829d2bf0956370199763bb15f20798109c2f8a58c322f76215204ccd4253d - Sigstore transparency entry: 1317180005
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9bc744f9722cd75e388108b0166d25435ad775595381c1e096c37b66dc15f688
|
|
| MD5 |
329377d9d12710788c01a7b21390b8db
|
|
| BLAKE2b-256 |
849a32a68f9a649498a8493474a09f92c6fc9f4c558170df81b4cb29d13f215b
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp314-cp314-musllinux_1_2_x86_64.whl -
Subject digest:
9bc744f9722cd75e388108b0166d25435ad775595381c1e096c37b66dc15f688 - Sigstore transparency entry: 1317179820
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 6.1 MB
- Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92e1e425609f779c36e18b4692b22a41b04d482134b3fa4441a4b25e5ed3e582
|
|
| MD5 |
69e78f2cc36b10f1da760fe30b683d9c
|
|
| BLAKE2b-256 |
8b6215b2ad5c313e4c6d38fb385383bec991eabec505f97b6a5dd2258c89039b
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp314-cp314-musllinux_1_2_aarch64.whl -
Subject digest:
92e1e425609f779c36e18b4692b22a41b04d482134b3fa4441a4b25e5ed3e582 - Sigstore transparency entry: 1317179994
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ec58c4a6513a9b2c2d3262f4ffde748f396a94771170af573f56c4b12ac2312
|
|
| MD5 |
d4f3389ff1e59effbb1a363cc1eca0d7
|
|
| BLAKE2b-256 |
47f5c10baa5584ac801d7c05abb76b7e6f2f61e0be1f0ce4117f546b0f2d47eb
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
0ec58c4a6513a9b2c2d3262f4ffde748f396a94771170af573f56c4b12ac2312 - Sigstore transparency entry: 1317179873
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
bbeebd5af2ca375feb6ef030677884aadc56ec58725dd81bea0d0a0ff291f64a
|
|
| MD5 |
193e65fe3972caa0e494b1407ffa2dfa
|
|
| BLAKE2b-256 |
5e9a7e76dc83d100d90aa7eb69e5fbf55f42b319e98a3a9b0b3790b27bc81b42
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
bbeebd5af2ca375feb6ef030677884aadc56ec58725dd81bea0d0a0ff291f64a - Sigstore transparency entry: 1317179999
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7bd55d5be104cfcc4627a2f6860f48af8fdab846d2c6be733a14dc50306a210
|
|
| MD5 |
53c619dc72e6f451299da242efd2b648
|
|
| BLAKE2b-256 |
c1ac0d21e7389ce4f6e9f898895ea5671d475133d6aafdfc551c091ffe7d1e97
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp314-cp314-macosx_11_0_arm64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp314-cp314-macosx_11_0_arm64.whl -
Subject digest:
a7bd55d5be104cfcc4627a2f6860f48af8fdab846d2c6be733a14dc50306a210 - Sigstore transparency entry: 1317179894
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.14, macOS 10.15+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32086b52ced8d3c63245abbdb21a369c44add30e971179864cddca6bafc816dd
|
|
| MD5 |
a440c89a7a5683b8661ac0222ec0ebf3
|
|
| BLAKE2b-256 |
bc326260bf74f6b15c81ead5488b2bbd416ba4814a84530a8a8a49b141ae4bc4
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp314-cp314-macosx_10_15_x86_64.whl -
Subject digest:
32086b52ced8d3c63245abbdb21a369c44add30e971179864cddca6bafc816dd - Sigstore transparency entry: 1317179972
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp313-cp313-win_arm64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp313-cp313-win_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92cc865cbd00161563a650183059cb3ca44ad315d4b47a0b1df4d4f1fbfd7f1d
|
|
| MD5 |
95eb8196528dc7031c740aa037ed78c0
|
|
| BLAKE2b-256 |
b1f38d0fc867d23c8df527af1cc7f273dc1a516e0a60581747dad33f08340d78
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp313-cp313-win_arm64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp313-cp313-win_arm64.whl -
Subject digest:
92cc865cbd00161563a650183059cb3ca44ad315d4b47a0b1df4d4f1fbfd7f1d - Sigstore transparency entry: 1317179922
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ae40eb88a0b51a3c5adafaabc6f34565307883f44d753e8f2d5b67620fc0fbfe
|
|
| MD5 |
c7f3a8a65775cdadd550cc3860a0f128
|
|
| BLAKE2b-256 |
a24b66edcf8ef3731fea4c1527116574f0ff91c7da6e2a46825cadf6dfdd9e3d
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp313-cp313-win_amd64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp313-cp313-win_amd64.whl -
Subject digest:
ae40eb88a0b51a3c5adafaabc6f34565307883f44d753e8f2d5b67620fc0fbfe - Sigstore transparency entry: 1317179908
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp313-cp313-win32.whl.
File metadata
- Download URL: cyscale-0.2.2-cp313-cp313-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.13, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
340dc08a1a5cfedac3681114692d4c3300a2318d5352c7beeb6d4eadd615ff9b
|
|
| MD5 |
3e5f75485bb0ad39aaf11985549b8fab
|
|
| BLAKE2b-256 |
8f8e4171c1784067281e42fc7a77cb98d9081a8e31b6b56a5e4c08307f5ba4ba
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp313-cp313-win32.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp313-cp313-win32.whl -
Subject digest:
340dc08a1a5cfedac3681114692d4c3300a2318d5352c7beeb6d4eadd615ff9b - Sigstore transparency entry: 1317179951
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
340a4b5afc662ba41117da4e509cb0ba7eeb852bb0b5092a620edfdd5c53587f
|
|
| MD5 |
b1646a2a0ee19b0715ac334a1cf84802
|
|
| BLAKE2b-256 |
d843cc12fdce3627b18bf2ab0290c7a3f3dc69c07990862443dbf7adfd132ad3
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp313-cp313-musllinux_1_2_x86_64.whl -
Subject digest:
340a4b5afc662ba41117da4e509cb0ba7eeb852bb0b5092a620edfdd5c53587f - Sigstore transparency entry: 1317180015
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 6.1 MB
- Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c63df784b67b004771bf6b284e6f86e07265155126b23abdf1837bfd6fabaab7
|
|
| MD5 |
8a2ac8d15fae2e73ffd5349e30084632
|
|
| BLAKE2b-256 |
7eb702809ab11fb4caea25295581e4cc302e4de18c189a8f07aa7a2c120ca0fc
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp313-cp313-musllinux_1_2_aarch64.whl -
Subject digest:
c63df784b67b004771bf6b284e6f86e07265155126b23abdf1837bfd6fabaab7 - Sigstore transparency entry: 1317179789
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c68b1d5f508faf9527087b2eef0021358c7e7491b5c59c1b73a07652cc063006
|
|
| MD5 |
6262908b0c5946b49c029c1600c6b0bf
|
|
| BLAKE2b-256 |
59cb6229c638ada7d1e465689602f14d1e8d6ecfbef4148d482d3d1a76595017
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
c68b1d5f508faf9527087b2eef0021358c7e7491b5c59c1b73a07652cc063006 - Sigstore transparency entry: 1317180042
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f740de68cd5a57afbe71ee3294873168d4f096713f3ad3d02299da36cb74d93d
|
|
| MD5 |
730ca31088345f6421d3652e3a6ae6ae
|
|
| BLAKE2b-256 |
7e2a953f363f821c6c2fd3209332e13b989c70c4ab82a8a0443132c8ce39e1bb
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
f740de68cd5a57afbe71ee3294873168d4f096713f3ad3d02299da36cb74d93d - Sigstore transparency entry: 1317179879
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b669ce411149b718e8784235d642bf987c2b8a3bbab750be0daf415c18a7c1a3
|
|
| MD5 |
64bce13a2cdb9e87403eb3935164d5c2
|
|
| BLAKE2b-256 |
a569d335891ad4d4672a5e0c0a9dabc9f92d4f82aa0b222326d81e653991f765
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp313-cp313-macosx_11_0_arm64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp313-cp313-macosx_11_0_arm64.whl -
Subject digest:
b669ce411149b718e8784235d642bf987c2b8a3bbab750be0daf415c18a7c1a3 - Sigstore transparency entry: 1317179809
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1dafa08f46175e0822b9e5c7d54d43777fb363c11e349162c5776c17389c6d1
|
|
| MD5 |
01657296ce0b871229a6f0120586a367
|
|
| BLAKE2b-256 |
e02c6e2296bbd57d9cb425324101649712523b0e056c816da23c5c4629facef3
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp313-cp313-macosx_10_13_x86_64.whl -
Subject digest:
f1dafa08f46175e0822b9e5c7d54d43777fb363c11e349162c5776c17389c6d1 - Sigstore transparency entry: 1317179900
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp312-cp312-win_arm64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp312-cp312-win_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f51235ef4830b487f6727b5b7dbce0437a45e1b3d9f88db76bdc8e335596711a
|
|
| MD5 |
433059ee1b8089dc4eb88659fa8150a7
|
|
| BLAKE2b-256 |
5d70d588b51a26d6198f523c40d7fd8999e7950dd94255fd0af7077b4541f765
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp312-cp312-win_arm64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp312-cp312-win_arm64.whl -
Subject digest:
f51235ef4830b487f6727b5b7dbce0437a45e1b3d9f88db76bdc8e335596711a - Sigstore transparency entry: 1317179781
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
21b3d896af5d6442f87dfbdeb48d3e05d562346385d32caa151a21ee94b074f5
|
|
| MD5 |
5aee72c81e28ef8769c1af9ae3fcc587
|
|
| BLAKE2b-256 |
00a782352e064bdcc7b5547cb654548a31eddef77002290d659cbb65d2508a24
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp312-cp312-win_amd64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp312-cp312-win_amd64.whl -
Subject digest:
21b3d896af5d6442f87dfbdeb48d3e05d562346385d32caa151a21ee94b074f5 - Sigstore transparency entry: 1317179858
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp312-cp312-win32.whl.
File metadata
- Download URL: cyscale-0.2.2-cp312-cp312-win32.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.12, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e8ce1c3f3169c5b68dd3b863a075b60b698be7e66c83959c29d51d47c0247470
|
|
| MD5 |
f9c909347f687c14584f76a00b6b54dd
|
|
| BLAKE2b-256 |
e4c6f76fe06326e6664978644bdd6d0234bb3e24bf334745a5f07045148d3e40
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp312-cp312-win32.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp312-cp312-win32.whl -
Subject digest:
e8ce1c3f3169c5b68dd3b863a075b60b698be7e66c83959c29d51d47c0247470 - Sigstore transparency entry: 1317179939
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4c8fbc2a9d78e15325b9f1ac673242f433846b34e7342c576190c7227f84be98
|
|
| MD5 |
25560d90b9a7756f5d981bb2a4927405
|
|
| BLAKE2b-256 |
3de10644bf2e29a421a6185ce91e345b913633953aec7e32c21433154471d245
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp312-cp312-musllinux_1_2_x86_64.whl -
Subject digest:
4c8fbc2a9d78e15325b9f1ac673242f433846b34e7342c576190c7227f84be98 - Sigstore transparency entry: 1317179836
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ac3e2dce979b65459756bb01dc66e19faaae55f32a0a23322bd5355d033c6601
|
|
| MD5 |
6b0b0459f8a4e733ef5411733127ca28
|
|
| BLAKE2b-256 |
99fb9f8b7f0c15e9b2714cfd73f6a03e12d7d0f316054554dac3069348373b32
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp312-cp312-musllinux_1_2_aarch64.whl -
Subject digest:
ac3e2dce979b65459756bb01dc66e19faaae55f32a0a23322bd5355d033c6601 - Sigstore transparency entry: 1317179934
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c99afd9cff12687573c2a96c4ea9997efa480fcda48998463af0f8ed89fa99af
|
|
| MD5 |
fab0afde76807a3e42dd94e70d0bc80f
|
|
| BLAKE2b-256 |
cfbdf72165e562bd3862d8872ab0962d753df152c27bb46ad1c60f6c55b0a1be
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
c99afd9cff12687573c2a96c4ea9997efa480fcda48998463af0f8ed89fa99af - Sigstore transparency entry: 1317179843
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.4 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
40c752af64ba4562a9d17489835100ed8f40861738f59afcc47dbecdf23f0c6c
|
|
| MD5 |
20e8171c34b9a29ab542c54a1a7f38fe
|
|
| BLAKE2b-256 |
2c954b33a4c0af570760e0d29399d9142bb27f3fe4efbcf999bc38d18609504b
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
40c752af64ba4562a9d17489835100ed8f40861738f59afcc47dbecdf23f0c6c - Sigstore transparency entry: 1317179904
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
656374864267ad65bc1938979bed64a476df42e2238d5253baee963c7e0a812f
|
|
| MD5 |
dabd191c15e1df5029a55bfc2fbeb34d
|
|
| BLAKE2b-256 |
ec9a50711dbd63b61a7ab2a01efdc56b95df6391ed4cdfa30b03128710b73261
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp312-cp312-macosx_11_0_arm64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp312-cp312-macosx_11_0_arm64.whl -
Subject digest:
656374864267ad65bc1938979bed64a476df42e2238d5253baee963c7e0a812f - Sigstore transparency entry: 1317179827
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, macOS 10.13+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0eb1220162cef1ac5d1ef1df0e03c06fb4d917058c65ed9755d46105c5989fcf
|
|
| MD5 |
d9072862eb3e6f4b190dd91874a06a31
|
|
| BLAKE2b-256 |
280507cf0fbf27bc0c5deb85e2bf7596f01dfe88248955c043e5b9899062e141
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp312-cp312-macosx_10_13_x86_64.whl -
Subject digest:
0eb1220162cef1ac5d1ef1df0e03c06fb4d917058c65ed9755d46105c5989fcf - Sigstore transparency entry: 1317179988
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp311-cp311-win_arm64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp311-cp311-win_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.11, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0fef4b990cf66fb0f03bf97fb91adf8684bd95cf5f43fa0c06016d54cc143999
|
|
| MD5 |
884d3fe9e54d4e18ad3daef03ddf04b0
|
|
| BLAKE2b-256 |
e9f16e6de1c070fe3f9c1a365d48d5e574725c8e9eb3c39893d2ded54585f242
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp311-cp311-win_arm64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp311-cp311-win_arm64.whl -
Subject digest:
0fef4b990cf66fb0f03bf97fb91adf8684bd95cf5f43fa0c06016d54cc143999 - Sigstore transparency entry: 1317180033
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
da36c8a667d3f0c649efc31517ac8d6570084442f4ebf6188c4ea7de1f974386
|
|
| MD5 |
7755862bd1a603aff4c9045da47c2005
|
|
| BLAKE2b-256 |
fa876b88d7581edac69a7fd8daa99bcc64c49bab58a5be0958fc6c5d535a5b68
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp311-cp311-win_amd64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp311-cp311-win_amd64.whl -
Subject digest:
da36c8a667d3f0c649efc31517ac8d6570084442f4ebf6188c4ea7de1f974386 - Sigstore transparency entry: 1317179814
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp311-cp311-win32.whl.
File metadata
- Download URL: cyscale-0.2.2-cp311-cp311-win32.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d6224c1372aea21266616428c69fc137f12d0bc4d73d5470111774b5fb0c732f
|
|
| MD5 |
85b2d3c486ccff0612a2827cbbaa4df4
|
|
| BLAKE2b-256 |
eb40cf671f0553c95bde721b2db110a0f7b33fc3babda0c65e6531e76a3c632c
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp311-cp311-win32.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp311-cp311-win32.whl -
Subject digest:
d6224c1372aea21266616428c69fc137f12d0bc4d73d5470111774b5fb0c732f - Sigstore transparency entry: 1317180023
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
43b2c69c2f22d2a6d952665e0533f3844789348230e6df360581cefb10906523
|
|
| MD5 |
66f33d389afad1630c40d3fb24a27b94
|
|
| BLAKE2b-256 |
a33aa0133fd8ff58383c482212fd4978bd17f73a1b56e622f39ac20a24425743
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp311-cp311-musllinux_1_2_x86_64.whl -
Subject digest:
43b2c69c2f22d2a6d952665e0533f3844789348230e6df360581cefb10906523 - Sigstore transparency entry: 1317179943
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 6.3 MB
- Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6e1d1b9e166db71ce4023e7dec48d3922e8c8684c29094525a049758fdfd1255
|
|
| MD5 |
661aa3f4229aa06adbc132661ef33a48
|
|
| BLAKE2b-256 |
2cf548e705586386443530d768ab6529895c3cd906d126a9f4fce2c15980da7c
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp311-cp311-musllinux_1_2_aarch64.whl -
Subject digest:
6e1d1b9e166db71ce4023e7dec48d3922e8c8684c29094525a049758fdfd1255 - Sigstore transparency entry: 1317179916
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b285112d698d7925a6a9d146b46e5b1187652d7bb7c6db303cbd1f4eac01d890
|
|
| MD5 |
510812771add12e2b72b08a548a8a044
|
|
| BLAKE2b-256 |
5bf2636321b83825e5807b3570371fb540c53710db4f5c42fd7f32a44821f629
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
b285112d698d7925a6a9d146b46e5b1187652d7bb7c6db303cbd1f4eac01d890 - Sigstore transparency entry: 1317179830
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.5 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
19dfa0daa5c510d036a38086febfbd294d82697bcbbc8f9a06bd89208253fab3
|
|
| MD5 |
feba739eea1ba0d93c328d6824140410
|
|
| BLAKE2b-256 |
43c65bf021e908e58818cc4716287dd35f7951ef351b3ba495a08148b2bddee1
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
19dfa0daa5c510d036a38086febfbd294d82697bcbbc8f9a06bd89208253fab3 - Sigstore transparency entry: 1317179966
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b5b1a41448ad1f5441f2b7a9c14867af41940b7dd48e0c7210a55dac4127d3fa
|
|
| MD5 |
a24f40f025af7d86a8638aaafa340a20
|
|
| BLAKE2b-256 |
c96c0b1f6f5f3b092b573a442331eb3ba4aee7f21b75803d604d2ca49a10d422
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp311-cp311-macosx_11_0_arm64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp311-cp311-macosx_11_0_arm64.whl -
Subject digest:
b5b1a41448ad1f5441f2b7a9c14867af41940b7dd48e0c7210a55dac4127d3fa - Sigstore transparency entry: 1317179981
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0ecaaa1f761ee6f8b0f65a5b6d1cc6a8ec94bcdd9d9757699f43c4172ef01cb7
|
|
| MD5 |
6b5d663fa70ea702ea3dde6facb3f62c
|
|
| BLAKE2b-256 |
79cd0524a660a1686e7e1d0d40d0ef93b85799f2d8b16a14589e81a5e62e03da
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp311-cp311-macosx_10_9_x86_64.whl -
Subject digest:
0ecaaa1f761ee6f8b0f65a5b6d1cc6a8ec94bcdd9d9757699f43c4172ef01cb7 - Sigstore transparency entry: 1317179800
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp310-cp310-win_arm64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp310-cp310-win_arm64.whl
- Upload date:
- Size: 1.6 MB
- Tags: CPython 3.10, Windows ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
766738a9840975e344619508132f7b70b1ec8350c4c386b3e648a6ef133c0421
|
|
| MD5 |
2e96ccb35ca34497e07dc9eba2b20e15
|
|
| BLAKE2b-256 |
89b0c1d6865e746ec0bee3c500742f8dddfd80d56861d585bfe1ba8834ca810b
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp310-cp310-win_arm64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp310-cp310-win_arm64.whl -
Subject digest:
766738a9840975e344619508132f7b70b1ec8350c4c386b3e648a6ef133c0421 - Sigstore transparency entry: 1317179926
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a42d516784af44dcdbde673fd4c6ee3b4cac3dea53703f9ebc1e3f424926bbe
|
|
| MD5 |
51dd70df18fabf1cf3ecf8f70a4f6131
|
|
| BLAKE2b-256 |
55b99afb80d14d5b38488e04006098d498142689f322e03542cf462217fe6efc
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp310-cp310-win_amd64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp310-cp310-win_amd64.whl -
Subject digest:
1a42d516784af44dcdbde673fd4c6ee3b4cac3dea53703f9ebc1e3f424926bbe - Sigstore transparency entry: 1317179770
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp310-cp310-win32.whl.
File metadata
- Download URL: cyscale-0.2.2-cp310-cp310-win32.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, Windows x86
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5380e7ffa749b0aed87cbd30512774eb60255fd4960d1437647236dd778b3d98
|
|
| MD5 |
ea3508eb4db242a1dc44ccb9ff6c199e
|
|
| BLAKE2b-256 |
01c52db00f4aace9354d716b70cb3095af0706222274259511ad829fe79b381a
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp310-cp310-win32.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp310-cp310-win32.whl -
Subject digest:
5380e7ffa749b0aed87cbd30512774eb60255fd4960d1437647236dd778b3d98 - Sigstore transparency entry: 1317179758
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl
- Upload date:
- Size: 6.1 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2c018c847748ab592d15b92fe7b4c3c66c00208ff6468f00888891004ffd4071
|
|
| MD5 |
fc544eb3aa2ee10d033e92b9fa476df4
|
|
| BLAKE2b-256 |
5226ce794a0c61641f40a64a657ebd74f4ade49a06593283602482fac090879a
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp310-cp310-musllinux_1_2_x86_64.whl -
Subject digest:
2c018c847748ab592d15b92fe7b4c3c66c00208ff6468f00888891004ffd4071 - Sigstore transparency entry: 1317179793
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl
- Upload date:
- Size: 6.0 MB
- Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f0b83417acfbd984a7848fb05a5e247527b0fbd0fd2c69d86607fae8e62c3d04
|
|
| MD5 |
c774236d16f51eb8771410ae704a6e34
|
|
| BLAKE2b-256 |
aaee72cbb8b2cb6ad1a64dfd5743d2ef69243258b389f4cff3c4e5389ec14899
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp310-cp310-musllinux_1_2_aarch64.whl -
Subject digest:
f0b83417acfbd984a7848fb05a5e247527b0fbd0fd2c69d86607fae8e62c3d04 - Sigstore transparency entry: 1317179866
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64, manylinux: glibc 2.28+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a827417554d234039c0c90f87079db6bade2c49ab2bba7ac2b2cfb82a18ef2f2
|
|
| MD5 |
585a72a949f0ae03d1a301f5ff5ceb44
|
|
| BLAKE2b-256 |
81c764d4ccb171f2d4448fa1b46a286fa75ee9503f9d29ad91f7107e7dd0c64d
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl -
Subject digest:
a827417554d234039c0c90f87079db6bade2c49ab2bba7ac2b2cfb82a18ef2f2 - Sigstore transparency entry: 1317179956
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
- Upload date:
- Size: 6.2 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64, manylinux: glibc 2.28+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a90314906e670949d996b0103662db1f456ebd539224ebfab92204647fb8da5c
|
|
| MD5 |
ddaee55eeddcce6aeecf89c4977dc8af
|
|
| BLAKE2b-256 |
e44765a01760d5086f1c4cc72d018457659b6a696b87156c9aa6943b1242bf02
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl -
Subject digest:
a90314906e670949d996b0103662db1f456ebd539224ebfab92204647fb8da5c - Sigstore transparency entry: 1317179850
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
32259aa3755473aae8bafeccf5c89c58c9d584ea797331f5593158f056b89256
|
|
| MD5 |
969f0efd65edbfabd77389e1204bb14c
|
|
| BLAKE2b-256 |
8493a3b78861391e8f27a87502f789fbbcf8ccbc9e469db79c9dfc1a8437a8a5
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp310-cp310-macosx_11_0_arm64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp310-cp310-macosx_11_0_arm64.whl -
Subject digest:
32259aa3755473aae8bafeccf5c89c58c9d584ea797331f5593158f056b89256 - Sigstore transparency entry: 1317179891
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type:
File details
Details for the file cyscale-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl.
File metadata
- Download URL: cyscale-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, macOS 10.9+ x86-64
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4bbd7edb70989fab7318c33fa27762e4422d482426bf75e84cb382db82626ae3
|
|
| MD5 |
1beff7b89eebda31154d1a37b9e41516
|
|
| BLAKE2b-256 |
15c6ead2739dceb977f4662ad16eb79002b226692cf7ac19f4fc2b4c2050a616
|
Provenance
The following attestation bundles were made for cyscale-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl:
Publisher:
deploypypi.yml on thewhaleking/cyscale
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
cyscale-0.2.2-cp310-cp310-macosx_10_9_x86_64.whl -
Subject digest:
4bbd7edb70989fab7318c33fa27762e4422d482426bf75e84cb382db82626ae3 - Sigstore transparency entry: 1317179962
- Sigstore integration time:
-
Permalink:
thewhaleking/cyscale@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Branch / Tag:
refs/heads/master - Owner: https://github.com/thewhaleking
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
deploypypi.yml@b952f3d1e16f4aa54fa8036bc95ea59d44576160 -
Trigger Event:
workflow_dispatch
-
Statement type: