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.

Originally a drop-in replacement for py-scale-codec — same scalecodec module name, compiled with Cython — cyscale has since diverged and is no longer drop-in compatible: its decode paths produce plain Python values (int/str/bool/dict/list/tuple/None) directly instead of building ScaleType object trees. See Compatibility with py-scale-codec.

Installation

pip install cyscale

Compatibility with py-scale-codec

cyscale keeps py-scale-codec's module name and most of its API surface, but it is not a drop-in replacement anymore. What diverges:

  • Plain values, not ScaleTypes. The optimized decode paths — a compiled per-type value decoder used by batch_decode, get_value_decoder, and the extrinsic/call/event fast paths — decode straight to plain Python values. The shapes match what .value (value_serialized) always contained; what's gone is the per-node ScaleType object tree around them. Consumers should work with the returned values directly rather than expecting .value / .value_object wrappers.
  • value_object fidelity is not guaranteed on fast-pathed types. Where a wrapper object still exists (e.g. a decoded GenericExtrinsic), its value_object may hold plain data instead of nested ScaleType instances.
  • Nested call_hash is corrected. py-scale-codec computes the hash of a call nested inside batch/sudo/proxy over the call's bytes plus everything after it in the buffer (a get_used_bytes()-mid-decode bug). cyscale hashes exactly the call's own bytes, so nested call_hash values intentionally differ.

The classic object API (create_scale_object(...) / .decode() / .encode()) still exists and remains the fallback for types the value decoder does not cover, so encode paths and exotic types behave as before.

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...

Development

Day-to-day tasks are wrapped in ./dev.sh (plain POSIX shell; the only tools it uses are uv and git):

./dev.sh build        # regenerate .c for changed .pyx and build extensions in place
./dev.sh rebuild-all  # force-regenerate every extension, restoring diff-noise-only .c files
./dev.sh test         # run the test suite (extra args pass through to pytest)
./dev.sh bench        # run benchmarks/bench.py (extra args pass through)

The generated .c files are committed, so installing from sdist needs no Cython. When a .pyx changes, regenerate its .c with ./dev.sh build and commit both.

Two conventions the script enforces:

  • Regenerate through setup.py, never the standalone cythonize CLI. setup.py passes relative Extension sources, so the Cython metadata embedded in the committed .c files stays relative ("scalecodec/types.pyx"). The cythonize CLI resolves inputs to absolute paths and would leak a local filesystem layout into the repo.
  • Only commit .c files whose .pyx actually changed. A forced rebuild re-emits every .c with harmless Cython-output drift; rebuild-all restores any whose source is untouched in git, keeping diffs to the real change set.

The build targets the interpreter of the project venv (.venv), so ./dev.sh test always runs against the freshly built extensions.

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

Uploaded CPython 3.14Windows ARM64

cyscale-0.7.0-cp314-cp314-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.14Windows x86-64

cyscale-0.7.0-cp314-cp314-win32.whl (2.2 MB view details)

Uploaded CPython 3.14Windows x86

cyscale-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (8.4 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cyscale-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (8.2 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cyscale-0.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.5 MB view details)

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

cyscale-0.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.4 MB view details)

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

cyscale-0.7.0-cp314-cp314-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cyscale-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

cyscale-0.7.0-cp313-cp313-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows ARM64

cyscale-0.7.0-cp313-cp313-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.13Windows x86-64

cyscale-0.7.0-cp313-cp313-win32.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86

cyscale-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cyscale-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (8.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cyscale-0.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.6 MB view details)

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

cyscale-0.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.5 MB view details)

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

cyscale-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cyscale-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

cyscale-0.7.0-cp312-cp312-win_arm64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows ARM64

cyscale-0.7.0-cp312-cp312-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.12Windows x86-64

cyscale-0.7.0-cp312-cp312-win32.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86

cyscale-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (8.5 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cyscale-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (8.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cyscale-0.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.7 MB view details)

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

cyscale-0.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.5 MB view details)

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

cyscale-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cyscale-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

cyscale-0.7.0-cp311-cp311-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.11Windows ARM64

