Skip to main content

Cython SCALE Codec Library

Project description

cyscale

Build Status Latest Version Supported Python versions License

Cython-accelerated SCALE codec library for Substrate-based blockchains (Polkadot, Kusama, Bittensor, etc.).

A drop-in replacement for py-scale-codec — same scalecodec module name, same public API, compiled with Cython for improved throughput.

Installation

pip install cyscale

Performance

Benchmarked on Apple M-series (Python 3.13) against py-scale-codec 1.2.12. All timings are µs per call; speedup = py ÷ cy.

Primitives and small types

Benchmark py (µs) cy (µs) speedup
u8 decode 3.01 1.16 2.60×
u16 decode 2.99 1.25 2.40×
u32 decode 3.11 1.26 2.47×
u64 decode 3.09 1.22 2.53×
u128 decode 2.91 1.22 2.39×
Compact decode 9.59 4.38 2.19×
bool decode 2.93 1.18 2.48×
H256 decode 2.93 1.21 2.41×
AccountId decode (SS58 format 42) 11.45 6.11 1.87×
Str decode 12.89 5.82 2.22×
(u32, u64, bool) decode 21.96 5.59 3.93×
u32 encode 2.34 1.10 2.13×
u64 encode 2.33 1.20 1.93×
Compact encode 8.85 4.42 2.00×
H256 encode 2.47 1.01 2.44×

Large payloads

Benchmark py (µs) cy (µs) speedup
Vec decode (64 elements) 224.20 98.13 2.28×
Vec decode (1,024 elements) 3217.32 1423.46 2.26×
Vec decode (16,384 elements) 50396.95 22435.45 2.25×
Bytes decode (1 KB) 14.67 6.87 2.14×
Bytes decode (64 KB) 64.15 45.05 1.42×
Bytes decode (512 KB) 379.99 300.14 1.27×
Vec decode (5 events, V10) 301.10 135.32 2.23×
MetadataVersioned decode (V10, 85 KB) 64958.83 29839.68 2.18×
MetadataVersioned decode (V13, 219 KB) 143029.99 65651.69 2.18×
MetadataVersioned decode (V14, 300 KB) 390902.34 183644.98 2.13×
Bittensor metadata + portable registry (254 KB) 443089.47 212345.78 2.09×

Primitives and small types see ~2.0–2.6× speedup. Large metadata decoding sees ~2.1–2.3× speedup — the gain compounds across thousands of recursive decode calls. Raw bulk byte operations (Bytes/Vec<u8>) above ~64 KB are dominated by memcpy and see a reduced ~1.3–1.4× speedup.

AccountId with SS58 encoding shows a 1.87× speedup — the SS58 encoding itself (ss58_encode) is pure Python and limits gains in that path.

batch_decode (cyscale-only API)

batch_decode(type_strings, bytes_list) amortises Python dispatch overhead across a list of decodes. The baseline below is a py-scale-codec decode loop, which is the equivalent operation without this API. Note: bt_decode is excluded from this comparison because it does not perform SS58 encoding — including it without that post-processing step would be unfair.

Benchmark py loop (µs) cy batch (µs) speedup
batch_decode AccountId ×10 116.66 42.07 2.77×
batch_decode AccountId ×100 1159.47 415.44 2.79×
batch_decode AccountId ×1,000 11530.59 4112.27 2.80×
Mixed (AccountId/u32/u128) ×100 599.73 147.75 4.06×

To reproduce, run:

# save a py-scale-codec baseline
python benchmarks/bench.py --save-baseline benchmarks/baseline_py.json

# compare against cy-scale-codec
PYTHONPATH=. python benchmarks/bench.py --compare benchmarks/baseline_py.json

Examples of different types

