Skip to main content

cyscale

Build Status Latest Version Supported Python versions License

Cython-accelerated SCALE codec library for Substrate-based blockchains (Polkadot, Kusama, Bittensor, etc.), with no external runtime dependencies.

A drop-in replacement for py-scale-codec: same scalecodec module name and public API, but 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.69 1.78×
u16 decode 2.99 1.80 1.66×
u32 decode 3.11 1.83 1.70×
u64 decode 3.09 1.79 1.73×
u128 decode 2.91 1.84 1.58×
Compact decode 9.59 6.90 1.39×
bool decode 2.93 1.61 1.82×
H256 decode 2.93 1.66 1.76×
AccountId decode (SS58 format 42) 11.45 4.31 2.66×
Str decode 12.89 8.58 1.50×
(u32, u64, bool) decode 21.96 8.36 2.63×
u32 encode 2.34 1.50 1.57×
u64 encode 2.33 1.55 1.50×
Compact encode 8.85 6.36 1.39×
H256 encode 2.47 1.42 1.74×

Large payloads

Benchmark py (µs) cy (µs) speedup
Vec decode (64 elements) 224.20 20.88 10.74×
Vec decode (1,024 elements) 3217.32 147.21 21.85×
Vec decode (16,384 elements) 50396.95 2150.86 23.43×
Bytes decode (1 KB) 14.67 9.99 1.47×
Bytes decode (64 KB) 64.15 63.30 1.01×
Bytes decode (512 KB) 379.99 429.74 0.88×
Vec decode (5 events, V10) 301.10 131.81 2.28×
MetadataVersioned decode (V10, 85 KB) 64958.83 35936.30 1.81×
MetadataVersioned decode (V13, 219 KB) 143029.99 81044.60 1.76×
MetadataVersioned decode (V14, 300 KB) 390902.34 185823.12 2.10×
Bittensor metadata + portable registry (254 KB) 443089.47 211343.83 2.10×

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 19.36 6.03×
batch_decode AccountId ×100 1159.47 190.19 6.10×
batch_decode AccountId ×1,000 11530.59 1888.99 6.10×
Mixed (AccountId/u32/u128) ×100 599.73 71.42 8.40×

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.

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.5.1.tar.gz (1.3 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.5.1-cp314-cp314-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows ARM64

cyscale-0.5.1-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

cyscale-0.5.1-cp314-cp314-win32.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86

cyscale-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cyscale-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cyscale-0.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.1 MB view details)

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

cyscale-0.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.0 MB view details)

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

cyscale-0.5.1-cp314-cp314-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cyscale-0.5.1-cp314-cp314-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

cyscale-0.5.1-cp313-cp313-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows ARM64

cyscale-0.5.1-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

cyscale-0.5.1-cp313-cp313-win32.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86

cyscale-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cyscale-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cyscale-0.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.1 MB view details)

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

cyscale-0.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.0 MB view details)

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

cyscale-0.5.1-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cyscale-0.5.1-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

cyscale-0.5.1-cp312-cp312-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows ARM64

cyscale-0.5.1-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

cyscale-0.5.1-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86

cyscale-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl (7.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cyscale-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cyscale-0.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.2 MB view details)

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

cyscale-0.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.1 MB view details)

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

cyscale-0.5.1-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cyscale-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

cyscale-0.5.1-cp311-cp311-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows ARM64

cyscale-0.5.1-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

cyscale-0.5.1-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86

cyscale-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cyscale-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cyscale-0.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.2 MB view details)

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

cyscale-0.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.2 MB view details)

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

cyscale-0.5.1-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cyscale-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

cyscale-0.5.1-cp310-cp310-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows ARM64

cyscale-0.5.1-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

cyscale-0.5.1-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86

cyscale-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cyscale-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cyscale-0.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

cyscale-0.5.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.9 MB view details)

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

cyscale-0.5.1-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.5.1-cp310-cp310-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: cyscale-0.5.1.tar.gz
  • Upload date:
  • Size: 1.3 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.5.1.tar.gz
