Skip to main content

Cython SCALE Codec Library

Project description

cyscale

Build Status Latest Version Supported Python versions License

Cython-accelerated SCALE codec library for Substrate-based blockchains (Polkadot, Kusama, Bittensor, etc.).

A drop-in replacement for py-scale-codec — same scalecodec module name, same public API, compiled with Cython for improved throughput.

Installation

pip install cyscale

Performance

Benchmarked on Apple M-series (Python 3.13) against py-scale-codec 1.2.12. All timings are µs per call; speedup = py ÷ cy.

Primitives and small types

Benchmark py (µs) cy (µs) speedup
u8 decode 3.01 1.16 2.60×
u16 decode 2.99 1.25 2.40×
u32 decode 3.11 1.26 2.47×
u64 decode 3.09 1.22 2.53×
u128 decode 2.91 1.22 2.39×
Compact decode 9.59 4.38 2.19×
bool decode 2.93 1.18 2.48×
H256 decode 2.93 1.21 2.41×
AccountId decode (SS58 format 42) 11.45 6.11 1.87×
Str decode 12.89 5.82 2.22×
(u32, u64, bool) decode 21.96 5.59 3.93×
u32 encode 2.34 1.10 2.13×
u64 encode 2.33 1.20 1.93×
Compact encode 8.85 4.42 2.00×
H256 encode 2.47 1.01 2.44×

Large payloads

Benchmark py (µs) cy (µs) speedup
Vec decode (64 elements) 224.20 98.13 2.28×
Vec decode (1,024 elements) 3217.32 1423.46 2.26×
Vec decode (16,384 elements) 50396.95 22435.45 2.25×
Bytes decode (1 KB) 14.67 6.87 2.14×
Bytes decode (64 KB) 64.15 45.05 1.42×
Bytes decode (512 KB) 379.99 300.14 1.27×
Vec decode (5 events, V10) 301.10 135.32 2.23×
MetadataVersioned decode (V10, 85 KB) 64958.83 29839.68 2.18×
MetadataVersioned decode (V13, 219 KB) 143029.99 65651.69 2.18×
MetadataVersioned decode (V14, 300 KB) 390902.34 183644.98 2.13×
Bittensor metadata + portable registry (254 KB) 443089.47 212345.78 2.09×

Primitives and small types see ~2.0–2.6× speedup. Large metadata decoding sees ~2.1–2.3× speedup — the gain compounds across thousands of recursive decode calls. Raw bulk byte operations (Bytes/Vec<u8>) above ~64 KB are dominated by memcpy and see a reduced ~1.3–1.4× speedup.

AccountId with SS58 encoding shows a 1.87× speedup — the SS58 encoding itself (ss58_encode) is pure Python and limits gains in that path.

batch_decode (cyscale-only API)

batch_decode(type_strings, bytes_list) amortises Python dispatch overhead across a list of decodes. The baseline below is a py-scale-codec decode loop, which is the equivalent operation without this API. Note: bt_decode is excluded from this comparison because it does not perform SS58 encoding — including it without that post-processing step would be unfair.

Benchmark py loop (µs) cy batch (µs) speedup
batch_decode AccountId ×10 116.66 42.07 2.77×
batch_decode AccountId ×100 1159.47 415.44 2.79×
batch_decode AccountId ×1,000 11530.59 4112.27 2.80×
Mixed (AccountId/u32/u128) ×100 599.73 147.75 4.06×

To reproduce, run:

# save a py-scale-codec baseline
python benchmarks/bench.py --save-baseline benchmarks/baseline_py.json

# compare against cy-scale-codec
PYTHONPATH=. python benchmarks/bench.py --compare benchmarks/baseline_py.json

Examples of different types

