Skip to main content

A Rust-backed Python module for decrypting and decompressing data for an anime game.

Project description

Sayaka

Sayaka is a Rust-backed Python module for decrypting and decompressing data for an anime game. It leverages PyO3 to provide a high-performance decompression function directly from Python.

Installation

Prerequisites

  • Rust (edition 2024)
  • Python (version 3.12 or higher)
  • maturin for building the extension module

Build and Install

  1. Clone the repository:

    git clone https://github.com/baiqwerdvd/sayaka.git
    cd sayaka
    
  2. Build the module using maturin:

    uv sync
    uv run maturin develop --release
    

Usage

Import the module in your Python code to decrypt or decompress data. The module provides three main functions:

  • decompress_buffer: Decompresses data using LZ4 compression.
  • miki_decrypt: Decrypts data encrypted with the Miki algorithm.
  • miki_decrypt_old: Decrypts data encrypted with the old Miki algorithm.
  • miki_decrypt_and_decompress: Combines decryption and decompression in one step.
  • miki_decrypt_and_decompress_old: Combines decryption and decompression for the old Miki algorithm.

The function accepts any object implementing Buffer protocol (for example bytes, bytearray, memoryview) as input for the data.

import sayaka

with open("compressed_data.bin", "rb") as f:
    compressed_data = f.read()

decompressed_size = 9796
decompressed_data = sayaka.decompress_buffer(compressed_data, decompressed_size)
import sayaka

with open("miki_encrypted.bin", "rb") as f:
    encrypted_data = f.read()

decrypted_data = sayaka.miki_decrypt(encrypted_data)
import sayaka

with open("miki_old_encrypted.bin", "rb") as f:
    encrypted_data = f.read()

decrypted_data = sayaka.miki_decrypt_old(encrypted_data)

License

This project is licensed under the MIT License. See the LICENSE file for details.

Acknowledgments

  • PyO3 for making Python/Rust interop simple.
  • The LZ4 compression library for inspiration.
  • Lz4Inv for providing a reference implementation.
  • YarikStudio for decryption logic.

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

sayaka-0.7.0.tar.gz (11.2 MB view details)

Uploaded Source

Built Distributions

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

