Skip to main content

Cython SCALE Codec Library

Project description

cyscale

Build Status Latest Version Supported Python versions License

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

Apache 2.0 — see LICENSE and NOTICE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cyscale-0.3.2.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cyscale-0.3.2-cp314-cp314-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows ARM64

cyscale-0.3.2-cp314-cp314-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86-64

cyscale-0.3.2-cp314-cp314-win32.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86

cyscale-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cyscale-0.3.2-cp314-cp314-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cyscale-0.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cyscale-0.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cyscale-0.3.2-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cyscale-0.3.2-cp314-cp314-macosx_10_15_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

cyscale-0.3.2-cp313-cp313-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows ARM64

cyscale-0.3.2-cp313-cp313-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.13Windows x86-64

cyscale-0.3.2-cp313-cp313-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

cyscale-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cyscale-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cyscale-0.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cyscale-0.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cyscale-0.3.2-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cyscale-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

cyscale-0.3.2-cp312-cp312-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows ARM64

cyscale-0.3.2-cp312-cp312-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.12Windows x86-64

cyscale-0.3.2-cp312-cp312-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

cyscale-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cyscale-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cyscale-0.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cyscale-0.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cyscale-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cyscale-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

cyscale-0.3.2-cp311-cp311-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows ARM64

cyscale-0.3.2-cp311-cp311-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.11Windows x86-64

cyscale-0.3.2-cp311-cp311-win32.whl (1.7 MB view details)

Uploaded CPython 3.11Windows x86

