Skip to main content

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.

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.6.0.tar.gz (1.5 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.6.0-cp314-cp314-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.14Windows ARM64

cyscale-0.6.0-cp314-cp314-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.14Windows x86-64

cyscale-0.6.0-cp314-cp314-win32.whl (2.1 MB view details)

Uploaded CPython 3.14Windows x86

cyscale-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl (7.9 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cyscale-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cyscale-0.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.0 MB view details)

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

cyscale-0.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.0 MB view details)

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

cyscale-0.6.0-cp314-cp314-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cyscale-0.6.0-cp314-cp314-macosx_10_15_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

cyscale-0.6.0-cp313-cp313-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.13Windows ARM64

cyscale-0.6.0-cp313-cp313-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.13Windows x86-64

cyscale-0.6.0-cp313-cp313-win32.whl (2.1 MB view details)

Uploaded CPython 3.13Windows x86

cyscale-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cyscale-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cyscale-0.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.1 MB view details)

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

cyscale-0.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.0 MB view details)

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

cyscale-0.6.0-cp313-cp313-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cyscale-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

cyscale-0.6.0-cp312-cp312-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.12Windows ARM64

cyscale-0.6.0-cp312-cp312-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.12Windows x86-64

cyscale-0.6.0-cp312-cp312-win32.whl (2.1 MB view details)

Uploaded CPython 3.12Windows x86

cyscale-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl (8.0 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cyscale-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl (7.8 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cyscale-0.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.2 MB view details)

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

cyscale-0.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.0 MB view details)

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

cyscale-0.6.0-cp312-cp312-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cyscale-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

cyscale-0.6.0-cp311-cp311-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.11Windows ARM64

cyscale-0.6.0-cp311-cp311-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows x86-64

cyscale-0.6.0-cp311-cp311-win32.whl (2.1 MB view details)

Uploaded CPython 3.11Windows x86

cyscale-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl (8.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cyscale-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl (8.0 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cyscale-0.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.2 MB view details)

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

cyscale-0.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.1 MB view details)

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

cyscale-0.6.0-cp311-cp311-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cyscale-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

cyscale-0.6.0-cp310-cp310-win_arm64.whl (2.1 MB view details)

Uploaded CPython 3.10Windows ARM64

cyscale-0.6.0-cp310-cp310-win_amd64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86-64

cyscale-0.6.0-cp310-cp310-win32.whl (2.1 MB view details)

Uploaded CPython 3.10Windows x86