cyscale-0.7.0-cp311-cp311-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.11Windows x86-64

cyscale-0.7.0-cp311-cp311-win32.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86

cyscale-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (8.7 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cyscale-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (8.5 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cyscale-0.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.8 MB view details)

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

cyscale-0.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.6 MB view details)

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

cyscale-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cyscale-0.7.0-cp311-cp311-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

cyscale-0.7.0-cp310-cp310-win_arm64.whl (2.3 MB view details)

Uploaded CPython 3.10Windows ARM64

cyscale-0.7.0-cp310-cp310-win_amd64.whl (2.4 MB view details)

Uploaded CPython 3.10Windows x86-64

cyscale-0.7.0-cp310-cp310-win32.whl (2.3 MB view details)

Uploaded CPython 3.10Windows x86

cyscale-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (8.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cyscale-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (8.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cyscale-0.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (8.4 MB view details)

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

cyscale-0.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (8.3 MB view details)

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

cyscale-0.7.0-cp310-cp310-macosx_11_0_arm64.whl (2.5 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.7.0-cp310-cp310-macosx_10_9_x86_64.whl (2.6 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.7.0.tar.gz
Algorithm Hash digest
SHA256 2e99f26c301a305fbcb446ce3be058cfb39363281952e1e257b7f0b475e477c3
MD5 265dea3a4901a12b21aeb9f6c81c051d
BLAKE2b-256 28bac9603a76e59591129f2587b3dad79ef1eb86ea1389aad786aeabfaef7cb0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 2.2 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.7.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 057788e6ff4dd10547c4be5bfdd17d960885e4e49e17d792581425dd87aac461
MD5 5c7d9d3b9ff1b7af5261c9a0fd3be413
BLAKE2b-256 e554d38e35771793761a47af7445fafbb9c7ce120bb8fbb2245d2619b37c7860

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 2.4 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.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 421fef263d398ab4c3da96c808cc87204b27101e85ba2fc3def16cdf834db475
MD5 65dc039615814eaf887ecb5f8e476c5a
BLAKE2b-256 ec5ac7536bed011898970c11a15a6e194ca6ad1fcc54f6b4b3ecfad5217a0024

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 2.2 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.7.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 41ac8cfea89780fa4f7c39b78a95e85ec7967ba087598ff8fd058d56495f6865
MD5 74d4e551005103d77873b4323e609f96
BLAKE2b-256 27f7a06ba6ee8bb63989379b949c73b8be7e9c5ecc52b627c8c6e02e874feb1b

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bd7d8154d44df4ca5a55348cbad17e959c851cd755c6729fe24a061fa86d7f80
MD5 06edef628e041a6fdb4b57c04e57647c
BLAKE2b-256 618cad8bee93676ae97ceeb3604500f8dfd8299778c74dc0fe0d1b8fe026b09c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0c6c11c120c87a783ad1009be9c5df7945f00a66cc71dea036040534eaf67916
MD5 ff6922ce1fced93cd2049c0d473ab829
BLAKE2b-256 132648ad425d10611b0324779d8504989d5ead1d332fae46b333dfb40ee14934

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.7.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.7.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.7.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 b7a88a87306c68af946342a82ddea7ae29ce80ce5d57859bd104c34ab16e7e92
MD5 0174bd02a17beefc74ae3d38b0c5002e
BLAKE2b-256 ffcf84e443a51117b423c771710fa9190712dfadd823ace96515c5838600e7c7

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 06bb1157406802a141a96c026893e9e9b3456c4e81831722db5b45bd6d323397
MD5 1238068cf70eea75cddddfac926b65c8
BLAKE2b-256 60e66455739f0f3e76a1dc29b5197f522997eaf6d9b87f43399c881e8232bf71

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3cc4a3cdeef17432d5ae935ce1dd5bb22fa13deb785862d48951094ae670dcea
MD5 d329b2ab3bd47ff742f8acb3e5bd89e0
BLAKE2b-256 303804322e38f6e2a30e1dc89d88b64fe7c240b981ae69d74f737aedae9811b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 9ca22a4ae64574d9bbabebd4c6ec4d7966cc68a1150c7f4cc9dea6dd6a8f48ab
MD5 1c07eb1fc54f643d74f1ebc555273740
BLAKE2b-256 97827c327e6886b5b8a6ced0973bff699e98cebc09757ddf1ec942b113a662c1

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 2.2 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.7.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 60fbffda257440466702fd45e5a4c98d50e6eda8612842d53ab776aa8e1c339a
MD5 f9ce87d17cffc0e2d23d30e0fb3e612c
BLAKE2b-256 46f148c79a0dd35fa7e0d71c0c70f1a383376f52ee8fbdf3ed5e1f234a392711

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.4 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.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 7649ead9aa600267e01663376ce32459e6ce7ef142da595818086d0c86e90ed6
MD5 b1114923d52a60bc5be238e8de954376
BLAKE2b-256 d1c8291b6c679db4d1855acc0d311863bb3034a928223bac1724c2cb5566250a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 2.2 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.7.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 a38e2fa3290d3f012be36be9434081d9de69ba32c03c3afb988bd346665f7606
MD5 4c596e4d6903bc45347867bd74a521c8
BLAKE2b-256 aa36c51b87753ec8269bd5d3fba642cbd34df59f9506ab5aa448ef0910046348

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc6cf0043aa6b561702a4f580600354bd1eaf1efb1eb92e362746e7c9b44765c
MD5 08a12b7e9f41cb0452f18c1394bd057f
BLAKE2b-256 2c45cd31b86b58e37cb1c71e818bd4308383f49d7df4190f25bcba5760aeff1e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 19efd877f93983bae320858c3ff9bdfe1b470810bf7759361d411bb1eb7e8d39
MD5 80fe43631c213ef91e7919a4edc4800b
BLAKE2b-256 20e7f116be9e22df59d0c96a208f432a586d9c6c0ffaff3de94a3e11e6641c22

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.7.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.7.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.7.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6d918b00db7e4c56c63e908343b9c078078b6e9a4edbe42fff67068e098f4f6b
MD5 3e9d4d127f4b379756d7900aa39120aa
BLAKE2b-256 c387cb73f54bb6fab494a1d80b00a91f5e5dcc44ee2db9d0dd58cd568d1bcd55

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 ba92e949ea6cc7c4b16c44d933210ca9d87ae0b1aee4f6be4f29089c267d76df
MD5 42055b30baa4a8ae4bf317a2e07b1b03
BLAKE2b-256 5a7f29f189e9ece5550e60f7b116d300a6b40e2ea95e3a390fe3e518aea848e4

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc184b204a141f8788321f9e18ee747736d4effbb725aee44abdac0db6de2c47
MD5 72daa0bc9f837b323ee17438daa9c11a
BLAKE2b-256 16c09d47bff1fb6c276047973a3cbdce43697be88e58cb7e2be03a0ce0b53171

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 748bbdc21e6fe4025b7f91514b385d826709b9e9d5756cbbbf8eae803fd153f2
MD5 26a3d3ebd4f5b22f746b2eb414189e3d
BLAKE2b-256 b7730decacab16eced8910e86066c05c0952b0f130524dfd3877b48604a89327

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 2.2 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.7.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 708b5936ea8d5d3ef7f73580a7a1cacdb6c779b159b7105eac4f3c350254d119
MD5 c3d0f060e1d7afd9fb1773fd877f385c
BLAKE2b-256 525b81050e19d5bd7e9d23ab029be0b4f7c85d018f0e10c05c041458c17918c6

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.4 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.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 35fa85a51b3dae0c7e2c4c7f608e37698f488a4229333c3d2c7cdc548ef31390
MD5 74d8cf9354d92b50fb902762f0958979
BLAKE2b-256 6b9a4efa472ed95646bd5a735b29df5dbf3ba45c5696f26273a23e799f0bbb8d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 2.2 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.7.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 582ada237e18657a0ff8813b12e9670115417d3df0a9cb450e97c1bf18678e92
MD5 462e8453417972cbdf2925545cb83157
BLAKE2b-256 c8cc8559c8beb4b4ca94d6419ed9dca58626e41294f22f21c0b40aa5ce670e54

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 499f653b3d3bf0b07a2b95b5be5df57751818c2ae4870de8c8ba500ae1f89bac
MD5 eea0b34fdd81c9667627c11062096e04
BLAKE2b-256 7c69f6ad5692516911d259310ca812d1fb5504d61115178acdc9a758153a7c2e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d00c799abd1663aabc509d56cb3b06bfd78e9ae6f40ce095e8e30d60ff19fcc3
MD5 51b0225e9b763d7b032c8d321f456da0
BLAKE2b-256 60085663ff865d735f74948b85006350dfdd8ace0c136e46c7e8d44263817c4f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.7.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.7.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.7.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 849e8864b7bb91e4b81313cc8abf2618bf11015393bf436bb7b2e70b6c01d550
MD5 5acc50b358faad03b1e062992de8aabf
BLAKE2b-256 d211c423ea2e45b79890b455d2f05d10ccdacd721e8dd04d08a537d6922b0992

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fb732d72f21411be94faf01e109ac063f88687c926fbff965c6a51f4e875c0ad
MD5 eb17e7fdaa74fc310b259f6fab49c04c
BLAKE2b-256 2c581dbe7f269a1a07852af63d665987d5c1ff5a46b3254b35d2a87f271a8e59

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ba5a1288e192fdf8c86563d8f0c2c70ecc4871326038bcd951b60a5b4387d21b
MD5 c63837957f7da07e96b0061880f704ba
BLAKE2b-256 777ed6b0279440906bfd7b1ce223469ffa0ad61680cff854f461d8ce2b5ce6aa

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 2681a18fad28f5a4c87445de492019c89a66dd54e6b61a5c21a7441f6e2f4c56
MD5 4a85e15e5de9652b0afbba988a1dc4c2
BLAKE2b-256 ca412f8a0af597047a23ab09fb6caec58c5e76623442dd1f3291494dd279ebe0

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 2.3 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.7.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 12e33657befeff0fe51ea31317b16924773a0518fd1c6e22c6ad3a02ca824023
MD5 25b61591f88c2f63216d0bad5e926482
BLAKE2b-256 d17709004c8ca34ab4fbb5efbef6bf91b70e47c2547655082aeada3ee532f68a

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.4 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.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 1e71568407d4abf6e971e4dad1c213f0e935fc21d1bafbbed5a793018d97b543
MD5 e3259c7ec29ba25f27ab449ab26fd87c
BLAKE2b-256 e30ed71f30e325121f6ed8068d01349f6fded65bd68b7eae0979850502515d1c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 2.2 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.7.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e13f8a1b475812ed4e6dc035e34855b806b2cda37c99734ff4188de442a6487b
MD5 a36776f7060d3f3c42e723aae3813d8f
BLAKE2b-256 3a92fa1a014a04983ae8a5f74af3a8d59dec09d8bfaf6ecbfcced00836424b3f

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c8c0250d7994257522a64199d0f5354736acc11c9f73fb44b43cdc70885de9ea
MD5 7647fc774edcd3af2253188b168e74e8
BLAKE2b-256 9297e543998533b4b356bd9f6275da3c42491e2ef9abfbc1502cd9b7c4a39f4c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2ea275ad0ee01ea20e4d3a2c15747ed3dde6c9a05b8a8e18a8e02c136e9fa4a4
MD5 f523f44c66f20207dcb1b83a365d3dea
BLAKE2b-256 24db3aa33fa83d09e5517d28878387e75702ac13fdcd96b6a07aa3ca56b49b17

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.7.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.7.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.7.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ac472e855dcb3c4a7f96023387ac3a80ef0e1c2fd389115a112b238477ed49ea
MD5 47e0f4a6ff45c5545b1ad7b062d45bc2
BLAKE2b-256 362ffbfe34f32b1d1231747a6373ff56a69ec7a4767d1b15c20dc06737f2445e

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 e415a2dc9d63bd62be732530e1060e0aeea33c0b083a88b473b291dbd359bdef
MD5 9b881e3db1a8a75ead7f066d24092da2
BLAKE2b-256 8068682e599341e8d93be3a1db12d8e77bb43cc99f9f15598f0c24d329a77099

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92f3c9569097ebc1a6e02f43d8ddac81ff5512dbdceb9e2c8946a6ffab124d1a
MD5 f3f41e1a15726c4a719f19edf78fe58b
BLAKE2b-256 13bf6fbd23a05f29d5aaa2e258ccfd92d34bd705256a6efa688a96a83e1cf2b8

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 35e3e5382735c65e0fb800de1b12a66e7acdd1dc2c56b9ab6e84eeceb7d1735f
MD5 1e1da1462418bcd556ddeee456604787
BLAKE2b-256 74605c409b2c6ebcc02e1bac8b4f1ac414f50096b31cc0bc97e14d4ab52b6078

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 2.3 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.7.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0bbdece9f9c712c90ea29e73a844ddc026162ffcfc4e6f59dda14226bf65f56d
MD5 1c0871983c5c6184c2be347f705013ef
BLAKE2b-256 0c1a2ce3a90a3ec941a96cc8613cc3b3d777f9bb123600aea88fa7b0bf27a10c

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.4 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.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1945110bf32866d7e04873bf04fbe37c90583d81380472f95b8f3cb6527c5d1a
MD5 14874db4b2d56d58cb49b8d7f29be750
BLAKE2b-256 618d239a5abf192610b4fe84a3ec9f47fd96aba46cdf4bb915edab2ed9fcae0d

See more details on using hashes here.

Provenance

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

File metadata

  • Download URL: cyscale-0.7.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 2.3 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.7.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 1866aab106bb1eac0a01996ce18f21dc617e7dfc51b70cc1b57128f36e3f2e1f
MD5 106c13c415a103cf0a6a4000715d2250
BLAKE2b-256 852adbda04fcff31a94bfd57fc317c91188eaf66ab85301a4634d09caeb08bed

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c5de27d1981f1307c19340dca27cc00b71bfd7d7f471cfe7da6e42d1845c51f
MD5 b755d05d6bce01e8c56fab2e64cfc7ac
BLAKE2b-256 10309daf65eefe0cb5bad791449569dbd949fe908043cc65e5ea8d85ada3dcc9

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 df1337a01366b86bf67eb35e42355bdda47064da0d48bf26ccdf4871e9c735b1
MD5 c4b45b65bc525b9eba62ce9d118bf8a6
BLAKE2b-256 5fb4432fa62912b71605c03b2199fa6f29b020d9f5b15ff362e952462e697aaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cyscale-0.7.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.7.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.7.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 201325aa480358d283ea636d4cf6ff360572bcc044c98867dcd9f74bef4db3e1
MD5 5b1770c76bc45f9ce7856af4aa1e158d
BLAKE2b-256 3248ccda30506a6bee13ab6b6f40ff2a3ba57033c8aa6b6ad61cb9c971dfde23

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3633437af6c7d90b6119ffcb447248ca3b0694a24a112ebd1f056d2ca5fc3a39
MD5 d6e86adba8a0138572f5e06c6c82a226
BLAKE2b-256 703053d57bb0a2ec824f41309d13fd4e418eafa6859f9aa181ee9f54dca6f5d2

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 223b00d77cef760e70c528ed97c1fdf529197573941e3dc86afd671d2d7f3829
MD5 a947c2e7e44765448a607568f5262b0b
BLAKE2b-256 90f5c2c997992d7fc22e59ecb18bcad9e8115cb26eb8f1d4ee8fad979edbd62c

See more details on using hashes here.

Provenance

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

File metadata

File hashes

Hashes for cyscale-0.7.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0622d66b13c5c0f0f66818dc865331aba99629fb75e03934a522a19d70723ae4
MD5 f50cf6a7d0518e2f01475e41ec2e11ce
BLAKE2b-256 5420ff07e87e8b2f6aefaea0c7a102eb1fa2002f075372607465ba2a72cff619

See more details on using hashes here.

Provenance

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

This release

0.7.0 This release

46 files

0.6.0

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