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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.1.10-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.10.tar.gz.

File metadata

  • Download URL: cyscale-0.1.10.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.10.tar.gz
Algorithm Hash digest
SHA256 e86ce3fbf7d574878da9cf0894e3c9f59ee3e2830f590fc3019bd5d04199dd81
MD5 22bb3f1166c1f02bc807cd5042f85cb2
BLAKE2b-256 6875b6767f5ba81ef9ca03ea4c53e1236a5c09b49f078bb6f56795694f51be2a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.10-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.10-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 e26e925e008526f334f27703b5c405d7366c4d1f67b97e9d6ebd0483d15ca00f
MD5 ef6e81239b150055e208f57cf5f5de25
BLAKE2b-256 d456a90c839c44c376c31f0d909c3ed1eb199532cb7cb39f43c64054a7336deb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.10-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.10-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 926803ea5ec85f3ec0441e493be86e4d2ae1b46904256cc877341689ab98750e
MD5 b57352d931639567192105a625da7fb9
BLAKE2b-256 e7a9fcdc91ef3b3be62339c622dd3d98cc145a1e77c2cdc0ddc96216de5c55fb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.10-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.10-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 fb319244ae42147f05cfde006c033c9fab79c765d137ad55130f69b55ccfb4a1
MD5 411a8165bf81c60792e8ae4f2eb9141d
BLAKE2b-256 f304d87bff67afd75e7a0a5851a605aa85e2feeef4171baabba7718664d07b6e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e501e6db11eb1e9e960f0053dd3a642a7497218340058be7510f715ee682c8e
MD5 9387dea25938caa177bf05dc2a9a3ea3
BLAKE2b-256 276c4857295540226d23f085b5065d1c6501eb1d2d14c47f270d0089bc29b360

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e446936a08fbfe244eaf8d9d04020e1e50734639641be44405f3cd4dde81ce96
MD5 b3578537f0154ee5532e984973fc0e88
BLAKE2b-256 a2a6e47a94529f4aa19d6d5d56cb46f9f93277625147c1dd293d07b52487d680

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.10-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.10-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.10-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 989c51283de37c99cc106413b75eee7276b2b68dfb6263a9b6c456789b0fd590
MD5 a4b8cc15cda855beeddbe8ed27cbe086
BLAKE2b-256 6161bf1f5dcfc001fe7a57804aea8fbe277c2e7b394736695822e4658872aa1c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 febee317b4612ba1cdde44f96debf8b197d2b87815e9ed3248615f9fc948b9c8
MD5 c78e73c21c409bc9a8ac5a20bde34ea9
BLAKE2b-256 c434fce3b7576feaf20115f7126f6f07306f60d858ce83c6e2879f4931754311

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d9fbb0d71360512bc1950c1c57544b2dfc57366677cc1efcb77501f3de93959e
MD5 9ea44bea7f042c96507764118c61a172
BLAKE2b-256 98d0f3efd945dc04ec12daa4dfc8d092251af17c3c116d5253218c1fbe24f44f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 8a992340359e127bcd08b3b03740dc1ff7f960840abdd198757c8c28541c7a24
MD5 c2e725addbac3a35b763a5fc21ab9008
BLAKE2b-256 f64fceb1619f65af9c7b8b2843d80d2b4a7abdc263820596ef16090c38e69480

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.10-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.10-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 e91f9017ac00128b7181090da715c003a301af5ce47d2b91bcbd4efea2fd6752
MD5 12855fd40187aed28f42bc81c0d165cb
BLAKE2b-256 63493186913ad4a8b7bdbb862f2229b885fc6b730500e2c4a558182c902c3980

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.10-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.10-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 6d20dcae9ed6025e27aabb16c787061f093678ffc90e98dc3de09521569ef314
MD5 cfc92628ce5030f83c003ddb1d9f80ae
BLAKE2b-256 1f3ed1240403efb79e4223bed4cf2c8bca976600ed9367e79bfbc4c4988f26c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.10-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.10-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 e161b7a6cf5bdbf6e30bb543b9d3a72cbc2ecc0c7e60a14259d9bdffc8e5706a
MD5 dd93d9b016957928b200919b7281578f
BLAKE2b-256 2d4b65522759d9a1af6f640cc4081c33cfbd09532ee3e1388c55957a417d082e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0783859a37eca9ee0a021d65008bcb57e7e5e793e4e9829ee554c41e70ca5db
MD5 3295cdfc43fc913e5c01dea8a2f8ea90
BLAKE2b-256 356ba44614fdc6467197960a26c5f918ef85307d30054a38478d68bd276a0e80

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ec98d02c7df43ae4ca73cedb2d1fa92fba6e70c4446847f47b7e379327c19dad
MD5 e7e716c6eb50f59403d82d9ab73c3eba
BLAKE2b-256 7b187c1b44d004bf1d772578a3ef5041fd9f4af352a1c334b463739c1ce976ab

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.10-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.10-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.10-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6cc2b0431d8be73f3191e3f5d84a30cf4eb6c3d86f40e51c1e4260200afea1d
MD5 bebd4a0e460dbf171259917ba34bb0bd
BLAKE2b-256 8a1b5e9f1176077c5b6f6715f3f17d2c9490252ec5e457ffff6131d8a8058293

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7ac6c70d8aa954267dc98ad334bf903fc4fd0116c018763750b2c8333cdfd582
MD5 48392c7d5a3befbbd324d2551e59bc71
BLAKE2b-256 a9cd37fdd53343ae2135863d04153fadb9b5261b65cac413207047d84ed850f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a6ce44c5ae86d53d93506ea84c08e189ae1818587ee325b65659a026e30ae3f
MD5 960e75033602135e849fe379e056412a
BLAKE2b-256 e545ef7a6a6d99e14aa0ba72d8c0a19a8543a86c9a06a86a88845b84c5b1b2f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 265e077bc4851a9f3591efccd008a6a9179bc7932ce0afa53c0f0f42cabb9826
MD5 c351d2a5fae5555774d95862fec4d8ff
BLAKE2b-256 684fdd9845967ddfb7444316a184a71284ab47797ec0afcedc2647501115837b

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.10-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.10-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 787b2a5b11f3df9785744a4b951f1e29788f48c3a2a45a5f849ad51856c55464
MD5 ac4d3826f1c8165622a2f37f173b768e
BLAKE2b-256 d81d9f969da5843deb0452062ba654a51ad907688571a8fd42c54b74c334dc85

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.1.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fb66b7a374d12901ebe1cec258e0b56599d037a7acb10dceb4cdb894c0046b52
MD5 fba1c188358e0ded5e74d00ed5069b69
BLAKE2b-256 9109b1119a2f2b9f46e306ab1da1ebafed0286b55a5f54d49a6b1009d5051fe0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.10-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.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e0c5c5a9796944affde6780be4b34a6a3f546c2867d001f7aedf219dd92faf5c
MD5 529ef85c05cdfca7cdc854ba415e7a59
BLAKE2b-256 2191cd09b90c0528c3f1de4d676b297199372ecaedd080fbdcc0247c77d0894d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b8634a144919fb1838a9cea89f8786dcd47cdc9ca8a6a076a1d7a8160c4136ef
MD5 f1ac23a426db01f0e5709cb3baa9c5ba
BLAKE2b-256 8ac6c217515bfdf5da2575ca1a8ac52792f8c1695da2c909b6c0918959951511

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e21407f1f61807db83232c72781ece48f6b085069458e8054ccd5bab86798d4
MD5 a65f6138a67a626c904cc97d1d3365a9
BLAKE2b-256 fac391ef1c869d35c00a4763d438193c16f2aeeadd0898129010f5363b4ecf78

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.10-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.10-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.10-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a6e0b325715022d68b79e74c27059bcbb44ff0246312c8c627a3cca534296af2
MD5 18df84dbca8c838463c4168c409316ed
BLAKE2b-256 3a40a3738f822cf262e88bb6e77edf36e1ed43726e1bd00630affc308907879a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7c049c25407941561081c549ec68c1e7946aa0b2b514465d234ddd764bf527b0
MD5 77f42ee64a986b8247028fae883dab24
BLAKE2b-256 bfab1e0cf2159bbf200b3082a38deef3df8666f7225895709ccac128b20e3026

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5bb46c72a3a03b669d85e597628b309e7b8c293e3184c52a5841460413e73a91
MD5 6ab6b42d6a9c6b58b418b681d9fd5926
BLAKE2b-256 c19092e68d0696a691df86ccf9a695f04c44004d09bbf67309de6c51ab9f8151

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 53fe9d41ca3ccc3b0b139944f7637aed712d174e974fc4ee3aa106bb95f4aa94
MD5 7d31286cf8c5ececde95b445c64d9e1e
BLAKE2b-256 7e39546bf51b9bb776d7a94a8f1c9d1b9f89eb144e081f32d7eace91e48e48c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.10-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.10-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 eef8d444c54e7cf8f83d3ac61348b15dae21ac1fd33be4500540d12e880e5b8e
MD5 25e11abfa92c453752dd7c672340e76d
BLAKE2b-256 1f685ddbbb0dc88342643e5a04cac067c192892cefdf40ae5801daface11b0c2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.10-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.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 80ea12ce0d8da78ffb8edecd411b999affde0e2b5bac750917b380b2c72cee98
MD5 e84ddffd06ffafba9584a53a11dc2eac
BLAKE2b-256 43dfbd5f0a0623dca7c78ad12c0db563dc37209b84760b8dcb7a000a253351d1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.1.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e8c0eebc0189bd885407b51f54e242785cf2d15a31dfbbfce20b223bdb1886d5
MD5 49d7df22b3b77d6cf5cdc5660784cd68
BLAKE2b-256 2e9483f0a1817067a775e6c12a7a475c1383425257cc14385d810eaf707f4696

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 662309a302ac87b1a6c5f63589225312466faa7c774c201c975522c113550bae
MD5 eb4c218b64006663cf02c7d6389bc3d4
BLAKE2b-256 65d79c901c5beec1776d97ff97f809c77e480449342c2657653e61872c8e565a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fba10a022c4e32c3114fab1e0cb5e147288c8134060fe8cbf349b3952d175187
MD5 ff34da39a86b787a2133ca77fc6d8f55
BLAKE2b-256 36df01088e2c1b4e7e48d04a8588157447ed192f600cf0a7e344df4c569b2163

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.10-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.10-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.10-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87ce38bd9bbc46f6aa0549a96477510502e528c3846d127961bf0a760a9011bf
MD5 af367db4044aef90597c1fd35475af97
BLAKE2b-256 1f5a7a21b3fa1be73b793737b2e8b6484a4ad07510f5a0afaedda326203e9c56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 23279a724bd7b35d5f40a505f06e8e05b890568ad51845236c118bc1f5923d4a
MD5 5f168d9d21e5b895c1953cc41b178e8f
BLAKE2b-256 0f857acc5041e3b00d6ce4185bb99e8e257f8ae1ef0fc09660a645246945b7e7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 03cf980f3d60efdafe233cc73a46c31e2a52a1599034cbe645252de4b47c8cc1
MD5 eacec6239fa687002e242a53e3ab8a29
BLAKE2b-256 528cdee9ef62465d6863872c8c19d58e589869f710b383910c88a533461441ca

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 36432cfbbd559aff893f6577a6c8e516bd6ac5e09dc765a54ef7209cfe7c717d
MD5 846b3f5df4338d52517e0bc86ffb0658
BLAKE2b-256 a435f0bff14c3efd7634d277a3ae75f18f2409ff1eaafd170d1593321bf947fd

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.10-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.10-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 ae44711d96f1ca55e801c88b21a168b49479845981f0d54f3bbbe73a053698af
MD5 f6c6328563e2730f2a386fcb07614a49
BLAKE2b-256 6f194a731304c4493275aec4cfbf8d023005590b473196759dd8b741e82d986e

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.10-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.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7cde027658d9f0fa39b00714d28f028286bd0ffb751f984f7f6633b4513ef677
MD5 1a44b9914a2cf69bfbd35af646ccd9b0
BLAKE2b-256 5c519faf126782e5094c42da96e3224e011ccc1117a8e3a195546053845ffc78

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.1.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4cb9234f082316ca0e159883e8cea4a4e6ce04d0279065d655bc0b8a4cbc6848
MD5 5460db69e00c8f9dcf17e194edb77a1d
BLAKE2b-256 d19410d8020d2d582141f4bbba7bb0c89866a578f75bb9fdaeb4ad6d09de9dbe

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3158c070f3dd75ddbf36e1033b3a09504cbced1c207a545e48e93d1aaa83ec3
MD5 9ba224bb2d2dce3fc4859b8a74e1a213
BLAKE2b-256 a6d9314c97a5b0cf54dca3f260a278d879ba9142b4c8f4d3634ef0b70564d2e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4abfc8e0dddaa063588b20b0dfeaeeaa134cb20b053837e136a3418cc64acd5e
MD5 64ac80cb6694bfa550ab025b76be0fe6
BLAKE2b-256 28705db8e1443e3be2e6b17fc60a8b9578c16c7cf6318118118a614fddb67498

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.10-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.10-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.10-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7715b9b38adc7be03fe7a3dadd2f356d0429237562633a98fff130215cacf19
MD5 3b81bf80be846d4f023f36d0b18dbeec
BLAKE2b-256 03582f5e072df787c9e5e4fb99f03b4b424dea0c5789f2fcb575c9a3cc552fef

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 4dfeefefe4f4ec903db10acb68e7277a47c09bc9fe4452877d40678a28b850a9
MD5 5da853929d62fc8560bfc64df2e9a89b
BLAKE2b-256 6306e82257cb585afef443c974baf65edfc4e176b2493bc903aabf45440f299e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 feddc194d2aacdffaf9722c5097cceb848713ee8177f7496960f6535b8affe72
MD5 6c49b077313105a4446be2ab022d4127
BLAKE2b-256 cba62904c89c6af5de910bc70719550a0c033fdecf74a43e9b76af7e0b723eda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.10-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 19d539e3b8cbdbb5a757e5eb8f0bb65d8b0252af0e1199d9cf983c90df67b6b9
MD5 7f54def27e7de9970e641c48a12a2a6a
BLAKE2b-256 b1f55bd6bc70918581da8b197c3016d7da9fed2bd56a81a2ff67be72ac77f996

See more details on using hashes here.

Provenance

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