Type Description Example SCALE decoding value SCALE encoded value
bool Boolean values are encoded using the least significant bit of a single byte. True 0x01
u16 Basic integers are encoded using a fixed-width little-endian (LE) format. 42 0x2a00
Compact A "compact" or general integer encoding is sufficient for encoding large integers (up to 2**536) and is more efficient at encoding most values than the fixed-width version. 1 0x04
Vec A collection of same-typed values is encoded, prefixed with a compact encoding of the number of items, followed by each item's encoding concatenated in turn. [4, 8, 15, 16, 23, 42] 0x18040008000f00100017002a00
str, Bytes Strings are Vectors of bytes (Vec<u8>) containing a valid UTF8 sequence. "Test" 0x1054657374
AccountId An SS58 formatted representation of an account. "5GDyPHLVHcQYPTWfygtPYeogQjyZy7J9fsi4brPhgEFq4pcv" 0xb80269ec...
Enum A fixed number of variants, each mutually exclusive. Encoded as the first byte identifying the index of the variant. {'Int': 8} 0x002a
Struct For structures, values are named but that is irrelevant for the encoding (only order matters). {"votes": [...], "id": 4} 0x04b80269...

License

Apache 2.0 — see LICENSE and NOTICE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cyscale-0.2.0.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cyscale-0.2.0-cp314-cp314-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cyscale-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.5 MB view details)

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

cyscale-0.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

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

cyscale-0.2.0-cp312-cp312-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

cyscale-0.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.5 MB view details)

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

cyscale-0.2.0-cp311-cp311-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

cyscale-0.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

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

