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.3.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.3-cp314-cp314-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

cyscale-0.3.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cyscale-0.3.3-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.3-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.3-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

cyscale-0.3.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cyscale-0.3.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

cyscale-0.3.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cyscale-0.3.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

cyscale-0.3.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cyscale-0.3.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

cyscale-0.3.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cyscale-0.3.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.3.3-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.3.tar.gz.

File metadata

  • Download URL: cyscale-0.3.3.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.3.tar.gz
Algorithm Hash digest
SHA256 e1d1f2fc95ef4b1bfb6ebabc72121ec519a0d996e74d905fc0d6142ec4f8694d
MD5 4ac88c108fbb13b3c3556ef516ccaf4e
BLAKE2b-256 c82658ac0791e64f711ff2999f532737e4de5a2b4a5fb1e2150302e1c4b7bacd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3.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.3-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 af40ff33298437cefaae5c1ffdbee0bc17ed02edf07d41e9c218df699c7aa592
MD5 d9d71074447dff3756086a458df7ef55
BLAKE2b-256 96f631495a5a34025475c49ce5d5c63219ca962d50a7e2f1b98237df1b67552e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1359509dbfcad48ba913133345c048a8f75a0d53add7cc7ffcca6a8280d24770
MD5 8e1cee1e47e9e7d355a10d3e70418152
BLAKE2b-256 ff160a4a9c1c3b3c352bdb9a41458e599beb4a203254cf9bc1ed737a744980e8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp314-cp314-win32.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f4565ac782c815de349ff2c3e66fadc892f02b853468d45a37c72a11ade378dc
MD5 ad4c21d05dee8dc04e0092a60e652695
BLAKE2b-256 6f3a85b0dc595993d66e03a3361caf6793dc8105af777c18932438e42d92f365

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a59241dbc040a122f4cf47a385507061068f2c79b5026e4627bb5f1ad54fef85
MD5 8f8fb818392b9662fc818d7a2154076b
BLAKE2b-256 0f87d819c636a62f71581c2b920e5182e56ed2543bcfe05a9752121635c9121a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 82febf458487f60f0d71b94c18669027c53a4e97d47eb3a57a1487bd463095a1
MD5 4c4d2f63cb0f4c6fc9a4154740e39977
BLAKE2b-256 b72efb663a307de71fbea78f5d33896736c95259b428c0257aad89e5ae2f2d69

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-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.3-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9eb67dede0f1a2bedff49241849b0fec5a1dece6b9afba432f149e51d4a96ced
MD5 3146a995d5bc937bf291d32f2b45022e
BLAKE2b-256 5414c68072d9afd32303f924606120fc6de07aa85a22221088d17db404b3830e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 eea7031011d6c3ab8428bc876d9391044f58e4572adea2818540e46a4fbe4359
MD5 523dbfb7afd84bc284120394d9914a25
BLAKE2b-256 9e2fb70a54252fee1784443e65e0f0db46dbda338ce26569bca5fa475c5eac1b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3b4ab8ab5a3380ea872e2b518f59f31102a0901bb1e523155f0a6feb6456e8c2
MD5 a7316808fc8e7c6d08a1ff4e385f7f76
BLAKE2b-256 6be24e17270a756fea107324a2efd140a97e20430443d630c8e35fbdffbeac9a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 5108c793277ec794a7ba5218b469e09a56fed2dd0f07919e0328e67a146b79bd
MD5 fb46fae8015552369bed1af3a5b3b5fb
BLAKE2b-256 5c8857b928380aeff8f3dd5c01bd07d03afe770a9d4065df8e886eca55441a15

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 daa422663162fddb68e5286c1c8818c1dc520e2be561a01ab5e2a655f9cab0c5
MD5 636926f96ed1bee2215d4577a840d60d
BLAKE2b-256 6d1df7838aa5c2955c4a88163d59aaf5ec3f49e9f8f15289f2908b4663378e8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 3ca7d34231599b68799ffb8207822a96959050a594ad5ebf90073a58d6af618d
MD5 821886f868c7a441b7c6e97864b1f5b8
BLAKE2b-256 1615e15d35bf2a084cbae294030ed033eb69c406fa46746d1e5ddc376bfd376e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp313-cp313-win32.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 698089d50a931fb45ee6392dad17874ac91ff3343525087e9229af936ea9e846
MD5 ea55ed263ca0a7bd79c8ca796d4b0552
BLAKE2b-256 398f68388409f3dd90a483aee0c24a1cc68852f2a88bbc9f70bb9d7f48fc6fdd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28438a2f9a184ce8da0cf19653fb56e88950cd55fda159c5c1d7e1d9404faffd
MD5 41e7f3d858867ee653dccfabaa4d3494
BLAKE2b-256 ec8a9a4bbdd2acee615ee04616dbe7b473f1d83f7b15c3ee408675593cb1a40c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f29bca3d36dd7e76670fe4b9999d5f0cc90ac0954f7aa6e99b4afd7f55b041d2
MD5 404726065a50dffd767bec6f17d46345
BLAKE2b-256 c5e235ef7c780535786c82817d6921402f89584a39f4e787d116e1e54348e2e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-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.3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f9f672a7b28520fb9fcf1cfcc39ce61fee3573e0e8fbac39af074d5f986865b8
MD5 cc041694a604d3a50d210be4ce1b2d12
BLAKE2b-256 3e61e78671108b13b9d99cda372d0a0fee9674b5b5dd7237402f103a95375046

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1101912efdf4981a6ec54a2ffb3d730254d98e1151f8fe42ec9183950c7bc515
MD5 a30bc05f6f1170ad6ca43387ef40a597
BLAKE2b-256 fcd258caa532b367f267c265bae515379930a33862286b0ef129670d8ff4ef97

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b12659d3019e759ab82dceb7a56c5b4ff5b1bcf64a35b9bc90751bd43c0ce363
MD5 cb1eeade29b55ac2d78743ad4c21128b
BLAKE2b-256 0ca7b5b0b33a1292501a942d7f547c1d9e8a6b5c476f391ec7f34531d00c1446

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 28f96fc7982310a91c01f188bbfa5f7c0b3c919709e19aea67d5362c397f6f18
MD5 f792b2ecbda54f7b23f0040a6e9eea64
BLAKE2b-256 3aacbee0036f9252537a014d7715e18eeab9e98cadeb27ff2095ca7cb850a328

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 231a97206249ce066a10df09523fa938dcb7c89595a16526ffe507dbf23a7541
MD5 7b29562e1c4986408dc63260bd999fa9
BLAKE2b-256 08279402b19c29efe3ddeddf0aa21196a5843e8848160202119033ed256c0387

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 798c0d9058980208b0799981c1747f9a3343899d6eced7cd176e145e14627979
MD5 a7c2d7b5ad08286860f9781b61126609
BLAKE2b-256 cbb1c7227bac8ceb23955dc2b0a4c0b4ef76140ffc4815061b7e7a8d4eca2d07

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp312-cp312-win32.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 37e760d0e4bdfd25668a0dba0b386a513fef70dc438c20dfddb2e815be98306a
MD5 cae66961e401a93138101c2279b9eeda
BLAKE2b-256 5761fd2c32baa4f7ab5155d9dfa8bb888bd8ac95244fa84e2815ca7155f3d6ec

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 435ea3bf5d95c6c825a648dffc5af03d7fa44a7df5687952601a2c19735e1ca1
MD5 ac1f534313a022beaffd71d557f19a47
BLAKE2b-256 0b759622caa735606ac938c647bde73828e2a7e1a613b16e36ea73f41891afbd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe2f15fcbd4c0ddcb329a296339953a1fdaef1c3a67c9d47b1727b8935439109
MD5 28921bb020e1b32f6f685ce1155cd875
BLAKE2b-256 a69f7e9d64423c09cfb1704e33b1559fc231f5b917f2743a8d9c8dcc6ce65221

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-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.3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1690f3912c2b2e4764db512ea17ca27649dc0f9239caa740763c4a17751a4fd4
MD5 d5f2ca09bdafae057b9abb3fc035cb1d
BLAKE2b-256 fc425b14595fd67677e988634abdd1177403b893f2f2f0d31e1699af38f4a565

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5d82fda4c0153ae564ab295679e9bcc1c6c450fbad5a0ab5be447296b9293b3b
MD5 ec885e83f6dff6ba5c6aca68d0484948
BLAKE2b-256 c7019724f581eca13fcdbf99097181da53063d7809cbb6355a6d3b1b0d902d84

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a29a14dde495d820a5d670ca72bc528eb798bd1c42ef0f76dc4a693769e6b77b
MD5 3513eacf1999adb716aec8c130902f57
BLAKE2b-256 7a27ad5a8f777ab1f88f329fd14d360fc22efd663df11752adedd15efb761131

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 bbb9c9fd1b033e254da12a13a29c3d06446ccbd41c258b461315cbff5149d82a
MD5 c282fa9127e5c00455310e5f30f76638
BLAKE2b-256 cb9a12dbd34f223ae4000a9a2b72278e847632caa773f197b32b6dd603e99523

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a99a66911aa79629cf42a619028f4e59775e6ea0eb2e8045bdd8d68946a0c2a6
MD5 523d495c5090f4d7cc30b652aac5712c
BLAKE2b-256 bdb0b12133dc766caa2f5da4e2b38c0f381c995294c615f037b50ad1649650f7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 eae88670e9dc0c4f22620de87d97bf268363f33ac28bc08332c07e6f212962fc
MD5 0544bea79e17dd5926cc8797cf4197ed
BLAKE2b-256 5efd8a5a41479bb772253fcfe5acc00cf81d5888d1f1133250cae8188be80940

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp311-cp311-win32.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cf5488fe4799e1ab6e1815292f62de765ad7987ee09a7d2b1fd221811ec6846c
MD5 019986d3d73553e85f788f22779a13d2
BLAKE2b-256 ffd4abcb6f1efc436fbfb705c946f45842c12f8104376421ac3df506af040b29

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b5c7fe848d81354dc3fe069f1e6d3ee99771667b87c8f088fc62c1e28207b51
MD5 6fe95457aba116bfc588c71b77ff1bdb
BLAKE2b-256 6409aeb9b6cb0fd8517c4ecbfc9912344bfad3c671c75a0554fdc41ee6ca4e0d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d93ae6cdbb44a2f326d03d41250a801cdbf09f2aaadfca5dc82eed5cb1b7614
MD5 ec92c174b0d32649ee4577fa596953c7
BLAKE2b-256 c3d5926285c21a65d6ad4bdef7adbef55d333efd5ffaa4a96bd204c0d8b0adba

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-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.3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e02b122f39eb2128ca0ab0b4d05c81b7c296b244b68361b15dd7f8649316863b
MD5 d30eacf2a1744e4a244d142426c04221
BLAKE2b-256 6acef2f04fb244e26b851750305bc0e42357e0604fc66db4701101dbea3be492

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c7f10afd3e7aab3828ece73a59629635f0a4ef5403c048a5204805c5e0bce6e8
MD5 502f1e6835749ffbef62f10b6a808ad3
BLAKE2b-256 6cda0c8f64faa452b1a6cf4fbf6becec6096df800d021bfb562449c57f91178c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 146dce09cd7f2f80b3a2fecda1b6b29c73f958e7a3b12151cc74fb8778791386
MD5 7692cecdd49393298d1de764fe02b126
BLAKE2b-256 0b2677a96603c81ddabfca9a7fa180b8693c13b5c70ea32e78140d3fe8c62a5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c0650824c5714bf01f5e15586c1b6112e04345b4f6c08046f55abcd1a334a359
MD5 615fac1e11218c507e1d9c5663822c96
BLAKE2b-256 a4071de9cbaf84488f407146250ad86dfd50ed16a10310aa62440d3c345fa858

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 3282000fe168d253e8e8e39076fb91b7332e4488475c42a34372d49b80baa0a9
MD5 1cfa3600e8b126395b3fdc40129aeee9
BLAKE2b-256 0fd7903e1d72c76583fbae92c87efb48bbe8f6c709a3361366245f37480dddaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 f1b780f7034a3ea2553e755d8608b72573ff965becdb41b7053bd1ebdbd85cdd
MD5 d9b43c314257ea36580938eef1458c1f
BLAKE2b-256 4978a6e4956d2fff7a3f478ce08354f273706ad9f93c5d186bdb4985a29bc612

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp310-cp310-win32.whl.

