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

Uploaded CPython 3.14Windows ARM64

cyscale-0.1.5-cp314-cp314-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.14Windows x86-64

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

Uploaded CPython 3.14Windows x86

cyscale-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl (6.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cyscale-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cyscale-0.1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.2 MB view details)

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

cyscale-0.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

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

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

Uploaded CPython 3.14macOS 11.0+ ARM64

cyscale-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

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

Uploaded CPython 3.13Windows ARM64

cyscale-0.1.5-cp313-cp313-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.13Windows x86-64

cyscale-0.1.5-cp313-cp313-win32.whl (1.6 MB view details)

Uploaded CPython 3.13Windows x86

cyscale-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl (6.2 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cyscale-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl (6.0 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cyscale-0.1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.3 MB view details)

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

cyscale-0.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.2 MB view details)

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

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

Uploaded CPython 3.13macOS 11.0+ ARM64

cyscale-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows ARM64

cyscale-0.1.5-cp312-cp312-win_amd64.whl (1.7 MB view details)

Uploaded CPython 3.12Windows x86-64

cyscale-0.1.5-cp312-cp312-win32.whl (1.6 MB view details)

Uploaded CPython 3.12Windows x86

cyscale-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cyscale-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl (6.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cyscale-0.1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.4 MB view details)

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

cyscale-0.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.3 MB view details)

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

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

Uploaded CPython 3.12macOS 11.0+ ARM64

cyscale-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

cyscale-0.1.5-cp311-cp311-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.11Windows ARM64

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

Uploaded CPython 3.11Windows x86-64

cyscale-0.1.5-cp311-cp311-win32.whl (1.6 MB view details)

Uploaded CPython 3.11Windows x86

cyscale-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (6.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cyscale-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl (6.2 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cyscale-0.1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.4 MB view details)

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

cyscale-0.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.4 MB view details)

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

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

Uploaded CPython 3.11macOS 11.0+ ARM64

cyscale-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

cyscale-0.1.5-cp310-cp310-win_arm64.whl (1.6 MB view details)

Uploaded CPython 3.10Windows ARM64

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

Uploaded CPython 3.10Windows x86-64

cyscale-0.1.5-cp310-cp310-win32.whl (1.6 MB view details)

Uploaded CPython 3.10Windows x86

