Skip to main content

No project description provided

Project description

moka-py


moka-py is a Python binding for the highly efficient Moka caching library written in Rust. This library allows you to leverage the power of Moka's high-performance, feature-rich cache in your Python projects.

Features

  • Synchronous Cache: Supports thread-safe, in-memory caching for Python applications.
  • TTL Support: Automatically evicts entries after a configurable time-to-live (TTL).
  • TTI Support: Automatically evicts entries after a configurable time-to-idle (TTI).
  • Size-based Eviction: Automatically removes items when the cache exceeds its size limit using the TinyLFU policy.
  • Concurrency: Optimized for high-performance, concurrent access in multi-threaded environments.

Installation

You can install moka-py using pip:

pip install moka-py

Quick Start

from time import sleep
from moka_py import Moka


# Create a cache with a capacity of 100 entries, with a TTL of 30 seconds
# and a TTI of 5.2 seconds. Entries are always removed after 30 seconds
# and are removed after 5.2 seconds if there are no `get`s happened for this time.
# 
# Both TTL and TTI settings are optional. In the absence of an entry, 
# the corresponding policy will not expire it.
cache: Moka[str, list[int]] = Moka(capacity=100, ttl=30, tti=5.2)

# Insert a value.
cache.set("key", [3, 2, 1])

# Retrieve the value.
assert cache.get("key") == [3, 2, 1]

# Wait for 5.2+ seconds, and the entry will be automatically evicted.
sleep(5.3)
assert cache.get("key") is None

Moka can be used as a drop-in replacement for @lru_cache() with TTL + TTI support:

from time import sleep
from moka_py import cached


@cached(maxsize=1024, ttl=10.0, tti=1.0)
def f(x, y):
    print("hard computations")
    return x + y


f(1, 2)  # calls computations
f(1, 2)  # gets from the cache
sleep(1.1)
f(1, 2)  # calls computations (since TTI has passed)

License

moka-py is distributed under the MIT license

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

moka_py-0.1.7.tar.gz (14.3 kB view details)

Uploaded Source

Built Distributions

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

