Skip to main content

Yasumi is a library for calculating the dates of Japanese holidays.

Project description

🎌 Yasumi - Blazing Fast Japanese Holidays for Python

Yasumi is a high-performance Python library for determining Japanese holidays, built with Rust and powered by Maturin. Yasumi offers the same functionality as the popular jpholiday library, but with 65x faster performance thanks to Rust's speed and efficiency.

If you're working with Japanese holidays in Python and need a significant boost in performance, Yasumi is your best choice!

🚀 Features

  • 🌸 65x faster than jpholiday for holiday calculations.
  • 🎏 Determine if a date is a Japanese holiday.
  • 📅 Retrieve the name of the holiday on a specific date.
  • 📆 Fetch holiday lists for any given year or range of dates.

🔧 Installation

You can easily install Yasumi via pip:

pip install yasumi

📖 Usage

Here’s how you can use Yasumi in your Python projects:

import yasumi
import datetime

# Check if a specific date is a holiday
date = datetime.date(2024, 1, 1) # or datetime.datetime is also available.
if yasumi.is_holiday(date):
    print(f"{date} is a holiday: {yasumi.holiday_name(date)}")
else:
    print(f"{date} is not a holiday.")

# Get all holidays for a given year
holidays = yasumi.year_holidays(2024)
for date, name in holidays:
    print(f"Holiday on {date}: {name}")

Available Functions

  • is_holiday_name(date: datetime | date) -> str | None Check if the given date is a holiday and get its name, if available.
  • holiday_name(date: datetime | date) -> str | None Get the name of the holiday on the given date, if it’s a holiday.
  • is_holiday(date: datetime | date) -> bool Check if the given date is a holiday.
  • is_no_workday(date: datetime | date) -> bool Determine if the given date is a non-working day (including holidays).
  • month_holidays(year: int, month: int) -> list[tuple[date, str]] Get a list of holidays for a specific month in a given year.
  • year_holidays(year: int) -> list[tuple[date, str]] Get a list of all holidays in a given year.
  • holidays(start_date: datetime | date, end_date: datetime | date) -> list[tuple[date, str]] Get a list of holidays between the specified start and end dates.
  • between(start_date: datetime | date, end_date: datetime | date) -> list[tuple[date, str]] Retrieve holidays that fall between the specified dates.

💡 Why Yasumi?

Yasumi is built with Rust, making it 65x faster than the Python-based jpholiday. This makes it perfect for applications where performance is critical, such as web services, data processing, and large-scale holiday calculations. With Yasumi, you get the speed of Rust with the ease of Python.

🛠 Development

If you want to build Yasumi from source, clone the repository and use Maturin to build the package:

git clone https://github.com/telumo/yasumi.git
cd yasumi
maturin build -i python3 --release
pip install .

To run tests:

pytest

🎉 Credits

Yasumi is inspired by the jpholiday Python package. Special thanks to the jpholiday community and the contributors to Rust and Maturin that made this project possible.

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

yasumi-0.3.2.tar.gz (9.5 kB view details)

Uploaded Source

Built Distributions

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

