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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

cyscale-0.1.11-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.11-cp314-cp314-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

cyscale-0.1.11-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.11-cp313-cp313-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

cyscale-0.1.11-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.11-cp310-cp310-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.1.11-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.11.tar.gz.

File metadata

  • Download URL: cyscale-0.1.11.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.11.tar.gz
Algorithm Hash digest
SHA256 704835c9f2a933969c20f0047e64c30e848f6dabc661973dc41dab0429237e35
MD5 88b0c3bb0b6cb5923be7fb1de3c79660
BLAKE2b-256 9f40a91446f7076b9a2d2525d4f477eb84b8270b249444eaea89c1791f92e136

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.11-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 b7bd5048c4e843fe3b1ce9a2b2934fbddea6dfff31fc0638d6a20ba4c1c55262
MD5 9a66402adb1fc35861cc8538f2a515d3
BLAKE2b-256 503f6c07dc5b78fdf8417100f3a379ffae20136b2f1a5fa11b30b2b73cc9bdcb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.11-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 9150eb070ca129361e5ce8a1bf392bfeb3a6fd6904a4e35c91c174e272cb010e
MD5 8f647e17086f516d44c72095274982fc
BLAKE2b-256 0d051508ba0bdaf0a1a57a50771d98222d76c84119b3a890a81964021194d12c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.11-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0f7d3ca11d99f5f727086ecc277afb4f90b3982a4fd3d709c20906be00d4939c
MD5 603f3c7f234f639ec0125b96241ec3e1
BLAKE2b-256 2a07c1896edf5cd55a26f236ff1d9f8538ca0f3c7fef05eb61be30fb0eb9e584

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5774853b85cd0846779caccf55549d25a15a8915e07356998db3380a01b17f85
MD5 5f1b1575f7af855ab6af94f7003e4bcd
BLAKE2b-256 24affd24dd80fab52fd06f187f7c4b8ea81c1b82c6cf79c8b8b47cdfe8f92bd3

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2166c2ebc404338d2922dab988e46a2806c42c1dc4a342bd6d54b5e1be442368
MD5 64ff892bffe9e73baac3d269345de501
BLAKE2b-256 ea02f430d9527f3e34cd464912d123b1243dd648515304d19845320f73195341

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.11-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.11-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.11-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f603185e7059026884968bf059dcd576ca4fd5a9b4d925b6813ef4459eed41fe
MD5 6e1f94d0c0b8f689fef845dfb8d15c39
BLAKE2b-256 4d8fe5868e2289624666d44b0c7af1336a9e0156449f64432483b927b8960426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3732ce8818a5a4f59665b96252510be5414cc5c420799ef9fcc1388d71e6d9d9
MD5 c9a4ca0a214897cf3f2491d95080157a
BLAKE2b-256 fced88c137b72e0ebbc5a5bbd4403148d8525d84a7b8ee53807a53b6ba256497

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 70084594d6fada8c1f58093f4d6eefcb8039c64deaf11c4c1a091224cd86b116
MD5 ef36e1228f8626925ef6cb7a651c76a5
BLAKE2b-256 ec95bbda78450857ae42bb46b2ea86c1da49571df873a334358c6a607e5e9a86

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 127bf77bbe36738933e0abe5db2916aa253a895f79d1f9e267a8c4821c1dcace
MD5 c2e033eb2a19ce80ca338040b48b2be9
BLAKE2b-256 d1715a6212d1b1b1e63c81859e636ea01765a74931545e7e6c3d2aeef8651a9f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.11-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 2a1392dba08ab7ac7788e727e83a6ddbc75fced84ab941c198cc50223e16ead5
MD5 2cf0ec9f7bab947254d3d73d48604487
BLAKE2b-256 c466741568bdb99d96f8faf0ecd6f7b70da1dc0326cf2306853537ce592bcdec

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.11-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 e5cddb84355a01faff1abc27133d83bc0b9b3e9825e1a8715236947af7fa6f62
MD5 2027a7dac9f2895c65dac2d2fee8f601
BLAKE2b-256 4ee7b4a1aa13a05f79b4a44664ae2bb3c71f41212a418fd0c07a3bd55ab3e65e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.11-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 1c73d36aa21e76e09e05d477bf66f53390c28b553bc5ecde412dc92805ad0f14
MD5 336dd1a29aa2a82e79562e9bb9b3643f
BLAKE2b-256 8d6977bc1828915c6a966af402af83f750b682360d2a4568eeee8dbae82f8995

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a8ee998cb49c1ce7c7fc6209d41fc979c95ad9c838dcb2d2e33c5326b2f1409c
MD5 4ddf01b4548a72a1cd5257b506a07daa
BLAKE2b-256 15aea6fd9adf131771130e49b461fa48077946eb7afeb1a8739eac24cc3822d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34268f7d2e48bc45c31f7b1d8388ab063e933887a6e8180140f084319d50ed47
MD5 d8cba1ee3dd09b4b8807642dd570ee61
BLAKE2b-256 1df557f831cc987814174c99b2a41fdc16709b44c15970e135d359e180528909

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.11-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.11-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.11-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f92d73f16435dd22b6cc40887a34dbb7097f698343e8cb3f4e4898bc35dde32c
MD5 778425fe72b050e9eef40946d0e246f5
BLAKE2b-256 9edfd7a4428270aa6a1ebf98be75106670a9bc20e0a81686011d0b08a99fc055

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fa3097a047794552394ff66dc86ddb80edf2be1e1d9d48ae712b4bbef8938a8b
MD5 e99cc57381a65de7b3427e8bbfd4a9cc
BLAKE2b-256 ecdd58fa256547e56e46ae83a631d297e5cf6d5ce744674d2cb230d55e2e7b36

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4915045777cad6ba56cda36d7ae048465e28a8850332d0dd4a853c12d6964422
MD5 6c79b9407b5bfe40cbdfda2eba4896c7
BLAKE2b-256 0e77d4cc9a7ad8aacbfda71fcb69060b5e4a4a14abd37c58b31b43b4a111dd9c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 974ec8177e6199bb618a62e075f448148adc1e62aa1b88745df174690dfd36ee
MD5 29ae2b01063f22c9d4ed66e509a04bb9
BLAKE2b-256 26d58a3625d11824afadef8ae96615b5711d28bf4bafbc47e037fbdf7bffa18e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.11-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 885460ce21ae83713e0a9c39e9f038b6679e54587b4396c3b8d986e6829f014c
MD5 30016d148025834532e6a4d695ae7ab2
BLAKE2b-256 4fc1a1b0032e4f477d5bf06bb0fc7aa188944ee3c8dc88c57e3552e60b2a749e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.1.11-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 65cffb3824443ad3a0f7afff15d8ba0e578721a7d3b66c5ac19adaf30d2e8a4f
MD5 21d46a27b6e9a40373426392d19ee77f
BLAKE2b-256 230af322a692884815411bc960638c6bd1e4a8abf3b310e00179024e6f31fede

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.11-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 5bd9ac9a0fdb9657967874695179a9fff28d06562e3e8d7fb73f1df798fe5391
MD5 5de55d5cfd9ddb90d338e6bd15a919f4
BLAKE2b-256 d7622ca86d5c7f97a6ec2bd491a747e893b5475f885bf853c47e93619d4e176f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7b972fc1765a631abc06efda6521f15c85270f2d82b6de1bfa002091f26ebfb2
MD5 055c56e8ef011a150889417ff77ca559
BLAKE2b-256 99989f4e5151fee1b44a484067a8c5d0eef3bdd1bee7f9114d9d35958e56a677

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ae91ad356c2d8478b9f2122f22304398261e05450c425d55190dea241cb14b35
MD5 493538cf20015491afa6c4f8592418a8
BLAKE2b-256 ebcdb000916e4b9933de2c131c84e1e837d0d3c963e5cfaddf0bd1d40b643f00

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.11-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.11-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.11-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4f271002a7f84fa7bf680177720961519776480c52671d8594cc9204738cc58b
MD5 002cdabf19a4322ca9766f0e84074589
BLAKE2b-256 63dbba2d843447fff2218f69333c720dcecb0b1f65ac5ce90538aae4160b1238

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9bb122e680aed0edcb8362787e724ed89afc2bc91e53dc5876e95cc666555051
MD5 a5c14631ce066fce38ce0e23fcd1aa7a
BLAKE2b-256 bf76b83e54f5c792c2e5023c17082b95e695b3da646d9f63bdb2da75bfaaba96

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 103c444529964061cb4b1304c7b087944cb2dabddf16a6c5274283bc19e9de3b
MD5 30ad3abf9209fcb08c3bbec998e9c172
BLAKE2b-256 abc131b59003a3351c41ab2780f16cafcf614df0c24f2dc9d8385faada6d2030

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 749c485e597c2127ae415c67e96e0ee698e16b591d991042a5d246a50dad096b
MD5 e04140685a7dcc5dc926a66acf3453dd
BLAKE2b-256 3de6822df59a77eb12c7903265eb96d70b84f9c7e8486984f427171204f73b9f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.11-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 a52c913cd296a92d47cc2652de0e6332b444b2dc99fb5d99944b1833994881ff
MD5 ed19c91207021e01edb5f39f323d537f
BLAKE2b-256 fc0229f085b486d023e0cebaa996ff1cec82cbaa618442e9d20b85078744366f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.11-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 3b450f12c506a39617a0c47e25d477a07f7ba36bfe01d7c43c7ab13fca1ab63e
MD5 fdeedafc4125f1860cecaf3d24a5d7fe
BLAKE2b-256 e9acfa08b8adc5deda4568f3e3c74e420e366d67431362d7b1cef043f85b7498

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.1.11-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 414b0b64e6964d40723125d10b5d189deea0d30e058028a7b0928990b9c86fb8
MD5 d0846d992efe49f5e7a291772c81c4e5
BLAKE2b-256 89559549a6803787ba1953154071c83c1a6cb7c03551a13a0742cb8035408a76

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e90e072b9bd47cd9eb73d9a84b7b2bbb2d902e6fc7001dcfeace834effa45c99
MD5 286eefef39cba96764b113bdd680edf0
BLAKE2b-256 a0bb8757d3d56b7cb047dc68204e345da4ef971a4d975d36ede85b33903dd84c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7df15b46ca4775d05cd4ac6518512ee2bd082b978fe6546ada3fb2ee103c79a5
MD5 e7d353ef70865abfba3893e5af9d2648
BLAKE2b-256 979c694acc6d5d0ad0e88ef86094e28e11d51688a4f573f872d2af2866d3e4d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.11-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.11-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.11-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 379ab23bc80dd8991dfd550d5fa922491f3fa229fa2fb2f93de2d23074d210ad
MD5 e01c51c9a057ae88a7d16478467fb544
BLAKE2b-256 7feee7c92c6b931c2fffcca5c0cc8d1f1840f4f770db425753174baeecd2a504

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0b150b668fbf7c94b7281f46af6b4b0eb65e54537f56e85df771d3437ebb0c9
MD5 8ddd582205d75671523bfef0dfc80d85
BLAKE2b-256 68fd88cf2dc13c1af00ab3ecd98f2761e4760d723ce77ed2113c39df1df30846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3f525bc1e58561185ea2d6f1f73d63a78fa1cb04f96bd7a1484bf87ec4cb74ae
MD5 9b0c992946e08a5a847fd3bcefa7c019
BLAKE2b-256 6360de530a97a7d138ac87faf352e8a930f5d4e7ec1ca6e631ad48460b46b183

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 76730904b0ae838f794baf2c94d6ddab26f38cb98b4b1317d4d7a2d503dca6bd
MD5 e60730b92bf325719ef3588b2da43b87
BLAKE2b-256 d3818e94fed89285b8fbbca82ebfe4f12140723a90e55a8787651d8e165fa51b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.11-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 02d10600bc75eaf322e045b3b6ab5b56626c4e79cf7664b8a26d370c94d6d9a8
MD5 e129e6b394be18d9b37b27ec6a0447c1
BLAKE2b-256 8285a9f5fcad5e2249972d7abbdefa173bc303771982daea5a66796fffad2ba2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.11-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 b8ed4e777d11504afd48bd44047c4c3c9ab2e60be8676702a38eb3b5d1efd6f2
MD5 4cb690fc922fe0565ec40399cb1a4037
BLAKE2b-256 47e833746df7f30475cb280580913a7add4d552ff9c0a66478bc5b284b19c78e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.11-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.1.11-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 65d5e16dc6baecb78f666356f464c939c64b8c8fc097037ccfa6b41672b92dbe
MD5 436952f897dcc789df8b56fd92636001
BLAKE2b-256 c0b7e4c4cf4831239b7fdd3b0d722dc8ae63db4f8dcc7e1b3dee3112dc7c9611

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64546a595507d7d45c6e5f9dbaa9b254cbb6d8c45b0ebb4b14e14a98a83e54b7
MD5 385d8c9db430618bf5fc2a86009f7605
BLAKE2b-256 a244c821a6946a346a3b226447b0c5d8f3493e95a0574cf3695d98c0df247f2c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e21f0ad01f96fcf47f1745884dcb766e8eda0b09b7dd5e465d4c56d4fa61353c
MD5 e65a10e063efbcfa49e10b5544ca764d
BLAKE2b-256 5722d4a331b4cefc84f528c4fb3c13c716057dd922dd144c5d9bd14ef9792da4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.11-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.11-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.11-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2681083e97840fcb17bbc88d2a339e344f1f9717e076425fb6f1a86e5affcb58
MD5 5b10b3abe8251f690025c6d2270e1a14
BLAKE2b-256 be6645c7ce96685f991d2045c3b848f3d3653ef6166ce8a0d5816416fcaa2197

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 10ca7f0dec01b07f44f7009aea305a9551376204597db70ef98eb8d0516b5b84
MD5 30ecb9c5582a009e59a2ba8ed3cdd820
BLAKE2b-256 9330088ca62ea70f61069a331adbbcd82dc960b571426bcf3b8d6b3c6f5890d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e5d9085af253b73fe390bef6d2be21a9c896eeaddf27bde983214587ba682cc8
MD5 21e47fe777a135ab384aabd15a5f9d0a
BLAKE2b-256 12534d67bb26a130ea187cf481639102b28e3d63a94b081386db80d728f1350b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.11-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8bcb0a2b98c91d781076ea8c6cddf7fe5ccd5213316463a9dd0b3d37887556b3
MD5 f552fecc25a9143ed41ca5907b4e92f9
BLAKE2b-256 89eeb50f2e73634d2f9022df39a64bf3a64a88cf01622d7ce8b5ed7f9aae7510

See more details on using hashes here.

Provenance

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