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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

cyscale-0.1.7-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

cyscale-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

cyscale-0.1.7-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.7-cp312-cp312-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cyscale-0.1.7-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.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.3 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

cyscale-0.1.7-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.7-cp311-cp311-musllinux_1_2_aarch64.whl (6.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cyscale-0.1.7-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.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cyscale-0.1.7-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.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.1 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

File metadata

  • Download URL: cyscale-0.1.7.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.7.tar.gz
Algorithm Hash digest
SHA256 8f6cd580b597eb0934865de3aeea0a3e8f30dea33783225c6fb7b0e868193002
MD5 a99c09898a17a8e7ec8bac83e902d89e
BLAKE2b-256 1c93b3361387284b83fb3ad969f24a35122e587c5f1affc9a92d0f6976eff944

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 12c4f729a59ce18f9269bb1664d455c797d3c3f11076985edae7d9190187102c
MD5 5d3e9b954208282e37bcd39744a9c248
BLAKE2b-256 1944d08f86a3472b192fe59f5ec01cb823dcd2b74f515b4e13182360dd88d3c7

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f92a6bd29e24c18eb8abd891897bf3391dab189c586c313eb395735ba96f4544
MD5 53803681e2813e681b974653d61ccbaa
BLAKE2b-256 39be03e1fe256b95efdd99787a4b1458b2dbbb55ed1a2a77d6ca8bd40a28540d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c698b75d27b7aab33f1eba879138a3b714d87d7f1d8ce767e7c8d9cf1d551060
MD5 b03b5ea97445926b7b77b4ad34215324
BLAKE2b-256 d6e3aa89ae44b4c8523cb11f5087e740da506dc128c03428e95b1726f60400f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce87b2b32aa89a586340c43c978134b5233707cb5f00bcd18ec907ab75359d12
MD5 1162b861bbcc6b0232e47d5ab9cf1bb5
BLAKE2b-256 f0b227fec5e2c1f89d5daf42c00c60dc21cef6f2c2dc0db9380deec3f57d5a0a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 414e307b18b2422b6239cc9c7f405d690e05224ed345feac09710f0a30beda43
MD5 37ba69c3f7fa4268c4771daf32af45b7
BLAKE2b-256 d6ffc3a771e0f1ae6caef438e6bf45cc5e175932683e5f388a40b84c6be5008f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.7-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.7-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.7-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a0fd49b5da0982c421d6892e113b9e5573438d88e6db8a585a6a68ca54b6941
MD5 b6617cdf9e9bc7111d414a646eab5a89
BLAKE2b-256 9a6f5aca4fa2fece6877d0ea3e5f75b8bf75aefd484c1990790c859ec507e846

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 adead88dd0efec799b3f8a0025a8c364b352d4f27c849072798893f7859eaa50
MD5 4c4c9f1556fe341e769d4c1c46276649
BLAKE2b-256 dfc3121314f88462a3ad9bff639b6a4b995eafa059edddce58087e2ea191d9f5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 394e58506b6b5ad2cef1a1b5c604470b272aa6ce517c1500b9b6d5dea3f59345
MD5 fbeda3b0c58d9c6161217a363b101023
BLAKE2b-256 f95ef1f686f0478c18f1237056d1701ebaf75e729d8d5db3dd523b122b3fc6fd

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 c5d1b0e01dc7a64a5f49d0b1b891b2bcdaf3a1351cfc80b3e0e3abfb40918db0
MD5 621908580f996749ab89a6b72dff89cd
BLAKE2b-256 9c0acdc863c7a5232ccf8bc5ee03d7dd3cf0698beaea306258c752dae86fa67a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 9081e134b7167bf4dd0c6383c2591d3a6d2657b4b28f6cebb22d3e4ff4e20d29
MD5 022e571e887d6471193166a34f06a002
BLAKE2b-256 978535eed43d88d3a11030751bd9fedef5f593c9c7a898cac322b5cd0698e60f

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 1.7 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.7-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 66f134fc7c4f96b139370aad44bd486472209878e37ea186ba8ea67dab0c19c4
MD5 695c3514e6824b1226700090e059cc79
BLAKE2b-256 7d84f13ee72e89a262c1cd65b65c21265e4f807b06e482d8fee67ca70376d5e1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 74646729f9f9301b80dba6f8c540365b024d2ec7cfc36d883fd8ad613a01920e
MD5 1416a78b651a94a3f885ebded3f777de
BLAKE2b-256 7a6f64fec60a2f9177140f1d5c43276e151cdd67c137be23cd964aa10f0a2b7d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3d7cb312869884f4bdd667bcd733b57dcd90ec72f4c7c7ed6d7b7aa8ad02d915
MD5 996555f8087332eddde3f94afa986ce0
BLAKE2b-256 d3f1c30a1a55d302aed0beba6cb8b117ce55e5df8b935143cb7e9ad2e84b02e1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 53abdb7ef0da9f0ed81fbe9c2fa3ffb81da1a3cd5ac01da0685614148a1fb62d
MD5 0c2eac3b436c926f68d8daab1c3b9639
BLAKE2b-256 8818709f65b60326a5d2e34cf27bf79cf2020f46f8633bfcaa9d19efcc8dd48f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.7-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.7-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.7-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43ce9bec392c07210da340497c977e5a1dd49e21129bd3768cf07d5dfd3dffde
MD5 96b16e46c56d259e8bbd3f549c59803e
BLAKE2b-256 0c1476af6c84f2ead64afb6b0259bba3640095f70180256b904d2a556c1ef522

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8777d9fa79ecc1dc36ffa81edc3b94dae13a85a3302e971a12d5427315c26637
MD5 fcd0d6415c6ea541ea6e50df92fe1432
BLAKE2b-256 3491aa2977cbb220d91fd403c47d54b76ac60458ab79c35d2ff6dbc60651fba6

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0d0c9e458e349172c2d2581b8767cd56b9c9b8cdfd6d56b5da1ead1a9635b5ac
MD5 4c67b0edc610d2f9a0856678ac1dbbed
BLAKE2b-256 a26c7496e3046adbe5e513df12664ce8a910ecf431fde484bb27022990e19b73

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 57e445e241bad0048cafae6e22e0b166a380d7a36afa0f85d7a4f637225845ac
MD5 2fc83b216a221590eb7ad0734c40df46
BLAKE2b-256 7efaf4f86b8f47e831550c333981365bfa4d8959b325fe9fbeff1b864e4e450a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 2f63d6357503777519a1fa56784d0eac5698bab5e71501ac096c06896402cf18
MD5 3cc416f684ed98a6e8b26b1adab5d74d
BLAKE2b-256 803e9371044cd09355346b0e09666359378e01af8fbe644c5f59fe2c7e0a5282

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 1d0805c62a6921b72d10bb7970ecc57e5a32db034d44498933d0ca65dde8bce7
MD5 4a0bdb486441f3f6f57c3a0117b2fb67
BLAKE2b-256 db7c7664fced9303b0fa61045ee64db975451056d95aee022ca56dc912f9b5bb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 8f6fab8bc26eb9c6dd5a257eaa17cb171aff3747048dc2f854410011dfc77fc7
MD5 3e152df15a043049f7958e713c668d31
BLAKE2b-256 63705f8745779e3cc8c231cc3ca7cd6bbed9b47b1434339513d58e1d616cf716

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4e65da871c5c0b6081d275d2d0872b4588bacc6eaec82722893b09ba0e2dc441
MD5 62aad9d9874ef182c468021f8d21a3b5
BLAKE2b-256 62f33ca19d0a8c2a11308c64a5c29bac02ffca6700ab3830458557ca18f0da08

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8574b732321ac91b073306999bb0dff61d80e56af04f8f692229633a6bb7b24a
MD5 5689fe65bcf3d06f31d05119c1aabd86
BLAKE2b-256 f2ee0b9374097ba08630feda18ca3d51e8e5d3dcbf500368c660e57adec9933a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.7-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.7-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.7-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 613bccae82fdba2b2b891f360536b994d67314ec51d208d0174bc822a72a9428
MD5 e5699ec358c9b2e944d2ef0cdfdcca53
BLAKE2b-256 b6ba39ee18d13a635eba85e3fca46d92053d9be2e12d436471633bc8afa04412

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d0dd99a976d87448dfd2c00e7ead73a69f2ea396f5cdd703ab03659c984b7bfe
MD5 9ba762a27353c7fc4daaa6b701e8b830
BLAKE2b-256 ff650aec1cc090cacfeefe85b1d48d3fd7a1ae69642bbfb77373d19f9474a7f7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0385ff5ac24ec33290ac2e0ffc834ee98d8cd40f93d4b7c2ca659b3a73f790da
MD5 6cefb35aa7b485987595f85f1fe5099b
BLAKE2b-256 4cec503518550f8bf2e871a8f5fd127ec67937b4d3a06e6bd5a198ebc4673895

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 37ef05cb9629f87cb93abb024c06a8340345c472f13cb3a52e712d5d620ed009
MD5 b99ce1e12a2610693ed41328baf16440
BLAKE2b-256 09d6a1a8e750190c4e4efbc0b0cd0b49acc007f0d9ea6f7c38a201e34aa45738

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e744e45b846c4220587aecb6b130a6863ed5b06a4575bb7558a866a93a752f5f
MD5 6e790b2cae1dade2939f8e5935ee3dd9
BLAKE2b-256 14c91508febae4ab11d4ed2defe4dfe7751d417e545e687205bbe8890dabf9c2

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1a507eae77a7369ab6de8d36fd337bfca3b95dfafb95ad7d398ee536083ae111
MD5 4f9e4dc436d64309b494cc7d19e60390
BLAKE2b-256 064016ceaa7e0fc21219a287fefad9d0f8713fee34767e3ae6b99536ba7dfca8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 f16fb5ae1d036539bdd09fcf4e0113fe87850c3970435358a9f0a7b06293698f
MD5 deb09f9874bc113720d5c07d75b7d78a
BLAKE2b-256 47ff750879368bea00b72721fbd7c894cc3bb90ba31750d097e627a782fce900

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0dcfaa07f8f53980339f7d4b72e71b9575659e860380957d1205ea7618913b1a
MD5 ba34f2cf8f4098677f1555ea6849cd58
BLAKE2b-256 5daab52218f0625e61eb66c7ba9aecc1a97be82f852a94b5cca1a8111d5b009c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d9b98dc0de55602eb98931dc5751a8b588c2b962ec1fa638c5017c6276e7bb7c
MD5 e6ad9d39abd94bbed62afc1a6cf810f0
BLAKE2b-256 ebbf279f1441a21e3c900c9e88e491b366578380c7b7af13f6ff91c758e54b90

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.7-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.7-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.7-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 4e6a7d52000afe2fe684a18fc2d72f2271acae0f51fb5bb45c98be65494306e9
MD5 33805285fd61230bb17bc08e7ade339c
BLAKE2b-256 500fe96ca6dcbc6be6471219fee24515931a28eb7b1e3133658654e700ccc2f0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 7eb46bbed43726f1ee9b2800aad96157e848c858ebd50981f2440ce8b77e8bb7
MD5 eba5232a3a73d3dbc3d8f62ab3d9a085
BLAKE2b-256 e8fb474d4e85b4f534bd5221add7dc8adeeb805bcf9195f3ce882081e014fb1a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 db260c1ab1ea99ccccdd452cee713c48f1cc252fc13211099f38f03e3b2650f8
MD5 72ef2ca4e7914b3f453cacbd6024427f
BLAKE2b-256 713c56071f57c8be4ca354819a22dd5b2d1e3af49dd5afadd3e23f47b09e0955

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 fa125fb4b474936387e550d0e547900a9686a3c258d357c418fee1e5b6202f5c
MD5 f5e53486f7ce5c7defdea72d67d1d78a
BLAKE2b-256 10beb49c3c4245aaceb3ff98be09ab6f69a1e79b7dfabb4e4c139058fce6500a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 a5bdd805eb49eec3ad26a043ff0cd002f7d6b35400debfd21d62b1d51948c766
MD5 65c425cc54264ff31e98d93f3cf75eb6
BLAKE2b-256 673101e8c8dfaf8037b5ce2923446d5dfee187de7e2fcdf18392e0d565739bb5

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 5754ac540372c0307c6ebef2cbe8ce260702949768f2e7b5f029ccd940ab4c87
MD5 959d1b0e3264bcd9adf3a5f848adbcb7
BLAKE2b-256 89fbce217804c2462e7c567c6627feb989fa5aa4d5d3f80df66474661d2fb1e6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.7-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.7-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5a4d1c696b1c6b3f07e194e9431f91a2019534d7db88367ce6e0004fd7c67398
MD5 282619311b20ebad3cc07606c293f3d1
BLAKE2b-256 4eb21665defe37bd81abb483d6fe9fdbdc4778427836e59759ddbf458803916a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e0428d1dc46329e41d921ae084cff052dfa24d570fa07132904b4db379bf9342
MD5 cbe67748f5e83e6f03554ecc52e039aa
BLAKE2b-256 9c970572cfe9674dec541249cbba90eca0f301407ce05e7f0cf4cd5275bbfabf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3b862495387487513def68da5b5830c7bb9de8049364cb6ed3d47e0d8940d49b
MD5 1da2aa6c06debf5ce55df5db93f78ce4
BLAKE2b-256 13fc8f888ecde8ea5d62c3c28b657edea3e1b006cb9069747204b8c43a1e4a64

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.7-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.7-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.7-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d9bce7ae756aa86104e1b911147870dc54543469160c8af0514a50a0e7d2e69c
MD5 203d9f6a7384d9016df3386056642b6a
BLAKE2b-256 1237023f130b79883bc5dafe67c8215e2e41112252267f60d3640689e046f8a9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb44f7fcb79bb6942a5c45e63d392a4de482acc12848965f78c5fa5f83d050c6
MD5 b18b6b29157a3700f57fd03872fdb73c
BLAKE2b-256 763fdc35415bc06d8dccaa704f091f543e3bc7fcb1c5d71bfb4077b58862851b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3674673c541b9ddc1cafd04524875ca495168ccaaea05bafcd3c1ddd09811205
MD5 142a742399ba2d9ab09f88cf8bb31388
BLAKE2b-256 2d3ed66f6c9cdcf5b19c5389ab1c3fa5464510c326505ccae937a5aa23f7cf20

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.7-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b58b78b121aa4418b0756ae87f838f4353224be02cc917f7fec80597e0e0bb64
MD5 5d898eadf3ed838bc0991d9ba3336ef5
BLAKE2b-256 f886274096418d696983cfa9a9e15ad20552b5cc326d755def0c1d2d99363793

See more details on using hashes here.

Provenance

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