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.), with no external runtime dependencies.

A drop-in replacement for py-scale-codec: same scalecodec module name and public API, but 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.69 1.78×
u16 decode 2.99 1.80 1.66×
u32 decode 3.11 1.83 1.70×
u64 decode 3.09 1.79 1.73×
u128 decode 2.91 1.84 1.58×
Compact decode 9.59 6.90 1.39×
bool decode 2.93 1.61 1.82×
H256 decode 2.93 1.66 1.76×
AccountId decode (SS58 format 42) 11.45 4.31 2.66×
Str decode 12.89 8.58 1.50×
(u32, u64, bool) decode 21.96 8.36 2.63×
u32 encode 2.34 1.50 1.57×
u64 encode 2.33 1.55 1.50×
Compact encode 8.85 6.36 1.39×
H256 encode 2.47 1.42 1.74×

Large payloads

Benchmark py (µs) cy (µs) speedup
Vec decode (64 elements) 224.20 20.88 10.74×
Vec decode (1,024 elements) 3217.32 147.21 21.85×
Vec decode (16,384 elements) 50396.95 2150.86 23.43×
Bytes decode (1 KB) 14.67 9.99 1.47×
Bytes decode (64 KB) 64.15 63.30 1.01×
Bytes decode (512 KB) 379.99 429.74 0.88×
Vec decode (5 events, V10) 301.10 131.81 2.28×
MetadataVersioned decode (V10, 85 KB) 64958.83 35936.30 1.81×
MetadataVersioned decode (V13, 219 KB) 143029.99 81044.60 1.76×
MetadataVersioned decode (V14, 300 KB) 390902.34 185823.12 2.10×
Bittensor metadata + portable registry (254 KB) 443089.47 211343.83 2.10×

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 19.36 6.03×
batch_decode AccountId ×100 1159.47 190.19 6.10×
batch_decode AccountId ×1,000 11530.59 1888.99 6.10×
Mixed (AccountId/u32/u128) ×100 599.73 71.42 8.40×

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.5.0.tar.gz (1.3 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.5.0-cp314-cp314-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14Windows ARM64

cyscale-0.5.0-cp314-cp314-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.14Windows x86-64

cyscale-0.5.0-cp314-cp314-win32.whl (1.8 MB view details)

Uploaded CPython 3.14Windows x86

cyscale-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (6.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cyscale-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cyscale-0.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.0 MB view details)

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

cyscale-0.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.0 MB view details)

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

cyscale-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cyscale-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

cyscale-0.5.0-cp313-cp313-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.13Windows ARM64

cyscale-0.5.0-cp313-cp313-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.13Windows x86-64

cyscale-0.5.0-cp313-cp313-win32.whl (1.9 MB view details)

Uploaded CPython 3.13Windows x86

cyscale-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cyscale-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (6.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cyscale-0.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.1 MB view details)

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

cyscale-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.0 MB view details)

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

cyscale-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cyscale-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

cyscale-0.5.0-cp312-cp312-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12Windows ARM64

cyscale-0.5.0-cp312-cp312-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.12Windows x86-64

cyscale-0.5.0-cp312-cp312-win32.whl (1.9 MB view details)

Uploaded CPython 3.12Windows x86

cyscale-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (7.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cyscale-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (6.9 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cyscale-0.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.2 MB view details)

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

cyscale-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.1 MB view details)

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

cyscale-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cyscale-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

cyscale-0.5.0-cp311-cp311-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11Windows ARM64

cyscale-0.5.0-cp311-cp311-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.11Windows x86-64

cyscale-0.5.0-cp311-cp311-win32.whl (1.9 MB view details)

Uploaded CPython 3.11Windows x86

cyscale-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (7.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cyscale-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (7.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cyscale-0.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.2 MB view details)

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

cyscale-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.2 MB view details)

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

cyscale-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cyscale-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

cyscale-0.5.0-cp310-cp310-win_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10Windows ARM64

cyscale-0.5.0-cp310-cp310-win_amd64.whl (2.0 MB view details)

Uploaded CPython 3.10Windows x86-64

cyscale-0.5.0-cp310-cp310-win32.whl (1.9 MB view details)

Uploaded CPython 3.10Windows x86

cyscale-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (6.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cyscale-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (6.7 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cyscale-0.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.9 MB view details)

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

cyscale-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.9 MB view details)

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