Type Description Example SCALE decoding value SCALE encoded value
bool Boolean values are encoded using the least significant bit of a single byte. True 0x01
u16 Basic integers are encoded using a fixed-width little-endian (LE) format. 42 0x2a00
Compact A "compact" or general integer encoding is sufficient for encoding large integers (up to 2**536) and is more efficient at encoding most values than the fixed-width version. 1 0x04
Vec A collection of same-typed values is encoded, prefixed with a compact encoding of the number of items, followed by each item's encoding concatenated in turn. [4, 8, 15, 16, 23, 42] 0x18040008000f00100017002a00
str, Bytes Strings are Vectors of bytes (Vec<u8>) containing a valid UTF8 sequence. "Test" 0x1054657374
AccountId An SS58 formatted representation of an account. "5GDyPHLVHcQYPTWfygtPYeogQjyZy7J9fsi4brPhgEFq4pcv" 0xb80269ec...
Enum A fixed number of variants, each mutually exclusive. Encoded as the first byte identifying the index of the variant. {'Int': 8} 0x002a
Struct For structures, values are named but that is irrelevant for the encoding (only order matters). {"votes": [...], "id": 4} 0x04b80269...

License

Apache 2.0 — see LICENSE and NOTICE.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cyscale-0.3.1.tar.gz (1.2 MB view details)

Uploaded Source

Built Distributions

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

cyscale-0.3.1-cp314-cp314-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows ARM64

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

Uploaded CPython 3.14Windows x86-64

cyscale-0.3.1-cp314-cp314-win32.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86

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

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

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

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

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

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

cyscale-0.3.1-cp314-cp314-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

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

Uploaded CPython 3.14macOS 10.15+ x86-64

cyscale-0.3.1-cp313-cp313-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows ARM64

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

Uploaded CPython 3.13Windows x86-64

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

Uploaded CPython 3.13Windows x86

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

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

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

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

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

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

cyscale-0.3.1-cp312-cp312-win_arm64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows ARM64

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

Uploaded CPython 3.12Windows x86-64

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

Uploaded CPython 3.12Windows x86

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

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

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

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

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

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

cyscale-0.3.1-cp312-cp312-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

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

Uploaded CPython 3.11Windows x86

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

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

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

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

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

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

cyscale-0.3.1-cp311-cp311-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

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

Uploaded CPython 3.10Windows x86

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

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

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

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

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

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