moka_py-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (552.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

moka_py-0.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl (586.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

moka_py-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (654.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

moka_py-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (559.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (391.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (415.7 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

moka_py-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (552.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

moka_py-0.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl (586.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

moka_py-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (654.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

moka_py-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (559.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

moka_py-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

moka_py-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

moka_py-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (391.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

moka_py-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

moka_py-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl (551.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

moka_py-0.1.7-cp313-cp313t-musllinux_1_2_i686.whl (585.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

moka_py-0.1.7-cp313-cp313t-musllinux_1_2_armv7l.whl (653.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

moka_py-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl (558.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

moka_py-0.1.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

moka_py-0.1.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

moka_py-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

moka_py-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

moka_py-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl (551.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

moka_py-0.1.7-cp313-cp313-musllinux_1_2_i686.whl (585.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

moka_py-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl (653.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

moka_py-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl (558.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

moka_py-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

moka_py-0.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

moka_py-0.1.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

moka_py-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

moka_py-0.1.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (412.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

moka_py-0.1.7-cp313-cp313-macosx_11_0_arm64.whl (339.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

moka_py-0.1.7-cp312-none-win_amd64.whl (233.8 kB view details)

Uploaded CPython 3.12Windows x86-64

moka_py-0.1.7-cp312-none-win32.whl (227.6 kB view details)

Uploaded CPython 3.12Windows x86

moka_py-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl (551.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

moka_py-0.1.7-cp312-cp312-musllinux_1_2_i686.whl (585.5 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

moka_py-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl (653.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

moka_py-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl (558.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

moka_py-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

moka_py-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

moka_py-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

moka_py-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

moka_py-0.1.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (412.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

moka_py-0.1.7-cp312-cp312-macosx_11_0_arm64.whl (338.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

moka_py-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl (344.4 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

moka_py-0.1.7-cp311-none-win_amd64.whl (233.4 kB view details)

Uploaded CPython 3.11Windows x86-64

moka_py-0.1.7-cp311-none-win32.whl (227.7 kB view details)

Uploaded CPython 3.11Windows x86

moka_py-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl (551.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

moka_py-0.1.7-cp311-cp311-musllinux_1_2_i686.whl (585.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

moka_py-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl (653.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

moka_py-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl (558.3 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

moka_py-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (380.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

moka_py-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

moka_py-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

moka_py-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

moka_py-0.1.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (413.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

moka_py-0.1.7-cp311-cp311-macosx_11_0_arm64.whl (341.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

moka_py-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl (346.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

moka_py-0.1.7-cp310-none-win_amd64.whl (233.4 kB view details)

Uploaded CPython 3.10Windows x86-64

moka_py-0.1.7-cp310-none-win32.whl (227.9 kB view details)

Uploaded CPython 3.10Windows x86

moka_py-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl (551.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

moka_py-0.1.7-cp310-cp310-musllinux_1_2_i686.whl (585.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

moka_py-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl (653.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

moka_py-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl (558.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

moka_py-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (380.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

moka_py-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

moka_py-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

moka_py-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

moka_py-0.1.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (413.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

moka_py-0.1.7-cp39-none-win_amd64.whl (233.8 kB view details)

Uploaded CPython 3.9Windows x86-64

moka_py-0.1.7-cp39-none-win32.whl (228.1 kB view details)

Uploaded CPython 3.9Windows x86

moka_py-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl (551.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

moka_py-0.1.7-cp39-cp39-musllinux_1_2_i686.whl (585.5 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

moka_py-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl (653.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

moka_py-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl (558.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

moka_py-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

moka_py-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

moka_py-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

moka_py-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

moka_py-0.1.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (414.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

Details for the file moka_py-0.1.7.tar.gz.

File metadata

  • Download URL: moka_py-0.1.7.tar.gz
  • Upload date:
  • Size: 14.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.5

File hashes

Hashes for moka_py-0.1.7.tar.gz
Algorithm Hash digest
SHA256 018d149e6e5878ce5d4db078c6ac08e55349d0f6d1985e7b7f3a5fff31999760
MD5 2d8f5f92f58a97e499ebf3b689500fef
BLAKE2b-256 0729436dea55edee60a90ceeeaec6fcb1a689ea791691ca5a06ebcdfc1084588

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b6d6e417d8d1f6ec468513a949e05485cd346daa15a3a0987a43a765a30edf95
MD5 058babbe31df645ddf04828e10029553
BLAKE2b-256 0e130a12347f6363e846e533d448811b2380f897ab82691836f1c02003a39229

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 916964743c75f204ff1c08b09bc041ef590952376e40d747ae53ecfd2e0df0e0
MD5 99fcac718c51127bf0f31b6187554917
BLAKE2b-256 4e5057178655fadf7f75510ca396df0dd233430922e610e5698502cc07236319

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6ffbff6acb478f5dd3bf29bb845857366449cd8cd51170c239784452b5b7172c
MD5 d157ff0d0ee336e76c9d83495c5d3286
BLAKE2b-256 12b148a84cb45153ecdd7e634b7ec8d35beec2dfb28f10fbef0b603e5210364c

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fdb872622b9e0308cafc2f9048ba31fabb9163002c660521d8bbd397e1c1c4e6
MD5 2b1b06ff44384f7e7c4ec4aab8558b0e
BLAKE2b-256 d635e63b6851b5dd319e917b4175591d7c7c94b2e409140ad9a52d8cd2c4dcee

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 370af4bb43cad085f7ff59175e799cd2e539205563b1845c13da7af5993f4370
MD5 1d711c824a472bbdac46f943b4bd5882
BLAKE2b-256 1a1f25d309163caafa2ff3f866f8e01eb332503cad56e18fb9a6f62c1de69ace

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa4fe0adc0c64e79182e41f0fbe164b072b3b30540addf60e0aabf05f2482b42
MD5 c7ec54930cc9036bbc8db0fc68762cfe
BLAKE2b-256 95663f889a37ce576d9a0eb2204b2ed190b6bb7a6a300ac55369aeed0ec965da

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f0cc356f95a9e4431c913c9a67011be8a665291f76e2650d7ccaa1c63e9ef34d
MD5 337fb9fea2c33380516455be3d5a9932
BLAKE2b-256 66061ffbc49546dafdc6cbe2f1e65c49aea8995f9780c97869213ac03b564ab8

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 91a58f6e7013d84c913ca5bb6bb4321143de045b9f677c283373bc5e05e67cc9
MD5 b414c9c91f3f44c67be304bc1fa7b660
BLAKE2b-256 16476bee263b47265db4d18cfbfc6a6e9772c50d9c608cd7d4b0d86f0e56c96d

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 737455fc3537949bd7520ea7d19f06cbd331790b0af3879503f0982c7e275d29
MD5 c3233305265a9794297cf9b581b0ba9a
BLAKE2b-256 41881ed95ed349ce1b9c6105386acd1875c221d7974da66bbfb16cab529c9712

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5ace33b830f3bd89bc0cc4bb40f06d4f573eef8188d1de4c4476c7edd561b56e
MD5 d6eed52f6b8d258842edb7175240e466
BLAKE2b-256 f83219621040845829df99cfd1b2bbf76205ec363a73e735821907bdab0d1a14

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 20f063d4ac7c1b18e06af0430cdb502465f2647530c0d96825f16144a5867752
MD5 e326d8e86286fe074748c934bebbf2cb
BLAKE2b-256 bba1aabffb6d280d4ca930b9067e28612278b4d036af76d19a4111b85dba87a8

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 959b0fad0a0f228cb3e190f199d70566bfa87e24f9431469d981baab029d090e
MD5 59de2e43017d4ef18be329c2a27c497c
BLAKE2b-256 e31cb0c738e84f393f2925feb6baa687c4752202778b6be2ea24fce8953bc1dc

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 18f3935df7adf7fc074155882e4c5782a04899d4d351b2a7bf969c366e265c2f
MD5 4d8a342ff1f027ef06202e7a9818422c
BLAKE2b-256 6271bbae36d0e01674c66016a88c855a7a3998e220e50f8cb0736bc7200384a6

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 acbdfdf1ceacbcba6979057136b3cd177545b4b9dcb6b015cb45c7ce5f790fb2
MD5 d4197c9810a9b5d4f1789d1472c10a7d
BLAKE2b-256 9a10697361ffb7b83e0c14905bac625619e382a3628f79b2071cfff1422c3c92

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0698ba0732f94dfbd3a405644a0a13ab4ccfee358725313f4e4b0b98ce61ff9
MD5 9e85257d4edb2de986f0edcd09e2d56e
BLAKE2b-256 193dad3cfe600a240955b317061fdef6b6b0f6dd364780ef712f48a53e524c2e

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a8d36dfd62db98c69d9ea1459ba30ea2d60f5ac29d3f46009fbefacb2fbf0b25
MD5 70d1a63a07bb6fa0667539546f1bb6ee
BLAKE2b-256 5194229d96bf40a2ee6c67ddad4bf6a997362764902be7a1176ff7123def20a1

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 6d284f758c5771a91fa85f2ef879d87af6c879873819b72f85d8743e1427ff0b
MD5 c8b87ed872863e4251c3ae250da26a85
BLAKE2b-256 5673ddae87de6ec2be0961c00b7a26e8520dc7c36df1775e47caefbb5ea2392e

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63b138b91960052bedf702c84f216a8eb264f28ddb6fb4b4f269ffa5e559aa4a
MD5 fce6e191aa900f49d2ce39bbb8d97e5c
BLAKE2b-256 df3249e40f1626b1eee792dbd53eee965daf898e1c3a1e9e7d9190c2fbec99ac

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea71baf26308f255763e9e931d49f993b80c18e0d4cc7aae1251fb3755bf4ad7
MD5 f36ea71e73f10da9bc5003e6aefa1e63
BLAKE2b-256 7999ecb4db7e1b9c25758e4a6640a4abfa39820f6f4bde93aabcaca61fa2d3e8

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50ef66ab5dd6da6303ab0578283069a08031f23b06e85768336088fe6eb8a7ed
MD5 c84d301cd9be0835c5190f0890c7ab12
BLAKE2b-256 7c5e5fb730ae3fb2b4101f7ed06316ccce790db88d9dba63886b2768b0165737

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7a84bf24253d0b9036da2ef12672561206341c82b98212567511a2f739003bc4
MD5 c28ca3b3b6daa5679f63d978351641dc
BLAKE2b-256 3da6ca77717e6293a6710a2957822bed48957d6d0f5a2daa3e8711342bf66454

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f7bb058cfe21f7cb6ca727823d4d7e7c504399b19325d351249db00f6ec99c30
MD5 117a2c37fe3e03c66517447da995f6bc
BLAKE2b-256 443a19af248720c2c43fa6967bf8c6f5317d1d4d650fc187a72c689db5506d48

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3079509da3a7cf8c8fac752d0c59f7c7350e9b99e3b0dbbc1f86b2c3683fb2b5
MD5 f2a5e0fda86b00175a52c95f448673e6
BLAKE2b-256 0b6491c27ea760a66fca75eeda51fc33e1ec3c1e06987ebd2b2c34e74803a500

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f200ab94a414d0474a3c1f5e2f68c0d664e7e14c6512a7c44b46bd97ab01e30
MD5 524c5841d3f5064a63ec3c87407fb6c5
BLAKE2b-256 d2410189018f1428a3ac208afed91795cdc7a1ccdb54bcfa4d521182e1750e9e

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c91fa622089d6e9f33a8cfa4a680d5c3e9a502c34e50555e98242bc17cf187d2
MD5 1801932aba072cecd232358d781acdff
BLAKE2b-256 8a1c6e111f893e936300661cb149eb112ef7299be350d72f29f0bdf91fd68a35

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e9fbbcdef3ca5e86878195272af16279386a17a6b2601dd001846d2fb0bc38af
MD5 9c7cd5939045226b157a928910ceba54
BLAKE2b-256 e281a3bd490f8eb8683a0f9a9304b34ccd7b608823482b942503006fed799477

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e1936e088a91e16dceac8637947ff34f8f78023bda03a7250d24e6ab9ea314e
MD5 77817f408516a617e6eefce2ad3f2e66
BLAKE2b-256 daa82f8ceea858158fd85f3d192e75c8671fe34aeb710910c27a8c4f502b1c45

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5e3a286ef6b5c380a99ee3d41554a8c0b384dc97a8a6c6a842d2d1b6db3129a0
MD5 9ac442870d2013fcc1e72a98af22324c
BLAKE2b-256 0704f044d88781ce2881ce68225167cc9de93b929153eda74a5672b6a6d27c07

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5c33f43f2f2aede4439bbec0baf6b3ec6d1fe9b3546fdb270e82d8074fb7b9bf
MD5 5bf2179e06e3c86102d898584d335606
BLAKE2b-256 5d69aa0bfbbc7a6451af1c0b798dd8abc04dba812dcea1715880739cf965603f

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1dd903ebc0bdfe0b175fe9415569d8df850730982d85520cc0aa4a7be8c5bf03
MD5 c7cb961210a79718e78b394deeb8475a
BLAKE2b-256 456db6c2099491648542aa223c1d3a1101609f504bcaf20f54b7009862a5ef35

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 71812ae96a4573180d58a83e7fa5cf315f11aa20727178701d6a14e0b13d1919
MD5 80d7b5cf6aa832b8ba08445936a5e4c5
BLAKE2b-256 782eb81d85e7923641c0b731808fbe07ecfc23cd061be712644c79d0ce5c5bb4

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9b229e759112af37a02b6711300ca260c1be96d4bab3eb83fcfe8d0987f61b5d
MD5 45c04d76156b53000a194fc03f11b65b
BLAKE2b-256 ff500adb53170a6f38487525ba02a480e6659edbcc2426e8f09e0430303c5113

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e9c6b549ae2fe9a1b85b1680dc1ab2da50d30cb39b0e36ed817b52b0a0d29a5f
MD5 314f03de28795c845a906472cced5e40
BLAKE2b-256 66c9bda30f4794a381c732aa8651cd320783d369a02cc8ddebe993dd9e6e2a1d

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2dfdea526f18edcbc0b1d3b403a9a2242c3893c7e11f7432de171fbc5eff29ed
MD5 2bd5dd478b7baf320f821fa6a08967b9
BLAKE2b-256 b4c2e7692e553ab04705058522b9f4993e5da9dfc770bcc8b2485ad4ff525050

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5b2031c340cd24593272729b843da93dcaf3341e1e085b155669fd1fe7452619
MD5 c16b45b9055fea28cc94cbad57406cfd
BLAKE2b-256 eb9560fd32060af45e6026437fadb0b7ac61d453aa6988b4d14ebec180ea406f

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3a8b3738f9a072901da7faa916fff00ee25dda18ca5153c64b3cb908e56d3212
MD5 c0a17674a9c4db1a43ea474143717a16
BLAKE2b-256 73d9ddd1714d6fc0fd894d34b2c10d8abba8a018876bf7e01b4cb6755dc25963

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 19aea19a5113fc48f91a51705e010cb3bc0a841a6d227991a428e0a4b5410aaa
MD5 86eed3b48321104137f50af33096eb24
BLAKE2b-256 896185ab5314e77bb6755143f15e0884fd27a53a489b2175b85923e8ad9d2464

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-none-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.1.7-cp312-none-win_amd64.whl
  • Upload date:
  • Size: 233.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.5

File hashes

Hashes for moka_py-0.1.7-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 4659cdd85db6f6cc41cef4f1d713c093786aa6e5191e45adfc799e17e81bf71b
MD5 76a6ca21372e48a21057254134bc426b
BLAKE2b-256 22c4015b257b2d199d2b81610eb3b0c4f2abc7b6d98eb84d2c78b9cda7e9b97c

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-none-win32.whl.

File metadata

  • Download URL: moka_py-0.1.7-cp312-none-win32.whl
  • Upload date:
  • Size: 227.6 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.5

File hashes

Hashes for moka_py-0.1.7-cp312-none-win32.whl
Algorithm Hash digest
SHA256 b45577b865ef19fbf41d4a116e0f7190b5102fe39f6caa28d3e99023b645d97e
MD5 d4175519fad85b5d5cb459c93ddc4b4f
BLAKE2b-256 6df0c2f939d7cb892b600aeb0b6aa43dffd22258b7c9084aed478e0bd728fedd

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96ba4390899962b3e770ecb18186cffcc5d5f139b2f5eabd87f437396423b090
MD5 7029ada5cdb34cfa18ffa36d5103d6c9
BLAKE2b-256 27d29e78bfe1436ec05d6e44d23a628946e6443db9a4241671cbbc91a714146e

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 4bdad0b3c8ac5a2090efee01690628d2d3fe6a26f35b640f4c3878f1cf75aef8
MD5 116dba092666accf8223fb89bc3ee34b
BLAKE2b-256 6f551826b14997510d2e0c8ba118139b7c8f3529d7a9bbdfbe2ee97e3b9feb5b

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a68eef4ef71977a4e73d679c5d0ed9c250f893d840e2a0ff29affbc86a52e821
MD5 ec429e17b16f18a11ac0a68a3f2ac52a
BLAKE2b-256 06d2989d3b11399be6ba736c322c22e0b1493f435787585acd681de7f4a85ec5

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2e9f4dc8a1a646985ac6b8230fa0c9db52095cffd8eacda24a6d5cb88a64d838
MD5 80f7179eec8aed2c6a94f031f20ae800
BLAKE2b-256 2f43f132290bb0a056e762c1ab1bf82269a75ccc35dc363fb162e59bb260ff89

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a64b8a5c091d67a19caa1eb213a7f6fb7ca64aa29a493f679c709cbbffea341a
MD5 b437228a91e79ec28a79b0d449d766f8
BLAKE2b-256 c56572f9c1c160f3a6d60668c4e3e74973a1482b74a62832d8b5051082464c20

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 213518c96e39f088991433693a2bdf47561de4adeb9e4f71667f67ed8ae90b9e
MD5 c06cb9d1b8bd2e219928aaee271f87b0
BLAKE2b-256 4d9f98b29e03724d1d292cc71f3fb8ebc2884342d973e4114ba349ce2494f13e

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 00e70edefb516cb261f302d3bf5ffb7687e6df6b21fcd7c534c74d73a908f326
MD5 b4f4dd9656123f0dae139cf0e92c436c
BLAKE2b-256 a861382f54037506e278a220c317884edf2112179f976e0b03bf719bdf8912eb

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e446a2f0160d1d99798bfa64e28e174a3d577f01409c68f0618faa7261a52526
MD5 e4aff4fb2380391f02732e5cb3cbcd7d
BLAKE2b-256 ffe2d59b171ef3d2ed78f98e4f9f7282ba9a726f48ca22900a1662d27e737ecd

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e11298acd6d7edeab810cc18124db2fede09e5545e62ac9385cce62c08dd0da8
MD5 21ba38cc56d42622ed7d0a0d9ef4496e
BLAKE2b-256 8970e45adc5dd4896945d238b1fee1e4bbb949a62d263b2672a609aef5552af3

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 286b3f2bdd62e647dacc81ade9ccceb67712070cd9c01640f8dfe58e94b0e38d
MD5 bac2454d4cbab95397fd9536882058d4
BLAKE2b-256 57387896e645e0eb52863d2068694534ccfa38957bb84b693ff70583d54e53d8

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 dc26ea21b434477ddbc7d4601de6a5fd5148e7bf0fe052fafe1634162d66ae8a
MD5 b93a2f96c23433f7f014f5af23ead3ad
BLAKE2b-256 3f5b6b0c54f6324bcba27e92e9eff900b754378fb4d193428b60b954a9c361d5

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2c1a9fe060e0a7218fd997e32827bd08683fc0420037f0fbe3e80f7071552796
MD5 e4a6369ab17560a88e69347dee78d8f0
BLAKE2b-256 e837b54faa4e6c34c0a9a2df3af116ed8a7b23bdfc6c78ecf1d666e399a305bd

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-none-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.1.7-cp311-none-win_amd64.whl
  • Upload date:
  • Size: 233.4 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.5

File hashes

Hashes for moka_py-0.1.7-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 b935e403d85753dd21c7731d1e76e830f029f796270238c47d57337e2eb19f34
MD5 44336136538ab2b8135c52c218f59e00
BLAKE2b-256 8b250d2eee73c8018224323a9367d641c34065ca71d29e529a0c584b2b17fb85

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-none-win32.whl.

File metadata

  • Download URL: moka_py-0.1.7-cp311-none-win32.whl
  • Upload date:
  • Size: 227.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.5

File hashes

Hashes for moka_py-0.1.7-cp311-none-win32.whl
Algorithm Hash digest
SHA256 eb5f420689f5d409566cac5af3a65d1a4483e42bbdcae5dccbb52ac704033fa6
MD5 c4a24a9dc46c3b7e90283331f0c9689b
BLAKE2b-256 ee9ecb9fc254792440cc52b08f157469352b631ac55180dd93dd5e84ae61cd4d

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0353398f40a3847b054cac2109fa57d19c49b719241a6e3a1ab7e8418c813e41
MD5 cfd921e4cf79f5d8012fd3023cbfc70a
BLAKE2b-256 c667e1ea733a26e92a309f3b0dfec52ae7c89e8e63a96c7ba30909eb1196dce5

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c9fb36ddf0805dd061e136c2221a3e905cce817a177fe42942b1058cd7881051
MD5 e0eca052e9936e3bade5aafe7de3ac22
BLAKE2b-256 beb964671b891475ffa91c4cb2125ba1f9e85adf5d1502cbcc1904c552870e0e

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a85d8f33bf1409765b22ca10354aa3605b0eaf8635058476549d701427362846
MD5 9e2efd449f0e44a160712daf694ed2a6
BLAKE2b-256 3c6e30a131c9cf99aae8ce900f84b102ab05c722883422b272f2ff16cf27209c

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a99b6dcf9bd157da53a16d652a8111deb5b5a0c40bff8766150e081f76e80a38
MD5 623ae3a8d03d2a13415506d83b499a1d
BLAKE2b-256 523e4bde2f6fcc72ac938d3a6095f12f01a27466f0c9ea873d0e1b2199e6c840

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a1f2af4aefaffd888ebed1647075517f934e16164e0ffb4371f8b96c8c32ba9e
MD5 eec4aed0a20688b0d6d0808556514453
BLAKE2b-256 b46771f77e2fb025390d6fb10c1b9585657002b5d78564ad75f78611fc408d11

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 01f289fcfe4a4e76d52214b596e22e7c8a61afd8a19c0d50adfc4b12ea03a88a
MD5 17a36629fecfbd4e6535e438bfe1886c
BLAKE2b-256 848378046af5389f887e0222317024e0f0244e914f778609d49506ef8b61f14d

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8868993cc32ae7694e92e5b912af4215025435412461f73a7a56dc481c190702
MD5 c7bbfc809d18e482b2555942e1a49bf5
BLAKE2b-256 85050d377ea4710f1553bd925dc096dc0856d9f06b92a597f232383f0ab6f09e

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 60389ec678073886c8d54a4ada340b5b17ba218eee672918df5745ac11e7859d
MD5 cbb65a52ae5e06426b129ede0b297913
BLAKE2b-256 5ffe71a5eeaf60a34e29f2f03353d513b2b5db09f570d6195cf32f40919364ba

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 eea2779f21fccdfaee2cb1dbe049f8fb5a387b9d33ab15169d697649183d0477
MD5 921832d71fc0961f69d0cad75513c198
BLAKE2b-256 22c41ee831e633a1fc4de4fc5ae10bd41bbd1d4350a1288da7b4805c9274abe8

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 dbb4570318471eff94f84a91f5a5f805e1e5c97edc3e7a59c6f30a4d7334541f
MD5 a6650861254798cb474e653e6013fb9b
BLAKE2b-256 9188613f92c4807a5b5dd2aeb0b611809f8136e07b1e92e0327b7f93d5769c91

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08448243a11000b9f51645ab32252ac4816ad28bd4facc7c38d95d082aa7e251
MD5 f553c03b5246b8d19a1adfd8e6674c7e
BLAKE2b-256 3d5a6016a99655eaa387662a6abe963086a5ec2daad846382bb914492d21af0f

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d96e64ed48c587e7338cf82d739980252f5cf60c2078b35277c6cbbdee29fa1c
MD5 67caaf7b38219e5a5733c3fa42297965
BLAKE2b-256 a712e493b2ccd5e4760c2a190f9b45c7f1121c76595b0c5a250735585992b78d

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp310-none-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.1.7-cp310-none-win_amd64.whl
  • Upload date:
  • Size: 233.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.5

File hashes

Hashes for moka_py-0.1.7-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 e7aca2df3b521ba66f1efd7de81eb2fdf4e680d6c8fa5cbf5dc063106972d01d
MD5 d4339e873b7b596191eb2ce3b790028f
BLAKE2b-256 a8512486c26a64ad63df92d20a196a8f60c79a8e982e00d5090f056d8fae359c

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp310-none-win32.whl.

File metadata

  • Download URL: moka_py-0.1.7-cp310-none-win32.whl
  • Upload date:
  • Size: 227.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.5

File hashes

Hashes for moka_py-0.1.7-cp310-none-win32.whl
Algorithm Hash digest
SHA256 893035e6391c8cb090dea523292cd7bf33f8bf8f0c72e79421bf4e157ee1e6bb
MD5 e58bd5ea9edc959f8d067434bae2afad
BLAKE2b-256 06caaad17a69269a7491cd39d01f2e9cbf9aab00bebd80010694547808105dd2

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0bacc9c49402431f970085fbfda0e63cff79abf71a07ad0e4d0b2c8dc9395676
MD5 b1e2ecad9d826e28b855679d3a8aca72
BLAKE2b-256 738b98dbcdb641ba19d5c2440969ebf84562fe084632254b5616cb1736b46ede

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 72d481682b20aed9eaa0b5cfac3003057a0ae457f41afb45f1b2d468107410ce
MD5 13d0ebd7eaa55bd2df46692be2afb19a
BLAKE2b-256 8850aa3fcdf104c04dc79d1162f798122c7aee701a54bbf99906f8cb807837b5

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e3e397bfcbdb328712e8d1d16d3d59b58c4be613a71475e1c4e62c0f7fc57ffb
MD5 fb2e019c35cd83ebba12beca6ee048ce
BLAKE2b-256 e4ec014c33c6eb2d5e2548ad7bc310525bdebccee50d4d671394fab4eacb671d

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85d5eb139280a964b632d61b2f3556cb8e132ff1d3a9400b821b669b1464374e
MD5 e26496e6583c473b219fcee37f8a3fca
BLAKE2b-256 0d44a89d1d2c1192d42e9054393273a585594c3113c8890c6205aa8b94c2c0d4

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 23ba39a2e96b5d611c87b623a0ace82fb200c4774c79307282b7c93d47394dae
MD5 af2f0a5b236c786c88c09cadbaa182f3
BLAKE2b-256 d51adaa3233a1385faeaef4b13b9f43af2f14bf1f94003488b7b64a3aa0e8119

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b645378036f0f8770853edba3f310e1669a7523f32d9364d12f1590d7b5383da
MD5 4b0a629170c42d9fe9cb49e228867f87
BLAKE2b-256 ac8e8ed7ac8c61b897f6b3602ad715581540bc8c15d7ce186585397ed51ccce9

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dbf82fc7d71aef53ef0ae699e18458237600fc35209bdc0dc6b0c3b0758a97c5
MD5 483191a248817f8c1f5e79acfa8021e8
BLAKE2b-256 007e4475cd0c357e331ea38a36103c4031eea2c37a6ef35c9cbed81196a25d4f

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 096a77a301acb8952d8836bc9e04001d2ffb97af897a061d5e474cb8dd41e0d1
MD5 3fe1b2d4349d9d985c3ebc0ca0a94133
BLAKE2b-256 d32fcd41b4b19f609573dbd33d50a1ba59a6ae16718e90229c263f207d981524

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c8595ffd96a04c36512bf24bee14f7cd9b761ed52f5c5656afbb23b9e7af737c
MD5 b0b94eebfc81bd5a3f77f9d2fc7a94c7
BLAKE2b-256 847366b611c44b72d5181f89f9371f55ae2312b50d913884e3e2f5ba8885c802

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7c932b157f42527eca397306fd2e5a5c8896a44b18da5c1e8f77b0de18ee9e86
MD5 82901f65cd339249267278198cf262f7
BLAKE2b-256 256e7168a294bce0e40753b681437d3ac776a780ba35949dd9889e31d72d158a

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp39-none-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.1.7-cp39-none-win_amd64.whl
  • Upload date:
  • Size: 233.8 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.5

File hashes

Hashes for moka_py-0.1.7-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 d4171635fee96a16f96946f1a6280cf7def01dca5d30db235a8be79d63e5579e
MD5 577eb999f8c3212a8669c8c6e8422b71
BLAKE2b-256 71bc429bdb6d899e67d25feb5ea2ca4677c6179166754f06f17a6f2ea5b2db9e

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp39-none-win32.whl.

File metadata

  • Download URL: moka_py-0.1.7-cp39-none-win32.whl
  • Upload date:
  • Size: 228.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.5

File hashes

Hashes for moka_py-0.1.7-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a9704378f18040b2c6cb2d7a70b2233acdf82d4d9eecca4772ae7e744613c9cc
MD5 16a2ec49ea8372da9e4b708b3114ed7e
BLAKE2b-256 cb4a4a5702e3fd12e945860a452fb7b43f32b98e665d5ae0deaa9e68370d6ce0

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 024a7eb074c24628e6f57884ac26f1f43733b77b1858dd46ad495cea2b4c1ddf
MD5 288c46039e9249fe237c887c422e0539
BLAKE2b-256 1c23ee14fb475b948b77833b31e8cf97bcb4540fbf4bf042631d36d523c74113

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7ba8cc09fae93c74a6ce84eb99258c9ec3921831311f3cfff0ca683944e3b0a7
MD5 e902076713260a29553a656f50a25a99
BLAKE2b-256 1ad237eb9f31ef8049c02bfe6296dc7ecde7698b372727e16305a24e4f7d0d00

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b7e800b4c4fa437e7a5855ae731ff71cf7a164485199d02d717c19c322b40397
MD5 3da906989c081aed272e3cda582ca9d4
BLAKE2b-256 b93c619ed00a8fd19bed5273055a57f192c2d192c18fcf078b6975f4bb43c1fc

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 08a82b2439c21d3626d640b23e5ead900cb3fe1ae40e55c7b1c7ca86a7cc6de1
MD5 daaa32167792726a15af42ede72ca7d5
BLAKE2b-256 da13280ec2986ab3f36317b840184161bf1e1a36f5690cd5bc33bba9f6952235

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e7f6d1be9c38ccc97fccfdc90230b81c01fbb7f149eb8afd505e1a673f19efc3
MD5 f8c3516869f8a6f0c0b7cdb0f2fbd659
BLAKE2b-256 a55082cdeba91f4585de33eae375a6748284f7967b56246bafe5188e31845c7e

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bacd7eba80ad6ffa0d465490b783986a0258b37901dc1d91da81e13a95b53beb
MD5 15fd1aa8583c8e2e7bcf05e713972511
BLAKE2b-256 c211d340e2a347cee1cc6e467ff7a539a5ddccd8753b69e74aeba93b49915e74

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9b79d7f5d5d4c3194fbd9c9ea90058d50c88cda5ec301be8a142fa9b65fbc679
MD5 40fcb8b13dd0c5187aae8bae1a94fd53
BLAKE2b-256 e2dbbc7c2c49f9a8c5ad24f486e8049e60d0ae8a7fd0044801b8ab711ecc55df

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b87a3403f46a6e59038db750e295e6a1cda170e7959c4aa249f487ed60bf9b17
MD5 0ea84ea138b0dda33e2fbbdb1c2026de
BLAKE2b-256 1abf9b2386743ee51585818219fb9475049b15f3c6f8b8d6a9911aa2bf58a3c0

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9bc1f31a8f0b4bed64f0c41a8ca663ffb0718bd06aedfe56759a19669c2ff61c
MD5 a7242b7cc49e35759ac4bd8bf7fee145
BLAKE2b-256 a544f97f2d37b20ccc8a65d402925a6ead1f3950161457549d4b3d9a85c3dc44

See more details on using hashes here.

File details

Details for the file moka_py-0.1.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.7-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a106205eee469fc280ef9cb65c0e77f8c2a4788efb8b7597084c420f945007b9
MD5 5db9df31512d17368a5d8396c42ac727
BLAKE2b-256 f9f1d72814fa22c1657f3acab8ebe658f72e1269ebf75ff25f46c723d0a993ab

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