cyscale-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (6.0 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

cyscale-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl (5.9 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

cyscale-0.1.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl (6.1 MB view details)

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

cyscale-0.1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (6.1 MB view details)

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

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

Uploaded CPython 3.10macOS 11.0+ ARM64

cyscale-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl (1.8 MB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5.tar.gz
Algorithm Hash digest
SHA256 adf97ee63e817911e60ec2f42c0299750293965799b9fcb9760ecdc39779aa1b
MD5 40d05b817e4f781a243410fc96e5e4b5
BLAKE2b-256 82115e0205cafd3189f6a1f7cea60e8d85c058a219cf9a25144bec2dfc96780b

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 c28c3b96a014cc67e8edc526eb58e392339881a6622c65032e0dadca11c5dd7a
MD5 bf118558db9bae3d7705c939378ca5ea
BLAKE2b-256 8e05c154731bfd0bad288519bcbeafb249a0418c48c6435e153754c4425a1069

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3b9f35758589e8e4991b544d4abca3c2470f1b8c3a405de1826eccdd9c97cae8
MD5 ad7a25e204a4e46b36e3a0ca103f7621
BLAKE2b-256 012e9ac68f2e2325c7f478e4ad83af5ac33b02feb5d4e42417a7825d3aa5347b

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3f7c39031e7b6dacb8087dfc28cf53121eb7964ecd80b114caa57c5dce3ddab6
MD5 2e470c5475583485676a61d6d1a5549a
BLAKE2b-256 a56cc907985a50160cd1b0e3e68b7ce99c14dfff4fd0452f7e4017aa9f6d7ae9

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5ec68f75a7ebef669928b1c29e4176a16be5da3475c6e3ba62eaaeac7ef0ead9
MD5 426e34811a2b021f2a72786ff6775dba
BLAKE2b-256 93bfb3d8007157831deba469e72018ef21b225d1f0e589f5cb0a385f9763aefe

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 badafcd27303017c3d28608b39596de8659d513b7644fdf3a167297cf987f28d
MD5 9853bc6ef6ad737975907299b46e13d4
BLAKE2b-256 e7f07e2a9cd96fb10b744642e5e6efb2e1dd9a779922ca8c09a8f59f51c41518

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 af0e06f6ab285064c541f22c236a7d79878f4ea0ee31df20d314088754f6f01a
MD5 6e3c39ac762cba5d59d66288e633a1f1
BLAKE2b-256 6b4178bb04f6d319f61d6870c1e228677bec40d3947abb833f308b465d49d65a

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 61ac418c9282030c962b54861c61a733a66cfaa70fdda6e0814366c1b5b505ca
MD5 4c9d088932ee58c71a2c86d6d76384bd
BLAKE2b-256 2bc4b5653857c8d86e25014f89c7fc4f990a19c869ce725201e9685d0db578c9

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97facb222a797fec37e50428f062a698a5618dfa340e3d2e6266ae9c90e599e8
MD5 3ad5eda9bad949b75f9f649e1663f80b
BLAKE2b-256 447592c94f79b4b00a68f87bb0e33752a41ad9a5249fa9fe955c4b69f922ba90

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 17f2cec76025fa90bac90b5155507683e5f96cd19935ad91e638d1990f733770
MD5 dbc8aa29951972f850fda805a5027cfc
BLAKE2b-256 997658975ba1a61cfc5a2af08cf649f79d72a25ef7e9d04a1c9d925a9383c29f

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 70bd1cd4f312db5b55c2bd6a83f9ee1179e76c44688f3f0fd7d188e6ee76aa51
MD5 fbe634a71d7f7ed03327d2ddb93e2970
BLAKE2b-256 40f6752c379a96f6cd6624c0be83f055058ad42a22822324560cbbb674e48638

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 1e8a3d644ed538ecaef9cd4d3d3d0411345cea0c26ba9a56747e1acff200c485
MD5 646febb0afba876e3c8e3298a52e5cd9
BLAKE2b-256 27009bdda0cd26a80bcfcbcce6e7c30fd458b7de6b5fcd922769ec7d53ab549b

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 d438a1baf3f934d2aa36923719b0a62cf81a96900edcd4a7aa914961da80cd7f
MD5 e7e654a9b840b31eb58319bbcb8302ca
BLAKE2b-256 18cc17114158454895f3ccb7f4716ae22a462451b83afe621ad30eedeb173171

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 76308085c0c5ce0c15fc49e10737ac965df80f144aafad10d2866fe1d36288e9
MD5 36209e7e502fabf3801322ae9e9ab568
BLAKE2b-256 d9ac0a72fab03bf586f98956c929c07586c3c8049eee6c4223ad351a0323ecb5

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8066e1184014ca5ad915d278ea0cd94c329a3b6c82ff069cbadc72bbeaffd1ae
MD5 094d06b5500b38faca6709944f3f5c92
BLAKE2b-256 0c07b77136ce16d96ee42acf8556666794320ca961a9830ccb521f9136cefa89

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 73b5a97a4bb80d5e8e2d2cb31b1dfa74c6381c98b2ea2f81c46821e9fc575ae1
MD5 eaa66aa03dbcf17455df524d4c2da9e3
BLAKE2b-256 564ccebce5473c4b72c25042e2c228ed683e4791bf9149c50ab69ef68386ce48

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 927e58c12da30954ef3bdf37916ba418fb621d1ddf97e976693be9397531d1ec
MD5 c9d0edb52fee35b1f8e3fda7842e499d
BLAKE2b-256 f76a7660bf94482d2f19aa2a43e923df427ac9a49332491d8c38877ecb762c1a

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f8241a23bab5c0e95e6956e754aca6ee54946591a2d9c3c7c149920715f143b
MD5 d3467412a28060dddfeab2bc8489784d
BLAKE2b-256 ca6b68dd2c5062d0038ab826ca5c35f3795396a73ca67eff74bcff9189a26096

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 691338223fee422cd0d1541eedbfb48d4165a30563c7276d0b062667b5d6ecfc
MD5 ee9870c4e49a882d68da1c1c553d0617
BLAKE2b-256 c6d26d1a8204a899f69af239636453f21cbbe443c5d027c247a234fbdbd0c734

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 e23155aa00c889c697ca06f248c2a43e4bfb0be07cc54fd5748609dd950ae2bb
MD5 a5826381901eecaa0156df87d5350757
BLAKE2b-256 11f68a0187eadfbc5b93017915b25e49e90c6b05a41e602477540ca081da33e7

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a6b5b712ae3bc0e5ec73b824f4055b2c1ca0746a00677079b72abebbde0e6cf0
MD5 6b00e49e5fb7977f629c5a5688242c4e
BLAKE2b-256 90e6e39560f56112eaf15de1c54f84164b031f991e367303beb9ff59721768ea

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 cd9bf09e607b20f36fd05d8bd42001ebfe976cc456aa4cd3bc8b6726c17ceaf8
MD5 e12cb42049d5deeccba8911a6ab2c0b4
BLAKE2b-256 0492714163a75c78fc6ba0c4077678fff3230e8043c2f3a0c3b2a9dd0ca46ad6

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5a2c983ec87950e757a0a8c2ee5f19a918fc99fa2d9620692930313a72c3b59e
MD5 2cf8b7cca1b105f4dfe8986d1713eb92
BLAKE2b-256 2923b2893b1788c3fcefc2d0e4f2cfd1e207e4112ccaa2fb8e692759224c4c81

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8933f4769fafbdbe11fc5ea30f316459184579c7e94e753d0e6d6f69b5d25da6
MD5 e76309a45a4acd4917aa07af53c41dad
BLAKE2b-256 a83f89ab03cc9b883f4b2ba5bbfb859ccaf60c33700779a90cfafa03f1a96990

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 112567b67eddb65811cb2d40c91dcf5860bb7558ff3bb28e0c2406513b3a1e86
MD5 08f737e22c5c6cc275a341ce24e6728c
BLAKE2b-256 5b85726be490d42f894f8d5584d2f7c50f804d5b6e16c5cfaad683dce2f0fda1

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 621891c5d4770c5285f53e275423e24259f56af4e57934174d0b496096f80b1b
MD5 cff12a62add96f3430ede2304f6dd7f4
BLAKE2b-256 c0c9f902ef84793cf47c667416a75b9022aec593366c281474bb2035e9cbc75e

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61b6e4d56f19a47c7dc47fdd7c61d5e0d13d14e9ed7f4da923162896edb95688
MD5 715a547bc63d2dc29b4d757c01c3e9f2
BLAKE2b-256 9dad891ab568a24f2c6da5874bf0e953cd6402c7b64754117e528cbb781705fd

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8b3b611ddef46015e1c05495a93cd2989d2fc27a0e4e7c5194b2a1c89f037890
MD5 4d28b0c8b161493662811d764568f249
BLAKE2b-256 78232774899818a332bacfa8752975be9971549fd7bfc9c96fc5d16af863552e

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 994a862189756c2b929664807266818371993b6f45186158d7c0e0c2734ea6d8
MD5 e3fcdc681b82cd30afd2b0b487080de2
BLAKE2b-256 206bda1829cb32cdb9d35b758cd9a6d4e881d6227f232276a5b9f662a9cda087

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

  • Download URL: cyscale-0.1.5-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.7

File hashes

Hashes for cyscale-0.1.5-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 7516a8c30dc2a0929449795c72b0a9660dbe282314bfdd42973a8789f53521c8
MD5 6be37fd2cbe1f9cd2ec8afd75be719db
BLAKE2b-256 de18c135830a27240dd77931303f523680911eadd2aa25ef69b64757b023b09f

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 68432e0c7f2e04f5d07abbc9d6f69ea7da1ac71610f89e0d56f13f560e360ae8
MD5 2e665d3d6ae7e98667ba2409c640b4dd
BLAKE2b-256 231ae9d892d3821c707a54edc016d1b9e50d14ed8a0b19b42dd1e6fefb2279a7

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1a74537ceac7f3f3e5bcfbe9932eb9b022baee4d34f4988786ba2198e8f29fdb
MD5 c1b356c7b1bfa7d9f4c182397189bd4c
BLAKE2b-256 fcebff2836a108f6830936afe92167e0e6b378dc85b2c6b6e51dfd2f0abdcd80

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a17ab9d7981e591af231c093b437d0717853c2df8a5e1016ad074bfe80b58811
MD5 c33b90e27d33f8442ec2a407f99e347f
BLAKE2b-256 97a26def21f27b5a6c4d8e94a95a14711743cc0682d7793fe4c215d785a81c16

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 59811983aafa2ec0be820d1a624e8792c6d9f9a6f5915e13d48dde39152c8e8e
MD5 ee872a0206c434b122ec6de7c9b41474
BLAKE2b-256 bc720bd39e2066eba5c6580a69b92cf48ba6bd6b769fe68e47768b033c99df60

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5bc7dc5437499c59624e7cef5e260f60e89df6e958a9455052db175b492fa31d
MD5 a21b965bf8aed15c2f6fc0db76dcd644
BLAKE2b-256 d775c8e82a1015d44649e6b5aed80fab8a119c18c0b37d106164d5f206917ad0

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ada059a4c63c5802b5eba81d8ec8b155d6dd2ba070c92aff5eb264b27dc94e83
MD5 fd5f3b66c7e2d204f27a6ade0f2a55b0
BLAKE2b-256 74cbf9f1571fb98a09a87bf8b1dd922fb48aee4179b4399ce7c72231d706c8f5

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 370ec4c0659613b5647a5d1d69057a340baf6ae59800e1e598f69889b59f990e
MD5 eeed85e25e064687b3c1c05da32886d3
BLAKE2b-256 91d2fa8b133c25bfc1f5ed77665aeed2854889bed6ed9741df57b44280044943

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 627d3237e773bc800a26b4a95cbf31a48a36d7da439306711972434300bdbca4
MD5 ccbf346504cc7d81e1e2cc4688cd0b6e
BLAKE2b-256 cd2b76e57f3c48e627091558cdf733acaea0cdf3602c761636808b772c841003

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

  • Download URL: cyscale-0.1.5-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.7

File hashes

Hashes for cyscale-0.1.5-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 0d7a8cb6bfc64b0bec177a547d52318cf305d946d438b9081265858385d5fb6f
MD5 8337e289985d6ceee322fc7e78f3bc2c
BLAKE2b-256 eb7624db885fe4df8125acb74cb25803d42c3e545467e3c1e6d23fd584736448

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

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

File hashes

Hashes for cyscale-0.1.5-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8e868c5593c37d994b5c5a11ec4607ca743fb7cb30c45d2aef4f67b100ad5eba
MD5 0e2b77302576f3bfd7ac323860a318a8
BLAKE2b-256 895c1018b35a41c80972468160ab4629e2d18400e1643fe5a08fc01ebd00caeb

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1d320c9d211f577c4820d906251ceb49d382a1d8208a145faf8d93351097f45e
MD5 133acf7ba1b458f352e533188e9085ea
BLAKE2b-256 029ac316508aa404d3cfc6ffb76f9af2ddfbb816099957d6e3a4d1eaef1c6237

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dcbb2db9b4891039c0b7a0578ea4d3d83d17b78273a43c2a368db7d92eac92b2
MD5 4a3c7e115c3498babe886d7503b5af08
BLAKE2b-256 5ce0d89afce46cebe2406396886e800f2eb2d60dbbdc5a72fd6fbfafb8138a81

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 013427aa92f4a7fba6bf9fdefb16f89bf7e9d0b970470787ce48cceecd19eb2f
MD5 ac44ed5602a4055c2228ba54ba15b412
BLAKE2b-256 d9df9217e262e54fe8f5a800c93ff53603e2fb3f723a5f99bcc137ff8bb18c6f

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 685c3bcd9603df319356eb2b83a21484681fe0e6ad54718f32154ccb436db756
MD5 e4d8d0e5869d45cc9b8cd6d85b9040ff
BLAKE2b-256 e65105ca50affdf718b2092fe85dfc8cffe4fe773c53abf45f1f85d8b4ced44a

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6fb837c80075f5e8f75748f811eabfc58337ff0a2b072fc14dde66b29cfe8050
MD5 d59e48623616c4c98eb9d0579336b903
BLAKE2b-256 3b9f12d1f3cf5f9872fa0a78c46917960e84a1bdc35eb94ea19f0542b5276e90

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

File details

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

File metadata

File hashes

Hashes for cyscale-0.1.5-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc75494b6017197c9db7466bade161a823a7f46245ab14fad251b21c12648758
MD5 da81f8142fbe827747804e7eed202e7c
BLAKE2b-256 ed0f8d71e7e72eb015591609d158c143e620ad7d8a4036cdd1451bfa04099c1c

See more details on using hashes here.

Provenance

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

Publisher: deploypypi.yml on thewhaleking/cyscale

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

Supported by

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