cyscale-0.3.1-cp310-cp310-macosx_11_0_arm64.whl (1.9 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1.tar.gz
Algorithm Hash digest
SHA256 500b8bd798e355a101b354e49279a6c58ae16fd5e4d50bff88ea0f5ec04dcebc
MD5 3b2ad1a1701c767364d1bd183c3b6717
BLAKE2b-256 ff61b838d61c1352d1c4b7da3fe5410df2130afe8b1e772efff4f004de8d9c90

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5dc7eeb08b35a7036dd1848db366e5479a4dd80eebbf575458446fb2760985f3
MD5 d1751e889fa776613710933eafc6ef3d
BLAKE2b-256 86485e75ad10277541043df9c3428a7816b7e78e777a3db0e763b47146365f84

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 355fcd5dee7a39eec30b0c7489c9333a1bffcb0622bbe78e93053d8ccce19de0
MD5 1d17fbe9f7f9232b3f6f6fa5ce6fd36b
BLAKE2b-256 f6f6f84d03cc9108e77cd17be74bd8dbedf8f1c0c067d7a7d87bc7434edaa546

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 930a4edca1f416e619b9e190e5edd5c8691a4ef3ffc9765e04a51d534c9d11ff
MD5 22e4eeafe57e50fae7f3fc9ef36883a0
BLAKE2b-256 e29ec4022eead61e3eb238dffdc638a6e7fa387b46085ea2e7f08b4b410ab113

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54cbf2d209c6b37166b3608ebb71fb249d8ebb306ce292b5d69285eb641702da
MD5 ef971df5b501286bb05ca2803a3b634e
BLAKE2b-256 3e0ec4c71555040c04d01c989799ef5b5cd02f35cc0f3e4f573b2095834935e5

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 087e2b6ca470d690f609c42e9cd9357aadce54d6f05c0a056ac012f8df202515
MD5 02d55bbb50d01bf3deacb96e6e400c18
BLAKE2b-256 6015cb3b208f4aa2277957373a8f079fd93725a012b541d661f46d3226bff580

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.1-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.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.1-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ba65469ec61dd03736321ab35e4f181a5e9ff1c3ef575b19b0bb1accf13f77e6
MD5 76b79dc17a17041963cf692ccc19bed3
BLAKE2b-256 bca113b2012e413ee1025727c7f0e7d061bbc05b0afa0e66d93105df5f410894

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5573ed614b15267ed6d5792192a5cc4f35db7e8d8f7b0fd0ca142bfe02def487
MD5 98f3fdb2c005ed3ee2620e7be7ab6a78
BLAKE2b-256 4cf46ac445a597fa75e9cb0c1417bc7f0499e33dd5cd07f10e7a86b5a42789de

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 711f3725f3ad2cab02415a4bb200f5c994ca051a19829f11766237adce8ae956
MD5 01a416fa948f0efde94e1002faac910f
BLAKE2b-256 780df11cd15acbcd5611832f13f674048d1acbd204964ec30e4f429cf2891695

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 28ca022be291070fe2c1770dc0dae355ba5e398fafaf2e9965700a1eeda06175
MD5 3e65b7596a6603007b15a5d7dcd89e46
BLAKE2b-256 cd145654c838dbbb2af7647b13409df1998ca85cf958149aa3b572e22ba84da0

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 8a0f1b98d8b3d601c777afbce22e8646e95d0c8a62064a60a426f2552f8d2571
MD5 9e5db8f239ab39cc49949e36f01e907e
BLAKE2b-256 7a4ad0dadb6d7ad29dadba3630217f4b8189e82cc29de35c5f4e6f50b6b2600f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 d8dfce87abfbfc8d93c0c644533e5f06a78fb3da2a83237eb92e45561e966d91
MD5 e601fbbb07df22d2a1889ef54c693341
BLAKE2b-256 fa089f44d23c8da05731efad18dae0bf6000ca1e0eae03f88d824b63c2931b76

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 f861911c4a1ca785a6d2a88f58c5f37701255d9b1320706b46693793eb9afe22
MD5 eaa3253fb43a22152c082d0a1b145af3
BLAKE2b-256 91a7f4a0d5034ad9de6155935a9501bedf388c7e21e72c5e9fb14e4aeebdba03

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89e52eb9f029fe19453bc61bacc3c1edb3303a2cfa07aa008a698fb102165c1f
MD5 8c1b0193eac66417fe70d1478217a07a
BLAKE2b-256 9584693f1a45f9743f0872a067e841ec3a987aa9bd9ea0cf9b8eb85ed4f5288d

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3d78c78d04e308a5de609208c5f6c9bd10a558c5b853a1e1f56601cd82fb50c8
MD5 f5521b58ca9a385858335c3b109704a0
BLAKE2b-256 4978ed59620336cb3301148082fc5a2674aa2690138959e67aaba1a3bb1e6e8a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.1-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.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.1-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e245b910ad126e5c2858df68d37212fa36f577649e0701906754c7666ceeeaf7
MD5 db69f751b24a21875b757e056d73c3fe
BLAKE2b-256 6c4949fda3e983dc1b6354dd63d3a40a0df8dc9ec96afb7db58a6226a106b935

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 6dced48e69ef10b7cccd2b6e568875eb00f1b878680aead5a9ed930158bc0e3e
MD5 778ea29007298a65dbcfe68fa6162659
BLAKE2b-256 bf92cc01ca63c3e1b9bcd0a0642da2127ba9bb87399166c4303bf78ce3634ad0

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4024f66eddfb8edb4750a04ceb2241e378fc27be9c22abe630ce9d9513de7eaf
MD5 2ea643e36972b120a6275734aa288dfb
BLAKE2b-256 c9c9026f1c62e2849656ab6365282970b674260f92d8a141490fa1e45bbe28ab

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 5b090565b9d9ebcd89823b84113e672838516b8c846b93ab8faec03cf9d27291
MD5 5968c78ab5f62f8363ec4683fabf3df0
BLAKE2b-256 57538daf9df8ef9ddc193f2a7a7da940d8e22ee38e18f5ac3982cd7ad1fc3b57

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 cab5d30ea3cd5aaff76e2ac2790683adf03837d37b56c1b49e55afc49bf0de0e
MD5 56cd8dbf1d7837f9c55e8d382980c69f
BLAKE2b-256 ad07368a3330190ae334c8909fdeb70607a97954566464fff3c993507042484c

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 44ecdd0fde744b6e8f79018d375914aa86ae2348bfff85802cb792cc70dcf8d2
MD5 e5a6a3d1a8605873735bb4f1a2c02005
BLAKE2b-256 999d9e748094e8061880a44122db9906a53b405918e97b57e7ac9b47085efaa1

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 43aa147b798c5ea86329e3dd239ac7700580a93c2aba02f877a7ed3540681a34
MD5 ae043323014a1d51d3ba1e87b7675de8
BLAKE2b-256 1347350ddf1df7cbf9e259fc58eec7f803d734b8e03543152a029bc851512568

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8d2e61a02ddcc59ae78f1c862c8d54949f9feb7cd4afbedfbba0adeb3b1126e
MD5 e652639869c1c1f6f456fe0cefc87a50
BLAKE2b-256 961767d2c5944d7a9bf406d5388e462bf4206251f7d5d27fed286eed0d86ec5c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 89c56d50effc312f9c59cf7bbc49e33b38583a8f890a5953ea18f9d0b94ef6f9
MD5 93c4300896d052101b268bb9b4908471
BLAKE2b-256 df022e30d997013505a031cfa80baa26c828df88bbddc7aa02b1f42e2d65f110

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.1-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.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.1-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9aaa923514e93f9538915dd994b9eb4ed173a96ff53c59a43aa8b3ba0ca005cc
MD5 b416bf6baddea8577260103367b0c656
BLAKE2b-256 7c7832ed7278cdbba6549fecb52d319436e389b6316c0150b8afe3c20a9fa34f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f3c694c2fae8169a50cd757a0045747a5b37b9d5c3649681354b567b5599d917
MD5 63847d049b4ee79897953e9f25624a5b
BLAKE2b-256 c86f291d17dfcec105ec1cdb94a652b229f82119a1360ddb13fec4ed9457b5bb

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29ecb9f944a61849bc501a2a2333e5c077182268892bef70168ada4d0aa72387
MD5 d5c4d0f1c875de42b7186a0c8764236a
BLAKE2b-256 bcec7e4efba60c214ef83f679971263d9bcb77ea335bd25c82202fe878a3561b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 69d4e0fb0eec028e5597741aa22f52521d71ea7f0f3b85d1ebe903559fa3723a
MD5 b48ba6b410c15fad95ecebb9ad4acf2e
BLAKE2b-256 f9e7546c0461241bf70ed969773303b20ccd0d510f6d265d3e1e0e58e95b95dc

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 e08c97bf643b1e0146630dfea6a9e9518edd976066d4801ddbed9d1a45a8bee1
MD5 691e38aea9a0aa6d1a34571e58852293
BLAKE2b-256 97817d08b8fa73e97f1b83151b87309036cd98c64f96619c6b9505961b21f6b8

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e7b2921862b8972101b9016acf10984109a48af608722039716cd1ff9f34491b
MD5 236a2e000b7af12ccc1fd634ba35eb1c
BLAKE2b-256 0b88b63f673e6f01783d12ae0510ec010bd641e8a90fad3fdbeb143337d62994

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 04bff7da08b8f5c322523efa1ed6e1e845e9a47ee8ede643dae213ea82f54faf
MD5 41171afb58f9a8f35944b10fdbc6bf48
BLAKE2b-256 ce307253ae41c574b82f0586a307f57d22b74fe6a07c1d62cc99ccda0958921a

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a6aa7d099fee48a4a43cd46cb8944b7198be1a098752ef4ae7e671b02a54f620
MD5 97dbb168937cc9dc249aa7c39d83d06f
BLAKE2b-256 2db6baa4a1800eef6bd49990fe62e81bc3815249af5c0beece8b64ea25294c83

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7369deeb0c0999d56ed5049f85e39e0c2d30ec559874cae46ad984376e40387c
MD5 ae41f5c5cdc00bc84226eb276945632f
BLAKE2b-256 ab7e7a5648a75c321decfd25f0fb2835e43ba06a3ca4060551872bfe799c0283

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.1-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.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.1-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a7cd3187514ea7d5fb8e46d86fc24b54228a1ec5ff103793410029f519a21f92
MD5 84307daf915bca4dd43d9260fb2ea605
BLAKE2b-256 df6e6ca4cc5e12d3e20e978ded308a4ca050787549d326ba21f07d412400f095

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ed96996403bc3aff4ab1e8d31ece747c61208cb3ebead3d27c41432ea8c9ecbc
MD5 63effcb0f5bea93eec256b5a11b93f44
BLAKE2b-256 ad9e70927116f8b6e24aa27685f3f227f8b18ce1875a3891cd8f71f966e26805

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a83f3ef74ac44113a5153852d8a6e3a37b6f3276ef228789b4974f92ef19594
MD5 081a8e0a9926d4679fdb5fe2e041d989
BLAKE2b-256 fe0226fcce3008c2635b4651bf164b5336738dab9a235112d8baa48d0c832c6c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 060cf4405fa2bd67f678aec0c0b52020502015a37df0a8108c28e554c5c960f7
MD5 fa01dcd5b4b95be84d3f21b99d101e6e
BLAKE2b-256 903e00c6f89f81d550b90af6676b74fec1b37a48a9a3182d58976890931eff29

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 19fb85504c58536cb4282a21c355df78261e9d3dbd81c4c2c8aa8b7c2b3b2a9d
MD5 0a1c4350417fd52e78c003c577278118
BLAKE2b-256 dd03e2467ae3974ab725caf5350532f04ba7f45f7c7b6f7138a8cdba71c10e47

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 01ea9d70e3f224345fad088e040ee47930b768a2dad258be2feac8c7fae40dd2
MD5 4c11a8c1d17ee6fde969f69147faf07f
BLAKE2b-256 d0826df4bbe164f4d42bfefb230004a7fb2ade83b5c78bddbf6a7fa2804b9e4f

See more details on using hashes here.

Provenance

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

File metadata

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

File hashes

Hashes for cyscale-0.3.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 61f6b06105dde09d5b378e44d402174b7d68c50c2a5916035d1b4b0e2bfd2998
MD5 ddcb343c0d5fd676d8b253d5d3a952e5
BLAKE2b-256 7299954b8a6685f9f3e440a236b92c0308fef05bdd96f4792f575858fbe2a4af

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 105c5f0e59d6af83eab4b87d87bf3c0a0bc98934de947742e3d0f5719185d4ba
MD5 1e19a7eef70601973f8950fec326056e
BLAKE2b-256 2edc667e60e7ed5e40b589678c4672d16ac7b59d0d3c0fba97ae26f60df1f500

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1885475b82fb168c3f90958e9a3ddb5f04cc5dabd8fe4c8d45b0b132b6e8ecfb
MD5 51b11fe5c2ebdf5962d4216b10ff2296
BLAKE2b-256 da7f9ef8355da3e5f6e278270a8b50a9ead58b0b8c117ea9ccaed4593b1396a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.3.1-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.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for cyscale-0.3.1-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e54cb717d8fce8c0eb5585ce295cd016b508e5b92e54c39eedcdc8d2f8916e85
MD5 e037a319c9c2e4ad65287953bfe2b887
BLAKE2b-256 463aa0a6597b29a0f2e66537c0145fa172bfe6ccd0aa1952f21144e168b64eaf

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 209a51cd8fa3c2cc26b25899be4b4eb7370da8468588ab6019f68ff09a8e5385
MD5 a1f04565f4c998000b8bf4b23111de8b
BLAKE2b-256 c40a7733fcced3f8b2f1788cee3ff6f470c7f7902490ac0854feab33736d2419

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7f0e3f1829c31dad83f3824463258b6d42d8824deee966a95832e528dbda2a17
MD5 d7f173caf9a4601935165fe093bc4429
BLAKE2b-256 33e2f23c3c1c69fde48207991d68dc5f51fc96dfd3cdafc2b540aa858362b51b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.3.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 02a14b0bb2cc62be4d4a5a0d94564fa3673dce67aaabfb9824c8e56daedea79b
MD5 0b728f8522292bdbc9a51f84d23eaf47
BLAKE2b-256 8359124576b584e717de349d95be097aa8a3afaa278a39d9c55802707f33929b

See more details on using hashes here.

Provenance

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