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.3.0.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

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

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

Uploaded CPython 3.14Windows ARM64

cyscale-0.3.0-cp314-cp314-win_amd64.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

cyscale-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cyscale-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cyscale-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.4 MB view details)

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

cyscale-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

cyscale-0.3.0-cp313-cp313-win32.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cyscale-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cyscale-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.5 MB view details)

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

cyscale-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

cyscale-0.3.0-cp312-cp312-win32.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

cyscale-0.3.0-cp311-cp311-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cyscale-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl (6.4 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cyscale-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.6 MB view details)

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

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

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

cyscale-0.3.0-cp310-cp310-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

cyscale-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cyscale-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cyscale-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.3 MB view details)

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

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

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.3.0.tar.gz
Algorithm Hash digest
SHA256 56ecf2479ca24eaa301b905f12e1dea270250d910d4f471ce3e8ca8511a19c2f
MD5 c4a0e6601f0dc385fa4dfe06d6648a1f
BLAKE2b-256 fe874797084118c94008562966629b4c68b53e7e7f90f23afab0c488082697cb

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.3.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 d9f341610a35548a59152d7c7fe7090c2593501fd300d2cf21f2240834a6fc19
MD5 5df021c61131d85e11cbde614b3d5fc3
BLAKE2b-256 3660ce456b33894107802aab53af566a744d1b03b61d5043af6af443c3296163

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

  • Download URL: cyscale-0.3.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 1.8 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.3.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 0f561a8881dc4bd99009f9ca05db3c337870fc03e8221732ad5130d5a20c5644
MD5 0ff8f21586054af068429b71ef09769d
BLAKE2b-256 bda1aa9708bf5c85fb0ed026983a4120b6def3ec2172b067fd2e93743685d181

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.3.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 f02b669a6203133bed6af4c20a77a59d3fbe50c203ce9392599082f769767573
MD5 c2ee6435209575d3216bb458a89dc7d8
BLAKE2b-256 5786588e0cf2ea1bfe01a2fd1c8b4ebe82c60d2abf61d0705eca6d315498ec33

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2652ac21ab427bf0a6b7ad5fd0994a5181b3044f2915df34b336ebd4990872b0
MD5 d8e6e24c4990f76680544e5ba57286fe
BLAKE2b-256 0d04c25b9e386fa35050928dafb7cf978e45a6432bc0a93f987c8b2edb9ab4e9

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e3519db136389dd5a11c864ffe171fbf7c1af63d05b90925bdd5048d16f44bef
MD5 fb48edba5ba70752cc3a6f5c085a5fb0
BLAKE2b-256 d23b5203cb46e8ba2f2f83daae6ffee9950502c14728e1f1baa26a00e9dad8b6

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ef8770639542e74d9314e3e530a4f5c1b591cf7b07dd2ca76c547c09c1214eb3
MD5 4e3558dfc03f390c37cba8d262c48453
BLAKE2b-256 de5fd8e3cd8fd83a87637055b0536eb24b0ccb53b1e3c7637738475b66dfeb35

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6c8a2ed4583824b3315d541bd23b357031dcea0e64dcf537d2d0cbe3c72dc27b
MD5 529c00be02d85b766b07bd0e77b91dec
BLAKE2b-256 f45156e025ab852e2501578245b3eda01686137b013d6dde5eaeb1a1432ec408

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b90a1ca925da2ee84ca73f771375d160dc087d83f192e42d4e091445732d0122
MD5 957747fbe56bc43ad9bcbf0f5514a2c1
BLAKE2b-256 e5d83e298dec66824979aa5baed63abdd7f1cc55b50af1a82bf0c26ed87e425a

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 15320725ab8e7a872ff836661716fd63eca8e8782239341b4ce79541cb0316b4
MD5 0d68b6c0a98a7e9be8624eb5701fabb0
BLAKE2b-256 04d354caf42d85b4568e825f6d9059e2faf63cc369fb7d3676be17606e3540b2

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.3.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 958f9ecdd3d7a5e4dae368939fe24cc9e747b625b201e453725211b89c3c9e58
MD5 2910123c60a1d7efbdd1c0a6808fbaf3
BLAKE2b-256 7df249772859616563314a0a59128af73247ff1b1bdb33dfa7808783e86fc31b

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.3.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 46c2e83751f04c3ff08a015905122807c566225e81463d59cb4e4f8400dcc022
MD5 878607404ac04621d4cd0e8759f5b236
BLAKE2b-256 d430e824868da601f77ba2935b8fb8732b5c7f7a3e857febb65e13d406bf1618

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

  • Download URL: cyscale-0.3.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.7 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.3.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 81148530dd6bc27ed83939df9ea747e6837d7826785091ee8f147c2005020e02