sayaka-0.7.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (491.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sayaka-0.7.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (524.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

sayaka-0.7.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (594.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

sayaka-0.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (501.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (346.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (468.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (326.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (319.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (345.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sayaka-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl (487.7 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

sayaka-0.7.0-cp314-cp314t-musllinux_1_2_i686.whl (520.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

sayaka-0.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl (591.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

sayaka-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl (499.1 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

sayaka-0.7.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (343.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

sayaka-0.7.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (465.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

sayaka-0.7.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (323.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

sayaka-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

sayaka-0.7.0-cp314-cp314-win_amd64.whl (171.2 kB view details)

Uploaded CPython 3.14Windows x86-64

sayaka-0.7.0-cp314-cp314-win32.whl (163.3 kB view details)

Uploaded CPython 3.14Windows x86

sayaka-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl (488.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

sayaka-0.7.0-cp314-cp314-musllinux_1_2_i686.whl (520.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

sayaka-0.7.0-cp314-cp314-musllinux_1_2_armv7l.whl (592.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

sayaka-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl (499.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

sayaka-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (321.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

sayaka-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

sayaka-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (465.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

sayaka-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (324.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

sayaka-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

sayaka-0.7.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (341.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

sayaka-0.7.0-cp314-cp314-macosx_11_0_arm64.whl (282.9 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

sayaka-0.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl (487.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

sayaka-0.7.0-cp313-cp313t-musllinux_1_2_i686.whl (520.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

sayaka-0.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl (591.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

sayaka-0.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl (498.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

sayaka-0.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (343.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

sayaka-0.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (465.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

sayaka-0.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (322.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

sayaka-0.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

sayaka-0.7.0-cp313-cp313-win_amd64.whl (171.3 kB view details)

Uploaded CPython 3.13Windows x86-64

sayaka-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sayaka-0.7.0-cp313-cp313-musllinux_1_2_i686.whl (519.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

sayaka-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl (591.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

sayaka-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl (499.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sayaka-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (321.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sayaka-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (344.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

sayaka-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (465.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

sayaka-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (323.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

sayaka-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (316.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sayaka-0.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (340.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

sayaka-0.7.0-cp313-cp313-macosx_11_0_arm64.whl (283.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sayaka-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl (286.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sayaka-0.7.0-cp312-cp312-win_amd64.whl (171.1 kB view details)

Uploaded CPython 3.12Windows x86-64

sayaka-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl (487.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sayaka-0.7.0-cp312-cp312-musllinux_1_2_i686.whl (520.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

sayaka-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl (591.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

sayaka-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl (500.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sayaka-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (321.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sayaka-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (343.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

sayaka-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (464.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

sayaka-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (323.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sayaka-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (317.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sayaka-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (340.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

sayaka-0.7.0-cp312-cp312-macosx_11_0_arm64.whl (282.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sayaka-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl (286.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sayaka-0.7.0-cp311-cp311-win_amd64.whl (172.9 kB view details)

Uploaded CPython 3.11Windows x86-64

sayaka-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl (490.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sayaka-0.7.0-cp311-cp311-musllinux_1_2_i686.whl (523.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

sayaka-0.7.0-cp311-cp311-musllinux_1_2_armv7l.whl (593.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

sayaka-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl (501.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sayaka-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sayaka-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (345.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

sayaka-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (465.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

sayaka-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sayaka-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (318.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sayaka-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (344.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

sayaka-0.7.0-cp311-cp311-macosx_11_0_arm64.whl (284.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sayaka-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl (289.1 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sayaka-0.7.0-cp310-cp310-win_amd64.whl (172.9 kB view details)

Uploaded CPython 3.10Windows x86-64

sayaka-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl (490.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sayaka-0.7.0-cp310-cp310-musllinux_1_2_i686.whl (523.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

sayaka-0.7.0-cp310-cp310-musllinux_1_2_armv7l.whl (593.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

sayaka-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl (501.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sayaka-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (323.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sayaka-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (345.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

sayaka-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (466.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

sayaka-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sayaka-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (318.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sayaka-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (344.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: sayaka-0.7.0.tar.gz
  • Upload date:
  • Size: 11.2 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for sayaka-0.7.0.tar.gz
Algorithm Hash digest
SHA256 f38f9e0f5dc23dd56cd13a734575986b273b881f07b86a11275beead89385192
MD5 4fc910cbc489b4d115e66544a0a8f158
BLAKE2b-256 19a332595abfe5ff047010be66b97ac9911a6d916e15688cafe4a01fa4c3574e

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99f96a372326c1e64feb523dd76e3711d0f5bec03f111a695b4dfe0ee3837ac7
MD5 4778a4989b265f816eb6a0f85ce92f5a
BLAKE2b-256 ddd11dcdb5de2a3157596afb6c19666f643684034da1cae14c7b4a1ae307fe8f

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a8f1c484fd6251c1712e436428284a61861151942af5ed8ea060b6dcbc35456a
MD5 6f4319a466394822b1e16136e0d92ef9
BLAKE2b-256 bf705d332d906adc6d1e6dfc89007b33074a48aeed63ab0d473703530acd3939

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5da475a5af1d38f1ebc4dcc6485805da2bfb5f051fef60c21c2ea4218b90cab4
MD5 8d101ff067dbfc86383bb39d9f28721e
BLAKE2b-256 93ef078ea1b76989a3e5b3a56fa695e993fced48979d929bc9826b5010cef5d2

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1084e37f0398b2c527c116e4eef6421b0b9f1f815e4613e553c7c7664b81b63
MD5 7f66a943a7292595b433ca01cbd39746
BLAKE2b-256 0b822949cd0d609de10e8cc24275038e406787164b4403da9d92c3db02fb8f58

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3a1cde825f76e445fd948ef26104f12634f26df03b3bf06d1f198e31bbbc3d9a
MD5 d7ba32034a191432baed77d9c9cbf5e0
BLAKE2b-256 8bf983d1fecef4030d77b352374cd2fa9a07f912de18ba740e84ef51b4b92e9c

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e79723137a1db196addbab890d960bb4536d3963c8b99114b27c5a3714c4471
MD5 f9d3aed014a3070a498fa8963a32fd94
BLAKE2b-256 df0030125a74f36a3b5b5622e6d15a78cafbbb73a76498ed1280243ff5927ca6

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b98ac2a30dd660ce49a5a91f64aed9fa0ee157c3dc8b202f9a6666b0e7d79907
MD5 38c1acfe0bef2975a9042e43593bf6d6
BLAKE2b-256 be5c5e1aec125e8dd7870074f15a5a18c376f91abca86cf0eb57922d4757cd15

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 dc9328289e0be28b343b57fb31d3a7237ee7c38dcd199d04ccf370ed894447c0
MD5 cb1e8102cd55a81fca7d77210c79c37f
BLAKE2b-256 c05e9ac36e8ce49e1f25d312b6a7225782d46b688ce0a3ee2d21be97f6a9b319

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0d940e0c6db8789512bcdfe730b6c70424c5b7d9913a7abb03799d947df1801a
MD5 ab7da04647349be1d04d561ec1b238ca
BLAKE2b-256 cd3db5954f5ceb5fafbedaf1dd1439670807b2eed2b95764ea62fc353d4e83d0

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a6d68bb58e2571e02bfd86e199f2bcef24f480d2ea4cfde9f706b6184ec47c5f
MD5 a4d4dd2fc7e9663a9bd82e77622f0735
BLAKE2b-256 7b3c2a9216e821f9e37e20b6209bdd609a865b90b9e580ae93a1f9f723959fb9

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23b0724b89389b4f8aae42e2b98309d13b5c891b6e59d057388c6e3dc786e8e2
MD5 f1630d3ba330fbb6803721014392fd64
BLAKE2b-256 cf52c90ef5e59271cfaec0a4b5107b9a115a67a7e831c84772a95c4be4ebb2ce

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 69a8ceda64f3b3600fb2da9a8fb076e2e796c4fa829aeb36dd2efeca89a2b8cb
MD5 b4b177c6baaf61ce058763dc1f8a1f31
BLAKE2b-256 319bdbfe25d699afd73726003dfadfd069751c4646442d1ae8d2a2080a7825be

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c24226693eacec4fa26c6266e3346a25b8dee48140b1513ba85b5875d59a12a3
MD5 8f12553c26651dbc8b9822cb0d5fe4f8
BLAKE2b-256 a8d1dcd05a1f029235166c3c59f42b4cbe6a73b61ee5652f8b49c1d60d13d57b

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9006f72cb47af3eb505e5c4664bfde1ef5ac3d2e4a8be8abf7c488abbfca2645
MD5 aae2232ddcbf1efcd13edb424cdd0f93
BLAKE2b-256 0f34d1d4b37907b3fd51005718a0adef1cc7c99eebb31cceb503bb88a5a0ec06

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 205b820138031dfdfa665e70a490a019fd2fe922f46d16638ef16229ed88669c
MD5 10d4ccba45d8695752fc90923e6dd41f
BLAKE2b-256 4239457810a05c045630ff412d7be357c0920667701b2f60b7791048d7e89011

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 386c75370d7837dc74db5aac8f01cad03f36ab8eeb0f9db23700322bce014efc
MD5 44c630a70b93dff4a6233c4bdf718b67
BLAKE2b-256 ba54c90fa7e0e204fe75d4c5545782800eb68b9365aa751472c66e86f808d004

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 52e4452bdf8b357bc18ebf1bfdb6804fa72e86f98c41387ae770f42f3df72d21
MD5 e230cb4a2a99261b305d488a8a4c6232
BLAKE2b-256 6991427a8797d74b7f1d64a961130e628bae7f81969f8f5ebe89236cf7a6f5c4

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ceb02211bc2064a9d5426598a3b6fa89a03d0aafe6afc3a545f510e445dff584
MD5 4f900277d5b1b79885f1fed5f902d749
BLAKE2b-256 9deebc9d6b6ab89a47c6ba9ea56659a37f45c7f849a8a6966ab98550d982da9f

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: sayaka-0.7.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 171.2 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 f53c0c49a5db01211260d696438245ad23e6750025e48ccc1cf91a6efc31bfa1
MD5 1a092c19833c12c1b6c6a3596be2d6ba
BLAKE2b-256 2ef98c02fc8fa513ccdd3d396df126ddeccf7734db7013e9862cc3d11aa6aee0

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: sayaka-0.7.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 163.3 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 730e1d8057ac6e36416ea70d69ed2fcd01e765d25b249bf382ec9ab29ba6aa75
MD5 3f604225aec57744916e4001254cec36
BLAKE2b-256 3cd364c3002dc17aabdbba316463eb22ad2cf7f5416439e3de083d70ec019b2b

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2af503d9659ccd8b297f1af43410d59cad8823c065f5ec19ef695a3d9fec4cd1
MD5 828f761d19676e4bb38016d6eeee5af9
BLAKE2b-256 b7687db72ec4eef6155d7c9a62369b6a384b3c8d618ef99b7f55546e29edaf74

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b2d4d8d04cfa4bdb047c04bfc5273bf9fd2c72c14adc897a677f3035ff43e60
MD5 6fd45c06eb155a9d997d4d8cc03b909f
BLAKE2b-256 26c4df67b7db276def12387bfb9af8305bc5eeaf60b3830800859d0af91f9529

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 07128626089639a14f1288ba5efbd455c56c9de5397d05c35e4ca462c762e2ea
MD5 aee66fb44e92431892609806011e6f94
BLAKE2b-256 27c156e28326e5223513e4270ea1db61e55c8b87bc31d9ee061e9c4506f2316a

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 29865059fda69dd15885c5a0bdf61d524e3acbe8c3536c08bb67f05b4c861492
MD5 eb7d2a33f86eb13a1b21dc050f3be162
BLAKE2b-256 60d660944a71c80ae367e8c17b8bff8d48a7d7ec83ce5b2ce39bd2710eb0584f

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3dfebce7dbbe324a2878176154e017a6c34c8fe4c735b5c39cacf00a284c4f9f
MD5 0fb22711124447dad45a9e99b1d9bb53
BLAKE2b-256 c03bb9caba6b64deb731ccf4612266eb1abf07f53d88d1d401113b4d45ee32ea

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 30e9d76aa45efccab3629a2c2043f0405d58ebb8daeb0681e91c49f2c0e12783
MD5 744bbe6862b75d3c6ba35aa06d573f40
BLAKE2b-256 176b6c4237f344aa8eb06c86aace6f84a3aebb5ee3f51df6f32dd0dce0d433f4

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78fe5c345d03f31dda19a6c4c1576d5df5fbb0279fc0ee1f9b7f019312b78fa2
MD5 b696a2b811d0a268f406d3b37d9ec92c
BLAKE2b-256 62c77727d8ae3e0f67c42d190619d5d07a15309018035672da1710fd12ac43c8

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e8f857354efc4e420288bface9b733b518598572eb909257e08deb687092f048
MD5 07a9eac6a356211b178fd946a7b91657
BLAKE2b-256 4f3312f9e7d77c8e79977af67540132f87f38ae374ef093d80e4f49f81de49b8

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 88dab618a5241ecc055e4c8c45e571c648fd079e9323067f713912cc949b6fd1
MD5 b9c7f06cf1d77d63077db88c556ada2a
BLAKE2b-256 b33a99cf2fffdea6a504de38b26509e10b1f3fb0f12672721aa838870e9d33cb

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0cd9c48d75547ea72d5c03f87f1b8688eaa1644d10ce01e5060ae48d4ef6156e
MD5 ce6d8a60bb1cb6f4daa265ec81d805ea
BLAKE2b-256 36ba445a4b5bd3d13fbb4a31bd8c564c1f4a81aacb5cd722b95d6cdcfed9d2d9

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1cb6e5780767f6de2e700aa7d6b1baa7cf22609fdbd914e6c4569673b78da472
MD5 856aa213515b2b4f97877cb14577fec1
BLAKE2b-256 fbaa0c67b28401a5204a9be02672d0435015c832acbeb33fd4f0633949d8c6e6

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ed58543552c946c4a132753ce881be99ff0a7cc344331f40778bae76ef2008e7
MD5 df56b6db2ffba65be6f0290400be9cae
BLAKE2b-256 97c2d5ab14acffb638e04181a534a925ce24ae35f984bc7462c0fbbd0899e27c

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4a5bf4d57ae73c03cdfc8a954f1a137e0488a6e690e6f60e93d48033b6844638
MD5 bdb7cc57089b69305af8386ba07520c0
BLAKE2b-256 e06d0c27ebaa2c75c6df1b11a760f380a5a4a04db2694e227e4429993439a41f

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7464bb76eb6fe097ae2b8986a206034eb13327a9fe9b5f75064e7d882fe04c3c
MD5 a08474933116d3ea142bff5b811ae8c2
BLAKE2b-256 9dd5d230e49703990f5b6bf107788b293b46337d3c4a965e901cc495cab8cf21

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21453ec49a7d8e29946005ea5fe01acf7aef28e48ece87eec45a938f8b25eddb
MD5 1d818217abff8a3f7886d5c7e9e7498c
BLAKE2b-256 7cbed8491439d84c7e584d18ee86168b6a78e5cfd0bf4295e6287da01357ee55

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 76108c727a7503cfd0f04b9f77818cb04622e515312bdfc2a07eb4af0bc88f08
MD5 d1f12b03c0eacd35ecdf09eeaa647d00
BLAKE2b-256 6889a49f765a91f1ed8b57d828263897e0b49aceca5de54b3d491b348651bbe1

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0ac7bf8e01ff02ee9e63e84e4abbe04b573fd27517636940f413dbef24088462
MD5 eb04bf9fbed9eecd80b1c97be190f78a
BLAKE2b-256 2128988520f4b1d6fac6d9e489d40eb10e3e9d50a9c6e3a71a436a34e4c03a30

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5772e0f4b43399756c59cb5a5ec1662cc789c72a70d6358ad146d394776a0816
MD5 7d2ec0b7cc39020b4ebf2c0316c8f157
BLAKE2b-256 3f46aeaa67342eba802debf6ddefaed905f233bef8ff13c1ccdd51ce31646700

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7d6cfd27c8f26ba93e223f6bdb5f0eeef53c94d52e2ae5efb31168fc2eb5fd7c
MD5 05d81f23c5ee157c32b31205bb2751a5
BLAKE2b-256 f9b4060980cad5bc1eb3e2de8e1b6736fae84b8a9715171cf9b39a290f7e9035

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: sayaka-0.7.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 171.3 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 47d279630b6fcf5a8ed3f0f0452e99a61b23903410f467fd77fdf6324c0f4787
MD5 e55d92cbe36ee5b19426b70149059c2b
BLAKE2b-256 eef4cab8784d37f0b0c57024548c642beade0439fc2b1b507719a6bc82c199ea

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7c5ab9a1c8674de5aeff9f4fb5fdafcf39dc3ffe84b02e68e8b38776b863965f
MD5 c5279a7355c7747528446daf9d236063
BLAKE2b-256 9bdcf7fef678d75edc3a4aac3a1d39de4cb14bd36764a5d473f6d1fefd9b5517

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1fdb05b274e63e2fdcb10db41a954d765f8b09c331e4c14a365c042c78b13f24
MD5 a6c32e94c9889370070da3c67769a8af
BLAKE2b-256 c0c9e66877f2764b92e55f2e644d9022e0512c18dec94f789b2c3ab4adfe4a21

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 018661cc5ae8e88f772d93538afc35e3d5737f45c90f2d3a19ee96e881303c93
MD5 0c0b52ec22eb036cbdb53c3ee36bf6fd
BLAKE2b-256 fd15bd7654f77c74080998746e032092fd95ac71b1724b07b0c665346ab38fe5

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bfd9d26ff109271f64daf51ce9f8b4bb52e4c893bb5b4116dbfe0288329fb741
MD5 bc48e1259815067a2210be01abae35e2
BLAKE2b-256 d1e17c8aa46fd74d911352c6d35765aba26b15659df8258f0d2a0d7ac09fc22d

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 62cdc7c0bb6de913f7ef55d2442d8395a7fc7349a9b1b14d127dd9a7723c2b0d
MD5 46bc471d9880bd1d57e4c9526bc02f29
BLAKE2b-256 60b81ae75af7a9d3d2038d38a03252ad3eca9b7e9aa4ae1013dd0a9814630b2c

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b67f168340d87789ab658b6556f4e2d6ba0a77fccefd2321c4f63d626ee91d9d
MD5 e1fe9a79eb2cea15033fc632c4db77b4
BLAKE2b-256 e24f4dd0975c4c2c490970c91e8d3492e700cd450e85766070c0144e3786b019

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1740f405faf339febde4a00071149e63e525695df5e30174af99f47195f860ca
MD5 2c1e710f8e57e69925052e0060d16a15
BLAKE2b-256 6da3dd75ca2eb6bd4facf53442e56984daa6d19c3ca02b6e9db17a86eefe3e4d

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 42eec05719ec50950dd76d24d2f0e82aa4fc5b675dc176ebd8be4a8f9196b0b1
MD5 919f59207885c9046b53e2fe75d34c0f
BLAKE2b-256 8262541e4474c331081bd6d4abce0245f2e64c55c28c3dc38099e9cbf34eade1

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6015c86cb771169413ca42ebcedc045b2d81f635b67ea9bb8fd457faf6fe0e30
MD5 28ccfaac462de15cbf87601860a59886
BLAKE2b-256 7c8275976f908ed5b5cc9e2c26e6cc17628fd2c2b21d0ae7c285f611c2594b24

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 23ab8054fb67414cc57e67179301996c4d1dd149a26404a7c3f55872dab187a6
MD5 68f72b83a3535acaf6d4c00c1ab0fa2f
BLAKE2b-256 61bbcf0a274b894fba6a804f5a1b0f4ff168edc7cd3093d8c3757eb8e8a06d92

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 49ddc2fbb91bff52f0a43ea72a2936243c5114783cba203216d30cd2a12119fc
MD5 f5b389e0ca945363bdbdfdc11885d2a7
BLAKE2b-256 9707eb618e78258f6c69d0feb9f2ad53d34d4ad188e7b0bdf3d70292e1f91b9b

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f5181a251c2f1a88ffd0671f4c8ef0629987b0351f17698edf5c9b957bdaf845
MD5 03599e78a7e2e709c84b706622526f54
BLAKE2b-256 d3b070a8f7e22dbb62356b92eecf749ac3c00fe338a1526bd8ecd4585528bb43

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: sayaka-0.7.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 171.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 90eaa996e125a61d45e38307e73dbd5ef8ea0a6a70edb7961ef7eacef5703f69
MD5 7aeffff80f35a3e4aab13f8f27e43416
BLAKE2b-256 ea0c954f13cf6b8c877f52485d2bddf877fd6c881e9326f6434fe38b9683a4ab

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 053f6b244b125bc6b992216a1cb936741a022530b36ec54fac649d6e884718fc
MD5 f45b58d6c74e92b8f8bc5dfe8d897a81
BLAKE2b-256 bd3a46dd61daa740850e2c7b349be584b0d1dbe29ab1e6833a3d3cdb5ecd6613

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8f4771abb961e57dbe52fc003ef987df4910166715f36bdd3dd4ec8d923dbd13
MD5 c219e334efc6de6b38e08b25092194aa
BLAKE2b-256 58cf9d78a90cb3fae4e0e6a04b3c7099fb7c3bff3ceb286cc6870ee430a97a86

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ea672b239464d3eb359be47a06eec85797fdcd6255d1b5b6f14b2e4b226b3c6
MD5 e604209a7242ce755807bdf5657a0c64
BLAKE2b-256 2a17c485138581e83ab56a0f99d0531f3760f867017882135f808402bbaf2d1f

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e619acfd6f9391971b35f7bf5afe7e610e45a792b64856230e6ff879dcd1d9a2
MD5 5a5ec3d53626ec072b321fff8a6394a3
BLAKE2b-256 0b65793049ef0c962a5d4572a8a1c0b942b796ddd7177efae28eb121a2b1651f

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b423a82bf3d2f928de74c892f2d24740c200d7e08057cfd8297d99d8bac4426
MD5 7f37492d2efb9d530013fb13a79d40f9
BLAKE2b-256 1f3bdf367000601578723f4cea863ba4b411bbe89395f23c1188f158abab2d67

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4184f08b621143b51fe2809d102170b43d5fd870b3cb94f36f68fbbcfd65bf87
MD5 55f882d58e1e787c49f354ac54eb3f2a
BLAKE2b-256 8ef5cdfb3ae2d8fa65811f7eef558ed48e6684defb2da0bd165de09d473e6a6c

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e7c816c59c5c27e17ea5c52465ff995019c8806eb090e5a767ce16c81b70657
MD5 2e8f4ce28bc1b4228f93380c8f2d1149
BLAKE2b-256 4108b2a5aea823a1659c01281125301f47260de0518dfc07b33b70051c1bff2f

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5984319828bd2caafbb17dce54988c17b1ba2d5697dde93df41db37b090dcbae
MD5 acbde63f351c9cd2f64f9dc4dc61dfe4
BLAKE2b-256 580e94c94b98c3d59bd8d678c238c5ce85ab91426cae2a44baec88921001e804

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ec00568d796aba2d892e8acfe9e48d2457f5df4f7a0df7c843155b63f5730d91
MD5 faf9178cdabf040b75ac0b3cd0e978d7
BLAKE2b-256 4f52199bdab495fc18dbd348302bede624d2a3f32a40fa8f7ff9aa63ee1c8e60

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2a494495b81f32dac8d5787ad821107133a3739cc9b448b957f5eb1e1e32f98f
MD5 1277cfcf8a142371a2727587816f9bf8
BLAKE2b-256 24584f1eb57826b330c0b5a879ff7078541af86f2db6ee5dff08e3175a79fe03

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9f02997378b9dfe177aaf6c76d6c8e0f05dc11447dba0a768c0a05a7f32e0fba
MD5 4f0a94269381ed946065daade42b68dd
BLAKE2b-256 f880e692d5cc05a1a30539652e77d236efc47ebfc9b98c6e58f25497b7b3137e

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d850e7abb3ee81b17016d31c62488783960e301720ea550a8149334e83b5cc6f
MD5 6849af0875f19520100f6fbac2146c0a
BLAKE2b-256 946209d4b17b1f51dea1e14c2af073141e875f2c481a0114d4769614fa2017c2

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: sayaka-0.7.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 172.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 dc3c6522358e67d88f2185d3138520cd5e5a12f9a419b4ff29f0220f174f3840
MD5 75cfed6ee23a0c182f1a7cfb742e0e8c
BLAKE2b-256 9986c5d332b848197775608127349c4912f8446b115d7e4ff5e5d9f2d18488ff

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc382facd48e78aa6c5b07ff3f9b3fd13234403f2f2412252c638d19788d7236
MD5 a651a757eff07848f3289fe48cd732b8
BLAKE2b-256 f8edd8bb56048f9b7ade44d91892f495ae6d3533c39e84a8b1e96ccc1470ea8c

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b54054e56730793f459bdfc4f5fae5bf3b21ecc952431f51adaabc562a2d671
MD5 165a7eef6c8b35780ae934491fddbf7b
BLAKE2b-256 7d397e2e52d2ca9ea83f5c04cf9cdec186ff397b3dc838e4168daa4009978fde

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96405e0f701c8d3d9e36fafb9d393d07d728b348b4d0c6779d3dececcc40b540
MD5 ebd48a30fab64ae46317640a01fd4111
BLAKE2b-256 cebe2497a5a4123cb03b0e692734abf7907208c981b9a2dc1beec5228bee944e

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e1829e17291d53a35037cd1738099d4f155991590020bbb126dac484b37c2c89
MD5 536de1b9ddeb461cabb44810c54d29c2
BLAKE2b-256 d199042d6f92cdc49c7905fcaacacd0b9eedd285eef6adb579293b73a5890aee

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29a1a2ff8dff8fbd9f8452737c467a6e83ef47452dd7faed489b6193d883dda4
MD5 a7ea07403809a45d6f05e218d762deaa
BLAKE2b-256 d7782853c323b576e03b06d7e83a786e802411a2fe17cc1444fded0fdc22fac3

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 65eab71c97f8bdde39097591e1f8d27be5e2099330256751c4588a487279d6d4
MD5 56169c50c138b9e1009f8998d2da3f3d
BLAKE2b-256 f587646a060125b8321fc63c98940f4021b7105af1be6c0c5a97fd8086300d82

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c370911100279deb4e33b9035f16e06d8ddd546e1ebaf8ec7e261cf610a6bd8a
MD5 aa51132764c14abcdabe33fd32463385
BLAKE2b-256 04e52746e311635c78492695b01098f4c9cce8b64e73ea351e066381618caf04

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 29e3df7a8d07a8a26268fc6a3b9f55a22908d58bd96f2e42c210de98b2765a6b
MD5 6be83a4170b0c73daece29d5fc2b7b49
BLAKE2b-256 29c199d6683e44bb5deb457dce46dc7c2315c0245631d2fad37dd446483570c3

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 49901daef06ebffb3d34c1271e675eb96e0d84e9f602ff11233eb0d03c7fa058
MD5 475f09af97802d6ee9b9b53400d0e9e5
BLAKE2b-256 f6ae695e638e1efc3ce8acfaad2a268104a896ec56f726bad7e29e1b4de57460

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ea3cd8de1176ff450d2eca8e39fd969ca01608857f3fab391543d5e6940fc9f1
MD5 271fe5fa1143960bcf042211207a1856
BLAKE2b-256 f5cc2cedf71bae42d9df942ce9d499e3793f99829e66b052e2d3fccbcebe92f8

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2e4a6589471e0e1b291c79470ddaeba45247d6e8ea9a0b8e85fe74a6bdc75e61
MD5 3f2982f9bda731fd97af1a1bad4bd34d
BLAKE2b-256 1065d7351f09a9a1d0f68042e96ae8c3ed6d5e0fa62723efc64f0ca9995c043a

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ca968fb4b1c447cb1b565029ef43ac57acf9ad5b9553c15232ff5c0a0a03649f
MD5 5aea99623f99aa113e66d660220e335f
BLAKE2b-256 62d448da29139053c2b2c9c1085e36362533121bcc1b487f62feb6628f4d19b9

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: sayaka-0.7.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 172.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for sayaka-0.7.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 ad6a9b419294b6a3c0e0816533e1258773275e49aa92684a810dc9a4d906d3fd
MD5 69eceb3a25aba67f6e5bc1a9785dffad
BLAKE2b-256 e4e77608c7ebf11bd8752447f8f291b4eeb31e5d7bb7dc04d78f4e6200de9a9d

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2f45f310b5d40930d46bb58ac3902f71d0bb2ee2695b5273997262e16ef72426
MD5 d3c4f03a4c8ccdc4c797c2117a658ee4
BLAKE2b-256 61dcec0850aada893782409a70359a8193a52e3db99e8a76b6f5c596120ec742

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fc5cf1c11602c4daa99fe28ae71c5c4e18005e4eed62578d4d682708780be712
MD5 eb2ec2370d40d04936ef361025c1162e
BLAKE2b-256 10a027e4c1aad6c89c4239f1ad48d8bf40a6d947f1655fd32c8f647335b3196b

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 23fd9ee173707593e850681de3e5c059c152eaee2c29f38d0a8b13d6f3219fce
MD5 90c18b804e78357e2d355f0cc375e1c6
BLAKE2b-256 d26e526eb5e4baf452b4ef2be122e40613064553cd2a908e79aa6698e8600029

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d1a394e553a23b8310a04b99e922dc307f6bb40f085729584f8cd288785c2357
MD5 a3540d784fb9c3ef2f99ae03bd6de4f9
BLAKE2b-256 89f6989512ac0b59322e5a8d208043637be0ab569bd1a8ddc396208e0d8415c6

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e6dae88b38a4394100c4346b33d287138c21b8306128d8b611a1e0f670e064f3
MD5 ef2c01a8efb282da3c33166d07dcaef8
BLAKE2b-256 68c9be2805b10428d1ff14b9dfdafeaa7b22e2d5ad775588aa3ab58dd5692b45

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 73c902188e17fe1fa5bddd7b070fd84227c3e4343fbd4e083e5de4e5b45ff1e8
MD5 666195b27d09c078f3add3d57df63373
BLAKE2b-256 3c133c34682cb9b890ad5111d51c85a0cb32860fd92d1d1a641e7d8f6e090bcf

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 956bf3fb3318ff1cc60650a68ea0319b7ba4a6d3787fc9a0cbc63dd59350f49f
MD5 c97cc3e4b2192f283397cff5d8c83696
BLAKE2b-256 dcf3c7cbba653e712777359de04fa82a26568dba5ec918415453e99cb61fac05

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9c44f325bd413ea87fa5e04d84a3f5063bbfdb229afbc1982695a2276894b94d
MD5 9b31883e61123537c2c4b0f182fdacc7
BLAKE2b-256 62b10287469d9e0f857f7e33d16a30e1ff012398b39ed973ebdb900e17c183c8

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e01eea46a93bf1a433c4d088eb3cc48b43374b1cf1311cb060e04a4f8bbf323d
MD5 0e990f9cc26702602e95901d3fff68d5
BLAKE2b-256 5c4972e0146079b412a3893178cbca96e06cc9ec47923ec7fb49a4742ded5397

See more details on using hashes here.

File details

Details for the file sayaka-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.7.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 48b1ba013c236d4011b44fbda2a67c038fa0a62ffad55f6ea3c22106cfed8652
MD5 b6fbf72aa025c287875f8b8c9a573e41
BLAKE2b-256 9c2b78d4e315597f9ae5c5686409b6b8f62a34ca71c221871a0a3802184b3b99

See more details on using hashes here.

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