cyscale-0.2.0-cp310-cp310-macosx_11_0_arm64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.2.0.tar.gz
Algorithm Hash digest
SHA256 711de554de121532797536ce1dc5d6374e5d95142688426e298c51986acf580f
MD5 3cb132220400c8641216bba7ffc445e4
BLAKE2b-256 7ddfc6e0b0b57e4388ca738d82b39cc60af60178613f5e2369be01a9c0a754d5

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp314-cp314-win_arm64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 40d9fb37e0da5b83d0eb12bcc134f0262e35f1109ce18bb40b9b78f47d95b229
MD5 33b3f06f292eebfa11a5932e18e8f46c
BLAKE2b-256 cc0fd9de67b019508c81108bf1662da086e33447714016e34c0fb38f2d72fd1e

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp314-cp314-win_amd64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 8e335bae75a278068418d87f687f2c0fa269bf9531f4984798a64140204e8e91
MD5 091703d08f0eb9c7acc4f780535b875b
BLAKE2b-256 30d4b52bd7abe4fbb5fe8160cc650b7898dd9fbb5787aacf3c341a79202be112

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp314-cp314-win32.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 305de054683be308ddf0320d96f39f39cb4b8f170cffd06fc76d4f683c493c83
MD5 4f147f6aa23b04a7ea60a87c832d18f0
BLAKE2b-256 c503db9ac9042040b6fbca484443bed00c73dee3c67d242eb18ffaa7ec22b40a

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 87966037ebd37d762ca95fcbb82a3218400ebb5877515b722011ba104e7d2c9d
MD5 6a0c5020eac406f45f7352e9fadfb1a8
BLAKE2b-256 3822619c54e544dc7045f6eab3c5a3b991df0c076a4c94dde628650a8c6818f9

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b440c6dd40dd6d512271d9b989f6fb2a7a80dda2d1c818ca3368094b2d54e6cb
MD5 6ad9e823ee5d0e773f8ca3d03ee915c8
BLAKE2b-256 2916f0581b8dbc895f00a505861db6588fc90913175b55d32e0948aa34c7f4fc

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 18d30810c8c8d2196ecbde89f7276010ef72735dfb603c5bbd2177271fcd9fe7
MD5 c2d53fd47b87457b10082aed38f64c51
BLAKE2b-256 d500dc54aeb2ccad38861394d586ee00f91b54d8cbb0494b6c319a80bb1d2b4b

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 1c85c5ecb8167257bb3df0cd68fb5656299cd88e9597a1bb91fac9ce33e5eb9c
MD5 fab3c5d1f4646a9f5707ab68faaca74e
BLAKE2b-256 4254e114b3d18368bb0e425a8353b829686735b22d5c7f52fbf0afd691ab5677

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3e25bfd572a260d43a9fed77b69eb74460e9f35118bacafd039f0348b9f23c45
MD5 dc8ac4f3d1d9015b24ed930389988296
BLAKE2b-256 68871eae8ec905f311dad07c6077206380d065f4f1d242495a2dbfdd9e594db4

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 87e42489b073c9924173b4f2ebf13d140858f80c2f5b9c705f6850f389445bfe
MD5 ea416c2ebb55d02ec758ceae1b4294bd
BLAKE2b-256 4786b005907e878380103a315ae278235955b6de647b3999d296500419b37780

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp313-cp313-win_arm64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 4d540f52fda1ad6a75fcc142aa4dff8ac163d987b626839be58d02f01a6dbfce
MD5 fd7c9dfb2beaf8f9657538b4de982c16
BLAKE2b-256 0bd9751b1eb4deb2f593fa9a9fdf51f089a3825e2dd385c1e23882e902c20b28

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp313-cp313-win_amd64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1e57aab18cf8a69e9495c3a0d323fc27b21ad88aed3a7b04b226458227b805e0
MD5 6ea45e93530a36312ec48e11b61589b2
BLAKE2b-256 e636adadb592762df1de943f9929e3d49359f0ece9ee3bdb8d3e2b22a77f7ee6

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp313-cp313-win32.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 29252503e5b9a24c0294a2f2a73643b41e308dbcf9987c6170f0986d18ec0e7c
MD5 9dbb2ea40987c6d3ff50f26d4a82477f
BLAKE2b-256 c33946b890b93fb88cd6fcf2c896a819651c44ee67f45060ad72ac678be1495d

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a30d4166c6205a8e7622b38d0a4e7fb5c3e51c7788b694819fc534deb76b3097
MD5 b65006b88cd88fc369dab5f0581b871b
BLAKE2b-256 099f6c79b56d8eacfc70cb52eab32bf064193ca7f334bec4aaa19964f5792918

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 07b6b53be9d7213f8425c2124d7e58d63eca4fd39b7be16b9250bae49d4bb2e9
MD5 2a10b56b85ddc8b21d25a2aa2bc44a4a
BLAKE2b-256 e7bb657528557bd410441ac8e71ce58562983c2a8b6091f52d1d4a84562dd985

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5896fbeed5f981c7ea0eaa456364d61b81a26abe06aee50814376a3cb3bcc51d
MD5 3bbaa8630f47d266a4f7f868fdea8066
BLAKE2b-256 c0219b393ca944a230783235c5e0a24b401ab706d924b6f9a8ab07b4d3c20199

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c4042cc814846563ef51cf9c0589c4102f44bb36c92e863d2ae8eef9f47fb30d
MD5 8f5794c55ea329d7fbbebc6c8759fa62
BLAKE2b-256 4eceafe6df0f759f09bba75086a662e5f2fd9f0f256d5ac2b7b00e247caf3988

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 244538270af12f62d1756ca427be0ea7ffa8dd96ee53b21d834ba144d0b7eed9
MD5 a04ff53701e00fa52b86d101c30a709e
BLAKE2b-256 a6a10627a507f23cdcd0627afd07e03cd8ac02ace187306a09c3f485d9f56987

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e03424ef52b73ad14a2c25201b7a1b2f5ca30b2f376f4b20c6a58b412da70b07
MD5 f18be11c0c6589b48901659d8cd38aca
BLAKE2b-256 91c103e14ce74958e96fc8d9b93d900d351f1cb1acbf29c3add6a1815e0a662f

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp312-cp312-win_arm64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 c2b95ac817211f1503e71d2a5e9b5451a06cab04106f5087509fa252a354bebc
MD5 3648a18b3475d1fd2820252af8c5fba1
BLAKE2b-256 7b8e58a2c2d8b0f6b0f92a75a0453e37b174a80f67557ee8b0d856b2898df67c

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 9841f5910e74ff1ac5bbc7006632b31c4a9eac27d2cc0be1651d35a71eca9c07
MD5 5c68d6520854bf087161c56840a97b65
BLAKE2b-256 7d77d3d660683a513ec49fc43e7123d8e7fc825fbeefd1fbf8f59f49cb1c2921

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 26a74961ca6315502e1c5470a2f5ff8a6fea9f74b841b9aef45eb8c8d2b33d90
MD5 ccf4f82e29017df89ae869e4d56e009e
BLAKE2b-256 84441659e3d4b787936fe2f99ba8154978e3396f8e9327cbc4836fe9238f4457

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee04ea9e59bfbcd5a8f7bf610242b4fd0d25e14fef2995d3cf017ea5968611e2
MD5 21dd7650665e61d844b2e32c982d58b8
BLAKE2b-256 900c27674ba096f53549b57fa5b34933bab6949ec1690f6f31276838613923f6

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc7dd8f77faa0b1efa4ab14b62eb55d442b68ac4325c8c368910bcef542ce068
MD5 3fd03b7a9fb82f8fe420b9e09b64c349
BLAKE2b-256 5a038cf116d8a83c3be0c4fbcacfaa440104bb37620c5eb01c6045f52fbc046f

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ed2f6518a6c499da92ce03a6928d446d9a9c5dba98a9b35f1c3e82463a0b7dc8
MD5 11560fa7c8fd8ddbce5caef17cad1c61
BLAKE2b-256 ddf7846bdbdadd50334f32517651e11f808d0009ba7bf3749d45c2219106d0a5

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cf87866e39d386adfb0428491b6042121bc0cc260e149d8034d9b292e8a3bd50
MD5 ab162d5f0e895aed5de9f8009cc59ed3
BLAKE2b-256 58ee304fdf6f4a53d1b00ccf6bbfae57fbf80055362a5cbf619962b3b1a25292

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2594661f9877b9973d0c5127c8e686948e6d6e6b9e53ffd3d52e2dab06034f83
MD5 ba10682d1a18a87c28300d6ce4866e93
BLAKE2b-256 474388967029a3ecfe730bc75e19b52c869477e42c51dd8297cf6cdd0deb31ce

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 87ab89ba4600e7853a8fab1486a39989d42f7bb8d8e91ca1b4147a09b9c6d556
MD5 e968fa7a27a2d6e57011a7c4ac8c6910
BLAKE2b-256 03690ac00608f6cb7b51b1dcdfb20ccae18232a2b66f969496d767ebb4e1ba24

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp311-cp311-win_arm64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 2819b37a33450f830a2c17870edb2c194fc19b988fb84d360b749a2b6a0cd281
MD5 abc657dff368ab434de059dbee92a620
BLAKE2b-256 fcaf361ce9ed2e1aed5c14c3b82b667053f37e0b170869eefa31f1bc376c964d

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 c5b65966e1197ee231dcc43a88aee82bfc41748618631d00efd7078cef2cf62c
MD5 49166223ee745448e07feb464f91856e
BLAKE2b-256 e2404e4c6c5b242da403d0cfc9debfde41866c57e0cd75e20844064af62faa20

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b9a57e970682efa66327d71880b1d69ff3f98278033fd8ed9aacefd2dea6ff1e
MD5 49bf2739ffdd319c1e8ca00ffe53f6aa
BLAKE2b-256 8ba677dbae41a02ff78eda4f94420fd7e380571c44bde54118bc91304618d1fc

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 69a51a11adfac1645d471881a3ce14c47a86f5b117dbd055c954999bffc88e3f
MD5 547b5680ecad6d5c5370406bb33ef030
BLAKE2b-256 1c0e37f986f81b42ef30217bb3030c92421c16a2bfe524c9b4a156cb8d67b5f9

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d0ab78fa81c92b46f465b9f72365d1123d9bd678eae0b2d2cbf00cc059c3fef
MD5 8ea574883630585aa8480634301ececa
BLAKE2b-256 5f6315af4b6857692c2488b5abf74cd906509a4a056691c4fdd96e960a9843b1

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 8450c30cafbdf185547b6ede782ab09589a49c47c58975e7c0b99cd1eff0fe18
MD5 df6ebb9f6c79cc7a9002c2277cb1de17
BLAKE2b-256 264c92146b79d040846ff229cddcebb808a0c6a110ea3e90ba53cbe7ba9be3f2

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d1efb414c121eca1e8294143bea0db6275d645e42d78a35370ea41bc4d09df36
MD5 88a09373aba87d010dbe7247d01b102c
BLAKE2b-256 d9aece79ac1203ec98e69004f2a7193fae6c3f087a0b2d785eef683197c5693c

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1ee73c7cec85f3f9144bf2e2d47b017a78a9686d663dcf17e12d132e21d62dc
MD5 a06a95a3632c21604856bafdeee54ba0
BLAKE2b-256 80a31f835ad45467a7104ab631abede89fb2c550f447cc8a7eddec9cecc7fdf3

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8426000c4d2340b5a5555e77883ba0ce52256687c53afe24630ef7c494898bc8
MD5 241a98618039c9166506d9869605a490
BLAKE2b-256 923ef8a18415167c9bf5ae5f356be08c84c3721961851782b835725142500219

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp310-cp310-win_arm64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 fe82534ec7fc881f56be20de4e5da54a0e32da5f3108045bfeac6205c4a9b472
MD5 d11fc6f977c354f035c2d5a717544fe7
BLAKE2b-256 020a801bc4cc3984da01b0ddcb1d2b7b9e7cd0d5e2e026ba9539befb9f7884cd

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 32faf2f4cc88fb53a48a8081b90a83473a088cff6e8be680a5ec06ccd717d41f
MD5 90c54a27c0edc5892154a3ca91eda02f
BLAKE2b-256 9c464e3ad69273266d86faadd6fb205c551a4ee3f67941b9757cbe72d2342dff

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for cyscale-0.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 df12813ba2a91b922886c719497647fd5b5b6a92342f5a338716792a0f966f9d
MD5 6028b29235cc7e055d1dfcf568bf59ed
BLAKE2b-256 1d0562421291b6e4e218a16a61d405e946a754c31cb67637f2e1522d32455930

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c7f30d60df06368848dd5b31bd7dbf0d604e90a6870cdf42ac6c5833557abc47
MD5 d093601017eca25b09c9ca94f036c8f6
BLAKE2b-256 481a75bb246a6536753287b08f15de2c4fd7cba9ca64c384630b06a7bb17abae

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6728e6e1364eb7667fce8e15d040c719669bf3ec71a7d499b626aaa20d786402
MD5 68bf697069bc05c3995d03dcdd740200
BLAKE2b-256 c82e751bdc51c0c253e88c52a88288b72da85e19bfde701d98a3e0370520910e

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ebcda49237918e6e18bd170bca95691334bd16ef0d43064e67c68f54fc77e34e
MD5 61dcef62922433b3015019a38f608d96
BLAKE2b-256 9e43170ac156450b5dfa71f45f23b5fe1fef7f919f16ec2a534fead7ec743567

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 da2b00972aaae5d639b821dabb8c6f3f1e36b41f6970c40e2d340a0b82441d65
MD5 f8f168db7a7b39b8abcd00fdbb77c576
BLAKE2b-256 39850a8b6d145c0fea04d8165bc7188ac64896301ec41bcbbf13c481db1203bf

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dac1feacb05e383877195e0c637bc009c96cd3bfe79462237ca5b3f80077d9e0
MD5 e70570d24896aaafa2c684abc6ab6485
BLAKE2b-256 8ba34688f4711671c04ca601493a9812f02d8be911780bb6fafd1879d975b198

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cyscale-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 2f85872a1f49ec5688be0b2884b3e3ea6956f269d5b06c80c1749557219fced1
MD5 733a335ef56a18f8c56ddaa58843315d
BLAKE2b-256 b76defcb112fbc292262f553b944881efbd22b90906dbaea97ce11f69d526ad1

See more details on using hashes here.

Provenance

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