MD5 5aa5ba272b27225b1346e5d32b66d70d
BLAKE2b-256 5a39e0dfaf39695258fb1850cc27de1afb247e0a67f404c681e17698bf233966

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 67ff8e23354bdbf0b6361476259140cb085968cf04280104ef8fcf8f30bb60a5
MD5 71cec32bb50c40d7327c2021f51345f5
BLAKE2b-256 b79c75c72bfc01dab7fc4b1f634142c68047a7fdd748c960649d9e40616bd21c

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1656a1352668cde2ec976c7e5829b6a5e14f1a1fd1481be2d265509180523a9e
MD5 1a05812ab01da1ba9434f4d5eb3fee2f
BLAKE2b-256 fef0aa93a02c9c621e2a61758a95878144cb1ab81b72078f97194a09cd3027ce

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ffcd9ddfe4d7c78c0a6499f8b6d5838f173868fb4c300ca66fdaf8622d2066ab
MD5 a9a6fdf293c647b7d15c478019273dd6
BLAKE2b-256 222760536b3f5b851561f63a695e9d3ffb91a04ecd4257c68563f74975ed4821

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b74dca1cbc0942168cea51bca615a5a6824cb1a4f4d452be85c699bed62cee61
MD5 039c871b1ab59b3932cfd587b82aa253
BLAKE2b-256 9e182f0cfd5f95e81ec753e8fc6aabb3ebf960a38d81c24e7b620a12065f1254

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 94ccf671f28d59378d572b3c83068c1dc546dc870fc7efc5722a16870ee9bf99
MD5 78c6aa48998918fd091b3378ab6974a6
BLAKE2b-256 9a4c3e4c88a8dea630be86088d4106c18fa9204c2c2b4540e82d893e4ef3d216

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1d5d0ec243d535fa34217322b12d8940920c54a89e7c2ceacecc9bad0405ba3a
MD5 70684d47af11e51ee38f6649286ca252
BLAKE2b-256 6ef45bb39b33e281c5d03f47703e423acbe1e49bb83709e090da0bba3e2c14a5

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.3.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 b4a17c670e3964d482fab71da846c855d255da604f0ff9e2bd531d7bb15acaa2
MD5 d2083f85776e9cf2fbad753875702c5d
BLAKE2b-256 9f8bf96ae68ffd42cf6bde1172eb964d592041840fe3eb46d854bb378889aaf5

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.3.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 14a5d0d13740d399b2818ea702736aa98caeed32bb4211a74dad460bd05358c7
MD5 82952356fcc819b2132687cf32678e72
BLAKE2b-256 44eee88246a2e19900ca53ea8355c3749eb49183e354883246d2f15c95ea8842

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

  • Download URL: cyscale-0.3.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.7 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.3.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 9d40d3961ad2c924a24e34bb1582be14816d37eed4f248ad8dbf0093cbce4502