cyscale-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl (7.8 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cyscale-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl (7.6 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cyscale-0.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (7.9 MB view details)

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

cyscale-0.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (7.8 MB view details)

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

cyscale-0.6.0-cp310-cp310-macosx_11_0_arm64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl (2.4 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: cyscale-0.6.0.tar.gz
  • Upload date:
  • Size: 1.5 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0.tar.gz
Algorithm Hash digest
SHA256 fafae63ddbcb37d171d677ffa7521ea00fd930cd71c51ef1f4b9a47abeb05e28
MD5 2c17a8724c86de07674c4d3f2ffeff49
BLAKE2b-256 1c23dceaa21cf1b648fc1b0a9a5b2cdd65cb3b197984fd7bc067780b23467b52

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 1aa9525efd003d60ba4de289511cc653f631a94cb8967ffcb2f219a548bbe9f8
MD5 a7d6f858e6dfd6a263065c87d2b8a50d
BLAKE2b-256 d7fa7846ad8da45cf1093c517fee379246c1dd871e9901becd2ad8eed4918365

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3fc0a1441b5b540e2f5411a4bf93801456b09d12554c98778d9c0bd567f36452
MD5 40a494aafbbe3eb14919c2b6c7b34fe8
BLAKE2b-256 564d1bb9fc20c32a175262d3520fb77b11ad424f149461965b6fa50a657f6ac4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 aa8a00ff7e8170938a0763000264baec72fe324b4d5436342ea3364851880edf
MD5 49f94498acdf08cd7ddb29ffd6751b3e
BLAKE2b-256 587ceb7c71a7be92528b4fc1bc1c0874f0c788fc80dd0526bc793935348645ba

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 642903d87395b85e0608cb0b9c0d6fdd4a7032eb3aff8424eb16c69dec8efb84
MD5 723a1e1bb60254bce6f05efd4a45de32
BLAKE2b-256 1b8c4f9b917b659fa1a6d9a352ace59d5844ea1e27ae55bda8c658c1e9c6cd7f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8478d6d73e6ad8915a9e613058ffaa31fddc01d34bb1d57e90f267bbadba57c7
MD5 75fe8da3d9e7818a080128b288c04262
BLAKE2b-256 b793da2fefe970dc8e28542e668c6cca15470df9616641494ed8852df8bfa7fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.6.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.6.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.6.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 de4d8aa57770c09ba223bfc5b14d74f0a0535f9d077c956a8291a946d6f51df4
MD5 7bc0736e795b30b9beef7ddbec459d99
BLAKE2b-256 1912f9631d66e65a303adf1b40472df0e7825ce6f404b6792993ab6e941e092b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e5eb2ba1673ec89c5a5caabf1f945c8b888e53a8ffe82b0b2424268bd549b55a
MD5 d6f6fd339613c312b6021d8f4b8d071c
BLAKE2b-256 9d4815eaa020a7bcc639776205705345e38408448b7ca7a9bdc5504473e36268

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 af33b74ed375b2e32a2e4ef7a5c43aee357f691b5770e5f121c6bfc43909e465
MD5 5b3bd945975745c8887f459537fcd47b
BLAKE2b-256 de9c50209717c48e25ac76fc6f921b17a1c7bd13eafd47bc54938ca3fd1fee41

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 afcf41366eab4b63e01ac962bce5136726a13fdbab27f3480045625fc0cd33a2
MD5 f99c053cc9c6bbe008dd4b0c44f9baf8
BLAKE2b-256 31d388d5958d06de29b5eb7cbb646c0e1c29fde6ec24b1510c94c562b0cd59b8

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 d80d2b421874962840ea19f033072d26c4d907537c8d1ec19eb93879f05e5177
MD5 d4048b591918f2fd900986c3053d175e
BLAKE2b-256 d27db985bcfdac76e890c0cefa11c417de44c5d7fdd8ccd4a664109942b1b006

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 da535bc931b053ce79c9fae4efbb40eb08f2e0bdfd119918e7100a4be2e1477b
MD5 b68f15fb79f81db0752c65bd634e473d
BLAKE2b-256 edae70fb2981b4e6e6f509d8cceda43d8eaf0255f480d9ea9033a836a84f54ae

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c8b0c77d65aa0f2e2942ad07678e6c8465f569d24f0d4a1da7570802c87ab7de
MD5 2b51ace34490e2ec31a11494c9cc4053
BLAKE2b-256 4ce196188071a7f77c689d8a9eac2bfb710ba1e1efd77356b4e95165f9c82943

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 419d27f89b60004cb05cdeaea33201586df0eb58d25c075dbe006c1cf22fb5e1
MD5 bab056e632605f780a81e9962854bdbb
BLAKE2b-256 1f47237a5a0e7893655e3d186dbe2d7ecc3c5a5ea374bc8977e82304953f0851

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f58cfad2dd4730d752eced57e6f41f290555e6637fbf2be6416f24096fdc1dc0
MD5 5ced1726295518183dc4b0f1227fa220
BLAKE2b-256 4db07e573553f60b1d1e4b5d8597730b98d794f4d241a2f1835f9d93a5e00eab

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.6.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.6.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.6.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 c2b3562a77f39d535498d6fa20cf061bfd0897123d629ef050944f7858518686
MD5 b4d57e667d2d89d1ca88fb7c769c785b
BLAKE2b-256 9a68f95601f26a88006f1c8d445dbca76ba38799fbb18c6edeeb25d4c3c9c0da

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 80b43b2eb72a8cc34f6278f65118ef7c72c9c5ff0223fd87d1e4c990a38a6218
MD5 4fcecee1a4d7361396d718aafb1494c3
BLAKE2b-256 87b3e1b9393199c2eb1797a63dc8791de53aea4705da4920a8332e86f55e692c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07fd928e4ec1a2a293c7d7d835e58a60aba3ea36d722fc1692aaa76bd8fa1b68
MD5 3a832fd10752d5d0272436de3ef39e73
BLAKE2b-256 7d42e8d3c6c8b4ae6862b1312b00f499197075c6f3f81966684b5c73647a7e5b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 448ab90caf3675117b15bcde12bdbd8ddb13f7a2250b1a92d165ce7bf6725c80
MD5 a6d8fb707b8f72abd45edfc4312f2a21
BLAKE2b-256 05e072528cfeadddc740a19b3d3d07a7a1b5467947588932455263e570963f56

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 0d5b56366ddf293a647a4297637f770d5659c1b26e75717b8950c51a37f23ee0
MD5 8406e706067d381ef14d0e3ac311248a
BLAKE2b-256 48916f7a1bd934d33bf6402fb90b61466f93d522ebbc9b68add55c9f8b26c546

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 68c4e5202454ef6cb8b8fd86ed2e3351880614d7b32447ddeb9267405932a924
MD5 f32fb551d38b5f88eaa3f27d82bcfa51
BLAKE2b-256 7328c5ebdfce1133194df0dea1304b1c2101599c6c3cbdd2fe2fff2d6e84bef0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 747583621dd5c84faaf75196dc6295803a884df92006294b02c7375e6e9705c1
MD5 dd132d064cf033a0e6b8aef36ba789ff
BLAKE2b-256 84e69ed64c7c09867b80ddd9fce05af3cf41dcd6d9667c404c8dccc10375adb9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d7ee42b4438a7120030e8a0807857845d13625aaa2c421d857a932d6848c5ea
MD5 60909af1236e1c8c96ac7ad7bd76945c
BLAKE2b-256 6da4f1c2dd27987de070e4f5d366193303ba35108217013dea56603569336693

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 340afc81a6bd37536b36bbeca53ec073ba571ccad2381da1dbaaf6278767737f
MD5 54dc169c6c777f078149b4f054b5522b
BLAKE2b-256 708dbc9104e00e0c6218f46a741f096f206ab1f42e48e9ec12d5def99e51670e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.6.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.6.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.6.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0ac5f02d37e7ef0b05b3def05f843fce472e5df27651b2b113384420373ad55b
MD5 b27053262a2ef0acac90f6bb537b3cfc
BLAKE2b-256 26e2994f6d38acee955ca9ded71c59970c192043bb743609265896534b1c39a0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f8a3bcbaa419c469d67def4200563f2671c5dc39c3b6229a5ff3d573b7b41363
MD5 cdf8c908bb166eae37a182d35566b6a8
BLAKE2b-256 dc718a00e44286f773177338bca53ca642205666d332ff98e26eef85cbec9b8d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f38ae5d607bf896c8a95246007049271961d7694da684ae264e93d4377564ee
MD5 c8562c5a83b94762d156378b943bf641
BLAKE2b-256 6e7aeb65ef8d2c84af2432bf7ae1a31f5b9868226c52f9fecabe6256e7346a56

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c69c0fce45afe8d403c50de703957c377c01f924709ae4e321653fa4422e5043
MD5 45d865299f887375348bd380a111a83a
BLAKE2b-256 5f91e10cbfcee5cde14fc844df2296a06e94d40ad46309e89da3f1d954cb8b3c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 7c4f31df2bef03c1692616eba63bbedd7f80fd229d8e462603c175d01d8fb263
MD5 4d13646ddde03acd5909a3ff16b10ae2
BLAKE2b-256 37ffbdfb38859ce4100fdd233d6956038dd51044ca12a62603d2d76f2e29bd82

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7b225415ed0a031c48103c35ea2c7334837a27739c3312dd15fa1a812ae68ed4
MD5 cb3a1b90e98a3ef7cb0547098be92be8
BLAKE2b-256 43c141c9fa646e75ee83c12e9a54743aec783ba952178eae0e5a5f059f9579a3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 65ca166850f9c2134809168d09803af44f3480b92960c69b2a6c40bd33eed750
MD5 a44cd0150b7343bc018f6f8d8731c768
BLAKE2b-256 7a5bfd54d2f080dfb13ad1583c736fa3efc97b806937856487a3f982d3a5d20b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2eca7bd93382132df4fbb9c63dcc0c587812df6743959eae3aead5cdd843e4cd
MD5 73411d8ef9603a122afb373dcfb2930c
BLAKE2b-256 452cdd2d07e957a304d9fb469b5e6d5584c6d714b8423c589dbc50b05fd79373

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ca7ccc8519c38ac5593876ec45038897573f7cc6ee661351bd00f990f5a88a8b
MD5 6b3e77add2fa6a2df3663560c606c81c
BLAKE2b-256 988dedac79c450c5892b7e0ca70bbe1a920f2dd675beba15b206f0e1bef43fe4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.6.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.6.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.6.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 53a3b04d8fc447c1511cb9f807ad96cd2d74e2fc6b11148e45dfb7e1d5672a67
MD5 8b33e2d36b324b0751530e98397f2c2a
BLAKE2b-256 4faf6c286b6a6420cd1ddacbbad0d1d4ed0ac64084fa0daa194c9e6b357ce0c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8dbb7cd662f0a7017ed3e9e311c41922e3d4004376f271c124b7d8f912f2bc60
MD5 20ad2a0871fb7e85b42ea78882a66a2b
BLAKE2b-256 797ca0cd1cd536fbac09b575141065f0bd73e62c2ad3515baaf9e1b60df61ce9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 410092853da993ea393dbde9a38a8757bbe5e78310ac171f073243ac8ec7c62f
MD5 70ed3dae54b2c718e32a678f61c9dfa4
BLAKE2b-256 42a39e48fcd2c16a8e27eadb5aea539bfec90692864b77f68fe68acab23ecd81

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9a4b80098b46166915af2181cf097cc02274afd06becdd32d2fd54c270ae57c5
MD5 cfa299b6f684a2312d088652db18b21f
BLAKE2b-256 dd156b1f89f9bea8974e4b0559510f1ce2e008e3a13396ef6fec28e43ff587b3

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 4a16a14d7f07ef21183041e77081f31431c550cc69465e039bf4f3866af999b2
MD5 3f1b514370ec32baa320cff1a3814d6e
BLAKE2b-256 1a6cd8b0498fb90598f6e0d1971ebcd7a6eec5caed563944cc8834f5b42a51e1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 eb912bca79036983cb3259e58e5a222218ff10ddf1823f3044dd17be9eb52ad7
MD5 a571c11dcd96950053834f6cd921ea78
BLAKE2b-256 536fdf2b3af62364132926f0ceff4ad2541c1e182610531bbb8dc121ece6d3e4

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.6.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for cyscale-0.6.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 37640dddd0b0ffd1bcd46dd67be72818c3fd058eb4bc7be2e1177438c1d40fce
MD5 b0120f0b0056394d87e33ca944b23d31
BLAKE2b-256 c1f1eec19c58b0cb972257608570aaf12abe1e470f1f62ef0f49b6ebaf2a048f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0ec73f3c37f6f5c7b5daea085bf35c865624c5849a294630163955a78ec7fd8e
MD5 ec14d47ad28a9396e4aa53260bf6e66e
BLAKE2b-256 fa8683c6e60f707f174e2c81042fc4b1c665e4aa93ff326f7c99ae748a66dea0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d278de9e74b7ea84d3b330cc406a4501c16a556476d41199ea42923b8e54c66
MD5 a7a6bf17c3eae2d47cee6641fe87e81d
BLAKE2b-256 618bc3469b32d31e290ae64cb4702982f6849bb4653c48ac31a8c9e38dd68d44

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.6.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.6.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.6.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d51ac2165442c0a060e59d91c153fe72c13786eee8ae583317845eba8f9d8161
MD5 9e0ce3c788da9e0eba4f5c7bda6edc82
BLAKE2b-256 cb7d9f65db3042cee220c0ef75bfe80cdf2a76091b84eb19e4949c018eec4016

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3490d34f540b3ba610437eea6317e1dc89f81154d1e6f3ad7ff0e325909e5857
MD5 2e1bdf53c0bfdbfc8105eb696b8eff53
BLAKE2b-256 c6b4a577ddeeb07cb36430317d0c1afc15ed0d7ebbd6e7b923de1997d3538298

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 50304222399dcab1970d76e033a53cb32f56696f68b140145ba1e72d0fb9f654
MD5 50985eb052b480a1c70fa71685dd3fa1
BLAKE2b-256 370acab397e206584874f8b16e1b186edac9a817993169e81e7d6d19c3313035

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.6.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 78a496b724ba12bd73587d901597ec8c2f39eab549f3120854b7e054a3a1b45e
MD5 fa6aa07d37c0cfffda11394a443f4e86
BLAKE2b-256 80497ef11e79ea6156edc1d23bb1ca91d51eef74dd869357e04c53fc700f69a6

See more details on using hashes here.

Provenance

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

Release history Release notifications | RSS feed

0.8.0

46 files

0.7.0

46 files

This release

0.6.0 This release

46 files

0.5.1

46 files

0.5.0

46 files

0.4.0

46 files

0.3.3

46 files

0.3.2

46 files

0.3.1

46 files

0.3.0

46 files

0.2.2

46 files

0.2.1

46 files

0.2.0

46 files

0.1.11

46 files

0.1.10

46 files

0.1.9

46 files

0.1.8

46 files

0.1.7

46 files

0.1.6

46 files

0.1.5

46 files

0.1.4

46 files

0.1.3

46 files

0.1.2

46 files

0.1.1

46 files

0.1.0

29 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page