Algorithm Hash digest
SHA256 7c1334748f0cf0061fc83efbc9ce71d772de2f829d2b049feee8735dd123a457
MD5 34e322952f72c0ae2a28a89c84b98ca6
BLAKE2b-256 a3888e005e8992e8e7f8028e2abb2fd5ec6548a7b3240c9c50ef5bd199ce8651

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.5.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 aeb07bbd302f0fb585e6feebf128a4fa1405200462858f888b4a91ad4cf3df01
MD5 86d725f47b94013379bf220e91acec32
BLAKE2b-256 88b112b8fa51ddb656b76b0c850a2e0bec9c649d63109e886ccea97aedfb746a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.5.1-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.5.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 621a96cab98ade9a39309cf24e74c4cd6257ef91bd5656d17eedd4b2a8220d7c
MD5 b405dd1dbab168a2a2a9d36697e4830f
BLAKE2b-256 d42120bdb98b78b9716ec7d465e21bab36edb9e687fc1d9a585f293949d96885

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.5.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 260ca8005178886ff4627be5a7b4c8969b234c339542a2cbfe539bf6be46459d
MD5 0dded7ac014bf3d5e6c3248fc2706eee
BLAKE2b-256 b18dc5d01ca6351e3c27edab043a0f7f2225beedb73d8f1e4e4b174aa70f4a0e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bbb0fbec5a60959ba65912fd1d7219159a08f92a6ac6b0d7198e413ad274fc4f
MD5 062a65df8a265137124f049c188cdead
BLAKE2b-256 d00ae2073ef6b23a49c1f422d003f952ef1f99cd85fb6865b288b88b73f1b8f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61abc0ba053c1fae845aab67ef71f279259f4ecb9e0b89c437dc7905ea3f3148
MD5 439b52698eecba420b26e64ecfcf038e
BLAKE2b-256 e8255e6459853f4d02863b87a7dd6f12b195419b15338ca25ecf3cf67142b54f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.5.1-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.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e717c4818b3bd37a060ac3943fa00ac9caddf61d766d24e70e2f9efbaf920cc3
MD5 d8063b7013a3bc09817b08bc7ec971a8
BLAKE2b-256 8c183476fead7b38e0c657eca5e42ea0d85e05c6a20a3108c10b2c9afd80b392

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b9d16705a800864054856109cd13e03f86aa33f150e07b88746524743a6b1e9b
MD5 39c8d2cdd0e0bd72704db5affacbaf5a
BLAKE2b-256 9c76fbd6b7109d8b216c3b6d174d815b1ddbe2ea1df2bfe6a0a897bea1105db5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad8fc0c677d674f8448f6a133e458fe1479c8f29a22275efb9ff2362b9748bd1
MD5 a215e2910698583e08ff4058d66e649d
BLAKE2b-256 11a5990f3df5a29ca6b8427027bf8ad00560192872051b39c7ffa798e7356ae2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 ea53abbbb9aa1fe4f1e0e0432738d8b43d7bfe2adb2839ebbc86c9797b8bb32e
MD5 7629ee83446854cd5b46cd1f1d3b676b
BLAKE2b-256 e2e74715d3b0cf5b4402427a65051dc40f2ee0468be9a7552901cb6f00fae71e

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.5.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9cf23db8b15c555a8260391b8558834f85d3a007a9112e1cac6d915aacd22c70
MD5 11f9e8bebce88102a33809ede0c15b7f
BLAKE2b-256 fffb776cd6e8db094baefe5d2525287ba90086fad411f21d88153efab3d00bfe

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.5.1-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.5.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 5d2df60f416007535c84cb312d73394f585b1b3cb278b95996a180d3263d2f5a
MD5 7ab1f85e89986477a79a19969278f12b
BLAKE2b-256 c92e522698e0232ba8cd199ab4fdba4f89702c2d3685f23b5485285c8cf6731d

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.5.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 42992622e3328604e8b962e241faf3383f4140514319684e92dd6d10fdf1c4c5
MD5 4034415f8b57abb025d47d6e1514db4a
BLAKE2b-256 e294617cc8f8772a1c1351660bc52bb64d0a71d3704ac5cead1558f26e920222

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3fcce3f9ac2fcbee7e7c56205fce91f8de0cb1e519fc4776052df46e297e1cd7
MD5 dc01aa32c0d165859e577f9980895f23
BLAKE2b-256 ac8c90f97040587937008ddb668d283cabf4db54dd3955b45d4e4cee45099781

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 830befe89f0a7446a74e4c12be74617d76b919f3972b913e57a7258776eba877
MD5 944b9e5321d2d6dd4bc54395bd22f3ea
BLAKE2b-256 f5c54fbf85a11be6c26ad0b93bf59c2a2b9167b3cef0d7db73f908f7c10657ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.5.1-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.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b86e5625a6e2f870f66db1344c18c3980e922410fc1b88e29f9f3e3fbd0f2116
MD5 013e751d8915cf08b73a7d477f405e26
BLAKE2b-256 ea0cc56ee428fc6cb0980438c5254be7cee22621620e81c3807499fa6b3ce0ff

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9bd4ce6920274c6f0d5e2e46649f147e372819eaafb98d61b7ee4f208445dfe0
MD5 fe91b256c53c68a00b16e36cd05d5277
BLAKE2b-256 fb0d00eacd8d4758f1c1811e318303868c2dfb21132a025c07b662a4c0fb75bd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 106440cc136fb956450b8071c0d6530b380e50bb6b9bc54a204299e132a4072d
MD5 014a531ed1eb59308fcfc6f1644a8512
BLAKE2b-256 b173317f77804822866d49bebdce41db22b7486f11fffe30e37a025e5de46c23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 4e0caa2aed87a14b4856598494584693fee3c71c676f8c199a14d0ab2ccff9d2
MD5 0ac6bbd119670fe4464eb73be8e568df
BLAKE2b-256 15b1afe63bae8c8a4023761c8b6e709db472bb7e98932a68a8260e5b925f0fc7

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.5.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0e469c7d5201dd72f996656a4386cfdf338716db4d080ba266833705bd48eb7b
MD5 a22655ec7a313f8a020b3bc45734c4e5
BLAKE2b-256 d90f1cb87407e6a38fbca34015cf68b2bee10d5c78b25f94c947a65d47078509

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.5.1-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.5.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6894f872a1500b90e8044710364f663ca9faf89d5cca822d30dc3fccbaf06cc9
MD5 ab75c25cf63c8c090779e2bd8f1c7ba6
BLAKE2b-256 09de62118aad629d9df34a2cdbe053e2f06fd3aa88e1259720849d4c2938f146

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.5.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b202c6bc96cea673f5adb91706e12f932db8471b1089f4687d085a9f899aa8d7
MD5 3e70a1ecac2622c81492bee4222fb908
BLAKE2b-256 2adff8a055471f070202c095c96b0c8211f8cf4d42a70f3a9a83cf5d742bccbd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a0c46999aebac926185f97486940bcd7ef06a9b191bcb55262152f70952cffe
MD5 d96eea23b1c75b59df69e09d999f2818
BLAKE2b-256 3da2c832306882e332fdd0165d3f9e5fa3675b6956ea4c1201ca81353fefc1a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8265859ab819373e6f39a1f4e7f403bf477681d67f89229c6f863458aad8a4c0
MD5 83569bbe6a5a56d5c1a1772090422166
BLAKE2b-256 160c9e0cf46529d561df9d23fe4ce9f8eca48583b53c220df22a4862c331ed50

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.5.1-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.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c5fbd8df7236518d57393cb17cd1dd6ac831d135fb2f038f6271030a748e6159
MD5 7fd31fe34a664ad1ac3a1d228161e0b9
BLAKE2b-256 9f7559d07add12fd7a6d1d44966d5f9be9c2dcacab4d81d705f9446625da590c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 19c6a84bf625df8901b0d3ec0a683ed7b8e6dd32c22fe61206c338cb326c48e8
MD5 fc6ef25f644cc404149da3dfbc3571f0
BLAKE2b-256 9a4d218507b300422ad20ead44a69d838e92ce5c42d652de762190456790d5d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f3eaca96169791d168c28a03a905b0911e20ce3e389560e1200cf64b752e54e6
MD5 17f29f90cbf695d63c4319e545d60caa
BLAKE2b-256 6ca3742460241ff598338de34c6607efecff672a19b4953c9a58cab6ffc8940f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1b8a68409418ab59037be79c69f097b949b4b6ce670a87e052ec975c5109cff9
MD5 15d56b5d80071826169eb77a7de6b63c
BLAKE2b-256 64071b4791d8e6c87bb782cc1d85f6ecfe455f7c030271ecd350884bef7ee0c0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.5.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 53a1115b5340212db10f774aa5b78da3f1195f932b99235ef9791b4252631644
MD5 70e230af614e1055adf55a0a7286a7ba
BLAKE2b-256 325869063194cddecf1d6cd06effc09bb35ad9cb8bfc20c65ba78dd45ffb5ca1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.5.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.5.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9c8676574f7fa492ce40778e02d4fd6f0a34f7f6cd0e693ee0cd139813901315
MD5 2cf0c20ee254a38a3bc10be9a2143a4f
BLAKE2b-256 3a45cca14293a2494879f2188cf5355765954e7e92a7ad706ea7e82f410ae975

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.5.1-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.5.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 ce923b24d65078446dc28a171a2bb057911d534b53b709beb81740da32ff2ff9
MD5 cf089c46d1e2e0d3fbc26032c48e1b0e
BLAKE2b-256 fbcdc69a4caa79fcab601f4dce1c9cd7537ba0b711682bcfd6d6f536b1b81515

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0c753506c55b1a3538dc0cf9cfa922421881272288f4e0b8cfd3626d483c9ed
MD5 0eb50cc89b84d40b69f2c57ee02aa16c
BLAKE2b-256 3163974511dc746356b2179d5d5f8ab0082023bbe22c43631cf986f94254b306

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 eeaeceda735ec79b11d1456d4f6c6ceff4589a722827938caa24e51487de77ed
MD5 373e88730e94a86ad352837e4c480aee
BLAKE2b-256 ec28cc16a43eb6c6ba6d4ee5804d3de53b14d4e09d0838d79e7e24ef37da154a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.5.1-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.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3689cee39d649eab922e29fc39c9d9c99e16ae4f091d3de1ae8117babdcc893e
MD5 18cc885fdc2a08b800f7c54229cee3e0
BLAKE2b-256 b7ec8c6b7c83f1df1e3106a8ab0ce509ffe770f28ca00f465a5c11c6e9e94dfa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 791959dd0df09768598be428626267cead02262a9bb26026b45c554f66bdb7c6
MD5 10b6875deda3198dba05abd43e5a3636
BLAKE2b-256 6c06d4c606c177e128b71f8c0e6c5fa9edd324cfb9d0fd254e7b49afc30349f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 58a7b13a12d1c85f7ef45804c4577afe740fbe0870e29082f1f71ffdb4780822
MD5 1b6bd4df01ed37f8812a541cab0ee872
BLAKE2b-256 8e672eeee2e8aa1ac64b78ecb04724d5deaa21de1c89ae19871fa3326bd38ae0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f317e15567a54d515cb0c7fe983e66ca6f7156a358f8d0e78a4f1925d39b3b83
MD5 f42e13fd07107513aece1aab184fb50a
BLAKE2b-256 ae5f8c3ad6d46b9cfada68e4362b256a0bcfa5e19666abba378a9c2f685f1b6a

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.5.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 e9d9b7038ac205ebce5f6e0b6b2430f397381a9c14a6259cb8fe8687e24e25c0
MD5 623eb6e8f5a585713ae8c4ee0d7ecbad
BLAKE2b-256 56ef059db2be870da8c71ddc7314958002739b46035b449c2cc0b53b35a1640f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.5.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.0 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.5.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 6454e9f6f0067d67783ddba2e38d03d171a8b69e25b593201c12f686e149ec25
MD5 c4b78324663fef78d18d6335b1ea8767
BLAKE2b-256 03bfde6616f2597face1c71d67b9929cbb20fc4f71c9a0b851c02f384b89349a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.5.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.9 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.5.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ed4285c94f8ed652af01924d05333bb5e70ffade5c2b765b915497934a734e13
MD5 eae34be707badbe4c36b2a62de7cc110
BLAKE2b-256 b93ba3604623572f693a2e7592954a1222eae63ed4fe34c63ed53500a1a986f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 daeef546de2afea877191bfedb1dcc635a2a73fe50cdeb2d014227f3792c5182
MD5 0b07f6943815ea7116f16832a39e798b
BLAKE2b-256 e7ab094590c643734650e82b4a18e7ef59cee935850569479043aa9613022e7c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7afaa446c360f5e12a7bdbf49c45c82ece59fb1a654025fa40aa603dbc9611ae
MD5 537611f18963eaf38516b3297d85c950
BLAKE2b-256 01539704977cc4b97802bb825413436c2236d1faa378b6d8e252160315b09388

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.5.1-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.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 90b98a19aa0e77a458f25e2f54e7058024b6d153aac2a8c7f4456032493da556
MD5 b7d469056695845fdb92902da2a74cff
BLAKE2b-256 9528b3fe0cf92f606fff9a4be690a800ee9413f7b91508878d534ca378358603

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 11752fb4d3e4ba32f3e2dc5fc2d6fe3f71e5d5c61d42816f138dc1218b377f17
MD5 8f886474e2d59f6afb97da307d34cf0a
BLAKE2b-256 47a1da683f8366643b4159387b1ca8511d5bb4115492fa24ef98e43ccc67639b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5c812be7bd6d6bdd5fbf4413ac647e46996dac467ccba3936cb79415df227910
MD5 241f0ef16a4d7cd8ad04515e311d5790
BLAKE2b-256 700d1d22e3f286dc0652630e118c621982d8c1f498431bbbee9968bc45da9c28

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.5.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7b10d026aededadf274982110febf77afabd4becc3e611f367d9c61ed8009815
MD5 6703e27037577107abe52ef5ecb4c842
BLAKE2b-256 8a2129807cc7eb016274f62a41b1b6c2fa2baf483d102a25c2b8c2147a30dff0

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

0.8.0

46 files

0.7.0

46 files

0.6.0

46 files

This release

0.5.1 This release

46 files

0.5.0

46 files

0.4.0

46 files

0.3.3

46 files

0.3.2

46 files

0.3.1

46 files

0.3.0

46 files

0.2.2

46 files

0.2.1

46 files

0.2.0

46 files

0.1.11

46 files

0.1.10

46 files

0.1.9

46 files

0.1.8

46 files

0.1.7

46 files

0.1.6

46 files

0.1.5

46 files

0.1.4

46 files

0.1.3

46 files

0.1.2

46 files

0.1.1

46 files

0.1.0

29 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page