File metadata

  • Download URL: cyscale-0.3.3-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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 33b1aa49554adbf3c7e91fac1441c9bb227996faa9757ae0781073919441d5b4
MD5 508c289b39c7a8c0a90e70520b24dacd
BLAKE2b-256 0b1861bd9d74ab6298a286bf2ef8cea6acd600604fd9718a86e5092337f9b794

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea1f6097b5aa43f78288367c818696ffd1bbb5c64c0bf02e656cf66a401360b4
MD5 d8be49a0fc513ca70b7e5f90c2bc0c80
BLAKE2b-256 4140ed9e7435292050eba49f3f976a49d29130ea1156c9274730b52f2adcb909

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 46427230d04cba650988079e8da28ee99856fc25c256e805086fab3ac3815744
MD5 0c0857231dc852ea066147736ad95117
BLAKE2b-256 6fb72299a18b68e6540ed54033e73c4fdf8a970b33e075381b09552bc6f29ff5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-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.3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 670e899d43ca648c28b6fa6424032d9a9ab656cd9811d394a17207370666c485
MD5 1174fd0a1fb526764a144e40e90d77a8
BLAKE2b-256 9e1f4033dea346b02df4ded7b0cc4a1a4712b2433a0b7f58654434acbf5582dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5832d18734dc479fd4c8993f1357d6f640526b8259238260a463b7a44e40a9c2
MD5 d518f984e0961127ff182d00c488de9b
BLAKE2b-256 ca44e339b55049bcebf84a58651112467b3a2ca322dba9b3c96ef992a9396816

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6d921ae8c84147c252f78d393963baf63cf12e75aaa1a3433acc3de6c706145f
MD5 7d6c9773df1b35bd70cf757a8fd392a5
BLAKE2b-256 7e062b17f9e83d5ffb0340ec2b2510bd9b4b3764a2afff72c649d8eead48967e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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.3-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.3-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42aa5db64784675c91029e4cc33432d7e98c6efc8467f2ba47224f7593655c87
MD5 86204240ac1df39e1b3c06580b955ff4
BLAKE2b-256 c3e793ae54d401cb83dcbefbf1c4c26b0d31dffb517350d922d9cdb22f7838dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.3-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