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.4.3.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.4.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (470.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sayaka-0.4.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (502.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

sayaka-0.4.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (571.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

sayaka-0.4.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (479.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

sayaka-0.4.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sayaka-0.4.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

sayaka-0.4.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

sayaka-0.4.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sayaka-0.4.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (325.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sayaka-0.4.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (470.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sayaka-0.4.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (502.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

sayaka-0.4.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (571.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

sayaka-0.4.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (479.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

sayaka-0.4.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

sayaka-0.4.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

sayaka-0.4.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

sayaka-0.4.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

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

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sayaka-0.4.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (325.4 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

sayaka-0.4.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (471.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

sayaka-0.4.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl (502.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

sayaka-0.4.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (571.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

sayaka-0.4.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (479.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

sayaka-0.4.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

sayaka-0.4.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (455.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

sayaka-0.4.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

sayaka-0.4.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

sayaka-0.4.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (299.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

sayaka-0.4.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (324.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

sayaka-0.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl (468.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

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

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

sayaka-0.4.3-cp313-cp313t-musllinux_1_2_armv7l.whl (569.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

sayaka-0.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl (478.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

sayaka-0.4.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

sayaka-0.4.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (451.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

sayaka-0.4.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (307.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

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

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

sayaka-0.4.3-cp313-cp313-win_amd64.whl (160.1 kB view details)

Uploaded CPython 3.13Windows x86-64

sayaka-0.4.3-cp313-cp313-win32.whl (154.0 kB view details)

Uploaded CPython 3.13Windows x86

sayaka-0.4.3-cp313-cp313-musllinux_1_2_x86_64.whl (469.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

sayaka-0.4.3-cp313-cp313-musllinux_1_2_i686.whl (500.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

sayaka-0.4.3-cp313-cp313-musllinux_1_2_armv7l.whl (570.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

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

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

sayaka-0.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (298.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

sayaka-0.4.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

sayaka-0.4.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (455.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

sayaka-0.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (308.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

sayaka-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

sayaka-0.4.3-cp313-cp313-macosx_11_0_arm64.whl (262.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

sayaka-0.4.3-cp313-cp313-macosx_10_12_x86_64.whl (269.4 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

sayaka-0.4.3-cp312-cp312-win_amd64.whl (160.0 kB view details)

Uploaded CPython 3.12Windows x86-64

sayaka-0.4.3-cp312-cp312-win32.whl (154.2 kB view details)

Uploaded CPython 3.12Windows x86

sayaka-0.4.3-cp312-cp312-musllinux_1_2_x86_64.whl (469.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

sayaka-0.4.3-cp312-cp312-musllinux_1_2_i686.whl (500.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

sayaka-0.4.3-cp312-cp312-musllinux_1_2_armv7l.whl (569.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

sayaka-0.4.3-cp312-cp312-musllinux_1_2_aarch64.whl (478.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

sayaka-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (298.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

sayaka-0.4.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

sayaka-0.4.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (452.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

sayaka-0.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (307.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

sayaka-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (300.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

sayaka-0.4.3-cp312-cp312-macosx_11_0_arm64.whl (262.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

sayaka-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl (268.9 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

sayaka-0.4.3-cp311-cp311-win_amd64.whl (160.3 kB view details)

Uploaded CPython 3.11Windows x86-64

sayaka-0.4.3-cp311-cp311-win32.whl (154.1 kB view details)

Uploaded CPython 3.11Windows x86

sayaka-0.4.3-cp311-cp311-musllinux_1_2_x86_64.whl (470.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

sayaka-0.4.3-cp311-cp311-musllinux_1_2_i686.whl (501.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

sayaka-0.4.3-cp311-cp311-musllinux_1_2_armv7l.whl (571.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

sayaka-0.4.3-cp311-cp311-musllinux_1_2_aarch64.whl (479.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

sayaka-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

sayaka-0.4.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

sayaka-0.4.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

sayaka-0.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (308.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

sayaka-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (301.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

sayaka-0.4.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (324.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

sayaka-0.4.3-cp311-cp311-macosx_11_0_arm64.whl (266.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

sayaka-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl (272.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

sayaka-0.4.3-cp310-cp310-win_amd64.whl (160.2 kB view details)

Uploaded CPython 3.10Windows x86-64

sayaka-0.4.3-cp310-cp310-win32.whl (154.3 kB view details)

Uploaded CPython 3.10Windows x86

sayaka-0.4.3-cp310-cp310-musllinux_1_2_x86_64.whl (470.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

sayaka-0.4.3-cp310-cp310-musllinux_1_2_i686.whl (502.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

sayaka-0.4.3-cp310-cp310-musllinux_1_2_armv7l.whl (571.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

sayaka-0.4.3-cp310-cp310-musllinux_1_2_aarch64.whl (479.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

sayaka-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

sayaka-0.4.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

sayaka-0.4.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

sayaka-0.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (308.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

sayaka-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (301.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

sayaka-0.4.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (325.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

sayaka-0.4.3-cp39-cp39-win_amd64.whl (160.5 kB view details)

Uploaded CPython 3.9Windows x86-64

sayaka-0.4.3-cp39-cp39-win32.whl (154.6 kB view details)

Uploaded CPython 3.9Windows x86

sayaka-0.4.3-cp39-cp39-musllinux_1_2_x86_64.whl (470.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

sayaka-0.4.3-cp39-cp39-musllinux_1_2_i686.whl (503.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

sayaka-0.4.3-cp39-cp39-musllinux_1_2_armv7l.whl (571.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

sayaka-0.4.3-cp39-cp39-musllinux_1_2_aarch64.whl (479.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

sayaka-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (300.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

sayaka-0.4.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (331.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

sayaka-0.4.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (456.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

sayaka-0.4.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (309.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

sayaka-0.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (301.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

sayaka-0.4.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (325.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

  • Download URL: sayaka-0.4.3.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.4.3.tar.gz
Algorithm Hash digest
SHA256 6a385a7ab355bd4a7451712d345bbda25de856df8f168663e1e5d36382d7d899
MD5 0bfe071b96152f066bf88b1567c806b8
BLAKE2b-256 2242578f0e82338b668e34fec8f12664206835ad19723d78a31560fe31262659

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a52739e0ad178b4da44134b6c61f0bae079142f5c5fbd190b6f14a0b4828f2f
MD5 cddac8e710c14644c95acc6e84a985c1
BLAKE2b-256 3069ffdec04f16d8246ec41033dd5694af7343402ed902a141641b77dc70e20d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 fd2b208eebb83b7e023ddf6eb0ecd32626cec5405cc13383112a60777ab179b5
MD5 796639569599514c0db0a116d3212978
BLAKE2b-256 9e65d029352d69c513ffd7fdb56d7db8386b1adf504aa71167769de6fdf086ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7d079a17549719246d7d41a9b7bfe8434aa9adab0e86e6e9e3b61e32e70b5e95
MD5 35271da9d63cc79fd7c26cab7fbe417e
BLAKE2b-256 3d317551f79a347ec4c2dacaac43b8a49addfaea57e1cbab8d9fb0a4b0368971

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7330a6d9fabaca1c292eede0fc07bcc7ea51c221241326d4f4c41cc3e15196cb
MD5 39c03f205b43411ecfb193b3d966e198
BLAKE2b-256 d471530c18172e16d74e5ef9b2a9b824ca4f30823145e9e9b453f08ad77ae02f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7f3f726112ee047e2346f1a7312871f3f13d95838fa23f0a563b0b7c1a9a046
MD5 fb84dd60a2f86059787f9d88bae3ed3f
BLAKE2b-256 41d5b5fc430027c5f7aa1ff7fa599d14fd56119ad0084d8580d1e2405b04ffdc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2a403e14914b86dc02e533ae16b79635b2c8f091b4be4f3ee8b8bca0e0e8b052
MD5 d0c8eb6aefce2764b86b6f32187a9a63
BLAKE2b-256 321ca86b52984c9c7056f562baadd7e56d819c3eac520b612cd0f5f00ea3c47a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b3e2a79ca2c8f16d918fed82c0373e12e3d90ba2f40423ae5ef1f2167a064a90
MD5 e54ec53f7ac29ab76c78a16a134c192a
BLAKE2b-256 37cd8046768fdb1f6a1acb78e83ab0440b4ebb9f778358ce7e16ee9fafaa00f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9ae919b791c148c98325937737a555dd1fcb593729201ece8ff8df8263422ec8
MD5 0c5beb4a63ec71ea51f013abbaa6124d
BLAKE2b-256 ba7b58ff1900456931a603bab12aeb945b74464d9cde2319056a602c935699fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 212d613476d990982b1f1ca3074ecaf633c981b48221c3e71643697d32c28cd1
MD5 dc9d9c6f5f0e5f9e8974b808fe4fc301
BLAKE2b-256 9d0b9c85d7c5b9ffa1119eef6c9856deb261b0cc055e3e946f50fa29f8298ee5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fd4cb7994f391d3aa8c380f6f3f23ef3fc2a66bab8b5995c355e368eacdb5a40
MD5 72bcc5014c0edfa689ca6ccb7b5808e0
BLAKE2b-256 246e4f95458dab6c8059c7941ff28f7c102b8c7de0a55d5233014fac23acbd75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4cc010c9ab41eac44873a986aeb14c49c16e57684ecf97ff93bb1f1b42163449
MD5 1733ba58b25a782d9eb102ff813cea10
BLAKE2b-256 a4af36e6466aa76c846f33e0684c7114e6f7badd24366520f1bc38198074c2d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c778aa58cbdfd9ff213783de68607ff560b7cc808934da07c80981b65d574e91
MD5 992dfb41decc2a93e0fad47dff730445
BLAKE2b-256 05b7018d50215939d1ff8f88842264636ad9fa83268bc560e843734674caa5b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c6947469d3eafedfc7b52a966722db6897e45a19261f006b0371c27466d6021e
MD5 b62deedebcca6da391aa4f4da4bbd186
BLAKE2b-256 206c0ef60209c5ba145d9548b0e7af1f10704afdbc5f36da1e6fb0d6625aab3d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8adeb66085a6fcf478fcffdd32c9fcbed70efeb606d886a2cd45dd74a502bb78
MD5 ce457c39241c6e4587ed85d06b713f49
BLAKE2b-256 0420babadfcfc811a9c15426d8c7a51776ea4775c6609db6cc9b8508b420722e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 73c44663eb1e9b8577c2680fe6a5606df0cf8b3416d0733d691617d4395d5cf8
MD5 2a8ce2fadb506d3bbd6e4d332a657100
BLAKE2b-256 c44e461b6653ca643a53f795099c8d9c6fe6a4e8da50c7205a375bf23e97e477

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69974efa9a9aea903bd6ddbcbd5d4752de738d1b41d6ba27b03d59e1b73ff336
MD5 38d55c90b3862a46c0d2b7b9c56bbffe
BLAKE2b-256 07da96484d6effe35866fb224cc961467768e32819513eaae3cff39fcb51fdef

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 acb4b1a0b2c3ed717abc470a7839c42ff21875bf12f9d80a2fe9829dcd6ca3fc
MD5 0b8836b54910e1fb24144252cedb210d
BLAKE2b-256 8bb300c91e7f24cd08592b087dc22bff8d102740be1d7fa61ae4fc6f0b3258fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 07eb9422421adbdf7e863337fcce6d8255e9f3ba85547e48543191f441f997bb
MD5 0a3249cec111155afb16650b8f6e8cf0
BLAKE2b-256 a7bbb0f53a9c4f25066d37ebc79c44bd1e51e57324a2b6bc8159c18a455c9983

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2859a258839de8384ddc8be0e5a49462d916e4b5fe0fea5b164d4db81c4c822a
MD5 f1d2d0e86622783a92eb844b6aad4601
BLAKE2b-256 3575bc5c79e0d56c2cd9d18d53d90aef8adc9ee022cafd3282cad66f6672b5ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f6d8ee6e4d92ce9d0186d2eda0a3cd59717ac097feef5e55d9692e7841415c0f
MD5 38cb0323464884ac5367df38b3076e18
BLAKE2b-256 ec60be4a72959f2dfe449a890957f02160b038151a490170fce08cd066941673

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dbc39d29853a81eb0bad93c968fc4949b46a643eaf015dd42550cb1fed31ae60
MD5 fadba1668b1b39dfad653a7385a13b0e
BLAKE2b-256 cb2f201b4de3f5409f52a6a81f695bd0985abca64719b54d0f0dd10c337823da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d707993f29b08bd726eebe956f45d87a25c96437394f9b8ff72ddbb1b8f35079
MD5 10da3a6e4f89604f106e2106e93877c0
BLAKE2b-256 dde9ebb119f640ad8b09c6008bbc853631824d072eb8ac425cf28cfd8334ce36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b28485d7cac3bdc6ef5908d33594fd84b0395c545b68c29ca539616cff158a6b
MD5 ea498ee0b8171770d7bebeaf4820c7a5
BLAKE2b-256 a6146fe243206b78a5ad432052fb7ff9593534111ef05d180eaa5c11e8d8f148

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b6b17e2adc71f66eb306e387e42411509c15af532a9cbaef840503f91f2d0d8
MD5 3ce7f32231fbc46aaaa16d84ff3c6f25
BLAKE2b-256 f66e819de6a334bc9f72459641932ba25b599c3e444354aa715f70cf9727fc35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9c2ec53ee776e07aac32cf8259b3fe6aec1744d0bba69e875f9bb681814b41ef
MD5 627cf8dae163a586a249b92062a3a85f
BLAKE2b-256 489f05e325fd0383d1910e5789ac138cc345f261700dd3a7f8d45148a95ada51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 96d2a345d634be84d3f2c571ef4552dc0d5620095ef6314f4562af5b3296f7a9
MD5 a6b682287af2d2bb0ea8a59f27e4a157
BLAKE2b-256 490df6a073ee3b2fec334a36889ef86f1faa0c9e13c8335586d4fa52631fd6b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a988994dba16bc009c48072bd0615565897a7fca0d795bdb9a9d053b6015f54
MD5 e068e1928301a1aa65b7f636e23dc9bc
BLAKE2b-256 05393689497060456e79e56a7d18743a09aa1635eeec2fdc3a8b3dfae0b5074c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 6ecacf59fa7d2fd368a1d893e589cbe85582ec9ffc38981e4ade0568148b0ddb
MD5 fc1a34366ccb9e0b22533025bf5b8cc8
BLAKE2b-256 983248c55cfe68a9b3c6ff0e556024ea70881aedda622bb153ba31eb52b77bed

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6547a3767f255c66ce74cd085337a0f836c6b282eecbb6b35eaa0b972c3516f4
MD5 ff8dbc60cbfdf89fcbb099f37da5bafd
BLAKE2b-256 c510336bf33b4eb0aa05351863eced6fdce96edf87a7acaf52d79a45cadcb55b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 51ddfa4b9abcaa7de29fc379c09efb769858ff8fa7ed61eb46a2d43b935de7a6
MD5 4834c56c5edeefcd059b488a67b9462f
BLAKE2b-256 70f5c4bc0c38ea4ba24ead69a8e36501103f40ae0cd6b7781c2adc44d2f9d707

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e7b78b117a7504576695f32173607fe23512fe6ec0415446ed966ed1a7719b95
MD5 b9542a7bed9cc9e62175c208de7e176e
BLAKE2b-256 fa20e02390184ebca59dace3f550b5737711e0cf077d21372f81223a53dc13cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6fbc2895ced213c982c9305550239c5833163ef37bfabad5531a1e6b16102aab
MD5 46ae11e44e1f5f8c79693a4f206b86dd
BLAKE2b-256 51587466f56d2bbe0d0555c9e1122612cd2980f578fc86fa3866a1445f0bd7ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 f7b54f562523b78a2b3220a0c5573945de0a874132d10b4c8a347114ac0d024e
MD5 4bc0d61e8b75ec5a9604cb3b67f4fb70
BLAKE2b-256 d797753ee9505a3a438b55bc79b18331b605a4b4db088795363fecb6fb54d055

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8c98ec0733a6a6f5573963e1a4e94e883e66683032086a65794e84e75c5d6d14
MD5 abcebccd4753aac0cc7e877baad148fb
BLAKE2b-256 f61e93850e3de1c232596ea4ad64942204bbbdb8290816258d66706526ec5f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 42c0584bebf959b0cc1be70f97938d1b8d05023eb3e662cfe771c36b37b95004
MD5 fa173ed6135eeee7578492adb5f46c2c
BLAKE2b-256 c78cb340b5b5b71619242a08f2544574a8246bdbd96b3b1221b60ffa504d92b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 867a38ad572b0798feb9421d99287118229393dc5c5034f826f3003d29d662a9
MD5 52c3225b0c04478589ed96e93622d567
BLAKE2b-256 2a2b703dc858cc3e71329a43ac396648df73c967fce172e28c80be9d13bce5e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 9e3a63bf01950630141cb49391acea1e52d05f2494d714cd4eeff05dccf11605
MD5 9330e1a2dad651a81266ec477bc19f01
BLAKE2b-256 e1d56636a54afbd0a4344023bc33f1f7c7e894f36bf87fd24f785f504bc22496

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 dfc39253d7f1dbf26b14ed2a6c6ea1ddbae1d17261b7fc33dd8efc69eda7d7ca
MD5 012bd0a2b56cb0f82e5648a32b56cc0e
BLAKE2b-256 5eecf43f1b4c808cfae8ed8d0c4c3669b6cd409fe7d27bbf0828c8fdee8c1e32

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sayaka-0.4.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 160.1 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.4.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f7621317354d37670eda1636f33b444f7fbab4c21f6ae88a4589a6b513074fed
MD5 3de03a013a8c24c611fc0cf2601d6faf
BLAKE2b-256 cb40c7b6dc0e0a2a1ac3ecfe1cbcde158b0c6cbaa89d15286557abc4fe332e16

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 8bd7cca9b904d144d8a9315425d047d3d24f0b7a8ea797c3eed4658e0034099e
MD5 d6b330948a0b7e4cb69a7d92ebabff92
BLAKE2b-256 6510a27ed861439653e6d7772e3b6c277132d8428b3e5c495da40a653832f40c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 404e93c5a13bc488bb4e9c9f544eac7a32583bee99e04e4730b099c12ebcd0e8
MD5 3fba65f89836c49d74b317c70827aaed
BLAKE2b-256 7233df3d256aa5278dd94d7ac3b873cd732ed4e7d62ba64f61005c9f9b9bceb7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 94764004f1b44244456210ef31dc3adb7483243cd7b54e0317a79b14c4d4c0f3
MD5 a3f9afa1fe0fb76d328b339267146dc4
BLAKE2b-256 ae868a62cc050d83314d06974d998217a0ec1b60ce408952706b7f100462d6b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3adb3376e9af7e271426390e52bbf3f15940418f82f5a12491c0b6ac36aee5b9
MD5 9bd3abda3fbfc0efb8d82c36e56122d5
BLAKE2b-256 1ff101026c4385c617778b9580efc82005ad4d9c4364e093c399f0ede87605ff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3deb3ccc2255c808fd8998f62309d47200344ac72c613c757884e6a6517b8190
MD5 9cb35bd3d1aa13340b12ba1ddd148388
BLAKE2b-256 af988334206bc24e25aeffecfdb5c71d7440f57c597e5e7917494f2614f08f11

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b28336917c3c38e6f8689b9933edd22d60748b2ee1a7e4b7b7a9227c549d6d8a
MD5 5c17fc60f17fe4e8c6ce187d0b2d63d9
BLAKE2b-256 59731e1d8603ed27d9b7c3bc3841e5700a69adcc2b78c6c5e78a24cddb0f21f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 45f5cdecca7ac249480b8f9b350bf2d93d5e24ea59155f9deab35cd9a74fea8f
MD5 665e6c5dfaf578bf1ce2b715668df312
BLAKE2b-256 4261530c5d11db42e0cb1625f7e0bf56b8a21226c3ae4c3ead0f6af2396bc778

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c97db2a9c053247677a42343fb59a7c3e78dfe12d8999aa2ae5a501678318916
MD5 446b496c3305e5d0218b45e928233027
BLAKE2b-256 718848ac031bbbc732b258744c4bb0871fac88d2847c0d83538f7a8d3e6804a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2e6c0ca0cf5d0a54cb1f240a85dc4ecb08856311a38d099e445704d86a4d9cf1
MD5 23027776e45a443859f4d44b13ecb047
BLAKE2b-256 1300378fb669d22855d559219689f14d8e41001d1fdafe6fcc11a419e5876a76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9a4f1396c67223b99205c66137bb554c9ffca15b4bbcc9281a68fbe6366571d2
MD5 d53e711e352f9bf54b3cd57f82a816fe
BLAKE2b-256 3734b5a1df0d0ef9b219006970306a38187d9e5b77424b0a504e286c3a1f885e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 89506c9d7ea07bb596d84183e5401f8dd0b75b25e241b662ee555702fba11c76
MD5 20599340ce1e165ddace0bf9b2d84c7e
BLAKE2b-256 36d2a7d7aa7cec2db65e29ca4f701ec4496e942ba09ddf5525a639dc994c1a9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96f83981eac6a77184302007bfcc3c4497a56c542e986ee287337d85d0395fb3
MD5 f36db5aaff71a39158850d36ad89a760
BLAKE2b-256 c37565986af6a7d22da418718c4341071f02c92bed278f24f297e74d7a99acb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7316b6bcd1b6fdd127012a9e3f2b873e1a096d14a5d21ff8d08480c86817ecfa
MD5 8f8d3a70b463e18459a04dd750e4467c
BLAKE2b-256 ffdb7c9930755d7089f9dc8f66471107454a6db67cad2f76d5597facbec353ac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sayaka-0.4.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 160.0 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.4.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 b1e64b81bf7e7d22c6ec2827e191ea77ef1bedf85007a497b9eedd9d422ceee5
MD5 9c20aee03345c36c31ae214847628cad
BLAKE2b-256 07467f3b21980b8a0098b8b169935a4315fe0aed3c6832a3846024d5b62bf002

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f46e70e76c5dc0bac8b11ca274dccb6e460ffdbd0636e732e1da78bdc6a9090f
MD5 a2accb2f7be2863a48ec668b6cd53590
BLAKE2b-256 d8ce252ee5c84f85ffe355254ca90320741706ba298321ada15883c7698edb70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 99e6d2883ea65ebc8b05ada1a7e0a24ba70097999cf014e3ff39acbc23456c25
MD5 5cf016206d51b09ef537a4d60ce06c28
BLAKE2b-256 b75de621d4d41f1a3c9af4b3a3e28897d2c2e56f085fd2d07ae2d504680a5d57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 56eb858eea85dcac70efe4994ee31889f400b7c5861dc3396a4165e79794b343
MD5 5fcbeb4f451840714d8286794999df90
BLAKE2b-256 a4c62c122b015b5b717af306bcea89faa6d07b56c1ac8a735447f761622cdea7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 518f8b748b4cd2be9e9632588a077599c9513f5e2612a84f92700b39cd71560f
MD5 2fd994bf91b6ae52cc7fb05b56caa6b1
BLAKE2b-256 9d79a2a305c50390face75c3b71e79dfc84a8187219a91ae88f9b08ae94dc9fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 899e6e647cf81c01c8e9c538391fefd8e131fc8ac15cb2bcab3310b3c75d278c
MD5 2722615a10b18d700cba871796ed4ddc
BLAKE2b-256 77f11dfe6c53b83b1fc918bcee2e102adec884b265bad74a301c6e3f09f1b880

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7589a9badef6c18987c42c1fd69da2fc3c9fc1591f15874374b6a528614169d3
MD5 4badfd5d526122ec21e65e89e27a52b4
BLAKE2b-256 73b47df1ad9b532aeee1df960619b36d762ce1f0af01f2ba3ac581503290befb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 871204df2c315c7081f0dfadf976aa7bc4e86cda8f38b9a73e6c3c8600b7d0e6
MD5 c317e53fe23821f6da2dfc720ced8e91
BLAKE2b-256 36d847a91f0889ac6d8796e4c7e53e853f84266a6149f1fd81ebebfaca7fb5d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ac62f3a662b34884dfe38e0c184c11656f2819c62f68591a120f0ee3bd40f382
MD5 f565b3042be101980bf78d9dd7c07d22
BLAKE2b-256 3b126c0a3b8ccc574aaff06fba94c546f6c4cf80667a3db4b21945d18d8f091b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 62a1cc643e196dceb1d80f8055908a68712842845ef91657899d04480eb42719
MD5 4ac49ccd64d689f73b56427efaf95206
BLAKE2b-256 2286bd78f0cb16e2e0f46591dfbb212441443bb559bdc2f1c2d47dfd95635680

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 97a79f38e21162f186d53909da7f8451bc79739579680c129562586b84e5d100
MD5 920ee0e7c6346e013f8822dc747754ed
BLAKE2b-256 ed5edae5a329d464f5c55953f6d3698504388527a4297271cde4effb9e985756

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 74f4f4b606f90ab6cbc0dd0c3679eadd5454f9beab7218fda49f296ab279dd4c
MD5 a5e7c2661c773ded9cd044d695a9fa90
BLAKE2b-256 d10c9f54c642df9cd259b9782acfa1764bb98c80a196a06b063863b6c35c547a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a773dfc7a882f6a97c984e1139b4e398385096962ffa159aa75133333bc3f8cf
MD5 fae92bdcfe09bc7cb8e0e990363d2565
BLAKE2b-256 d85800b69ce4af4e555c01428dd4be527db130db9097b1875914e1213a9c9f5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cee89743a09666c5fc889c4e414efa988145bc912b4889c393f582a928964bb9
MD5 395d544bcf855c4bd067501762d5733b
BLAKE2b-256 5f4c78a88d5c94fb99164d33763b992ad49f27c4f2b1c9581bf6a597cbf50a7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sayaka-0.4.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 160.3 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.4.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d11916248900f8bc6eddc92d1886ae8dd2155424913702675354876e1fe47876
MD5 2c591957a0d245e8b5cbcc71e78bad6e
BLAKE2b-256 61d589dbf5068379f2ff4465fbe5e0adbd00a3c9d1dcf16b86df85d1e66f8007

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 61b1bd4419dbe2b23ab0e17a6fe9776f42fef4bc711c55cdd1da24ced26e6eb8
MD5 ddc4be454a02e9ec5df384a5783bdf89
BLAKE2b-256 e277de2ce23c774b4db26da271abf53b809aa113dbf565967b2b7e89b9af01b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea0c98d97022e3dd949a589b130fb2ba9c9faff2560175f7b3e7502460e8b53f
MD5 935c80a441699c707c6375cd0fb0fd8c
BLAKE2b-256 bda4de0f420331a50a4ad5b476b98715277baf076a4dce0287d5586b4b9868ca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 39d8980f915a9c8b9846286ff63815af3ed241cfd8320d5de3dc17b8c51bfaf5
MD5 30378c6c6c331dfbb92ffd7a3688fb44
BLAKE2b-256 3a1068423e589a62d0de41d0b5407a1cff7d4f652591b68eb03a8765224efaba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61c91034af3bbc6bc3d6d4f08ed1bb5641a63e2b77276b55d098c100ebae9fa1
MD5 25622a13f71e668bfab09eb74f95dc62
BLAKE2b-256 a60ed77dcd9ec09c577744fd29f841a3d01aa30f2d042c5dabde45ced3fc6957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 27fad1f30e5c55f7185efe0e99ffc4d4d73c6fd96491dae6d93b2034c966c54c
MD5 10439ffc423c31387ebf098ff8e7e886
BLAKE2b-256 f95198f7007b9525fc22f6104a6ac18df533058870f6dd0e14c1dcc2d3deeace

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f0d2ef857e4ff70c24d3673ed6611be643acc5b65e7590b229932d68a1a3fa26
MD5 6313f925193d1854648171319a70f43f
BLAKE2b-256 3bf0210f743945ae6349122bd31974bcdf79abbb92cbface29f256bfddc7418e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 364f693f6424a01f06c8308d5169ff22894bb3df1e043441d2c6f3ad6e4dce70
MD5 c27130b7205003169582afa41d9b46a8
BLAKE2b-256 3710a842409aecc31e59c8cf9eabe2071a3cafb764200988cdee4d642c49f1b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7e9822132f95dc1ca79e33996c68d4aaec045a34d8b69eb25e978d31917375ff
MD5 cf71cc9f1e334d174d6c4e07b5f4b4ef
BLAKE2b-256 ea62a230fd162423e8d1a8d43368f564056571ca7563b78679574a2acec74e6d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d2cb7e5e6550e629539a97f414b406922fd81ece8b78cfe40c7a92673f0b3e4e
MD5 da3fd4f3ad141874954e747489c28f9d
BLAKE2b-256 e0b996cfe119edaa50982fdcf4b44ab748a782e638a7a0a14a63f7490b7ab27e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 56f26a583c977a475522087ce02ff028861a170326d962b9e53d5ec57e06a35c
MD5 2abd29ab95bc474b288c1279f81e3d8e
BLAKE2b-256 eb0f607b321d679e8dae094f29c3dbdac5d95f993c2d260ac2acf574599cfe74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5d687178fe6051e5cc27c28d2d4483d0987815c829754fae3467c209e70ace75
MD5 e87bf0809589f051ecafc3cebdb4c1ce
BLAKE2b-256 9cfdd12b5ea78d9f9bd16f8f6d80d8e0dacefe4d3ee87bfa9a9d471ce46113f1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3c70fb2d81bb33b939dee28a3a4ba629b34d4f957f7cfbca3a502981b78671d5
MD5 092fff2b706bb8411f87a5cec3a19191
BLAKE2b-256 b9c298ca3ac37c70c92ac908c0ee07017cb994de570b6f577ed99f8550060c36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e51c3ee7e85bf76dc55f8561a2eca4845cb7a67181a7e1433d94aab733ed0e37
MD5 f3ce39a00e1e6ccf590b14b860cd71cf
BLAKE2b-256 c265554d671f21217915adff42016ddc19e9adee2b46c75ccadb97013b653cac

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sayaka-0.4.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 160.2 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.4.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 af33abc2a779b8d660ab00a04a9654dfb15e75b5913cfc12efec7b98a21ac4b4
MD5 976f6e9920491bf7cfd278b9756f0793
BLAKE2b-256 6ec43fc22c6eb95fd2359de41ddf1dbbf12958eddcad3da16b31584626a0f511

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sayaka-0.4.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 076110aac4b3d49864b9fcbb497c344d153e4affb07f8f18c4930fd0ab618111
MD5 03bacf4f579b67e0c8cb4462435566ba
BLAKE2b-256 d34895d74a19485c731f3509b78483f4ef2c9f700ff2146a9ed0da022b38cd94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d8641a41ab1ad8ca7270d39b8ecfcb745b11eaf88e12bf29b2309186e23abe26
MD5 bcc45006e8269cea3fae871919dacb7d
BLAKE2b-256 62405a932312db89ce48aae31d2fb5df0eb4341c192fe3ffddb7c3c9ff547cd8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b3d02559ccf418e8d67e29f3a204fd8b88df677f709d8c506f9bcad12a2c71e5
MD5 36d4810ee4408a18caecd743b6d9b4dd
BLAKE2b-256 b12bf4991ab7d663dcb3507281553026920d43e7808682624d32370d83520619

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 8e1f1c3e9c4e44191cfd63dee960eb7d484ab12a5f55d431a1b412b259a46c11
MD5 652b6df1ff19b48753bdd0dc28d2aca1
BLAKE2b-256 1f1f6636767dbd2e3a79154acd40a5c8ffef13c4e802490dd24ef7aa32ac4fff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 181f772f50424d09e8b8df90a536102e93a94c73eff202935161d2f8570f4cc7
MD5 c857bae9fce782269eed882d588a77b1
BLAKE2b-256 0d4dc763dacf0883f04a4fdf634c13afc076a88e75e383945a533c7fcbce2a2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 47e119f57de030848303e9d313f31b6146f4f8e7dae382368349ba5cc312c64a
MD5 132ca88a68d4682b08ebab3c106798f5
BLAKE2b-256 8b685f733b906f175202fcfa12dd95c8ceb190deb8f402e0e9cfe3a27b127af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fcb84db434a1e0fcd053ae5d38458cb4885665867c5e7b040ab1d0ee38a86f7
MD5 9ab7f3e471039abbf9cd8f20a6ad64b4
BLAKE2b-256 06a1f87f676b4144d5adec3b6bb90e5be7d95206d23ca33fae13e19e20361227

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 97b70421f8548f6d1366d2b091cf5be0773fa5b51122a235421c1f6f446dd3ec
MD5 8ded16d0f5931b089a5500d3448905e5
BLAKE2b-256 ac54b2c6a773f766c92391e186dbd248e23db951f5630db8c649429b29d19155

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b179f6ad6693b3fb06f5fa8f64d9fdde257fb47de13d72dab7f375f70e165874
MD5 f0ebfcedb70ddc20cbbf5e6c50ef5650
BLAKE2b-256 51ca99335727797a2d448f24e48ab22942c4834faa91fe3b5eed08ad7de00f87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acb5841d26ff248b0ed35bf7608d207dd73f92df6afc5d3132da9fc69a3855a8
MD5 2c2616a4b57aad43454c6c3664f29bbc
BLAKE2b-256 ad5277f152c5921e9ed2d0ad7982249fdd4a8f40b498f82e97c5d6330f6e7d46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 12afd43a52a3e52eea4cb55ba9f13a1ef89ea5fd0094af5a063082a470f1e809
MD5 10b2d449fb5082453f1b48d14c9d3b7b
BLAKE2b-256 8d5e46b98d23218455746ad03c774cc242cb5488169ce10ff1ae91bab76cec21

See more details on using hashes here.

File details

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

File metadata

  • Download URL: sayaka-0.4.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 160.5 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.4.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 8c9911224d7d5505ae1e37b8609cc200cf889c508b14439f0cf560916781518b
MD5 feea9d044343e3226916f05774213bd5
BLAKE2b-256 e9c333415c23a13c70cc7a9bad6161186cea3fee5836ae437106d6b45c0f1791

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for sayaka-0.4.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 f72c7b123cdb063fc90abfa867322ba202d8fcce1827f27400f32ba8c546b367
MD5 b67f58b5dbb35ecc16839cb1822d367d
BLAKE2b-256 3c92bb8f27a476b5ce1550e7b2fc22e6a168fe31149a011a4c49573be352d9bc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a85d94fd4e47ea363534cb267797f4ebc504f6cac50d7ee34ec71e10a3d93537
MD5 5a77aac30c1e7b11e2140dce1f73ce9a
BLAKE2b-256 bcb60d3fcaf92c475a8995a1f813bec9f97e9c36bd55a3e209b2485046157599

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0603c3741137ff0af48efe68cdb8d108707acdd823541db818924e2e09fdb0ec
MD5 6eec2d7e059d677fbdaf86567b8086d5
BLAKE2b-256 2e1da32d07287cc7c85e0d489770cd566f513b26661dbac9df2cead70c790ba0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19ce54fcea0743acbb5e21823453897e8ac01b6a7aab6f59d0787809a4a722fa
MD5 3a027541effece22d172c7281eb42d2f
BLAKE2b-256 6eff190e7de0d424514e6bc5d740e143b8d4b28f73150555737394b5293cb968

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b058469dc4f9d31b37ac3e3c5c01ace512216e034038db3d4f12cd8aa3635fb9
MD5 6beba64faa4329e65ec13b154ad010bf
BLAKE2b-256 c8c0e1053043af96014930e2aaa785ad3f0b9aeb13436a534a2c290af12f70e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b8dfc9204b7bd2f4f948dbbf5c671edfef4e480bf601e597334bb40af4c88b10
MD5 22e3f84a8ab7e5c5ab1487405c52f485
BLAKE2b-256 46f21262afac2f1eb247bbf1ba4c3a816f74ee861e303d9d4f3c7d34b7ca41c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2ab49a933bb1ee125be1e89494e3cf8ca0f5a16510fe5e20e17c88caddb267a3
MD5 9a7e395cb86611035acdf6f172620638
BLAKE2b-256 ac75fd01dee14740ad8345f0877589c830a469bc7b652e29616e50c8bf049814

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 062fcaad213b7119f6fbcc228bf5805bf42496330c65b7b0a76598dfc6af00b4
MD5 9c981dc7ef93a268d6ccb2ea82f3c873
BLAKE2b-256 7b2a2a373d1b6b957d084ec5c83a32561641fb4467e53f560daaa229ca96704f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b7f801f34f5d7e7ed17261a317d795892f61132551c6a988290e9fbe7190b2cf
MD5 989d0f0affd260468c080f1a803dff7b
BLAKE2b-256 dc44332ff6b3e94423ae37bdfc7aecaeed2659ae29247778f529edaa1b3ca7a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7c0aba4f8fa1539c36d78a712880089ab41bd1f710a123ffe4b57667b2ff219e
MD5 2ff3d0f8273118b6d491650b83eac8f8
BLAKE2b-256 4c83f70c64652e9b281a4d0e449ef9f77dfb19f3106ab8dcf6a3ba1ef2b65e99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for sayaka-0.4.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 01ea6f6eb3c97ca800b72cf291d1ea5081907d57fe9a17059d72112a081970ed
MD5 6d79c3acf9b0f3879c4fe279a6c8e45d
BLAKE2b-256 35aa764757783bddb7d3fcc0d3cdaab41ae99667ca7e2d882d3373d9a10cbd29

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