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

Uploaded CPython 3.14Windows ARM64

cyscale-0.1.9-cp314-cp314-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86-64

cyscale-0.1.9-cp314-cp314-win32.whl (1.6 MB view details)

Uploaded CPython 3.14Windows x86

cyscale-0.1.9-cp314-cp314-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cyscale-0.1.9-cp314-cp314-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cyscale-0.1.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.3 MB view details)

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

cyscale-0.1.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.3 MB view details)

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

cyscale-0.1.9-cp314-cp314-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

cyscale-0.1.9-cp313-cp313-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

cyscale-0.1.9-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cyscale-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cyscale-0.1.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.4 MB view details)

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

cyscale-0.1.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.3 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

cyscale-0.1.9-cp312-cp312-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.12Windows ARM64

cyscale-0.1.9-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

cyscale-0.1.9-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

cyscale-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

cyscale-0.1.9-cp311-cp311-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

cyscale-0.1.9-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

cyscale-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl (6.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cyscale-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cyscale-0.1.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.5 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

cyscale-0.1.9-cp310-cp310-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

cyscale-0.1.9-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

cyscale-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cyscale-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cyscale-0.1.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.1.9-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.1.9.tar.gz.

File metadata

  • Download URL: cyscale-0.1.9.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.1.9.tar.gz
Algorithm Hash digest
SHA256 509c69d42b7b4506cdd67940a9bee38090221202f3a5df8d6287f78c4ba03117
MD5 5887372423018bff27bdaaf02703a30a
BLAKE2b-256 9684a442e1fec438152d95772e5caa519a513e8b0536db3fda98e477c0749239

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.1.9-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 124a436a566ffd7af3bdead794a47c35970dae76d25b81bdb6f8062b7d9a79d5
MD5 e4bab33c08323192d20e13dc22d95501
BLAKE2b-256 4434779cf71400a00facc79972209c8a23d73a78728a70e19d7aeaf67852a33c

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.1.9-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 82b396b8f211ccf9fdf7b569420add3d58f8be7b5ff66237a5968a2aa1bd5522
MD5 cbbfd42e8b7b0d69113b949b450a104b
BLAKE2b-256 346d94a6d6fd5deeef6c6dc5ad0ba66bebd6419860b53676cab49b26128b43ee

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for cyscale-0.1.9-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 55995cd31a1a5c2c7e42ba84ec6c82e35a95e6a9b89c80b5018c558197093eea
MD5 d03eae09e5e9c1c895fcada6d975487b
BLAKE2b-256 e4dd8cfaee8c12778e898bd7ecf4fb6fd5e27d19a326518a1d7cf174d440bc04

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 68b7bb4c0e204514803e8501509b99e96dff1b28d6d6ee6d378053c68c6c0bc5
MD5 7fad145fc97ceb9a564e44fe1126dade
BLAKE2b-256 d7ad86d3698cb46733c3df6f7ec15fac7b941e293399b527790f53fe8957f2f6

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 449e72b11aaead85701d4ab9ef9c866042760f412ffd2961caf8264e26afde9f
MD5 7517f0957a7e7a6301432bd8e5060712
BLAKE2b-256 389c04086f1c8ed4e83be733f79afa9f24abe4654fd7cdc456c29f7d32793001

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 22d2fbc037305b566101e2122ce568537b97b283f00e595356c2d14d8c66ec75
MD5 3da1344d2925c9e5d68a314b0efe2dd1
BLAKE2b-256 0355556ffc9fdf4e52c86e375670ddc7cf7a2b4c38ae0e8e61dc64664867a8b5

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7696e1a30c38aa92cc8b67d19586359cafb29ebea8907443cd1d9eb76fe4ba7f
MD5 e545aec2dc78a3f85bcc946f5b119221
BLAKE2b-256 810872c5e0899b20c189824345e1e202c8adf9cb2aeb38aee808a1660c1f48ba

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4b58ca43a82887ba90fdb3882c352a9210e9cc580b26effb227b55a7cb9ca27a
MD5 cda1b0d3abc76c4b92f1bd374d15a0c6
BLAKE2b-256 46151b6819e91efe2377b234fb35a8e9c0c719fd3aeae5d59f6fc79d8cebb80d

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f785599e93bac26857434c5d40148c944984904676aa09cf0709beb60d045fe9
MD5 3176d46cf23e7e523923f0f4b0eb1db6
BLAKE2b-256 643440813c452de8c786e302601d3b903dce01c9100ada6a7cd361ea52a7de47

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.1.9-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 96546531fc16a081575216a1d4484746ee0ce9988fa3428fd672bfb054acdac8
MD5 8e900f1534d8d7b515e9aa8556ab2c98
BLAKE2b-256 51ff749b2ac5afc8d592e97b9f10608c8a8a3aef45105ade6fe3e9448c9a72fc

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.1.9-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.1.9-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 991631882f2bfc19906b586be5d2938e265510d5de55b3c0e89e35d429be4244
MD5 ac1a40c73a6360b83a72dced40f37ba9
BLAKE2b-256 7b61fbc362e9e933291c8277a5e49764d310c7eb33ba40db07ecbfcb6e03b824

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for cyscale-0.1.9-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1bbad5969993d75e471bb8ecc4cf59de65adfb84a9108fbc90f899c9baa43cdf
MD5 5a26ba6f01da1802c2b6debb3fe57283
BLAKE2b-256 b1e1b905e2bede31c8225093eca8bf6cbb57a69d01ad0ac64561e6afaf63eee8

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cf09e8aaa6334c2dec7eee81214811790baba43871b9d1707e9c43d4c935775b
MD5 e2e593c27be19bf79c59d054131d9ffe
BLAKE2b-256 b2f8074f583247788b26d3e4c69898afb77908eb0d5062454f4c189f80c78928

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 531410abb7f2dc432ab4fc8ee84f2711cf323afec557a8375d85e11e70c2a964
MD5 6503efe016201c73c91ddf6f8bbdcfd0
BLAKE2b-256 c133b5ed0855a0776bb91213edef9fc09ea1f9069fa6c18b153b1d33adad1db4

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 09bc5531436d6c62ca11eedb3efed3bdbe151830aa40ce1ce9e11471eb8fe892
MD5 830c0d21a53bcd6e04b62f55f3e6eb24
BLAKE2b-256 86ffdf2d6ac6dffa83e8941675990b89241c76d276c5ac483c9682c407a2841f

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b49b8f61e76c823fd8d91fc77edf64e7bc1eac35ff8ff3426c2d3d486e16f64
MD5 ac6adf84bae479253ceac9129af647c5
BLAKE2b-256 2d39c488df2871ba10c476f7e72068aed70d2aa6abad6f27b277d45d79f50400

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 53760323bd4895ffa73f06871b4399efcdfcecb309a4d0665753f3fb11e6f557
MD5 fa65455a9492461f1cf67927e2befaa8
BLAKE2b-256 ea34fc756a376c7a93b5f244961faaa10bd9bad4b290b6c6ca5b679f3b3d35d0

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a0105b146659079cccb9ea5c7168bfa1d36f2a70cc1a24a1df31e4d0341f4f76
MD5 a2143166412cdce721dcaf2147274775
BLAKE2b-256 f479fbde14f8be166653156088ae581bf184171eb2a3d53f4989d770ab06fc22

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.1.9-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 222584e3f53ebc39d839aa07dba9d28220c1e8f63f92dec809f710e1f3c29da7
MD5 2bf3ab7545d2dc1e7ed4ed6b2b3e8898
BLAKE2b-256 1d3800a4ae81ac576cb3bc446603c530556b49f60339771643b02b42cd00bb69

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.1.9-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.1.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 197fe4b56dee01c23c8a69d33de484fd10b61eee862e16526721631c505b4e3c
MD5 b81498f8e9e65ffa67f7deea7a7afa0f
BLAKE2b-256 a1a722e45fe8fe7a92194374e2fbc761cf4a4006c46092a583ef8065c4d67829

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for cyscale-0.1.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 169039d871fa0c7bd70b1ef708d895be46fbf6f5963aadb9a472e46fee52aca7
MD5 8436476ee886e20855a43d559f7b3143
BLAKE2b-256 2a4f28a251a3fad646582680accb2cf43331cec43dfe74c35c43492784d5f509

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 245552709c70477ab738ef58e4a8faddbcb9d807fe4b694d2d5a15d1738409fd
MD5 51973c42b1124eaec97e93c6e45e4d9c
BLAKE2b-256 5c339c2c4e2533d2b98a4bbd864bc412395ee1e43de7e51389008d71091baf6d

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 50732c78958070d0ade5ee3fa9ef3b7667b77bba31d59f5996a0634dd65c0f6a
MD5 a4a49ada662c761799f8bf0b28ab0d2a
BLAKE2b-256 ab75db3134d3484e7d3bb11011b356cc949caa2c92b5a1c953506845b0df6bbb

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c0d4a5414179730748b200f2524bccee4199ced97f0a9cb4edae0e8412a80910
MD5 9d6ca7e202d71867888964675f91e31b
BLAKE2b-256 ae3127f98f3fd908817819996fcec5b5749faff10ade4dbd51837a66c6752e84

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b3ed957ef2177f60c813cea9d879a920063019f0844e565a820e84958fe8e6d
MD5 b990ebc9c528425b81b71987954acbe8
BLAKE2b-256 32d47a92bca9be602e09a9282cfcf8a6edaa57efa2755c614e6abe0fc135fdc3

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a73f1ed0911d0954169474e8bdf93cfb08f4832503bcdda6f7fb0398d69f204
MD5 ff5cf197807d53769d019176ae382cae
BLAKE2b-256 013ec9a6f633865cae15757cacf71f739922138ca8f515f2eb3e2ac1a1185aed

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 69a323b9bdc753777589d8b60346dee03bb37ce7f75d1a07b27689523f2ff561
MD5 342a6c2fed526b1bfe720c2d1919d722
BLAKE2b-256 7a1aa48d54ffcb43fa577d3cfacb1825cda5c4bb9592953e5bcddbffd0683cd4

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.1.9-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6bdc00b673ac44f5437a7c10d446e59777857730b1e4112e64d84ef59f8d6867
MD5 72611587c3af14f507f9335369fe74f2
BLAKE2b-256 a9770a6c3264b18a66892275970e222b046a56717b038513433d9e0b2ece4b75

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.1.9-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.1.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 45d8892834c99ef5ebda07d96f04d7c9076bf4ae3fa25db693d973dbc67a97cd
MD5 79d05c603631dcd4949e801cbe48affa
BLAKE2b-256 76cc8d86a28fa8812b5b826713c3977112f96f2c8f94d117225ba9dab266ddc9

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp311-cp311-win32.whl.

File metadata

  • Download URL: cyscale-0.1.9-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.6 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.1.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1a5024eee6fb247eb24ad286d1a4fd64d555bf5e9ba1d7f53c4d2edf1a343a3c
MD5 8d8c9497bf4b44956e8410810b614f73
BLAKE2b-256 ef5497fd9dd9210a3b26ffa3dda56bcbf2fcfa7b04c9e5e115fe5f84a9dcf810

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 342ce633110a9911d9dacd257842d27c1edc09a47ca10671c523315ce35913ce
MD5 bc931c3435b411bde34679d60ff2c945
BLAKE2b-256 ba01ed18b4a5934b072b02802511ef28eaf053eeed2c6491d4ad0aef343d8e85

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 14b56af3258dd51387ac29e040d76d84120ff03c98ba24c75e0753c439ce80db
MD5 57e291a95123a93904625336b72476fd
BLAKE2b-256 5b8a44facb45eea547b514bba2e1fa8a7a02c3e2be711e9a82ca3a413672e377

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d2530d2f44ff15ab6a780039be8e0202a24a59a623d4f845d957fab2c437a1ce
MD5 ea2caabfed441f832f389bbb5953223c
BLAKE2b-256 28beb4342ea1ad64128efbffd9b2b8804d02cd6dc2b3a1cc9931235aa2a840e8

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7b285ea104af7fbe256afbcc7fd1daa6e422d7a3810e0dd7a17d455bd5c60d8a
MD5 a6dbb905bec291cfa813a7e8cb6483e3
BLAKE2b-256 50875828d734ad1061955d255592e763f7b7eaaf37b45cf12c38e268cad414f4

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b0b2e8213009b99f87567e035c9fd69257dc45a47bd8bde74cc397c8c6327cb
MD5 43ba04713efd77e007ba57c54c202e0d
BLAKE2b-256 de717d7f6512ca79e37eb2074e3bf6535dc7e07df74d65c58eb75ecbf504388d

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 54aac19caaad83dea818f8b40dcd8eb0f91c734dc5d4e798ff892f25a555b04f
MD5 bf3c4ff03364c3d36af295c38e31c231
BLAKE2b-256 d45eb6b74a66d191f2001549e67c2a645c9d927ba118558f57427b1200c9285e

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.1.9-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 546989479d23bcd8fd9ac81250f4ac84b4032123020d2ce3c7b5c6de716fed77
MD5 e6301989907df6657bac683bb49ceb85
BLAKE2b-256 76ba5857d626d40688546dbdbe96b5c369c70e6d6ed99d921fb93fd90b677633

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.1.9-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.1.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b564997bb446af0363e0aea1dbc2f3404811102d28a1498215d1f850cc07f4b1
MD5 11700e896e31623d80b361c7b456f101
BLAKE2b-256 e75ac328db734bdb1f57f9af392b26a46b3416cb23eda3725db456ca1412dcf0

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp310-cp310-win32.whl.

File metadata

  • Download URL: cyscale-0.1.9-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.6 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.1.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ee6e78ba055f3f90a0bf037ab8ff39c9706a5a1d96958a8eb018c06eb5a0aa0e
MD5 188deddfd36691c8a0673287bbe27d42
BLAKE2b-256 0a9b34f0a6537178f5b0272e92c3986fdfbddfd633a914affc51e8af0641f083

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d059cdee2752831a786873940f7e75d0d54b5be6d4a6fe345f2c5a767ff6a423
MD5 c20b623f765e90ed6e700453fd266fec
BLAKE2b-256 9ee2f191fca610cb188e19374587f24374a32f60347ed4bec9ea827c36b964fb

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 87d68e1c4e091475af4d0cb62affd8d4e7b645a487a42a73406a7e279e4b6e08
MD5 94599492ce427788b8a712155b360176
BLAKE2b-256 3b02c8145e261168e0d3b3ba175eb1aebbe6ba7fbe03103a9a48fddfdfe0e71d

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5014c741dabd53656bd9a6db0bd0cd75e7d2f6b0430473a7d753a7a1f7a1a3d8
MD5 204390b1e2b2c6066572f23a9799b1e9
BLAKE2b-256 74cadcc5165dff15ab74bcdac96ae9492571bd996a0cb3907b8f3ecf0ae42857

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f1c426a342f2140e6f4d63cdc50bfe2568e5d6e056d4661408bd9ec6159c38b2
MD5 cea1623afb944bb3ef832667a1c8e9fd
BLAKE2b-256 4d19dafb18bcc3ea5d56a2a7ca6c5b8585b879e9798d322232ed72c29c437673

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70fe08ff7f4fa7c6f0ab27127d7f15cca7caf0e00d5cab830c4d41dbc4be880f
MD5 28660b1d2d19fb0d2380c4cb7fa07686
BLAKE2b-256 038779010aa70a6e3a2203f0bd3d26040366e4724b5ece7c31eb6b36633a629f

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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.1.9-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.1.9-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5dc1145614c3fbb7d80c1e1b54a594e4723f12e7ba62a91e88d7f400203d38ea
MD5 fc94d701eeb669b984d5f1524303cbab
BLAKE2b-256 96024183a59dfb939812c9a771996917e9075c25a40a24e3601311607b737a10

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/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