MD5 96fdaeb59bfabd5d0a7e03378fbf2e45
BLAKE2b-256 9b53f84cc8103a4b3c306c9713dcf3fc6d7ac0406ae3571273e24d80a4e45463

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f71ddb42c489eec6b690e844fe4e84493b930f0d06359a59cf103de07492354
MD5 5af2f964c4ca12a01ee3c64dd0ee616e
BLAKE2b-256 9ba24cde8d9dc26e25f54656aaed2ff7af321d2696f553d3e5aa73324203495d

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 02b7dbc4c5f0154b2209cfc79e00efe5167fecb15833fc9c69f26253bd9899c5
MD5 c58ab82562a24b00f65b02ac5d74cbbe
BLAKE2b-256 9cc1fd59bb832d45523b24e954211f1afab44ed8ef77c93b4d11f4557cf9fdb8

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 570166fd4dc843d71ed086a6c29c3b023b7be1042e4882c872e97d62e73ed0dc
MD5 014306308677d528f8f8430a5c4b1782
BLAKE2b-256 3a71ad0621f1d04d5be225ec9af15108dde99166e18217adac703df1e1dfb4e6

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8cf1c298811e371a82f2b53e780bd1a2c06ce6ae1b29fe7bcc582add27d2e846
MD5 06d4d88980ba46db94dd08d3c99a5709
BLAKE2b-256 3a53f5f772b8dc3619655b45e0ad758a92094e28df7411cabcab18973bce7f31

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43f72ecbec3bd5981b511eab2366d63a2b8efbbf44a1866e4e27e9f6135514a7
MD5 baf0e085b67714ee14ce21ea34f894ea
BLAKE2b-256 a4216916dffbe6ff46b2d1e013df3d4784ed0bb9df5258c8cd00387611c37723

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 36556240d32d1bdb6d4c223f5dc0ea99f18c6e5f8b84bf40c528be1a5bd23828
MD5 2b9570332beb7af569e96e789fcec6e1
BLAKE2b-256 ed7af81c23114d851fba1958bd01666e692fbef3263bd1df604c67fc01cbcd53

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

  • Download URL: cyscale-0.3.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.7 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.3.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 6917dde72905293e8fe9961c0d85db807a85b0d7af6a93962f026bad3384fcb5
MD5 1f1b8fc84333b3ad39d979aa7034af32
BLAKE2b-256 c4ea42f7c98043d73404ffa161c531e16b798f0d7848b820085079f6e1382b6b

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.3.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 f1eeaeea8a14c90b46b0709a3043ab98f978f8a10787fe5e7cf3d8277f5f9815
MD5 890bd3d079a3bc71e13f79dee3e945af
BLAKE2b-256 6029c6272385ce886a915a6812a1da10da4d6e9c01d47f2328fe37be877c1d06

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.3.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 47873904d3860b88526475ba323eb7246381580840de504d7e977a1b5430ad37
MD5 865b1e113424f46c18ffb7113b9dbab9
BLAKE2b-256 8bd6c4679cf8624758adff0eb05497524031275cb04eb467fba03bbcc8c1c720

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 757aae0a9640c96137f29cc03c9dec8326e3658b81d8594a9b2738ae11b08bd0
MD5 f226a40c0deedae0fa191ce7ac81e5d6
BLAKE2b-256 111f7eee5135f740df4e0e85453fa92e50fc6ae67710f3713406defcbe6b6d04

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 075f287b65fa5eac7a6f614f84468fafd21bc73291883f334815b18d95850d9a
MD5 a186b3c315908637ebe2b20ab098b9c3
BLAKE2b-256 64b34a26523c19de974be9525f4f3254e2daf09ce9ad7648b01a120debc63342

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b6d80542e8484527293ab0f21878218d13376130f358abc39d73a08f33729228
MD5 9da29419937114f790514df0f2bb8e84
BLAKE2b-256 0b8fc38a6e179efa4f44b0d315d851f7dfb8b62b84f41f0344d3cba368795a68

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ade53132956c4ca119325f4665c0f0d5cf678c8fdb12a4ee6c1195a33f6dcc52
MD5 de0381a80ccfbd00a1b663104ab7d6b9
BLAKE2b-256 ee64c13817c2444ec78e55206fcd0a6a78a15893afe9d51f9c61608543cf1ad1

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3ddc71f53f249c6827037376a3efc09ad13c0513eeedf903bbf8b30937c5bd7c
MD5 b0154a38d8e5a48d54f79bfc7cec941e
BLAKE2b-256 60c5e5426d4964ea8f4bb49418f2e9a302796e644f763338e80984a41e9ade91

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9429ccb2e7e97e1b1295e6210639b9beef052b254dccdcdecd368a592cda0a0c
MD5 2dd9371bd035625800ba66023d6e05c0
BLAKE2b-256 236d1cf06b812e7dee4338b7ac75e81d3a253aa6a56cf9e85863ed829c850e5e

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

  • Download URL: cyscale-0.3.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.7 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.3.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 b3426acfa7c95680f9dd8034521fdcf683917d2552ebae8ac70153d2f7f45e63
