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.5.0.tar.gz (11.0 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.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (470.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sayaka-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (503.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

sayaka-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (572.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

sayaka-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (480.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

sayaka-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sayaka-0.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

sayaka-0.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

sayaka-0.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sayaka-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sayaka-0.5.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (325.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sayaka-0.5.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (470.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sayaka-0.5.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl (503.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

sayaka-0.5.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (572.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

sayaka-0.5.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (480.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (454.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (310.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (325.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sayaka-0.5.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (471.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sayaka-0.5.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl (502.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

sayaka-0.5.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (571.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

sayaka-0.5.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (480.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

sayaka-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (332.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

sayaka-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (456.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

sayaka-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sayaka-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sayaka-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

sayaka-0.5.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (324.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

sayaka-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl (469.1 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

sayaka-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl (500.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

sayaka-0.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl (569.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

sayaka-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl (478.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

sayaka-0.5.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

sayaka-0.5.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (451.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

sayaka-0.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (307.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

sayaka-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

sayaka-0.5.0-cp313-cp313-win_amd64.whl (160.4 kB view details)

Uploaded CPython 3.13Windows x86-64

sayaka-0.5.0-cp313-cp313-win32.whl (154.1 kB view details)

Uploaded CPython 3.13Windows x86

sayaka-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (469.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sayaka-0.5.0-cp313-cp313-musllinux_1_2_i686.whl (500.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

sayaka-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl (570.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

sayaka-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (478.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sayaka-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sayaka-0.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

sayaka-0.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (455.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

sayaka-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (308.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

sayaka-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

sayaka-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (323.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

sayaka-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (262.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sayaka-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl (269.6 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sayaka-0.5.0-cp312-cp312-win_amd64.whl (160.3 kB view details)

Uploaded CPython 3.12Windows x86-64

sayaka-0.5.0-cp312-cp312-win32.whl (154.3 kB view details)

Uploaded CPython 3.12Windows x86

sayaka-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (469.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sayaka-0.5.0-cp312-cp312-musllinux_1_2_i686.whl (500.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

sayaka-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl (570.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

sayaka-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (478.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sayaka-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sayaka-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

sayaka-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

sayaka-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (308.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sayaka-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

sayaka-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (323.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

sayaka-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (262.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sayaka-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (269.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sayaka-0.5.0-cp311-cp311-win_amd64.whl (160.6 kB view details)

Uploaded CPython 3.11Windows x86-64

sayaka-0.5.0-cp311-cp311-win32.whl (154.3 kB view details)

Uploaded CPython 3.11Windows x86

sayaka-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (470.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sayaka-0.5.0-cp311-cp311-musllinux_1_2_i686.whl (502.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

sayaka-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl (571.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

sayaka-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (479.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sayaka-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sayaka-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

sayaka-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (454.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

sayaka-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sayaka-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (301.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sayaka-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (324.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

sayaka-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (267.0 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sayaka-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (272.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sayaka-0.5.0-cp310-cp310-win_amd64.whl (160.6 kB view details)

Uploaded CPython 3.10Windows x86-64

sayaka-0.5.0-cp310-cp310-win32.whl (154.6 kB view details)

Uploaded CPython 3.10Windows x86

sayaka-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (470.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sayaka-0.5.0-cp310-cp310-musllinux_1_2_i686.whl (502.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

sayaka-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl (571.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

sayaka-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (479.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sayaka-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sayaka-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

sayaka-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (454.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

sayaka-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sayaka-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (301.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sayaka-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (325.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

sayaka-0.5.0-cp39-cp39-win_amd64.whl (160.8 kB view details)

Uploaded CPython 3.9Windows x86-64

sayaka-0.5.0-cp39-cp39-win32.whl (154.8 kB view details)

Uploaded CPython 3.9Windows x86

sayaka-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl (470.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sayaka-0.5.0-cp39-cp39-musllinux_1_2_i686.whl (503.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

sayaka-0.5.0-cp39-cp39-musllinux_1_2_armv7l.whl (571.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

sayaka-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl (479.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

sayaka-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sayaka-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (332.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

sayaka-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (457.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

sayaka-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

sayaka-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sayaka-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (325.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for sayaka-0.5.0.tar.gz
Algorithm Hash digest
SHA256 7d0ebcab720850321b012e32aadeff6acb3323fb5189b1e18969a36ec607aedf
MD5 d220a386f21478aaabda8309c39aed80
BLAKE2b-256 4df7038a2756abfdc04e4277bd65655f145e64ee4769622a68d70b50c6fab024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9383fc3e2344d0e1cd7d2aad6c55088b46424d58caabe6f06de698373f96197f
MD5 c41b7a1145a9025525d6b7528dcc566f
BLAKE2b-256 07bf23cc53363d2812c6703dce093a61843a121304c6bd43f1722eaf8c7afe96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0305094a83bb93245f778ba1e779186e90c375a7ab9343244876d7eafedfc158
MD5 1faa170da25d07d05c545251c295487e
BLAKE2b-256 70b95d57af6307892227b57d560bbfe4f01cf0c477673cb6dd3719f4ed163442

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0b07aba5d2460ff8c27dcbac9029726d8f830c4baecc51c6392368369129a8e1
MD5 37301eb3406d27c5dd42e574af4a2913
BLAKE2b-256 2236fedfdb0a32000d41c22150bb51ca9e1901624824f400eedaff44b8981c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0af2cfb5bfe860b2cb964bd79218360b25ae0bab170608bf62da895b0c148ccc
MD5 4b6a5b9d6d481fa62f22e002582b69b0
BLAKE2b-256 6afec1c8485548964eb91ee7766281ad35b69b9e6355b82130f793f2f3cf5e92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6a36156840bf96c972ff0ef43e18287710671061ad97ee861713dfeaf488ceb5
MD5 d2ceb5011b87d6fadd09d78188282597
BLAKE2b-256 0543ff10758f09c859ae7b7338cad3b13fbdf5d8950004d0380ec93ca99dc5f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cee83a354471776160931bf4efa3ab70270b22ac90b48b3662e911192abb1c00
MD5 e16354672fa6e870cd9ca1718794cba7
BLAKE2b-256 2a6b1c1cbcbbaee1b92bba733fe339b05d5ef838be4a7f7afa5f5d844b2eb891

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ee0d15d2281e8d159a54b514b3b10d2eddbecba2b815b3d44b315ff47e908b14
MD5 91a3b1df319492c6beb82336aef5dc0e
BLAKE2b-256 dfb123c88f4e0d7b3ee53c2c30727e582b6702f73b847b2c7c14c11ef948a406

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91d71471b5ad9257e5b0cb56ebf83e206fffbe6513b6448efd6698b0f45434c0
MD5 888d7abec4e53c643dd588646bf5c34c
BLAKE2b-256 8256ae79a302aeb1c0f53b4f71d80d7adcde861d84b0bd81620aa2039ba0534f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 53e111f410e8d10ebaa1f421779e35221bb13fe982ff309a1d7ed37828446d30
MD5 27e6c1d269e0cf975693258a60b98f62
BLAKE2b-256 9651f88e977cd1a346db2c63b005aa65b1dbe2fe15194c17b84b54982fa239fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4359cd095bdc737e7739f6e4caab53c451938cefe13a5a9bbae7767f272d758b
MD5 f477c06aa1aa3facbe04f19a97f09478
BLAKE2b-256 e15393d93c4705df631c3e528f30409fe9be80ca3ecda91849bf2241ed23699a

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b4c78d3ea6d86d037b00e457b66d783d140d846cc4dfcebec4efde854b406b16
MD5 41303b3a72e685cd8bbde9af410b0d8e
BLAKE2b-256 97a21c43e810b804a221ea2bb404ac872723a26fd4d54c7f7f889b0feb008fa4

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cf9caa5f0532351c7aa6335eb303fc7d6cfa38884e570800d9d8cdf867501b1a
MD5 be0200cb34f3ccd8ac2845704f546e9f
BLAKE2b-256 67eed09362102f0c4619cdd63a6deb19b761a76ba68cdf7e015bd9969817ff0e

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96572660eabb6aea01232fd00a176c368adf68ff58051a2e5cb0347da932e43c
MD5 e999c167c9a86a8ae5526cef3b0addc9
BLAKE2b-256 e47e2883acc3aaa72724b5b1201315eab86aa0114b768607c1b065ab2ca1fa9d

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2055e15d3693e9ed20fd90aab3b65c301070bfa97a5e8e30059e714f4fd471c8
MD5 ebbb70fe5fcca92ac912ea4afa731822
BLAKE2b-256 86e6a2307c6d5cec28b79f89d38dd5ed3757f1d2469a05eb141138b4b605873d

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32c809351b35ed4610da1ce6e575cba239dd52bd5153b220cb46857038a2ffe2
MD5 07282f11614ed451a4f0e31f46b936ea
BLAKE2b-256 44e0b1a14f01826c53abdbd5a3a9eab45decfb920baedd87ef1a7f194639ecae

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ab9cdc036ec679622c5c038cccc2ee7b473bd8599a11ac6b145f1b17b0322e27
MD5 c6156e83b2a5a2801715f1dd4f4be25a
BLAKE2b-256 5e78f52ee94d8eab4da4cac142e572e8d62cf4763f428c6ef5eae7d8e7b4c4f7

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0213a75b6e3bb3cd59b8b52e9558d9a1e12278a73fd9cd7c4cd5ed4ce0f014d
MD5 eb4f1e933063077753817d91fa2d2beb
BLAKE2b-256 355ced53e8097df27fcbc0fc1ba2f4027fed087c35ac3789401018227670f611

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0eea6ca8b868d7788bb13eef2e6cff9e0da1859f93e9e491d84de018a013d308
MD5 95c1ecda48517c2cbb716b5652b7e58e
BLAKE2b-256 9b6812652b6936359ec22d007e0852f99795fa090783081f91bef54b881c90d7

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 18e69c56173d960f4d388998027f6194e36b37d1d74447080a642c92f9050cde
MD5 76b73abc74f625694901d926c026e8f6
BLAKE2b-256 26752195704cc20289756ec1440b78785d637373138e24455ac6f99e34c327ae

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 93a3db555be4dfd663761113d60118f59e9b083fbdc992a8e2b221458e25133e
MD5 17b5769ea18751538864f94d6511c9ca
BLAKE2b-256 58588b88a8a170aecb3955d54c7b82daa66d5c8388216dca9b4d9debfe7c5097

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9c79ef10af382a3f94ffad478c4c6c642e80d87bbae4250123ff67e3b92866ee
MD5 79995d3eda20664a0f3b800d0dfccf26
BLAKE2b-256 d7bca14d563dd7c8079eb6b56e834ef83e929298b449c341a40e736a14053ebf

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b5a4a79979d78c65d075de2e1b1f7dff3d0e5ca50a5043c3acf497a06beca9bd
MD5 f0e00fda7d3e2152d6b8752fb23de0d2
BLAKE2b-256 9378f515d8f1c13d8a8c887c4346bcb84264254c5d171fce96afcaa92d574053

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e47d49ccf1e41b6382a74e4665d6f92e1159a392ef3e32b73fefe038afa5b38
MD5 802ea410df67c4c48075c2c4a273299c
BLAKE2b-256 7be325f415251ac5df25a2b0c19776609363bb49f652fbfef2d510629d97a24b

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7b7cab8937543cd02e16b1fd15be9260cc30db3e4266d8d18bab8b6c3dde24d5
MD5 ffc70ecc6b15e1c92cd281bc15c05ee8
BLAKE2b-256 9b67ea84f7d8e82c25c6c9118561f00041830fd1ba569a5b76e5243d13a20396

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dd45cf02af7e6f5cc3ecb4cd1529b10c2b4dabceb18a5c5eb2ce91e435ba59a3
MD5 f5b7f710f621992aa3007a7c7ecc739f
BLAKE2b-256 13aad8d6ee090e76219cc85b225ce20795e2c47e5bedcca080e4d6ccbc6814bf

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d45503ec6f0e059cf1b1cfacdd45d0736381e74b6bbff27e0a0a3792d94ff98a
MD5 bf274389225eeb13d3cdc2ab0b82e2b8
BLAKE2b-256 04754ec17f27ccc4ba141d8de58f288c9b72a076bfa07ecef70d07cbaa8a9088

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bdc57331aea0eac25ae06942bdcd4a0962c264612f4d0b353e177e0dbf4a3421
MD5 cd4648bed2350c567749eef3aaba335f
BLAKE2b-256 db9ca7e852ff381de09409cbcf000b23b89e1a8a7f1cbac76f427b421d9e3cd5

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b56b4cc1e4cd045947a677f4d69adc98b4cc52a8a64866dffc11ac4036028c0b
MD5 951c109fb84f3944e1724bfb4bb52549
BLAKE2b-256 d5ddb4149889d20f4ef7a03e78f19b3fc3dbf2fa2a1025eca4de0680b47071c3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2bda1349ca5c0dbd8e12caeb444dba6fdbc5ee592810b3ee77a167b41d3a7398
MD5 c8cbaa4b62d2c62137b2a0aa98c6d946
BLAKE2b-256 0d193759cbf4f09c9f368103239c9b49768e309defcfb254ce3bd5bdc95dc4e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6d4f73bc356b5f3c755e4488f751ac592f51e5e7de9dd3e4f866fa6101c1345f
MD5 d097dee665976218324d570f3fed965c
BLAKE2b-256 566692cd658e5c2b9fef684e4ebdd2a56fa77fec7374f025a7e3500d118df7e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8136479d707280f061441b3a6547ec1c7230a72cd7d5a4ba12d1f6445f91ecaa
MD5 57c32791139d740e3cd8a77eebbf17cb
BLAKE2b-256 f942502891a4bed70891e87938d45f08ac01d3ca0fc9da01fa82621882a27384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 71a76ca1edbddcbeb52df8db793e562e3fbb71da8c18ce358b2d1b7d568861d9
MD5 4660ff57602ab8d17d1b5a14182213b4
BLAKE2b-256 45aca826eac19a1b9930cf2b7643b5c2e3ee05e9f4d4043722cde2ba97ea6864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3586d55d3c4a41cff8e43a072145e44d7483398c7fa23074fde438b5008178ec
MD5 5b4e0e63a9d033ce2f4c0fb3dbc33292
BLAKE2b-256 cbfb1a3c4a31282b5a5d60e17f3aba89606de95027752781a39920bf08a578ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 106f2a230b9675fe8b496475786553d4ce9c52ed5f5fdfa134378983b8fd8bbc
MD5 b6684ffd521ed5cf07e2f590fe72a6e3
BLAKE2b-256 8d9314350918fb21f739d44b0217a758ece05371160c37398c0a7a78f0a1ac2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 363a89c557e3de71426d76b94bf7e316d517715b8ab314b1d0f1c2e050846374
MD5 4d0b3d106f19ab48d0843dda10771f4a
BLAKE2b-256 293e38694b82feb16d35dcc8218aa42f1dd4c46354879314362abc38109fbebd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 18e74ed8c2f3d8e4d1ee50d206c02c1b6feb6e83b65d7f5bcf948248d71e5464
MD5 6fc6a564052983dee8c334700e6830c9
BLAKE2b-256 0a06bdf4c5a56be509c099eee3f3d65b91cae8dba8eafb3016711c604f0c519d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0367ecd3074187ef2a51bcf0f07f6878e5537a61e4a2c29e338f12aa373c2a89
MD5 8fe7d2a5e29c74ac5bd568c42f12b4f6
BLAKE2b-256 de0a5e61eafbfd57f6c29d7db621fdb447cf02825ccd337603f0b5a0ac87bc1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55819cadbe1b70e21baba9b7195207085567d0f2106e222eae6f147a42965e98
MD5 9b6d891fabf3ac1a83424e52a5431d7c
BLAKE2b-256 457116b5afce3e744b2d78c124fdd3b0864688f66efefbf48eb5126689c908ab

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 23f58fa2e8633c7d9501ddd8d2d9abbaabacc74a42c5845fc2c93ff6119c39b4
MD5 1fdeab47ab710a20c990f769c3314318
BLAKE2b-256 16f0bf55bc7f12238b3f56214e0b7de6de419f3d0dd49cdffa862d3051bc5a3e

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: sayaka-0.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 154.1 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 6af45feee4a3419959ecc3f534ddcb404dc945010a22adb3a65642f436e7e00f
MD5 d3ffc37fc51001dd050a743e6d78395a
BLAKE2b-256 0c9b4d62a2b0f08793afa1369a08afb2a2bc685fce7ad7e1ace767b723dcb359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c83be09cdcaa932389f11056f36122274d055f651489657dda21056659155926
MD5 7b292b3b43a3061b63a8291602d7b8eb
BLAKE2b-256 b7538327402718473ba623b5441f1016a781dc7030b7e4d0ff30d9d4a09b9467

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e07a7b7d3be88a4ee48bffbc0e5e045d8b0bae32bc3cd20994669c223f8e9104
MD5 4d19dc6d7abc7d4cafc97b4d52ed0309
BLAKE2b-256 7f69a91a524fc4d683addc5a1f4f04644a05911ca16f4f2fe47e1957e7e4a069

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8210b909078cc945840c419173acaa8b33696e1fdf52ca0300e84658e2e280db
MD5 22dc3996a3acb6adbc8caf036e3f777f
BLAKE2b-256 40335e7d16911232fe59d4e766b051427ea4369d4424845ad36b5190e16961c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d445960ce6e313765fba812c173ec471b9d7d535f0d573b4e23b6110283756c8
MD5 cec49e8c48aceb514dfd511e3a8c391b
BLAKE2b-256 27ecf87d99f9af684895705b868d2f527a957011f3e3792971776e87740ad0bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a5f210018a3f7cc0dbc3c40aedaf15e344d8f1f1f6e6211f0fc51e2af59dd2ca
MD5 454082bf2930ab9a972bbc6062ad50a7
BLAKE2b-256 15a6cd21468ad1d23ccf09bcf33c42f02c1eae3a05a2891f3e2a99f0bd6c6099

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4bb6e6619a543678d4c1824395a51a19e7d30ccd834af6f9c691d514513a2010
MD5 530ac820c48a332047ee23d38ef8d85d
BLAKE2b-256 f7651019d42c7b2d3a0700ef41dccda8427f045bf4eb8eaa5b51e47af32c7690

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 93d624c461f04b6e9abbadd4f79eef0ca9dfb16d7cfea37b7fc45a334a669808
MD5 ea1acdce3e6175391e3bcd7f75b1eb4b
BLAKE2b-256 f84de997f11eb566c656297ab69a243339b4f0e49eed179e6bd0db32c6785bc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 45221e13e19ee7c3e4b9dc28fd2c237985e0fb26946624dbb3545d5486c8fa65
MD5 1ed972da331d77df9683e748d2533bff
BLAKE2b-256 2e925f75c31ee222ade8d741df1e526007db64b5f8c94eaef810afc7a520f855

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 83b88f26b080c4824ea96a4c2f57ebf9860d7578f100e260dc694274214abf87
MD5 c0857440d06b045678b928a70d886ff2
BLAKE2b-256 3f44895c3d2d12cd9d030a73f3bb3afe5a40d3951076b11a706ede2583cbf508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1161f80bfab598239a9e68654cd7eb90d13441e113600f443b4aa1ec002d6a59
MD5 ab46a853bfee8b40c4bc3ea8eb6e78ea
BLAKE2b-256 938ddae0a4d315ac2c6d2e6ad165c4d84f4827bdd8ef803f5f92526cccfa75fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5e2ef94798e5216672a9ca8c42532603001cbc1b0988d0d994762201fd2dd45
MD5 07ee108e102d71387da49d8238a9e058
BLAKE2b-256 e7c932bae1f88617aa4e79a74a54aae69a2a728ae322508bfc692c5e16e17aed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 ba38fe3a9c3936695dbd04987bd04683f249d2344d8a094ccff9953d4ef43631
MD5 f0d8249f4d4fd92610eec39fc2ad895b
BLAKE2b-256 639bf8dd00287e829bf3952a1c64d59586b8adc2505af52dc6730713350db0f9

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 e63d7fe573951382bafbcac434568b98775e4e7afe9545e59cffebe1e436d7bb
MD5 a48b0a9a8ad489c9b5d23d0830ff273f
BLAKE2b-256 0260f64fc7d647fb5110961f84a47306082d4ae5aae750eca0664b8b97fe520e

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: sayaka-0.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 154.3 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 d1f7b0813fda8920f2be877d3bf6efc8524b749a76d73374037df930e11536dc
MD5 80010889e3b5673433c7a8129942f169
BLAKE2b-256 0037c968b88ac28901f851e8b411b09d95d3a8a1c66889fc3eeabf76e27bde34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15c8016452938d98e0ae4e08d0919728232f25d405b3571962319a013a732cc4
MD5 45905c22db36fee2c604b258dc17296a
BLAKE2b-256 3bf56861b258e3c9a0599a4d7aa298cefbbc7ac463d8fa9832aa5b47a106cb0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b6891b74acbff790ce1f0fcf4811cb1e0802a5cf830605cd10f765b8699dab24
MD5 b7ee7d3a78e22deaa16f4b365556466b
BLAKE2b-256 9d785a671174db45a4da5576d424630268b6c7ffce92177a8ea2f3d05190c614

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4e6433ff34869f41272f10fdfdf4e88ffc374af9e9bd686e0ac3c280c9a627fb
MD5 2521fc49028e203acf660801dd459518
BLAKE2b-256 f9f6291ff89ab7edd04dbf3f14f1f92ea1ea1687131252942a97ae6b1fd87392

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fc4bf403bbc59fcb821f26a78a9f65ed9ea503e0e6498ce1a9955e8e7034d503
MD5 445794f86e9164cf154ecde050704f26
BLAKE2b-256 c0dff2c6e7bed37ece53df0919476016077c00f3b4e854b1cedbe6eb84c03dfb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be2bab2641903967c8fc9dc43f028707b0718d68572e175ea1e9c2bf7fe467e3
MD5 a8b73acd24c7130137b64b23445535ec
BLAKE2b-256 b4bd92e863d6396656c1d92d8bc8d8673abd4cc2e12fa4e3dd77542d17c3f7e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 18c96ebb32bb8393d7ea747402cee25e27457e36a65b84d91e868b69d1092339
MD5 41250a2e5ec40965d87660bec5b8d8e9
BLAKE2b-256 2f00c8197b562f1ec918c2434579c7a3d411725d1f3be060680ae1b78b04eddf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b34eeb69b87cc7dbd13490c1b743116ab2c5a4aa9a714ee1393dc08df958de92
MD5 8df3c2500f4d7d9bd977e327f3a00d1a
BLAKE2b-256 e3834b7d5552206f29bd10f67150bf2143afead34ca0f7b0a915c8cde12671b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 8f238cea45af68ee73324daf0e4b20c3dcf3d5417cb4737d175c718f7ed8557f
MD5 a72e9ec40f7b80270f3aad8a037e185e
BLAKE2b-256 d7da7006c352ce03af274af8aefaa054a67715cf6bfa2805cdfee431c5af7b1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4ad5944ccdae74fb1262c7f7a6d2e55571aca4350b1862f228a917791ccf389b
MD5 6fb004137ac14fd5af4f3291fab4e069
BLAKE2b-256 8e923aec4277b1aba6af58affe0a33cd49ed6d6350938ca45d903189cb7f6c5a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 35c88b7ceb590c3e5fbe30abe4bab72763f1977d6ec9679f31dca58dff7e11b1
MD5 0c69ecb43832e660474d482292daf126
BLAKE2b-256 968ce6136218e00a22e06af6d5eeef181a5d0f03222596f17dd98c433c7e232d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fc55fa36ae4860b46c023682bf0fec9903838917625d46f2c10b8dd5cc5d776f
MD5 73e006a54fa982f91b3dafa9c4736896
BLAKE2b-256 235703e31f9a82c5cba0321d262d41e9370d49a767f755f84e1da67bc774d8f5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0de4eb5cfe120150d029f125e2a5a21154b9a88a60d176dfdb536f5e57a8c7a5
MD5 d39dbbd42e7a859af326046027cb500c
BLAKE2b-256 2daf78308dc58ff2eaef56a9d93fda6088f7e7d693b231b65ec872d27776abbb

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4a2f01928b7329be089388d1245119fe1c657441a6255d85e6a06cbd86bce021
MD5 cec93304151275525609fe451815b20a
BLAKE2b-256 048e094a8bb170affbe5cef8a173e014e6559d39e80e7202f33ff49e049eedfe

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: sayaka-0.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 154.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 fcb6f727c44310db5daef65dbb98a1427822ec45b66c03920e7e8accf0b5ed63
MD5 9e55a55d391a014f793ff00853048446
BLAKE2b-256 0989fa98cc0e72a4bb4a6fa972c6fea6c07dcf2abb101ab8b9f543ae0cfd8f61

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 071b11e88bb38cfe66740e452d597a6d43ef655ee8fa8b638731223af48a459d
MD5 49ae2eae00f28b8586a81c4bb0669e62
BLAKE2b-256 bc5f73f61948b1235a4d4347967e70529d5a897e1df2916bfc0bf9fdaeec39cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 16c0d54003e1eebc721a81c7d1bad397014d468ba5002d80550eaf231b51b885
MD5 cf4a6dc8d9fece6647770ad7c4be8f94
BLAKE2b-256 4d0523481e4aec94a0bf4758d0a67518b2e8b947575f8e7bf0ad38bd79a878e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 489de5db5ec0216a19ee401d66dc4732ad59c4b84053046bbe6b96f7564f1124
MD5 7dfd313c3f35d82aa36668f927eb9933
BLAKE2b-256 47aa7976bb8475388f532bdc8bacfefaabf85ef28e6162ddc12fd3e4932eb781

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4490014e6c4276da817d80c1c9b58ce38c2ebaab452b0e9c52f346309d8b851c
MD5 ebd0d0f45a064aeb717f48dc6a3ece23
BLAKE2b-256 adaad99d09b1fbc19d511b9b39cf8e3373f4226419c9353acb0e98abcb692ad5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 506211b2f82cf4f3bb8ebcaf590d7a9b19468725171c9da9881f316b860b0c0b
MD5 0262af81c7068aa21603a573edc02f59
BLAKE2b-256 38c44dc878d79c0b2c2e515ba528b13e0eb14d1dea55c0b439dac755f0085093

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4717e10a69a7051b11644c8f23ad2c21a39a0226122879175d1d62f51fd0d994
MD5 3b77a263c1228d23e565a6c3dd68e44e
BLAKE2b-256 efb1870893636640cd8c54c9f57da18726d03eb80fc6030c21d7d59d5a81c81d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94edae55c80abd983b822df63bf94ad2421262139b32056fba30414222a37d16
MD5 e69cacd7eeb6951f733cab317a940dad
BLAKE2b-256 7408a193ee470a46685be5050e03b9a5c52a2386bfaf033d5d25d635a036219f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4f351fcf52f57e4423ddc55dedf9df06a398e702339703291486442f746d8ae6
MD5 79afa8a6475da7f639220767bcc7943b
BLAKE2b-256 7e6f87ff86563ce5b10741355d058bef2646fafa37b7e99181a5953358114998

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2c0d7a585939c55ce691ab6a4c76b2aa1c3f95e8f64a5ce7847514f2166a1d18
MD5 4ec96f8aaaaffe2523e0cb59325726b6
BLAKE2b-256 4a4d27ce00f76035687cb818d77016f72c11935d7afd7b1dc4847b78b4e67ec7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6c2adb412d4e5dd9773bc4ab4a89ad6107156e8ddaa755f7b9032bfce832ba6d
MD5 393486ac67236d858ce218176ed4db37
BLAKE2b-256 5f71904a2c9f339c2fe029b3bf7d6a6e450b62a195a57015985bfaef679f5981

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ad3b09c8ff00a76118f9f25713f831737341f19e7217030bdf6827b677f47f98
MD5 0ba409646921e8f81c9368460e9b7980
BLAKE2b-256 f10a5965837709e2162c39a245794fcc21ab997851e10108e5460e182b351be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1dad59477fa0e68f47fdd943c5184ca8197fc6cdc74d0e59150b708d2c2d3f2d
MD5 76e5abb3e23c6a839e6275d9e312808a
BLAKE2b-256 1c5e7cf8213c571400e2e626aae5f143f7f5a79b4550471f9b9f5c3b64408fdd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sayaka-0.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4f5aefcb5e4cde16b3d66393e92380de38d3e577ec30438dceef365668197117
MD5 02856c0a37a3527f4f71617ad197d90a
BLAKE2b-256 e28ae3cd16f03bb4187a4658a7ca71cbecb9607d91082748b6aee7ee957f6041

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: sayaka-0.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 154.6 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for sayaka-0.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 938a5eb78935ee080f2f46ef7c9632314a19ba60e6c4e0ebc1eac2d9c712e930
MD5 40872584a5e42e5edc4a7b911a750723
BLAKE2b-256 02d470c214c4759802b52aa5c12364feb82d852a9830a1c3e7b6cce852660bd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 17a049b48414dda76bd7fd4ed5ecd95b7deb492d9d41e783d0ab9682e7eb55d8
MD5 105852deddf916b8903c188bf79c0f0e
BLAKE2b-256 528d71f1d4cbf69e722ad7ef1dac0eec731a621e81a88d73f180389002b63b7e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a49228f66febbb75b55932834479305d36f574c9cc8ed41270ee97c25867ee3d
MD5 12003385ea49d65d60ced927f8bad3d4
BLAKE2b-256 00393728d929db2210eb7678eef38bca06ef14c726f7bbeb365c3782897d14cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e49ff61d93f6c357c34ed03cd6eac9521d9a786c96f047813493d25beacb1a9
MD5 24dd121bf3f7844d0f97d66263e7088f
BLAKE2b-256 740815a0b8f62fd2a01aa90ea0fccf548eac0a964955c133a837289e714b161b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3ef7f3ddeccb6d3ac43ace0cb66e132b9c5fa4c1b5b7de135eabfeb955390e4e
MD5 69199f0f7407df4b1bf0de7ac68338b1
BLAKE2b-256 5d37cc9effb191c3d4342ddee4f7b540a552b6829ee01b74c9ebfa34b334d647

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 60ac8039c4499362b53aabad09ca069fc5c6801e99c699281d912ac859f30ae3
MD5 c43c85a20c5f47082249999b3dcf21f3
BLAKE2b-256 12e76db85cc2c60b20919af75c7d707c9855424a0618c84a726f4c73fd23c44b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 589ed9231cdde94629b6fd43c0cbb11453343ae86441616798d68c75cd24d3b2
MD5 f727431d875a390572dbf5067084f396
BLAKE2b-256 3598482ff4771da363652b885d842136c38b566c952b8459c856f92cf6b4739f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 19555f1c42dc7b2c1fd9c9d72d4cd16ad30ca91d9e058cb1eac46e0cfd19b525
MD5 2d843b932245e882e1f95d14d4b0647c
BLAKE2b-256 211c1ce4b30da7b8fe7c47ba3b2262b5066d703f67e51861bca4e12920734424

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ce7b035c08b3f02a9f87a88781d7510dcb0a7e36c65e120648c858d1c007497c
MD5 2e5b7f51d0bfc95e6d2f7a10e9107d37
BLAKE2b-256 c33210eeb07a948726a669573a2b0a7cdd8a42dacd93fb0b0f5e79a6916ee717

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7ebed60d4a9df754beda628b562ea5540b7429d2361e5195b340241aaeae1e49
MD5 53593bb656eafd3f5fd2f1bc152b35f2
BLAKE2b-256 cb3b74a465878243a268a3952822edf5e88d0aa5720ffc3691f9eba559bf2794

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f16f43afba80dbfa4f4fc4ec485de3af002d9558999ad509d8fa942ca3a4aaea
MD5 2855ab235560c8c1883d25b236b1a32e
BLAKE2b-256 a92667a666b9021668dd50cd2f7f05f58089b4a398540618ef8572a2d82cd9f9

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: sayaka-0.5.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 160.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for sayaka-0.5.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e28c62facdabe0c6cc7be789f93be82a8fb249498f179f82552746bef83ddc41
MD5 5c07bc399cd4b9dd66024c3d9da75c07
BLAKE2b-256 59d533049dc8f3145d8678db9eceea69468e5c1e468b786a838f2e27e87cae44

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: sayaka-0.5.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 154.8 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.8.6

File hashes

Hashes for sayaka-0.5.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 88952dd7f52d0422d4e0107cc412d5c447c5d1d4bcc9af7b3bdb4e8c78e4ecbe
MD5 9b4104f2b93aba1bca716b75d241a178
BLAKE2b-256 f865f7fcecc5493977e3dcdd6cf696f25f957c9c8574648fc63f268b4f0103ea

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d41224b903270f90c378099bd760b45c87aa2c07424ea70ca6e1dcf2cf52cc9f
MD5 4f0ded7abeb542aad93ed896da49fcbd
BLAKE2b-256 e3e1b016b246b952af122af6187a5c097854a2332184a56e85c9efe6b0b90e0d

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6a2cbc47866e1ba26c73e1ae2d78d5169153af753a4c0c558815ff00ebc10b6e
MD5 5df13492a1ae3425fb4a6617ca947832
BLAKE2b-256 d95150381516fb02422c91bcf2f5e7efccaba75546b4b2e8f26b8960b9469b89

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 40f57d192044d7bc6917970e28d8e0b4ccb720b721ad175f6046d1a6f7442b12
MD5 a87aa42e7b37c08ffff361ca057c1e04
BLAKE2b-256 8bf41ed9ac2b871ce55f9929bcaca6b2add35210d60fe44f28aae9196bc44891

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 70bc4fbfd14c2e6d27c79a27df68a5b30008816b5f39a6c5325c367d2682ba89
MD5 86b9821bb9f4e4c0b7d75fcba4cc6504
BLAKE2b-256 2a9e033710710e4288e3805ea445662e0268481413790f555ee76a3d22b59fb9

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 daf441516b1c536271529cee24eb28e49a9a78944fe2ef3acc2ffe0c5f273772
MD5 08311db46cf8586c9f5ae9c29ff5f5aa
BLAKE2b-256 6c38aa9898c64b3f4f0e363491218c9d66d6608627983ce9e087e1d470a25997

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e68ba7edb9723c4741ed7855179a8ac0d9925916c75bd99baa131328a5a2d3fa
MD5 453174574afa55745e95c476f324de38
BLAKE2b-256 5ef8ed10ac7502e017cc12b8e19f7555315183f47f6a67c07c3b2d17b903f7b2

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 227f5dd53eb4e2f73fa9b5a594850344ab90fe0b2db8edfc452c9dbff25e05fc
MD5 7d396875c8824287d2e4fed8f396fd13
BLAKE2b-256 e15df1534e943267040e9c1e43a2bf274475e3a53cc1c084919eeda24d3deb8f

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 bf0edd5bc38db6c7ea83276fb984e894c7fff0bacea76296e9b9d8b038805bda
MD5 3cb150805bb1ae2f3d3a160477cc071e
BLAKE2b-256 b0eaac854bd4bc6f0c635304c43c84f11db7c09f04fe6059abc562557976f99a

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af9bec16b9e5b61e57b9559b1e5f2f194a288567bc348efb9ec5861aff30e400
MD5 240441c932ec86f817529d9f89cb848f
BLAKE2b-256 68ab2d94171962d78f1c9625d989d1d2336df38ac85c091ee1f066d5362f6484

See more details on using hashes here.

File details

Details for the file sayaka-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for sayaka-0.5.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 61687ee47b96447d2a85f84ce80acdd56b3b283d34ab001b2a316d3c81d845ea
MD5 b476ffe71c5c2417019e65860bf157b2
BLAKE2b-256 369656685ccfbe0ebf83bb8328f64c580c358bb7df8df6450bba7e1850b9e9f2

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