yasumi-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (412.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

yasumi-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (432.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

yasumi-0.3.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (511.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

yasumi-0.3.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (429.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (245.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (285.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (256.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (254.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (258.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

yasumi-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (412.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

yasumi-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (432.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

yasumi-0.3.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (511.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

yasumi-0.3.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (429.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (245.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (286.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (257.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (254.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl (258.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

yasumi-0.3.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (412.8 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

yasumi-0.3.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl (432.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

yasumi-0.3.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (511.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

yasumi-0.3.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (429.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

yasumi-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (286.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

yasumi-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

yasumi-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (257.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

yasumi-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (254.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

yasumi-0.3.2-cp312-none-win_amd64.whl (113.7 kB view details)

Uploaded CPython 3.12Windows x86-64

yasumi-0.3.2-cp312-none-win32.whl (108.2 kB view details)

Uploaded CPython 3.12Windows x86

yasumi-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl (411.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

yasumi-0.3.2-cp312-cp312-musllinux_1_2_i686.whl (430.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

yasumi-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl (509.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

yasumi-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl (428.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

yasumi-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (243.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

yasumi-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (282.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

yasumi-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (279.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

yasumi-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (256.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

yasumi-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (253.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

yasumi-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (257.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

yasumi-0.3.2-cp312-cp312-macosx_11_0_arm64.whl (210.2 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

yasumi-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl (214.5 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

yasumi-0.3.2-cp311-none-win_amd64.whl (113.8 kB view details)

Uploaded CPython 3.11Windows x86-64

yasumi-0.3.2-cp311-none-win32.whl (108.1 kB view details)

Uploaded CPython 3.11Windows x86

yasumi-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl (410.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

yasumi-0.3.2-cp311-cp311-musllinux_1_2_i686.whl (431.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

yasumi-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl (509.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

yasumi-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl (428.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

yasumi-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (243.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

yasumi-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

yasumi-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

yasumi-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (256.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

yasumi-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (253.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

yasumi-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (257.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

yasumi-0.3.2-cp311-cp311-macosx_11_0_arm64.whl (210.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

yasumi-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl (214.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

yasumi-0.3.2-cp310-none-win_amd64.whl (113.9 kB view details)

Uploaded CPython 3.10Windows x86-64

yasumi-0.3.2-cp310-none-win32.whl (108.2 kB view details)

Uploaded CPython 3.10Windows x86

yasumi-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl (410.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

yasumi-0.3.2-cp310-cp310-musllinux_1_2_i686.whl (431.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

yasumi-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl (510.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

yasumi-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl (428.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

yasumi-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (244.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

yasumi-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (284.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

yasumi-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

yasumi-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (256.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

yasumi-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (254.0 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

yasumi-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (258.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

yasumi-0.3.2-cp310-cp310-macosx_11_0_arm64.whl (210.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

yasumi-0.3.2-cp39-none-win_amd64.whl (114.3 kB view details)

Uploaded CPython 3.9Windows x86-64

yasumi-0.3.2-cp39-none-win32.whl (108.6 kB view details)

Uploaded CPython 3.9Windows x86

yasumi-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl (411.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

yasumi-0.3.2-cp39-cp39-musllinux_1_2_i686.whl (431.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

yasumi-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl (510.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

yasumi-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl (428.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

yasumi-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (244.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

yasumi-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (285.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

yasumi-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

yasumi-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (256.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

yasumi-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (254.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

yasumi-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (258.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

yasumi-0.3.2-cp39-cp39-macosx_11_0_arm64.whl (211.1 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

yasumi-0.3.2-cp38-none-win_amd64.whl (114.3 kB view details)

Uploaded CPython 3.8Windows x86-64

yasumi-0.3.2-cp38-none-win32.whl (108.4 kB view details)

Uploaded CPython 3.8Windows x86

yasumi-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl (411.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

yasumi-0.3.2-cp38-cp38-musllinux_1_2_i686.whl (431.4 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

yasumi-0.3.2-cp38-cp38-musllinux_1_2_armv7l.whl (510.2 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

yasumi-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl (428.7 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

yasumi-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (244.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

yasumi-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (285.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ s390x

yasumi-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (280.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

yasumi-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (256.7 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

yasumi-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (254.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

yasumi-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (258.4 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file yasumi-0.3.2.tar.gz.

File metadata

  • Download URL: yasumi-0.3.2.tar.gz
  • Upload date:
  • Size: 9.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2.tar.gz
Algorithm Hash digest
SHA256 1a9aafee38291df1f3b9410ca1fc1f8506b406adcc421d64fbd83e3d5fff8970
MD5 c4afe613687c7e246e465c89346d9871
BLAKE2b-256 462b497c91295dc34683bb1f452e3e2dc6951afa052c815e51f2af0de53e2307

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3e6a819a9a2a590955f9ec888a9b36afcb8b7144acc9957356b1588c132c1a8
MD5 eeae0504cea2dc6d2fc86600cb946e74
BLAKE2b-256 972a77d9d58db36a6162688e8c4248a71981d44b91cb64db5b20adef087178d1

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efb91772bf57058b6ba0f6a6bfe603673395c5d88a98dc436cbea7d02b54eeac
MD5 f16882d909ff01d839a587d472d4fabb
BLAKE2b-256 124b9a0d24138516a22daa6c1e888ba2892909212f6cb05872fd054115f041c6

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 341710cfe4865e3d5e77b242c4926da5751f20432de5db16005780b1a17b60b6
MD5 ed84b86c0cd5de0d114066eae49a598a
BLAKE2b-256 0920eb3f6f3c0517d01d81d99e6b590fc14aaefe3bcaf539227643697087007b

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6a4e4f9147e5b485135b08aa59c6e85e31969151cf13820c79b31c41ceccdf5d
MD5 38977b3050e3b3fb2bc7d69b475f451a
BLAKE2b-256 d9d406bae4771f5a2cdc4525afb2116f976974d8d16b41c571870505b5aeb522

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7db43a0fe72873bdb25ba39654879d5904bc74f37fe59876f4da37b448bab03e
MD5 e873e2d62f99a68ec86859f50fe2579e
BLAKE2b-256 3e8f478317c7a0ac0ae40ac099624f1c28b42bb7578b8cb8350fc702177928d5

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 918578475aef53d2cd885ee8e95e2959af4fe42dd36eba8122e8a552d9ffa31c
MD5 e51d3f546d89765b1458535e216c7328
BLAKE2b-256 f9878062588d046c5039036a6bcefbb03f75d4f725ee62d9e4d029a294c63264

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 95dbbb963813cb3a7ac708d2c13a3bf00e3e1533aea10a38a874a16b49b81d4b
MD5 17fc1e65958bf78bfc28681b0d5ed687
BLAKE2b-256 9b176d9fa7c92083a381099d4394ace6c4bf0a26704e687e088276c53d0e63d7

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 97b2b816d43d3fabe2e9888c9851d2e12fba3855630c9d782183924d0d28f30a
MD5 acc2d86921854e4375cb2c4e4628a82c
BLAKE2b-256 850535942157f485c78b066dcfee6e669c6237a3df8f01e2f08e6c2858e0b5bf

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 48869be24f4543ca99458ffe850e1224079a3a35e305a8ad9eb687e6a5bb1d3b
MD5 ea2af77997e4f8c5e2c2dc6253c25c2e
BLAKE2b-256 08c5c3ed77b03f2d07808bae76599ecfc5c06de82e6085250bf2ec56cfa39dae

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8b33122c06f433e8c43743899ceee5c2719a8c54b044ef1a96b0e59000fe6a9a
MD5 acc0259397ea7450ed4dd8fc5e59b874
BLAKE2b-256 0a2c2265eef75adfb4c7d2f8c0560bcbb6e958792192f3992064edfe9715a94c

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 edf7198f93df3dea969de0977853b08d1ef404f6f35781a5b8addb8b0479c007
MD5 f162c77a7be154bffabe6cfeb6ba12a5
BLAKE2b-256 128f7087e0c5b8064d8817f3f2e161969a0561c28917031983fbf51246e8e535

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2fd394539c76f10ad2e1c1fed4a1a727e93b25b931a8a0ef47cbe42a57c5c2b3
MD5 897e601fae26e8b12f63e3af211a441f
BLAKE2b-256 3e926eac40e2b84746dfa16a0587c840f6868221b770096ca964a9f697807405

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ba154f4ea38371842c646847b498dac1ec89a7f164e729f125774843d6e0950e
MD5 25f17b7d39e46366f90a2ec7e1919833
BLAKE2b-256 d0d5d4b67f151621e395647195a9302f03eca59b2ae099b28e78602859fb728c

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cb5f121cfcfacaa52aa00ecf1702ddff973211120bb0f57e18a5fc26b3a698f8
MD5 860dfc2c74e19967b4473d27d7dff9e3
BLAKE2b-256 03c857bfc60b17318272bf4a33b0d55f8d0797093fcf3f4c90a46d491d4bd929

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c2af79578d2bcc012e807779c223683fadaf43467d9d227d0ae89c55c778d926
MD5 6810ebc55c55d53d4719cdf9a19a8464
BLAKE2b-256 22c0bd7a59c09a972543e8b5c3daa208774218329b0715d325e12d87771aa26d

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1a7c10f5b189cb22d1c3f59d07b108cb54209b08cfd05d0f84edff6d67ffd2a2
MD5 de1518ee3d98437133b7ab22ff131338
BLAKE2b-256 1eb4ef3e25b45cf7da031b0027c95367163bb0fc87f550b1bc4a20f7dcf8d577

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4ac3dec42e9968e8282e208da7ad976e3cc1e172cd32605d4d042840050565ce
MD5 2ff76a95124b8ac7d0d4b24b86805eb7
BLAKE2b-256 30e5e2c3af40d82f41f7dcf78e2faedf782c0536fe87d70cc4a624d9d04fadd8

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 220133500a6b2c5050aaeb308f8420fdce0e01cabcee840ba107503741be5726
MD5 a21cb1726c16e187d4c29110f8b48e63
BLAKE2b-256 6d03f9c2c09c5a15b89c9784bda97f3a1eda1dbcac395444bb2fba9c48c0b7a8

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 41f37d4df4db404076cf696aabc7cb6ba5f4b42a9c836522bb483d633d4b89b8
MD5 4a9ce2f7f06a11453298b8ba4ff08433
BLAKE2b-256 8ac00798492bd04fb721f68e38331f759bf606c08fe1417eb5494cfc69470561

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a5d028927af173c0cdf4e37dbbbafe169addf95470741db8894cde289f9ccf2
MD5 eeef1988a6562cd9b223be3a290d4588
BLAKE2b-256 10524fe0d6500f17710eab74c2b1dc6412c735a637f562c89b2a0c762e8c9266

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 666b2e9d2d4e7ffd26310b6fc905eb27200226b9f267edbefbc9fafd37ce5f86
MD5 678811c2b8c1afdf4a7e3c39a2f2ee88
BLAKE2b-256 a860578b46f7a271129bc9b340937e83745792e2afb3a1ac205288bb165730da

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6bc91ab0cda9e5624ddb02c0b91e729cdd1e90e1d686c3d7eed17eabff3ed21a
MD5 ab3d129b899b2d23cf4ddbc3ce109096
BLAKE2b-256 1fce12719b7ad81d5744899a2b920ab23ca3db6688c58728882d5c96c380eec5

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 03a10c884449674631db5b877438b2c992245b006589e024c7b5f78c9fc19e70
MD5 43c3ea36ca09e9dd5dcbe21c7e62cf2f
BLAKE2b-256 4b94cb96f53cc049ff170b882cf9231d951cf49ef5e14ce0f26e1235748f9ee8

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1697c33a29d0d05c14f435b6a257f57c16cf0882f371c8663563eb1d7f435c0a
MD5 a6497ca776f554f5fab61ea605847cc0
BLAKE2b-256 844a22aab357234582dcef15f9306773066d7a221bf2234b28045a26d93c4462

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 aa2dbf9d95cfef8812eebcbe0668b8ce5b6a46011bbfe60be77d2d6b7a01becc
MD5 d5eddc0d49ba3d37e8be54f5541a5ff0
BLAKE2b-256 f62e8666c8aacadff3bcfe2005ae0b36e2348369bb66e26c4350190158eb4e39

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d86420c0d92ec96153d8156ee9041a421b58a449a54fc0b06b0d497134e9e02a
MD5 ff6f0a1717514f629263f9f0d62b5a63
BLAKE2b-256 63bd3565042bb56d8cbd987d85422edcd7ab2bf5be0643890e50795f1afac1bc

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b524a42604a5bc3fdda766342c251d5230d1c9c135870a5715e24e8a9ade18a0
MD5 080861227ad71f4262f9a863a552e6bb
BLAKE2b-256 855613cb0e8ceefafc7c4c9b63711ff650c464c97b0d93823ae415a9ca0dcae9

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 98fdeea67cb9d3b321cdec36b6ab551e1ad0866fb7577bbfb992a96ab86726c2
MD5 5fc904e8501e217aebace460e2366412
BLAKE2b-256 2f5ebbd9d0cd850f7bee78221be6e08d7b76661e75c7ca3387beb71249613a47

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-none-win_amd64.whl.

File metadata

  • Download URL: yasumi-0.3.2-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 113.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 035f748ed4c3156b29d126045f939440a22de5e203f196d04d8f9799810d64a9
MD5 216dd061250d78279a1e300fc0b3f6ba
BLAKE2b-256 9228b55c18b90d8eae041ca4d166046f6d42acfd5252a3617a7a1acdc29c773d

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-none-win32.whl.

File metadata

  • Download URL: yasumi-0.3.2-cp312-none-win32.whl
  • Upload date:
  • Size: 108.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 09a5474e88eb96a171cf9333bbc4d88eb9fdbde593ab4f2f8640fe3a323abe00
MD5 20560ae050700fe6477f6912d77c959b
BLAKE2b-256 b3b816f7a727375b52ca7566573c67f5fd61b734ad893d6d63b143d0bd49f935

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ac917d180a4ca8ee8b4ab1ffd2b589beafb4dffa79c8867e4748be165e132c43
MD5 58ce3d4a71b22342b0b7ef921ea0f3fd
BLAKE2b-256 05ccd59b46cee7c6aec3c332e6703e886bde5566fd9a51bebc7d9cb625fa4a5a

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 32d3b5cd7d7d62fcc6386da920332fc3e99c1809588dc7ef0fae8fa0e21a08ea
MD5 0039e860624182b91ed8f646a6a34b90
BLAKE2b-256 c85cbc1f79d33aab4413d98e12d4aca836ea49d30c3fbb423cd752998539850b

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 67921a9644d3dd116c9891a1d81d4f486540c6add879347b85bdfb066c8535a9
MD5 d3aa0e8fdeb483b7036013bb6e72db6e
BLAKE2b-256 a4e76641b146a5b510b935a9c5938d6ad49088e63ed8fa86626e1af2fb30dcc5

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 79e16b98e9e351e5322ca7eb3e0837babf8a0534dd5a57c65929f16633fef577
MD5 65b8c816a43760a75c6e823335123506
BLAKE2b-256 f5ebc14d20731d3d265ae93f8cf7e6115cfdedd8bdb74db49d105e0fe39a3db4

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 530ef162bff4560d691cf4f7b2f96b880c1708777841ff81a3ed236d46ed1f6f
MD5 19fb36a03ef7ab319ed70d65efbbecca
BLAKE2b-256 82d59ac57d2980a9727b487f3591d5825329e828dfec233f4f90e0ada34ea7c2

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 10ab9bc791318db4e65a343d60b23f7ce28e91fa5d2e843e89e498681400fe9c
MD5 6e3e03f2a114243e830197fc81c74d4d
BLAKE2b-256 a810a1706b078971745cc66e241092cc5243e91e81bb3fecf254fff749a90c2d

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fcda750b5b83c341582cd45847d649739acc809343c72af37d4dd6451b26e475
MD5 0121a690f3f6b2d57bbb508d3597f56a
BLAKE2b-256 c9eabc5f113fc9ab0dbd071b378215a9539dba02fc0eed25e6f225bfd68769bf

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7bce411c9de42382c28e6bd5a6b686da42297acc3e3886c188b865ab27c5db3b
MD5 0895ce8a703cb11eaef065a98ce5d0be
BLAKE2b-256 cff9f03a03fbe2aa0b56a41e14af0f47da31a171acd771e169d2b802790b6dfc

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46c9d545cece41d3b6af7358a64cd08083617b5ed80097f6e51c88b75b1def66
MD5 f7a63b9df96014fa67f1d891d8392987
BLAKE2b-256 2d9eeeae1299f58cd64e0b118d9174749e3214917e1ab2d9d6ec9cec079cedb8

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fa674359cf3058f83fed08bcca7fe40a121296509cc7c5afa2ec27695c6d840f
MD5 4db214b5b32678af675161112484753d
BLAKE2b-256 05398f0537e888daa6108301d6c148cd0af24f12fbceede73816569dd9e6385d

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 42e8f8549f34d70ac8d07e72a1c3fc791e2ddbdba55c90b5c218d8bbc110f1db
MD5 063d8349fe06c502b750394b61c34239
BLAKE2b-256 c4785fcd20a3a0ee5b91f824ec8fcc4a0acf1897fe182ae418d707f0af8f25c5

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 0157e855b44ab4c1259ec216dcfbabbbb88d0985822c763da51d9a72671498ea
MD5 d7cee3084ca5bb138a8f75c16557e38e
BLAKE2b-256 4824fc82f5b179befc781956a6c1aa294d514debfc4a3fd731341dd6bd5f0209

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-none-win_amd64.whl.

File metadata

  • Download URL: yasumi-0.3.2-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 113.8 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 2efe28a4f985e56e45b409d31d6cbfa3e2dc7db0dde36e05ee13070cc28ebe88
MD5 86b19204f168ab666135a5d0fc2a9fec
BLAKE2b-256 7946b23fc029879b6552b4a9c9bdc60c697f937e57ab62b5839593ffcf7fcd9e

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-none-win32.whl.

File metadata

  • Download URL: yasumi-0.3.2-cp311-none-win32.whl
  • Upload date:
  • Size: 108.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 f3cf9712b22ac26259390b98f912a81b52c243de69784f81864353e665abd1e3
MD5 2c5ad652e33e4e27f64bc27b3212d206
BLAKE2b-256 734ca851f2658f9ff216deb0fe998cd39bc94fb8c0a63faf062b68c1008360d2

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dd5e4efc7c68a0b41c1709cb3a7b88b2fc9155f5c1c7c0601d62aa531d30e3c4
MD5 46657c22dd4cb3f00b7014e9b3d42df8
BLAKE2b-256 2ffdfbc083a31379c356e11be069cdce05e7d85cf648a6319fdd0bcec3c6a68e

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 30ec3e90870d803b2d7b28f6741b85ef93354ad15939b5f733841dcce19e3556
MD5 a6872f13e79bc683c87a2b558645a1a5
BLAKE2b-256 6288b7b03e2211e6c6159d7b288e70b27c05723a55b1d6d4ca954ca879669ed7

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 695cd80c05d863fa4437f51d64497e2f1a291f5c6349968c54bb956f2881d235
MD5 39e6eedd98b2fa38ce81a9100a82b167
BLAKE2b-256 85b3222b616788b67e4c35466ff3c8e2a2e9084083b88fdb681fdec4f248def2

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fecf1c8ce4b986579cbf32c5e687aca0c5e129c20950306e6f6be095156e2189
MD5 1fd9046d6844e91840d6a460fd56f0b8
BLAKE2b-256 6b875b0fa5522ed433411f0855d679c7379ee975dad30b4b8cbd6416649c149f

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 29e68ff312df39715a5b00e46c0fc4e8b490c7a83769fca866502f1393e94d3a
MD5 b03e0d7e137a380c5c4114b39872afe8
BLAKE2b-256 d8cbec4a192d98489f637d5071f4fcac4f0c8b2689ef59c26e00cd5ae67819d6

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bf9fc2ba40d7b18f43fcfddeb76965aad714eac6bfdfacb22844ad163475e4f5
MD5 749015b24f5c9d08a4d4462c518f1f8b
BLAKE2b-256 3ea82516bbac607aaa2761ed9ef9bf88b06536b2b64247898c67fd9f4170c821

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3687549cc11209a2517cae1977a4cb519e80f35fd30ac7c196e7f323abc43397
MD5 f8918159b8d57f4ca3b726efef26d659
BLAKE2b-256 0a6b839b5d27fe3f8516c9b4f464734b0d42f0a87616c75a7ef89e29c9ef8931

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c73fd4047bceab63a27d058f94a26b022ba965a8ddaf7aa51db0639378285985
MD5 686d85850a84c417816e5a86384e2df0
BLAKE2b-256 ddf9058a77a4e58c2b3b882aac5f3a9a74aa0412fb9f6dc772a04b4ba9b1956c

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 81f1ed9743437d8f70770a4fdfea2d638107d4a70973da0799e817c97fe052f0
MD5 9270517a850735f9b12b08a4b8c73488
BLAKE2b-256 f6146be2ceca29db1d2a613b4ecf5eb40cc77ca1c5a23593c8a33c47e5bb0318

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 fff0795a4a8414e5ad50805ae0cb0d477f0f07520716c94418c193da2572021d
MD5 fe57589cc242d95be68fd909840cc55e
BLAKE2b-256 425f9b309f65f74d3fb273c575606e3d1f202530f45c4dadcf122c83bea0c874

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 26bea274474e4b69f6f0632ad56b8624e5458d57727ed8d0f71c46743d77fd5e
MD5 7b61e7ca3422425ebdb235f1e7f67315
BLAKE2b-256 5dec9b2887e2dca645b5a01b673834127f667babaa742306eaacec237b4dc22f

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 07b2b3e3066177b5ef4f46694ffab9c91c3df48d646392e1feeca18f1c13b92c
MD5 7bf5643e7d0645858707630f8492bb51
BLAKE2b-256 b942ab4ffe1584850c3a385584477feba151ad68d52c5fbac20d9e773ca69e4b

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-none-win_amd64.whl.

File metadata

  • Download URL: yasumi-0.3.2-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 113.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 77f43b84b68998cfc198a84400eb32a21dab63f9f7228c65227c589b867f44c1
MD5 e0f593b8f6c5876657c3559410a757f5
BLAKE2b-256 8f3b4e0c0bc641e262c173b868edeac9d2cbb98feeb381348f096b4ccc11cc84

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-none-win32.whl.

File metadata

  • Download URL: yasumi-0.3.2-cp310-none-win32.whl
  • Upload date:
  • Size: 108.2 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 2a1a081ed2b126c115989cdb33366dbc93a217f3fdb0693641d13abd5fc4544b
MD5 06af57a93b3ef4193eff756e8dfcb4be
BLAKE2b-256 05844983f8afd7a01a28b9ba680c92f9adc62bb33816802e4024f8b77700113c

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0353c8f2318649658826c246e7b21a6d30431b775a3219a17f786f61df22b561
MD5 73534561a49366c843214b6262e5777e
BLAKE2b-256 ccfdf7657cf945a654b9aa2dec16fc6f30d0bdb35fd60e3fd65d06d64ef638a7

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 13664188df9fcc1e73b3a35710c515a3164d96a8dc2530d1481fbb3802945c7d
MD5 ec8707df61319bddd15ba571c7c2aad1
BLAKE2b-256 7ec0bf98fb3ca370606c63eea82906504987ee748c4f8e65f0c828b864c0bd6d

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a82fdaef7fd6984a54162b7115795f880d1b899c2b423d0bcec35298031e4996
MD5 7bfd897876b6af084f01e66e14f86ff7
BLAKE2b-256 c069ed5a49c6e47596d3d3a2be9806e51ccd74188e207e1a69808b55800bdf6b

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c80f26ff18ef3a695c9ed83b544c39ed93ab6b56448217f42f43c9aed8ee5ef6
MD5 221ba7d439d681f5efa0206b2d778131
BLAKE2b-256 01ee97b569815ad2ce7264e1b5e9de9d9145b9e1a38f1d76f37022e7b9e5bc70

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 34638651185d7d5967eaa5528b55526fc259f464c7ac3cb0095bc2fe11cbc95a
MD5 0fff3642e67fee3f6961f6f0d5b2665e
BLAKE2b-256 4186cd2dbfd904b242c6372b9cd2defec433290e036a618ccbba56ec372f3f23

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 03c807b909ee9299d649ea366d3f7793197333527e9e77f8718b02a5c0c141f3
MD5 084e06aef48577c54055426cd016ea22
BLAKE2b-256 184754f6c4c43c5b9820f384a53cd82778daefba4e7c28d93c4f9792a00bdabf

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 374794a54d2890e96845a7e2511168c965c2ed2864ddc56db9bbd5fff080a5cd
MD5 013aaa32ed3bf6fe2838b46a9dc1b875
BLAKE2b-256 15a7233704bc4c6e1465889e980731243e2b825d8bcc98fcecd2b5dd63397d8a

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 298a29c0cee52958e922d04aee991a91f42878bb1e575799a92f534cf1e35736
MD5 71441b2c829ce4135c62b603de00af1c
BLAKE2b-256 4b52d1de9e6d29cd8f141fb0e4f4eaf184a96fa3f0baeb8f99f2c73c3aa81269

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a7efac068cb689168722b5883d052407a3b1202db996f448112782390cc81382
MD5 60ee8fc5eb16e1e2421a0130ca4d0fa9
BLAKE2b-256 1a73af9f17aacf2945b250e9f43f5f2139772f381bfe6132a726ca3d379543b4

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa9fffea2acea12a3369cdbd6783bb197297e20786434f919259bba2e45eeb02
MD5 cc7c4240b8c1f5b0f39cc4b9b4c3521d
BLAKE2b-256 70cc754f19986aa31cd118457c89a7dcd9f836cfeb457bff879707d824abf20d

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 361fd33d3beb250fecbfb672684939bdad08db8996ff52bd927180fd8ec5fea3
MD5 e71de1a7dacafba36378d27bd880318a
BLAKE2b-256 18db2e8948325d6248a8a420a18f5f1c2556bf8f460111229c44166c0d1ca3fc

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-none-win_amd64.whl.

File metadata

  • Download URL: yasumi-0.3.2-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 114.3 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 3ce7e50cf995df565f05f35fd5430f5f84c2485b245993a910efcaea3ab36119
MD5 b5a5aa88affd7e9c9e8c74b4346f9c57
BLAKE2b-256 17f7871a17b3402967dd1cfe2ecc1caeab6c45761d0cbe4fd9d9ff78c4875e2b

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-none-win32.whl.

File metadata

  • Download URL: yasumi-0.3.2-cp39-none-win32.whl
  • Upload date:
  • Size: 108.6 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 c56c770ad58f3ec5de7d0dc4b98fc11ed5c8bf4cdfa6bdd055af99631012c8c2
MD5 0b6926f3b72621a235fdcaf644b5c96b
BLAKE2b-256 6e1ebdd2caf737ff2c4941c8569d665a68592ef21b0ba20b39723345eb72d51a

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e11ab4a0becbcb28b71a13a1dc2763806448bc9b28507c9b502b513b89077e79
MD5 ae483a1e8219955f7cee04ad89c35d15
BLAKE2b-256 cca87368ba46da811a0f317e74f88d0640426d94a1ee030fc66c66ddef6abd27

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

  • Download URL: yasumi-0.3.2-cp39-cp39-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 431.4 kB
  • Tags: CPython 3.9, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7a977eef4ee3aa1039763391bba29e5205b47b3a42171e419c55b2da070ab888
MD5 366f74e76bc33fd6ec8d847c63b108b6
BLAKE2b-256 3cfbf15fada6204a73958ac5731c085fa4d776c59530b9f4fedc7fcb738f5b33

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 febcaa1c5a71e2803f0939478bd1f7aaae5f6e1890ab312155b675549c6ed508
MD5 c7f0fe88714b2aa4b8c106bce6ac6e40
BLAKE2b-256 7d1014dd6be79d412ab28a94e9261b375d30fee4124d8afcbb13906dc8b5f0ca

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f8519f2cdd32545d4dcf02636a38ee00cfc0b4c238138e6ad6e2c812c3b1e11e
MD5 8fb732ddb56b579f12e347cfeb543457
BLAKE2b-256 2c8c95ccfb9ed629fb510fdf7506339738bed286f4b0e933840ad066fe8bfddf

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 17c87a5d62e2c09a7f04fe8f5f9edf39c0cd6fc33bbbf44f04d9447e7eb7f7ea
MD5 885f1c75a0c508b290ba66588ae926c7
BLAKE2b-256 1f524297c14f72a2be272cd0445c389ed784740f301679216de26e5525b96b9d

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 afd7455b6e7209398ca125ef1f5f499f91975ffb0d1907d8ea6f0fa649967857
MD5 68a9195d71b0c33f47c02201f231b949
BLAKE2b-256 7d86c843cb5d5f69f4522cab7487766cca566797a348d2e15141dbfdf4b5ebee

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fa405aa3dddf622c924685df60d1cffac50c5ad39b340838ca3e3402bb8139a3
MD5 47d74788e09b4f79fdf82a44786cb0da
BLAKE2b-256 0b454dca52ffa040f28d30c9b38796a907f041eb0f28491d20c99c3e1f2b88e8

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 16bd74d8263528ed69bfedd09df7076b45d5423d47762fe89c3dd2fb5dacbf89
MD5 1b62d0043fbc9351a78b4dd054e49f9f
BLAKE2b-256 948dd11ec82b525ded65b84c19791783f4e4520f5376dcec2624eb577ca7ddc6

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 51859f9df431601e98b54780d9868732e44c3107b0321b4f80449870b1d1827c
MD5 4ebc9fb11e2100e77fb9926faf38a580
BLAKE2b-256 0c77d8357610f8faf281a39cda94017ab281475ef71f93da88707eddbe98d258

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ea5001aca4e06ba0c688c601ba6a5d500a908ed0103b99624a1d4a55b3f885b9
MD5 841745867953c0616929c7f74fb4c807
BLAKE2b-256 bc9e15185825b8415de3d881092c52a993764ff7c32f4cdb13f4b15761c9e197

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 deb16bb4b8849495d239447a5d03cc80c0e39351b56e400442ecadc96978d706
MD5 778b27ec21a3653dfab0282e4900b5aa
BLAKE2b-256 08e8b59d4bcec4ae9e32307734e2aa83047d6b240404ba182fe05a2e8dac0ac7

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp38-none-win_amd64.whl.

File metadata

  • Download URL: yasumi-0.3.2-cp38-none-win_amd64.whl
  • Upload date:
  • Size: 114.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 94d5ad8635805ce6764e6aa174ba716770870299d4d6b8b9128d5afa40a1ad74
MD5 5d2ca9585e9ddfb37cb70f5d8597b04d
BLAKE2b-256 1f7b1b31510ba36bffdb47e0d220fc30ee4fba3bdce77aea2eadd36c0a7d21ae

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp38-none-win32.whl.

File metadata

  • Download URL: yasumi-0.3.2-cp38-none-win32.whl
  • Upload date:
  • Size: 108.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 46bb23385a5a94e33b52566cb13d3b4fb726c70647616d78175ba9ae43944d7a
MD5 98a8b0f9e516d9a92fc19a5f5e39572f
BLAKE2b-256 84c0e7db450cccbf7456ead5a7b3a9218c326cdd2636341531e7facd462592ae

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc2399988502b0f5ebc1d8b2766455903b3bffc902ea8d57793b13f250ed006b
MD5 0f4e4e69742dfd8f185706b5d68d8455
BLAKE2b-256 69871b70548e299f7acb7fb90770e0d442bc62d38b807707ea823d6265a5e77a

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

  • Download URL: yasumi-0.3.2-cp38-cp38-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 431.4 kB
  • Tags: CPython 3.8, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.10.14

File hashes

Hashes for yasumi-0.3.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 78f8af155bbcc60ef5a0a38ea898cb8c0a0392700f36ff8003c1be6a52be8edf
MD5 16ede8ef88bb731fcaf89405f6612a72
BLAKE2b-256 184bef9852ab46218884ef88b450b05e49a45e59c24ff6f53027eddb91d8e51c

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b83803da997b84f22ed34cf0b3b6d97e8b3fa0c35065aef0bc3cfac97324e15c
MD5 334929254ce92ac45d89c1add3a8658f
BLAKE2b-256 61ed1fbff3db905faf21719aff9747d0b635fd40019a39d65a08d8f8a4d67dea

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1a6c8a32a8f23ddd1d11dd62eb8894a775022263d423262f6381f58083f2f771
MD5 bcd6420d76db92a8472efc68e75c0e00
BLAKE2b-256 d9e55efd1b72c8120be2ffd10e76b1468eecb1fb42c1d8e37bbb71d104870686

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 898d11dd45859b92c04f685be64d758b7518ee90eb53b1d6ca972aa2787dea33
MD5 4ecb77e16cc02c1a4ae086efe8aa1178
BLAKE2b-256 ae6e0a55c3379723450d292c171467025a24fded418be462ce06bc2b0203f604

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f45377c4dd9f6099235b0abd594db8e302ff14216c64a497319ddbdfd5405e55
MD5 2a19ad8babcfa69e8c6376ded8394305
BLAKE2b-256 3681dddf6ab565c74de2c940bb93547849bc3b215a6ffb454e0ef7e15f7299c1

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3615a125befdcd0dcf99b5075bdbf2bab35d8e5d32db08338f4058778ba72ce8
MD5 1d19357e592ca531e026ff4e470f97ea
BLAKE2b-256 6356683728f88ae05e9aa3f9051d14e99cfa503c78ccf1efbd451217b73859fd

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 275c9a9be19eefe3b1659a8dde2dcafcbe6f2f506485ab963341ce6b4f582459
MD5 1d9666b100dc1e6e95c3d15a45d0f046
BLAKE2b-256 cc79aabc572e64e97c5707e83c0696071f153353d6a88d3efb2401212046a69e

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5f2bb2377576da228a19909527fbfea6a440c778b2e1db3c653025fcffe778f9
MD5 c92dc727a04684e36b3adb9fa8456fd8
BLAKE2b-256 aa6fcf14a1001f075c594970a5a1ccf3a53560737c640f2e69508a347214fd5b

See more details on using hashes here.

File details

Details for the file yasumi-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for yasumi-0.3.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 89e09268414a97e4d6f43af745f13023022c87302ff0727856a90021d853c71a
MD5 5d0b5094808f1a8266e785300095fa30
BLAKE2b-256 68ab59636533679956c7435b15c82c097a7f6440d4406fa1735915b65ab88f23

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