cyscale-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (6.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cyscale-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cyscale-0.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cyscale-0.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cyscale-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cyscale-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

cyscale-0.3.2-cp310-cp310-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows ARM64

cyscale-0.3.2-cp310-cp310-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.10Windows x86-64

cyscale-0.3.2-cp310-cp310-win32.whl (1.7 MB view details)

Uploaded CPython 3.10Windows x86

cyscale-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cyscale-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cyscale-0.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64manylinux: glibc 2.28+ x86-64

cyscale-0.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cyscale-0.3.2-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

Details for the file cyscale-0.3.2.tar.gz.

File metadata

  • Download URL: cyscale-0.3.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

Hashes for cyscale-0.3.2.tar.gz
Algorithm Hash digest
SHA256 de16357b7fcc480ec12e4b955c76f0cf6fda2d032eb38ad6f655a0728f26f633
MD5 30b8949facd1798d6778e1cdc1ebffc2
BLAKE2b-256 85df54e9458f9af6fd4689dc7a4e2900cccbec3ad45c9c3f99ffe3d42c5aa4dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2.tar.gz:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.3.2-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cyscale-0.3.2-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 009efbd5cbd027e225583d45e866e42293c1ee33e585229ac7f4634301325e8c
MD5 c8d1d21789c9e8a5c72a19ddfbf2aee5
BLAKE2b-256 fdbae33111db48b1cf2ce511c595dc7c65de1c795e07aa07f16ebcfcf639fec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp314-cp314-win_arm64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.3.2-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.8 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

Hashes for cyscale-0.3.2-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 2d29d0311e2f8b233c68c1544f700df9df2e4451e613c828a91dba84157e9ff0
MD5 96ed454bdb1fcea0e55723d8f857e645
BLAKE2b-256 2fd4fcf8ca188922e7d8168466eca01aa343f9bf24a485c891ca5856eb250ba2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp314-cp314-win_amd64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp314-cp314-win32.whl.

File metadata

  • Download URL: cyscale-0.3.2-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cyscale-0.3.2-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 73aa2529c674956f3f25ae82f0fe1309109d5da762e2fdaf3f641e9b830e3aa6
MD5 ba0720a1d3463ac7f0fc908547700107
BLAKE2b-256 ecbff382a9851682b41bff1ad95ee609b8a9c51554c059fd860d9485aec6df60

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp314-cp314-win32.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c2e67266ef57b30ff4520061da578a075c113352cd982dcfb2fd7a6ceb8a6b3
MD5 abc1d33f1aa95410fac79d53d350f2ca
BLAKE2b-256 25c033b907fb8b91e5f0f3951e924e1a8b89de5216a572068e75c0102fa9cb8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 301587b6823aee45dddcbf242cf09cfaf19f235ca37944690c9b0ea85cc9028b
MD5 1add0fe4931defa3ab156104255fa385
BLAKE2b-256 38572a65d0764bb1176d96341a07acf1846d460afde980c2b8f0c8240ba28282

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 260f534129974f4fd1e03fe6b07bcaafc6daaa0ffcf1ae94ed8ad49ef13e0091
MD5 bb9c18d3c3439bd854e8ad479c5f6711
BLAKE2b-256 37771337dd87a5c6c42b278154886e50ec7e80e489128d83518a5cf428e2f586

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 360f267f1a91c29f713e56152f88e4facca3558befe50ab9d327bcb55cde5d04
MD5 e2e3069b75d8552ee64d6e7ab9e109d4
BLAKE2b-256 98bc3994f45e75f2166d6a5f89e2a33fbb4a07f65ee8fd5d4288d704f11e4923

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f0ccd59c9e9f10bca8e6f413bdc930ad740a9785f304aa6ab7a2f955f8b655eb
MD5 d1863d2190ccd5e9c2fff31804cd93e1
BLAKE2b-256 7ce0e636add18fadd609873ec9def61352a73c3bdfe46e609f1e51242e576193

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0e12b174affb889102a24530affeaff5eddcad927090cecb5561bb464e5dacb3
MD5 bde4f8b8ead10718f03a44ef49dd0804
BLAKE2b-256 389bf8e1f4891dbb1548142ce971b8fcac2605b03797ba92e5fe30fc9de05de6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.3.2-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cyscale-0.3.2-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a502cc6bad6d5e5ead6e493e7ac14274bb514d51895998bd69658b87b6b11da6
MD5 7a7bf5fb85a285de1364d41f8d5cd0ab
BLAKE2b-256 a870a55407116fb49b871da1be26faa68e7026100569f49a6b29f88272399ce5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp313-cp313-win_arm64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.3.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

Hashes for cyscale-0.3.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3c59d1ef980c074755d7d6accfc724f024c19374feb477c2e08fa1f1a2759e8e
MD5 f9186e2984bd913c5308df056f95d678
BLAKE2b-256 bec0960d33456279a5e882d1bcafe2ed833be27036b825e658a2c010a9c10faa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp313-cp313-win_amd64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp313-cp313-win32.whl.

File metadata

  • Download URL: cyscale-0.3.2-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cyscale-0.3.2-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a8da55bbf3c584ef9e68b12dfc0033e126c00dd9d601101a0e8dd69d74e129b7
MD5 14fdc4b4a72f72ad9a321c47078b786a
BLAKE2b-256 6916634da272d07da76b52ee53d06e3c346df38de27dac28054138240bc18e13

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp313-cp313-win32.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 58079cd347bf3619734f691625c2a1573285adb0269a805cd0671986018f5139
MD5 4e500af805d04ab1c197e917aec3a6a0
BLAKE2b-256 f51cfd6c8057a2f9dfa8eebec4a8cee37927b82a799e5e3629cf409ef6baf821

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e4b7fb109d7ed556d1d0e4dec78081b03d4294568ddfa2f718a69796ffe24a1
MD5 bca35d762c7607413689bb0a8e4d5671
BLAKE2b-256 c86f0ed912f9bed346831114269aa1e0c397a919e7033155f75bafaf7a5fd0ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f1c0ffef34a1005b570115d2b788c95ce9c8dd13ae596a4ac26a2e30a3a2583
MD5 b0a409e1e1123973fa2ecaaba4381dc9
BLAKE2b-256 2d1f1de73fe4c1d77a05c53004483aa24c5e1af49a2de5af88d9864dc7151628

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0c910d91e11a8b5d88a0dea93f67db8ba97e09fe11dadd98da4c541d15016424
MD5 90e61cebf63f6d865a528ce9b19cff33
BLAKE2b-256 9b6088309993a068719d3985c375e8f2b7a81ce66ca1846e0347a6e00c6ea8cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ac8d428ea1e1b426475b14ef1fcb3f048316c38a4023233b95f630ae21118005
MD5 c59fc24c48fe7d359551a7323833d984
BLAKE2b-256 3c606b0d0ca47af976bb0c1be08f56975fc93fd15e88ad3823f89b6bbe467cf9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 6583497ccf25771b21533a2fbb37676a6df9215fc97075ccd57b11d1b923322b
MD5 13bf33ed63267b15144de548b17650e2
BLAKE2b-256 eafd9571b9f1ee6fadfc43c0fb55ceff20869dbbf89f24354c59dd1c7a608729

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.3.2-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cyscale-0.3.2-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 775dc40e7ad4e4b5ccea37ea8b00bf0afaf9647db3d324ede5acfa1b1f60f0c0
MD5 5aed5e3f39b28b297a936f7a05424b41
BLAKE2b-256 def0a159ec586db29e8d59ee8d2c6904fc37e9cc6df6dee314580bf66c8f953a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp312-cp312-win_arm64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.3.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

Hashes for cyscale-0.3.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 029c1814bbb919a65491b9b88aa321151f6f0eebd2abbccb06691534b3447f7b
MD5 61ea6e64a0f04f383ba87308b1ddc024
BLAKE2b-256 96187514aacfd50f62c89f98ccf05910a450995a987e64e679527ffef3ec3744

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp312-cp312-win_amd64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp312-cp312-win32.whl.

File metadata

  • Download URL: cyscale-0.3.2-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cyscale-0.3.2-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 1da9277a84e8964b15658d64cdaf80c3ff4d4fcbc6eb7307d57f4121b29898d1
MD5 8c5052e820d3a8fdb2b313dabbeb1405
BLAKE2b-256 e07e1a577604292231218c01e679044e6a354a1c9a8242e1f2c968f04acc80ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp312-cp312-win32.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9cf40bd2b30fc1c57a0a8cd1889010d123a5dd1611379bb225260458f2369c9c
MD5 99c6f592704362b52cb8218b57bc14a2
BLAKE2b-256 98a14d73c1b59bc40bdedab315125afcc6601f6a5919787f1162d8675f4ff190

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 20fc33b182ee649da1f4b68cf67c6ca9f897fa36c68d572a3b0769be1cdd7c95
MD5 4a4b391c20826a01d99ad254a343c11e
BLAKE2b-256 db78ab79edf04bac2bffe6a09e971f6f56bb33cacf69e1848920b69e6245cf53

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48f8311b5017315a8f6a245777889bb52ca38609e0093079a80e95dd1b608116
MD5 f59c6a91553924ab2aad58b6bfcb2e1f
BLAKE2b-256 85df3f0ca4b7b4c1e6dacc1a7a3440e6dbbd66a8397f3d10f7e83b4ef77b2a40

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1a1099691db9eda08440921e04580bddb5ae2905c508e6fd3bf2e32675116268
MD5 8d373fba7488dbedad2db8e5945e3d42
BLAKE2b-256 1b7e018d0d884877f232cc2987d3b4a87a9ba8f7fad767355206ce23596edafa

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bc74c775ab007af2ef96b2ecc40ffa6e4a80916404bcbbe9019d473337947901
MD5 e16ca932faa2087d9843f09e334d4c0d
BLAKE2b-256 ac6191e8428e3f5506d1c996813ddbfa95dae52322fec609ac20164318c0ce04

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4c474de3b4adef0fb930d030fd309aec637c5d8d1cde688dcf6d8ab55105093f
MD5 9070aa51749d5abbec89ffe28bdb80f6
BLAKE2b-256 7f3f728ae9ea4a9632603de8d37c544fccc7690afd538299509dac8c63ac5790

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.3.2-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cyscale-0.3.2-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0a91caae42735949096f9fc29088cfe7047ac1de1175e250255cdd97b158b828
MD5 93d0f79872200a7d536e47217fb7c132
BLAKE2b-256 7f3eaa782fabb003a879a7937e2d7ef5616b06babde2628b377018533821c7e2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp311-cp311-win_arm64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.3.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

Hashes for cyscale-0.3.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 bf891e449beb100a3a1921e1cde93f00a2624bbf9d1eafe94c76ba46b0bc74f3
MD5 c66421ae291d4954ecb022097699530c
BLAKE2b-256 a48d388400975eafef113ae738173fda99236a2cabf740f772fd302f915e31bb

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp311-cp311-win_amd64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp311-cp311-win32.whl.

File metadata

  • Download URL: cyscale-0.3.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

Hashes for cyscale-0.3.2-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e9057c90f80f2130d9b5e6d6998dd69d3292f827cf3ca395ed2dc4cc1640b1e5
MD5 28ee7143b978299b1c2b2aaab521ebdb
BLAKE2b-256 7195fc61a4a489d1d27d9bff03ef478c821fb94ebed9b44c8c7631be9aeda64e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp311-cp311-win32.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b998191ca00bbf6612280e7d5b44f9ad82810774e5b2468f6a505bd3f14e45e7
MD5 9192930f11ff105d4df062b3062b69f9
BLAKE2b-256 93b91aeaadd6434d64d7a0d9081ecc7a4deebfee522a922fdd190257832824c9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 386ec5b59ea70effcad7ccbb0352248369ce00f7c6eee759774e4e22ad09509d
MD5 f8ce4934d73e97c6910a4651d5472b68
BLAKE2b-256 ebd606c8bd5c685d6cdd11a1f766384d3909aef883158d9796ce4007e2beec8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 91126098b799742db33d993c76ecbf78750191e2cb7f83a2432dab9fdf44c180
MD5 c5fb1435d9d9ed936ba6a2eaf10b1aa2
BLAKE2b-256 6d825b9d64e00c6566e44c156da31f096fc48f9fbdc1232015e1f59b2e930212

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 64b92de4643c2f20769be43689b64e2552d8552644f9165421c369672c683c0b
MD5 89bc9722e163af47ce81e6f24b632b07
BLAKE2b-256 13d7e838978f5e6f104c1cce1d4e3a0f5d0a7c5e620ff81dae69a19da3e22d0e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e4dc464af32abb9cdd6590f9858d0052b1d55fccd6bf16491cdcfda03bf90dad
MD5 4e47cd15afb96a076c3481f4553d222f
BLAKE2b-256 03193aba7aa1fbdd47292df93410b7b192e8172b29e1390156cd743d2ff554a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b01748c611ffc3d4d574dcc6f4bb336b97072ea50cc072508f8c0e65fe913083
MD5 cb3863ca41eb39a6b22cdac65af7f72a
BLAKE2b-256 b2b4229fc8bb13d3e419ecdf043b556793d3dee75f245fec2293172e7336ca2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.3.2-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.7 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for cyscale-0.3.2-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 2749fddd0c1a2bf165f9ccd576d3058c9ca33baa05049f1234b4bde602334075
MD5 1ba657e5eea9cad60e8f42873efddeec
BLAKE2b-256 fd882e63794d947e8ea5494baa6a78ac266503c2cba31b7211c1c377520de8df

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp310-cp310-win_arm64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.3.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

Hashes for cyscale-0.3.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 911a4c76226de853d312f37cac4b9c8e64f14b8859ab18021078a4c87ad66b61
MD5 63bf2a132492b94ab1f46902276b1814
BLAKE2b-256 bf7bf70363a77d6d8dbdb1a6f14952748c0b045d027a038f3930a088a860d29a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp310-cp310-win_amd64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp310-cp310-win32.whl.

File metadata

  • Download URL: cyscale-0.3.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

Hashes for cyscale-0.3.2-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 717799ad476be31b629fb9d4198e357457bb0bc49a8158919237eb11fa235a40
MD5 057c1aa850cfbb33923e2ae0d861d447
BLAKE2b-256 a5f1c652c609069c034fa6bdfc63548de4f6d2f5e7cd3f05bcb7576632437d85

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp310-cp310-win32.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d7e3010c5c0211967b57ec55d9b790b2cbb4c8559386d7246dc676d9fbd22c05
MD5 6e665f98ca2aeec25e5b6c558087b380
BLAKE2b-256 01ef66c537cf73dda36e5ba5ef6e5fe4614fbcd51da5497adfcf2911a39bf7e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 529f2bdde374c1396fb97fb6fde8b42f468e89793a8ceb97e14f39b2310d6a51
MD5 791fe6969f6456ab2849404435dc6d7b
BLAKE2b-256 34516884e8ea4af28bb857c7f7a3addc3d22adc904ff0b563aeb73a6a8ad8a58

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 bb423b199128d68b85a77cc5a22a0a70f60eaf417cfad9ee163d06e5d756f948
MD5 0140ab28a5165c03c011f89cc460b547
BLAKE2b-256 512ef50aadd01aac38a167fdd3c9fc9e93b333ca4852b59be3eceeb5834623e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 79187c4ffac828b66b4ea1f32a43655092f5067ff4304606ce8b31caeac3b994
MD5 de17c353988218bd67abc1ca80f5681e
BLAKE2b-256 5af86a8dac2fb7b847d06b250b9ed7d55d5ba71ffa2a7266c9fba342018e7108

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 481cfc8f99d332a78f5fb0ab00ad221aa35f30ccd666a79db7bdc962795e5ff4
MD5 952b021aeccdff7b674ad1ce20651a10
BLAKE2b-256 89f2dac3b33adb927fbde700b81e922c12abbef6b6e74531d27abb7ab2df6ad3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 83fd8de89cd2464ca01eaf5efd59af23af039c030468d6a0864624d3f2210315
MD5 4d93b17e9d5df7b63022bab56368f3e6
BLAKE2b-256 14e5ffa6628da242664028e006294ef6c387baaaa448ffc1358b5c998a45f294

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.2-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: deploypypi.yml on latent-to/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page