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

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

cyscale-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cyscale-0.1.6-cp314-cp314-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cyscale-0.1.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

cyscale-0.1.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

cyscale-0.1.6-cp314-cp314-macosx_10_15_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

cyscale-0.1.6-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.6-cp313-cp313-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cyscale-0.1.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.3 MB view details)

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

cyscale-0.1.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

cyscale-0.1.6-cp313-cp313-macosx_10_13_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cyscale-0.1.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.4 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

cyscale-0.1.6-cp312-cp312-macosx_10_13_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

cyscale-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cyscale-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cyscale-0.1.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.4 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

cyscale-0.1.6-cp311-cp311-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

cyscale-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cyscale-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cyscale-0.1.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.1 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.1.6-cp310-cp310-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: cyscale-0.1.6.tar.gz
  • Upload date:
  • Size: 1.1 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.6.tar.gz
Algorithm Hash digest
SHA256 11b8ddbdd53bdfdeb65d5b63c5bdd7c565465f6ce6e6376c6377edf4a4ae5301
MD5 d9889e4e188434f78f6daca85d33feef
BLAKE2b-256 c6b9b1e178b1c46b78b039645d01db416295b56b4e1eed71da2d7cee5d073c07

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 3f76a926873b0252f46f01ba423780bb6a640c6f17a115b178027261addf1a94
MD5 88cf3203d0234cbeff3417c68c875c03
BLAKE2b-256 127866648cd0deb05e3c8bafbec0cd1a7d5703a7d73f5938326398fc0f799646

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 aa00f813e0e86dc4805037b970d38123593597a9375fc295a0205c56f6597c01
MD5 71bfbaaa99372b4ffb1b619cf6d6ce84
BLAKE2b-256 5de64f8f3e7baf5a3b458a61006cdc50fb2c831be8078f9a0527bbb23acdf7a4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d02fac76f39d83179e555c70301b673fb082793778690faf888318e93aed5ef9
MD5 ef3097de54ad6b17d798179e17ce2a45
BLAKE2b-256 5e17ca387f889215643de05ec73073076213f255471f87a4e56d9abf5934c39e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 72d8a7b5fece0f68d08551afd5713c0c44d97801bbe757007cf5672bf366d615
MD5 cfc75fa7e4470d16051fc529a037ea9c
BLAKE2b-256 225943274b93943b71ac076428b96c1c336c4e0717cf22f6392e97d744852c02

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30cdaecff7b5e7e4c24573f1ac75910b425f10d862f1c4fb58a5a0b30d2ab35b
MD5 0b48c5d2b96e288f367bc0189f6b9e90
BLAKE2b-256 f3a00d70b456de595c13f6c79394a027948ae6a8dcbe5472dc6331637e25241b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.6-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.6-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.6-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 12dd1e41847c02deb09574ad6c209875d32fd3ca17a2b1e33d05c4535c482194
MD5 82e7a9ff617915b72ffbbc2deed5dc83
BLAKE2b-256 7dc6c1f74feb1f12efba7558d2bf5f19d7fc3203fe32abbe13e91e95d4de53a2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fc7088e94c46fe10edb2195958399e4cda0e78e6f98c3f14803a9e5a5e5c0979
MD5 8138955d8deba6599115c65e9ed3242b
BLAKE2b-256 595b93745fbbbbdf03dc676c6f1ff42d3c0eb764ce410ee016aa66e531242f66

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e444dbd791e5811c8f87ebd2f1e4e74e90446020bed90964f566107546122021
MD5 65b6b29b6e091673c069093223748438
BLAKE2b-256 a5d737e170bddc8c1e2e67dee9127a523a981d7056ffe05c9d081e87c4f5f8c1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 33b51d752946e10fb5d5c2ff9590091b99ead6a919a1791126b4b50b368469ae
MD5 59866cf3f53219666dd3500c585e81e6
BLAKE2b-256 b9fcd7fa7df21f1452ec7e80c94b20b9fa2f90a56ee518c0a3c596248bda0899

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 df56584fa4c1fc20b6c3fbbbf0730114234a64584cb81d498e1f9bd32d72ae2f
MD5 f57e256c85ec3439e833215f7c459416
BLAKE2b-256 20d569e8a0fbe0868bfb70d4c1c9d35b64412fd6ec5b43f03d26ec4162d131ba

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 cdefe045e6d52e98a4d5a84066aefec3439470efb18718d086033a2c058f95df
MD5 51c0e5414c7253344c19e1f6753e265c
BLAKE2b-256 4722f387a49e4691f905baba90cb2851d6c95e3b0ef515d30b281021c18088de

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 b48627292accf267fac8b08e2e5c192914945a37437fadf2755f4d4cffaccd45
MD5 0d28421d76b7d87286b86e4c0cd64dfa
BLAKE2b-256 18c0dc159a4e6953f96953d8004e2322b9c20dc41ff6e43587f40ca413d983a1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5295d1abd02ba9d8b954e966419343a88a2eb67f6843b02ba029b2b106f152a5
MD5 2edd501ea2db6a1f50f3697b5551db42
BLAKE2b-256 c13d6008db604a8f32a59e27fcf7c21d712df5f687a8f585a0531efac490d4d1

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a41879e071b12751373e272a37fcb25447afb71a159bc4d4bbde1afee60ef6ec
MD5 c29c99c32cd06d56f7897e97fbf06566
BLAKE2b-256 661742912fa84517a2ad0d57c38b74f41d6721a7b8de36344e40fb580df85a20

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.6-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.6-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.6-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 48b5ddb373cf29f44ac199dd5f0442939237d38ee5643e92db24a566db1fb89a
MD5 fa67266944f7e7725b53cf86479ca94f
BLAKE2b-256 5a4b05c26b57601a9a3c04fbebbdcc426d740a15f5292514ffd83a1487e30d3b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 47b228aec606173924c6fda460f7c52681112ed53bb71c63f20428ceaa0790c7
MD5 440b7519372bb6645064591610cc6d41
BLAKE2b-256 0f502c63e5bb6d257178d06d5a6502e6149ae376e09e9772df4e73f7362fbd90

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bb78f70d12c77e28881fc647783b29464fbe8fba54d1f416695544a24855f8b
MD5 b91ceb9896f0d5b85c61942bebad91b1
BLAKE2b-256 ddc822f6f0fbafdb19125c501666997552479ef750cce14c21ebf5ca192a4456

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 40ea522b8120d8d92bda06e92da0cd70e3c5bad1bcf52804ae82861c5c486cd2
MD5 c5e8b7cf6f5a0f8e2249ec9fa586247e
BLAKE2b-256 295995bfedad13f5f6a7346e65519e0f678df151fe1a73a1054246a25f979d75

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 94ebeebd62a1eb969136dc62542e18d8ba65926b9cfed34b8b18b75bf385eb92
MD5 f3d890cf96e2f98a129b7956fefd56b8
BLAKE2b-256 ad080654e9caaade2d1fa135a2ecd10bf7f4c0c17b010aa77b0cfad6ae2d6f32

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 8dba5287a2ea631bc483e80a6920b4aefe2cf7c56c3d8a32f764f5767c784a30
MD5 c47455c3c86b074647939301c9a55833
BLAKE2b-256 9fc58ec34b6b2a65ed540307efb428e75cac684af3592428e74f62fb066623c9

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e47d5cbc3cb7cb4c6012b85c928f7a0e024958064df4d587d2db758a9186263d
MD5 78abdc18bcf0b76a6290570204ff69eb
BLAKE2b-256 4511f4e39a8197be77ecd2485b0f99695606cb79363fbcdcbbd242b7ea305eda

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f1b4dead9604259c23c2d10b420e30767642b4171d1cb4ffaa5aa7c90ce37cf
MD5 5d01f8528501c9a90ccd5dc91ab69689
BLAKE2b-256 50e7a6d3a3fb7a3c6c0897ca88d241dd327add12632490f6e8c9539475212182

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 78e2f8c9eb1d4ddfc37d3ffbd4500b79e2b8112fb40503465a688a8092994bec
MD5 f9a046c817268385d272c02af56c4922
BLAKE2b-256 5dfe29338b53d19cbf87f2586ff2dfb6244d88cf18b49ce7877e72e0f14fa5d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.6-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.6-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.6-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3f0b18a8a4b7c7042fbe3cf38a07db25804bf41af6695fca788585b202e91a22
MD5 a73be5998d6b67c358145afd96ec90de
BLAKE2b-256 abf6e0195b08cdb6667324b350269226b7de38fc8ec02a4e6631c34679b3a426

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5830e8dc96b044cc21fe9ec03a9ea85cedb42b50d33667e0e194f8df808eef52
MD5 8f1da2960b102fce3429d16b9d7f17d7
BLAKE2b-256 aced0a2a702e74d41c0c31738a21942b09a2c5f5d0d09f9a8eb8c65c330a4f7e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9e22142dd23239f8fff6786050a50356becd68666dbd368029f842a661761720
MD5 82905e1f5149ce6398eade2f485cc6f1
BLAKE2b-256 5bfcafa32dc060c61c3a4846f85906c2c202998ce45d70c7c54d1abb5d9d7aa0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0dfdcbb4e52ed65380a69a64f56f1f50d862e6a6f9133f080ca674a40abf94f8
MD5 abaac651713fd373f6c0b65f05ab5838
BLAKE2b-256 784c1efde6e7d5006d8eeb054d8f59d6d2402a83708c3d7bffa3676622b6d338

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 563b3ce0fd8f407e73956838004e32928f6db19a45b80f1e101f451e1dbb6489
MD5 b4856b6a1b4f37c9a51717a331f76962
BLAKE2b-256 d576b156e08a9476852bbd6500e240baf16af1b4e136ae3067cf63d5d165b2a4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 91409d8e4a0a414bc9cc7ce65f041982e0c782f6e9472482cbe1370326a786e9
MD5 e1929d707d0f16293afba0361fb33650
BLAKE2b-256 641855caa5f27e32fcce6d1a3c1285bd7dca5e07c63b244f1383da5804d34c4d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 1231b9667aecc316d0135f08a2daa93ddf413252f763065021481de7200999a7
MD5 007d60112543f2dd8be4b9560499fb86
BLAKE2b-256 243a679e1238a076cfd9c1b9db3a5529d183fb59ed2103cb5fbea63a91c45419

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f5e51a5b3a113d2109beafbcdea9e61064ce9f2d0dff66f1155c64d359fdd214
MD5 e502bc98c631bca852955d86ce6dba06
BLAKE2b-256 016ecd9a4b4c4dfd829f54939c7a3a105851f48ae5a87ff08325d8c5af31e632

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f1b691b8917b96afd338ed85252630e4c388e9ebe262430775a0f025c7c5f503
MD5 97a8240160637adb3c95f19546ed793d
BLAKE2b-256 22d49d9c0911b19ea572920237fe258cfc7c4b19731b7092ff63ca0ebe3fb8ae

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.6-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.6-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.6-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 70fe6439afedfcf78624ca3311a1e75628891bd04a1f636f438b2b21689fb16a
MD5 2b20dfa6f74fcabe5894497e840a717b
BLAKE2b-256 966a1ba150d172442ad8f58b8eb9cd5f182c5a747876cb701135e8bd2fa097d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dbb5549446416d8bacf5f31b6ef8b030fdd47ea1d1fa7d9b5052a4310c3ac729
MD5 48616c00a43d496247622a94bcedf6fd
BLAKE2b-256 e7e201c1cc0cc0e8f99997156be175475cdab9ea2144ecd205b4538d59ed3bc5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96a787900f54844971dad22ea124c3fa2c7dd9491b29a9abaa789a1fa57937e8
MD5 3e8c59dfd44a3e013bb82ea72109a754
BLAKE2b-256 35181abf10601b8cd0f7207e9efce8d798c79dc4b42a91f0cc5e7c5e36a5bb61

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8084825d4e5b152b17c115865411f6a51fe90d58d723e0062c37de2042c0d864
MD5 b0b207b1a30702893486677c1abd254a
BLAKE2b-256 5639adcf52068488ce5f96d6b02df5d40c7f71b633cefc147fd27339a68e1edb

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 11ad288c41ae53c6e71be334139306e09a34d89e690085eaa7398fcc8d40b734
MD5 812f710676a6dd963bb7c490a306e8d2
BLAKE2b-256 2c2faac0da2b73d98c855aaa7acba5bc1728f8c3e3104a92f367b7547195949a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7ce101c8ede64bb48091f8a59e7d2cdaffec7de63e7763d2da794d4f82d12859
MD5 6d29caa606814e8cf5e26fad0f432c10
BLAKE2b-256 536fc492753e9017a8a748fd616471170ad10741c6403493a77786f0211b5534

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.1.6-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.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 93611a4bd9e2e042238c60fe267e07e62a0eaf92833518986c5b5bcb8b659a0e
MD5 38d65657eaa96819bf658ba01417b1a3
BLAKE2b-256 a8f28c3c763294535aaa8fdc8450b91d5a7b69f7460067a33d72b60b31cd2c6d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4537f25e845db59178b3b8eace64b082ccd604c0ff03e898e3ae96c7c590513
MD5 ebca42ef7ace84b67ba80ae0be94ab3d
BLAKE2b-256 66d846727b671e9a5fb459096711e7611ac85bddf72e07ce7939a55aec0ba53a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a9a1315ccea7209b1cbdb94144c15269f0f0454b600be830f783b7fb5c2ed39e
MD5 0f27fb73f8fc85c936022b8a611a7a44
BLAKE2b-256 555c3cd2eed5ae6592dd1c5d463737338ff4b1d82b46072f0218e7f7eeb6ce06

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.1.6-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.6-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.6-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b606c4ce6158cb585e4a29fdd147335839ae8019c19644133ff21afa195b5aa
MD5 92976afe920f4c3d83e088a65987965a
BLAKE2b-256 8a47c251592a96d359bfe3e0f570c82085ee70d0199d9dee7875f1b29e7ece0d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 77c83dff1030fb6a06f6fab94dfa79b8835d8bcd58723082babb56daff1dcba2
MD5 6b9c1821fabdcdf670eabba420ded6a5
BLAKE2b-256 0deaf6f7fe561c0446e60bee1f3f8daa36dad8f4b2b9d6337b04b84029b70029

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f324865f51f20ea0f6d45bbe6f1407f7cc4c226c356a8cff99636f35c154f264
MD5 6eff794a5d796870a8a7e44ec99a86ac
BLAKE2b-256 4fe53db04297c85eee2913e8f093120cb5e888f2f0ff2eb42cf77e660bacf20a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.1.6-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5c6abea0fecb4ae57ed0df8b875302ddcd2b6c6a1c48b5eeab024048a80b8e8a
MD5 aebdf4b194fbe593afe3b8c60c141a61
BLAKE2b-256 818cb63aa6467bff1c7eee593bafb2e0d21c73384de60d3b94da3aee1a95d221

See more details on using hashes here.

Provenance

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