cyscale-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.5.0.tar.gz
Algorithm Hash digest
SHA256 57bf8fb401c71d5d8c7dbadd948c1fbb239b014ad58eb2f43722beb39ebc50e9
MD5 a6410acbf8e24f1d2d7412818dc21e79
BLAKE2b-256 8e02b77c019e7d697ede8bd7bcd9472569a45e3ff7df6aaa8eb90abde5ac190f

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 49cfcf55f80cbebad888d33d383664920ba618d47d4b95340ef1821927972a9a
MD5 fed00b1b16346304a0c2bed5708c0106
BLAKE2b-256 febe111437dc143bac2ca940fab15d4cba4bc963d50a1b9513d909605229079d

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.0 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.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 4d19152e3093f9315aa3b705ad99017ff2288b4638b487016ad9fe8b871d89fc
MD5 721531a8d4236e062ddd742a4788543f
BLAKE2b-256 407613353458a65e795160891982119948381768476f18bdef34348071e6a978

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 1.8 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.5.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 c052942407a0209531c22dcb9f257bcb27c3d34a24dac7d55b37fdf4ad8cb9aa
MD5 e276b99066ab6f1d2df01b06309c7775
BLAKE2b-256 76b3a9015e3dbb11a5f998293bd353dfe806ddaa3517c99226b34241c35fdefa

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a7375ec0b1010737352e9b60c43cf2bd639e8cf770a5885c2048e1a16c9a0091
MD5 daaf9f5c4021a40322ae1792d22423d3
BLAKE2b-256 9c399cfc50ee3b241a360c50f85eee27f494a4fc8177fbdb2fa1ab2aea20ccc1

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 54e7a191015bd5e5c38897bef1f2e6d85f9f43bd266ca9bd0991def0dfdc10f2
MD5 9d34844bac0445df19a871d7410ffb7d
BLAKE2b-256 2fd73d5503864d00acd2088cce3aee70ee59d1809fc5617f2305a5f8143001f7

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.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.5.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5572f287b01969c9e6ee463bd2985a7d6557197afbbe982b221ec9a4378bbb2c
MD5 ce8ac543689696181572521605fc0fb4
BLAKE2b-256 9b58a6d7e7877402285f9eb0c324cfda2753762c5c0355bf55dbfe33e458349b

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8b244ac859a3218358586e7b58610a4a7300e4d539b4c4d7d1f75513292aac5e
MD5 62dce252d9fcd984e2f4560cce57bb52
BLAKE2b-256 cd62068a5f977b27d2999726f07160bca7a02c1081f020aa33609aa03e86c6e2

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0447493b01b8357858a09538928c4be807c437cebf23d3e027c5011bbefe61ab
MD5 69ef11a6b5e9da44a66e7266bca22f52
BLAKE2b-256 962ba1be1e18d3f10b56a7a7ad1e8c6fbb3d58b9a6d426aa8fc8ca111aff5e75

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 0f8829b181e52a11c646de3d8f45d09dfb60b2165c57d9acb01c01caeb2563c5
MD5 360333fc8d6c5cf0d281a49c5460acec
BLAKE2b-256 00020710a531abe4398b6368437bfac72df5c0f700bb6aab9a303c806934b557

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 689b0b1ddf912083350e0c1f57fe6020ac4c53e2f001fd8dc858dcae00efbb62
MD5 6a0124151443995ba6e4d4a78771025f
BLAKE2b-256 9fb353f6f286be075be869178a55b0c3350361497f64c790fdf39bbf56ca2c98

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.0 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.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ba5288d7d4d6648e46e3bffc032e21763d0fed07a3313fe68eb7b47ef049ec62
MD5 dac6f49efd99706d3915622a6b5d9208
BLAKE2b-256 fd78518d19d2b8ec05d6f928fa5d1fa2e128aac8c809e915c05de2226dbe6058

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 5f067d045b4cbeea785d2acac99f26328224363e67dfb8bd403159b23305ef52
MD5 4cec90ab21d762ac7dc036ebe8b6a737
BLAKE2b-256 e40d00ba15391c0ff4b773a35080e6e97a5bfed0ef703e2281ae72d9553bc422

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 277bcc2fb0d040c2901b6d3090429a3e9a89b89ee4e13565f443233c431ba0a6
MD5 49ba76174d2e610535eb3c341e977668
BLAKE2b-256 bad944d1101df46c5adfb023150d48956833da272297f29695a12acfb0b84222

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a32692f6c62173ca1a3c00b6a0deafec02afffecd21f2ad05d4d71ce7967035d
MD5 ecf9b3a4ee35dc77d04a19d6f471e93f
BLAKE2b-256 07f95d340dfeedd713e459835b1356fe62b925727f17630defe2e3f5923652fb

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.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.5.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 36e9cc5ca5072a1a3a70215a4850e2d7c05c70ae87703beccce0451ceb971271
MD5 5e129cb52cca4c151afe8ad3f639e2d9
BLAKE2b-256 b60dd4a2a19a50f49cbf22d194e7f4bc52956c48ec08c1f899095d83025132ab

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c6b9c99831c1e16b3baae09680d384728900a3b775081a9fff0d51b3a4a33db8
MD5 6f17150ff440c905ab0f75152841ba14
BLAKE2b-256 0274150f5fd0d1672ac46375f559318d770768c3dd6c6eb1a3311e9a34368fac

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e14e3c7cdee4d913fccfd19316d8d7eccf208283ebedd936f1e4a958a2a25963
MD5 74e50f90021343dca656a21c069b3e90
BLAKE2b-256 fe4cc9f354c7eb3a80757829c18e2f0b78064070e3da18a3ac9aa74ab2b1bc23

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 0bd0ce72785767309aa21a197aabb71f9d90215dd096a048681e18bdb92af32d
MD5 f96a6e3478c94ac5fe92c243064402dd
BLAKE2b-256 2f73efe4ae738e54db775cc918766dad340b3e2aa1cd60a29611d51eceda2739

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 808045f9cb7fe12f59940d8be72abb16344d5dee3f98d41d935f36229eff2be7
MD5 a5a8a9a947df135fe15d1a0779f071e4
BLAKE2b-256 ea14c30e35a9f27d228abc8be6779fb712f4a76d4db437e03bfa31c30384a1c3

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.0 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.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 250ac9bbe764a6a931a3d4740e7fe711ba209ed8824760eac29eceac620849fd
MD5 a42e92a22493fe89a84412c5847bbee1
BLAKE2b-256 079949c84eb4ea2e0e885e2028cc0b5b948a2b3aca4dfa8d6fbedd4a49462a63

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 23ec3f58b66b4aacda14b6ff23716215b9904246c3f85a24d5704a76453930b9
MD5 22f8db89aed78c4a7e4451755c6d25bf
BLAKE2b-256 1a1b9ec0b52e359441882e495ac151cca625a6e3f97c8a88f58ecdb75aaaa18d

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8d342b50b57cc421b40dbf2f1fc0e837f14562ed99afa7aebec46424b34ecb96
MD5 ebea851f5456416fc4a189b09ed70531
BLAKE2b-256 d12019e8f129690303718af9df8c1916b6b23ab127320ebb72af9761f40fe950

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e8a7bf307f6543c342513b46bbdcef8519cb879516327f8555cdb06ed974b1d9
MD5 2f3fe203e52a4847e76792ef377a9ca5
BLAKE2b-256 fb184e8f609588ffa9b19e833e368e3f986b06b6aac609d6d23675542e7ec37f

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.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.5.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6c540daa377d3749f25d7d8d92ca9048bcd274aa497f0eb3c1161c7bcad18312
MD5 b6e86d9d8771bca01edcd59da839d50d
BLAKE2b-256 ed90c6ce6d6de4231387a0235541349d97e3de8ade66b63ea6acc5760c37c2b1

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d918b1d8535d7f62861b9592043a87a8b3179afe67b48aad3639599dd687f172
MD5 a0de4f086868cab315f80801f0c769a6
BLAKE2b-256 c5cfc3aa88a6f40d96c71d0be372491f40f0e6242c5bed439b3e69e15202ebc9

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c5eee3e478852195eeed054dfbd068ac9d15efd1d5e5e6dcb80bf9318cbe49b5
MD5 8d278f87452e115ede24c27c10885a0a
BLAKE2b-256 71c323761b1d11cfe56db242257faa28e62cdf1c8f0a5ffa91dedfd04ab0c08c

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 e8048386723df3020a437a1392b00860fe91216a50fb0c6237c353d47b7a80a5
MD5 24d2e14fb17942d0bdc1d0f26b8d373f
BLAKE2b-256 896d2b1c4ecfe8c6673e4e05af88da2ad8938e0276f2ac0be928e0744c9dba9c

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 38a0e86344903fb41929ec7c52e461d095a0d123e5de5e3cc6d6bcf21ee83d4c
MD5 83b3db3d55f80fb15ebff1d542ba7f80
BLAKE2b-256 ebd4674620ae9d29249768f2e75b5d782ce21a80cf7d69843f202c31f5574b98

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.0 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.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 359d165fc5039c15ac3196d3b762159e0293eda4d71cfaa24dfb4ae6711bf3ab
MD5 2243ac82add4ab2181ed9d5eae1de611
BLAKE2b-256 deedda824316ab94adbd6de2b0e47a10669dd524b0712871231b5f45d28ae7da

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 037647f7215feaed933acd43da5fd462f35b6a5ffd154e73c73414f0e2af32b2
MD5 25e0aa1ed15ce934ada5343c6875e904
BLAKE2b-256 150f6de21184694dec1ff9625541334ac1822dfce32f26a718eb6357601f4b8e

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9e4e891d57e4ea55cec765517d90ce9fd1eb79b12fd586d2fe4eb3b428c0c21b
MD5 3d29a1a1cb979d725167d565116cfb72
BLAKE2b-256 8a31dcd44264695b2526ee923258adaef5cf665df718bddebfff4370ffdba008

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 49eddaef49d152a3b4e709037922364243c261013c74a7c53a5d904e44124269
MD5 aa756a419c6c3f43b93a65997624e6ed
BLAKE2b-256 d0da1522e94990356ea0a8220f8d084ac9337ee9344022809b28bee5ed4eaa55

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.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.5.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 43123dc24c445757e76d2bf3479391adde4151b121274e05844817f34b194b9b
MD5 91f30581767a2bd20185dd65249e992d
BLAKE2b-256 4022860eb2d97d4c51be3021e0a3acd5478b0fb7c7f7a69c692c19eef348e66b

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5daa1699ddd2f1d064d74e4b14fd038cdd8cd2d64e6e28f62d1294b1384850e4
MD5 30031fe1ef28aec2db2ca1d252dfe1fa
BLAKE2b-256 53d48bf7acdbd9978351d047a83462f03d30a29f1357ffa47488e9ed0a1e0c46

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56caff7b7b1732ee5999343d19aa943ab7969835b18601786daeffc3ac7f1e01
MD5 bdc023c92aa8c3aa8c629fc3d555411a
BLAKE2b-256 d564f3b8c223e4cfe09bdd1fa388b0d7bf867e2def0d91bb31880785eb0d966c

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 51248280c8c680ea1f0e80a28134dabf1b4c9ce8ff3955cfa0b1389fbc3b5044
MD5 588b72dc142d894aae757885388e34b6
BLAKE2b-256 34addb61bf3e12a431e2a953bf84fe6e76d416fbfde2b000c8f0d81e2866697b

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 03de5ca2de36c56eb7a7a5229b2f97b7d7eba8130ff451db762859235f65e392
MD5 b2936b2399e42d6512114885d4953374
BLAKE2b-256 7a20edac80b3e1be6c7571be537c4a98fe50999cc4425489d9da3f93185f9276

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.0 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.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cdd20a1ffe9064ab09de5ffd2b1ff9bfde8817eb4d73660210d6e776dd858a8c
MD5 8b2190bcbd001d4693ea6a6b8e068de4
BLAKE2b-256 da0d1d887f0286cf0efba64d23d0d6ff56dde00d3f56f01ce8c0951c95aeb114

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: cyscale-0.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 1.9 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.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 e2b2042d4ef32d84df68de64ad2f5d45817a4cfce1a01b56a65b3c764d536580
MD5 2d72f1d6cdb0822eb9707ec970d0ae82
BLAKE2b-256 019844d4a5cddf38c0d71d69dd77f4618a4feec7f883c0c50933b13ed291ff90

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 28e33530fd47570a331f611df2bd70981131be7286085ea0097968172c665f8e
MD5 8907e534b6c7c9a366480e57c77e1ff9
BLAKE2b-256 cfb28b3ee7868bd0b64616ec65ccc5dc4591c191e37fe12e5749b912b8faf9bc

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 730e3c009fcc256339a2f71c0a0faff5bbbb4d85fcff6d3c9411413f13ac54dc
MD5 2e9f3ec0c7ffc451dc387ec4ed0c7b22
BLAKE2b-256 e019f64367cd631822acdaf8b104fb8b2e732f27e5656978b5875db9aa9080c2

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.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.5.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 aa0de7b7f194b78c5d7895a458476a49db02cd98ab465d0958d84550b0dd1b15
MD5 be642580dba60f6079df91bb430aaf20
BLAKE2b-256 c08dee981e62597b56d81028368d3ce20e8597655375e362484eea828b82c245

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 28f8ad5bfa36551a75042ed6d51aa168e8d93b84ce679343b1d598cbe21aa8d6
MD5 46a0adb1dd298272640893b48b4ec960
BLAKE2b-256 0de052869c2da5f08fb569a150c0d10374a5a616d253e99a8b33ebf6d26f6d5a

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6bd3b5bda645b5d6ce62e80f542b4606c9e8feef11f5f0ca4f2688f738ea6102
MD5 aa44a0ee384428a4291724cd2a959e21
BLAKE2b-256 add06a229127481828b97020040c4240246e414631ff1ab44eb305fd6c9a0fe7

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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.5.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.5.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c3fa7f4f58ea7737f0f0635ad3ea58c5b85c1e63758e374c29388d892c4c2359
MD5 16177314eccd6a85a8693d4525b9528d
BLAKE2b-256 11377f8d187ab0c479f934ac6b6d3a5c02507a8f8d48444fe8bf4c939a7d8e8f

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on latent-to/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