MD5 e39110c679baffa1629c70a203d21b04
BLAKE2b-256 95c315249ff706780c9b637918e81cbedbc26dde888a1f2b0de5f34acef3cf3a

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.3.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c4d3ed58fb36afb913d7430dccc61eb5f7bba97331ef4c9a6ec76291f3d0574f
MD5 8aef887a4fa61ad308b1049dbb466a07
BLAKE2b-256 7766d3a06821684f31cb5aafc05d400b29792e2c2ca3e12b9ad806ec8a5c1ee1

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.3.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 4e9448a2c1e609e5ff1782701fcf2030f0f4b5a6ce2d29809467aa3de50e41da
MD5 371e41f3c7055f4e15b92b1ab6e95ad2
BLAKE2b-256 d536eeebf976968f9989993d638ab8f5fcdada74a0bd71fa29db2bc804baf1e4

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dfa842f574b8cf51baacc9ae5e06ad152eaa9238f79937401c235807797b51b0
MD5 37e80e282af922ee02236a93ecaa4da3
BLAKE2b-256 ba7d67ddf25d07a2b8d0feec93c3fc72ad8b88d8cee1277937bd2219838a9e15

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a1756282afb88c29668b43713b41da15b4f8c9cd97aa0c4f0c0444978504cd18
MD5 98bb0bf17561026e864478b15ba253bc
BLAKE2b-256 fa9a52817a0ef9a24b6a7859905c15cc52052e7ea8c72a385285ba4408016eab

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 40dfb6ee29f6a00b701e07df3bf3c421d7f059fd15a17e90cbb53b5c35f09304
MD5 d84621435c4126b6d4d8b489096c0516
BLAKE2b-256 ef6c2dcdab68b81c68da21d65f3bebbff0f7dabd3d5eaf1380f3c1f1a33891f6

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b520b7cb1816a5f9b834f6ac3fdc50852dd81e155b88c95d9131d1edaa6cf294
MD5 bb1768b04f2d7021917e62d737d2cd4d
BLAKE2b-256 7db21dcfac971012a3856d731a3d39e32f8d41dc46f75accbe8140dfcd082c8f

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5440d159deb213a2be09750980267f5697b099eb1ee19daafffa1b426136b659
MD5 ee58a09f42de29a8e2df4f357b7f531a
BLAKE2b-256 758c9e9a5d0a7b03a95b87bd8c813e3afffced2303ae12f767a25c97cb252ef0

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 28a862ac4b7792c7064117d686773247dd9033a2729b40d00bfe50b4bcdd0f77
MD5 e64d33513148ebf3a6c2741ce07a74d6
BLAKE2b-256 df0a00cf7825049eebbe6805c66ffa4a31b48aa49269ee64b3a7b50fc0dc52a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.0-cp310-cp310-macosx_10_9_x86_64.whl:

Publisher: deploypypi.yml on thewhaleking/cyscale

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

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page