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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cyscale-0.2.1-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.2.1-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.2.1-cp314-cp314-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.2.1-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.2.1.tar.gz.

File metadata

  • Download URL: cyscale-0.2.1.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.2.1.tar.gz
Algorithm Hash digest
SHA256 8bdc942b885ee1f0fd86e8b3f64ab7310a7cd7eb45ee1e859b9ce0c2c0d29519
MD5 1cdd6057e86c5a217502ad050b6334ac
BLAKE2b-256 c62570bd79359daf3a76b854b49455fd32b562310a01735b7ffe84d5e2c607d3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.2.1-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.2.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 f185ddaf44f8d7bc31ce3f5f475f3aa385e3bf6372aea3e0e47ab43e9ed2d5f0
MD5 f02f8ab215ef20ba132163d21ecbc315
BLAKE2b-256 ebac2358f1740e94e347888c9196bd4e052b0d3e0f9f2c3067dcfe1777f79940

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.2.1-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.2.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8da1cce4cf279aad40806e0923cf9db46c66d909e219a6f63b3a217c3e97de96
MD5 dd9246dec9fce99e5043232f343ce2d1
BLAKE2b-256 a383d24a445dcc411c12bc76a31ff98bf0607a016183bb0ea36eb8629c207495

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.2.1-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.2.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 39efcccebbce129e3ed2c24c97b73b2ce2a6f2715a32e823b7b8bb943b75abb2
MD5 ac9bb451232d0974b894eb06c158180c
BLAKE2b-256 2f3b943ea41636714e673317fa09924940cd998b091a2e4a696cc073fc6244e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 11e575b79465787b1be1c0ec8d6e46cb3e07dd9856724b98f742f1c4793bbd13
MD5 cc5acc52e13ffcc86f2faa59de0b093d
BLAKE2b-256 f6f8e23b0d1b3054296948d8d824932e56a7b2325c796bc521c35cdddffc7286

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 05f1bcbae4eba0f7bf6925bcdff107bfb9e5fce460a305caa320a6e34c33f09d
MD5 b0587a5d619f34d1e4e87c504d07b3b6
BLAKE2b-256 3af59af40860ed1b6ce59b95d8a51b3c3c9555e266cecbb461e3d4e196e29cb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.2.1-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.2.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.2.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 68f6800376fd526d6509e4c0ed33f92d7ad27eff14463dea486f2b8271170eab
MD5 53a3398ae0936f182863b14b91e18f26
BLAKE2b-256 34c14c1dbff45886d2cbb4dd44afa682bfec0373ecf72099d47dc26d165cada3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7fd945b94c5ec6dabdda65e818ba694608c2307dfc602abdf3061c78712aa825
MD5 b58a2f121c5485ebf42fce0b2ffe4605
BLAKE2b-256 e7a9657251b0ae513a1a65ea2ff0471bb26ee78675d27414143220e4c23c5ba6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8d5822a57df97186c8db5eabd8b606d975e6102675f5bdaf257c255f21dede3e
MD5 2130b26ef0a5b6fa4c55f1b0053731d8
BLAKE2b-256 cf42e407d28b8c1592a2eed22a1ff2d1574d530d7c209ce9969fffde2d74f530

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 13b7d25809db452cc02a2b60507e8ddfd1dac38b61096abe00847a11c0f3a99c
MD5 8f44f19b2d0fc6d49b3a693ce77d5c66
BLAKE2b-256 27ef5da0f27e15754129d6826912022764e740e019dc5c22b302d20c07924e6a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.2.1-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.2.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 a4ca4e36c8fb524ce567cc37e2d8a1f261b4f9b6f57df3e4be64db95dfad8920
MD5 8c35e18ccea5954f32bb94ce9ea023ef
BLAKE2b-256 edfe2f557376f5b8c86c0727fa65c15f0e032cd7d16e6e7cf615d7fd70a38fe6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.2.1-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.2.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2ba372281baadbe0b917658ee3cd4f80d4a059b05989551915b18eed22a28b77
MD5 201d76ecb729813aa7aa2efdc8750d9e
BLAKE2b-256 8bef904f9827499bf91d6288befdf693c3b9ed4556e95f8860fd6349f39be46f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.2.1-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.2.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c203b32af632b05b2bb7a62834567ca76428495ca82b80d02e74f890e23e8921
MD5 8c40303958af88e4fe671a805f641bbf
BLAKE2b-256 1d6e0b812b6f4fa18a50daf6f4c81a7b19acdaffe0a1a942c623535740d3a850

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 656473dbcccd733969607efccfe13c81ef042fc206ab480ebad98eead07eeb64
MD5 50eed7eae57a88a6f386f5b7c9ed74a5
BLAKE2b-256 dbeeab132ef997bb50192fcc9715a8579002fbffe7068b7d3cf3a902ce57c3e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 207cd340cf85ff80ddf38a0a5840613b2ebc189799543de16f0158b1ae6a0965
MD5 85fb5b4c00ff905d42af10b7209c55e9
BLAKE2b-256 471a4b1ee5b59e53436da052b08fd03fcf10d75ba1217f7464daa3e9ac040dc8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.2.1-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.2.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.2.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ee382b8dd0aefbb1186b8d3005cc32261f65ca27dfa14fd249901612001265ac
MD5 980309879a748fe7c33e7896e092d18d
BLAKE2b-256 de525c3e706dc5ebdff19ef3e4c6c5961410fbf5cfb606a9ab0cacccf6d8040f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 0060262ee5b1d75a3d921eaa7625f2068700fd0eb5b074a7cce99c0cdc1f0570
MD5 0329a01cdffc26f5b511bed33f48424a
BLAKE2b-256 24dc50f1e48da92f168c480634c2e000774d8b1e9e915d5b47273f55de02507c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d9496cea9ac3e8432a1f7df8bef71d3d880cc8d9c6899e2f49c775dd923bdac
MD5 9794619038c831bc45b429357a5bedda
BLAKE2b-256 9510ab62da6444334fcad8b1bc781e3ca16c1530c5f44e714a2dce6ad5b5a228

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 da5e41a59ce062825a88d77662c8b960805676f15afe5dd509eee1404188a7db
MD5 c0f464b260a284142eb5dedc0d0c9a9a
BLAKE2b-256 e8543664283e78b6f8e5ba90c2a30e0adee9a837774f894eac926b005a6675c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.2.1-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.2.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c0fbd256abfbe69feb2f0e8d1c0261bb0ee2728e4998c05afee2711ff2ab80cd
MD5 42faffb89d67e12fe4ccfb4b0514e218
BLAKE2b-256 fe3026dfa3459766ad27f9f25d1b6b097cef85e55cfaa35d24fe8835e9e74eba

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.2.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e81f96488eb9ac7c364fe548fddf7b6cba3b17e0bc80ffa364c21db19f16698c
MD5 fc8eff0368265405f5c2056ac7daafbe
BLAKE2b-256 177c1a866b1094eee1ee4fd5547e541874dae9bb49eb75db6bdcb0ee7c9a36bc

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.2.1-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.2.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 86531d06a601188123f0b0c2eaf13305e3a8033c8b891414d59498eb4a5e4a59
MD5 b4c2da52599938805baa27e3fe658a22
BLAKE2b-256 fcbeb78537bb9f3da2fb55f79a016104a86fd7d7646a075733523c0c1f57df43

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 71399da37981a5744c41cfcbacbbd4199b72e7c0def41fee08edfc5576dbc7ba
MD5 f717028f3dc861af57cb24b21b0ed128
BLAKE2b-256 14b0c61e2c5f01c29aab7609a0a8cb1997a3c5497b8e64e67d0d4b8af2a1ec1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e4e71b68ac5809488c66ef846fbc977e3793377287138cf20acc19f70f8e9b06
MD5 99a9e4af85c14160635aeeb62d0c8f6d
BLAKE2b-256 115fd7406309f07f0f6c2635bcfecb60fec64b00074c5e697ca04d51c1ca152e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.2.1-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.2.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.2.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 eb2c790cb44e6f17c857f7c136e7596bda1008357e36128cb700ef2a40a1fc07
MD5 4752a8a4b44c154aa8b95bf08767f7f6
BLAKE2b-256 b6224fce78d073aa1e7ed911d1f58a08177a02d05d04fbf94707ddaf0b2558e3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5cd5a25d2109b9c741fa19f4d7aeda6a564da15690429bbada444261c8db0f96
MD5 a69d34b3d16889bad2641a09c3bb2118
BLAKE2b-256 74ef14d99fd20a86bab5232204cfe00cc7ce6533e6ad89c3ed1bcaab3d2fc469

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f4de4095a7e018b13914752117a7dc944a0d2bc6c0603cf73adde829b8ec84d
MD5 fb60de08308ad4b7e42e9bcae978dc18
BLAKE2b-256 ab20294b666fb0039cc686ea826c903e4ba023bbf4408519b1a245d7963d2f79

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 a5f12a53763bacfeff962bf8cdc35aa5ee7a881ee45e52d60436f0b76500a3a8
MD5 fb5a2d08929bb69fd99a18fc4c7211b4
BLAKE2b-256 abd35991a06c425fb0bca1dce43f4544728cc925043941258063e5107a45fac1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.2.1-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.2.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 0fe2893a8a867c3359e49922fa4c1a8fb0d8143c50c7f0e0ad31ca1f6d2f3136
MD5 8adced62bfa929bd49c6c2ce4b6f98fa
BLAKE2b-256 5532de5ee7bebe4af859c8d57689d6198a2157a27ecee5783d1ce6ce2170143a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.2.1-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.2.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e82afc8b8af6b1570945a7ee078d19f2bdd3f82001d539bddaa70b5f6df64961
MD5 ff6dbfe6fb44e521a4063be2f58d87e2
BLAKE2b-256 a79b274b9ef56027fbc0b8c4a4bbb1b806264932d64796364cebea9911a1cca1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.2.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b689f0e136e1a52bdb1cd4a9b23f30bcf92ca50b9811a762b3e1d1cadb967ce8
MD5 d47c02e70741a07612ee4a4f7efaf7ac
BLAKE2b-256 c7c5ad2fab11ac0046019b9ae2606bb2a8a0579337ab2d58f23fc49896c2d9ef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a8fbcfed4c6afde968c7a9c10ae9e6289a4344cef3931fa98b8b5a2a84037a8
MD5 93097fc3bf2b14d7a8f9b9178211e1c0
BLAKE2b-256 0f8e7a8c031a7276ba460b4f0563fc66dcbf0bd25b1e117690fa77c04b2f1c2f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f9e4060450b5b48737ac17caca96777ccaf8207c8ff47ba459b125f9a7747cee
MD5 50e0e874471f9a11fc232f446cb341f2
BLAKE2b-256 4693c12e64ee7cf46d21e2589cac4e4a8fef0b7aa1d584e83a1e00714514ce57

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.2.1-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.2.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.2.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4d6dfd45b5b2fb1bda6c23b88a502a039046b8732484560baca7428f3797bc5d
MD5 46189190a51996e691f4255db529702a
BLAKE2b-256 0d632fdaedb0f4ec71c88f6c5960e8369f49dbe091dad7b0d70b3f523d695873

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 92ede545432d366b3539a2b16c4bf66e0ace34eb0449ac00fa863695bfc25332
MD5 99abf22677dc70d3d0cab61f38351331
BLAKE2b-256 d72784aff8256d79216dc48ee3b991441655d3e43e042c15592c171bf4986647

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5700d31c7e7189e90fd2ce657af3e885b8399643810c2be73bfdbccde0186b2
MD5 032eb3f4cd4badf763b7f39ba0a7443b
BLAKE2b-256 2760fc376ba4c9583748edd17b3ec6fd110619cc015e6e3418f8d6326ec29308

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 532d63ef9293d0559b8649e1e7347d9511c907a1be7abc38651b4d15108ec976
MD5 f7d15dc7c3a7d94f4e7fd2ba904eef19
BLAKE2b-256 544edb47164c908f4508c57195b939126b54a0ff7839e4990f7efd5e08da214d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.2.1-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.2.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 bf57f2bc595703a866a705a4a585d1f6efe5b46b49cf8ea118828b7259ed30ad
MD5 9f1830c4f07ef5ceb0cd4e3860f036b0
BLAKE2b-256 342691751f2a9fcb93807c8071bc7ba9f59c25e229b5d8910066a9b663c26a75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.2.1-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.2.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cf0a40e0a313f550c640c97c5ec77678ab9aa70b6529be1bdee2121d21d8d4d2
MD5 401e518cf90c45e776754abe2512c2f9
BLAKE2b-256 6f4a256961f1581f5b19ec5d199507aeb073c2282d185454194d1f9a5f80b128

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.2.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 c8abd6df99b6316b0933a0c054dbaa716f601a2f46aba745ce3d6cd9e4094476
MD5 ab1928c50fc9abbbf81f4e8904b58725
BLAKE2b-256 631087726b77e55f7e7aa5bc6630d2479e1306fef0bab0c2eb9c9a1eb2ff5576

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3f53fc280cc51f6000e4846ebb4fc2a38f4aca155c4b4eaebafebc8ec876eb1
MD5 1ca3c90279db79279488bea4feb47d2c
BLAKE2b-256 1faad763ca07a7fb7eb5a65468d5ef9b70f58e746cc1a1cba9cf62ddee23d75e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 62b1e34d535f4bb27b4699d47a582abf9124d9673d9b6095c3d1088f3163e2e2
MD5 3e2a0e6d87aa3cbfc18da4cdc82bfd59
BLAKE2b-256 912536b7df3095d5585a78d99e15047a0210a2fff500f7d28b6ca8c1452f11f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.2.1-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.2.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.2.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 04f3cabc61420eb646055ba04a2bf66d82afbfadaaeb86c47de0c8a969de6135
MD5 16a47a9e75746c32558d061383296667
BLAKE2b-256 8b6c6fc885c79d31e43f23fd189149d1673f0240692bf8fb2b6cf3930101528e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1b7def8c0d703f8442928006ef384ac8ac20e7454524bc3d857393996e63fd58
MD5 b563ffb559fe3d458c3957764baf3332
BLAKE2b-256 c6e954e0bc650c9070c9fe614695ea925f367b12944a864313c1a0480b804b7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1016732a94e5cbcf91ac10e841b3883f7908773b9de93bde11faec0075447a39
MD5 20128f2682909b5c57b0e643b72606b2
BLAKE2b-256 ed92109e43098aacdaf2a997f0c1e10c693a479a4ec15c1e50b157b9279de0f6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9c82048eafe1a3941d699af1bcfa42c7d8f0a5457cfdc35b11a7d8b323c6bfd9
MD5 089fec9d86276cd4d1f8e349bee8ff19
BLAKE2b-256 f96ac13dcadf5252e29dce9421c9ccdb193fb4c3b625f30f21415a679695eeb1

See more details on using hashes here.

Provenance

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