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.
  • Integration with Python: Simplifies usage with Python-friendly APIs via pyo3.

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 and, TTL of 30 seconds
# and TTI of 5.2 seconds. Entires are always removed after 30 seconds
# and are removed after 5.2 seconds if no `get`s happened for this time
cache: Moka[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

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.1.tar.gz (8.4 kB view details)

Uploaded Source

Built Distributions

moka_py-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (540.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

moka_py-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl (567.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

moka_py-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (645.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

moka_py-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (556.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

moka_py-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

moka_py-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (424.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

moka_py-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (384.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

moka_py-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (406.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

moka_py-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (540.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

moka_py-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl (567.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

moka_py-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (646.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

moka_py-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (555.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

moka_py-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (424.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

moka_py-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (384.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

moka_py-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (541.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

moka_py-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl (568.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

moka_py-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (646.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

moka_py-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (556.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

moka_py-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (424.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

moka_py-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (384.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

moka_py-0.1.1-cp312-none-win_amd64.whl (228.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

moka_py-0.1.1-cp312-none-win32.whl (221.3 kB view details)

Uploaded CPython 3.12 Windows x86

moka_py-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl (539.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

moka_py-0.1.1-cp312-cp312-musllinux_1_2_i686.whl (567.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

moka_py-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl (645.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl (555.7 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

moka_py-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (374.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

moka_py-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

moka_py-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (424.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (384.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

moka_py-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (404.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

moka_py-0.1.1-cp312-cp312-macosx_11_0_arm64.whl (330.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

moka_py-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl (336.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

moka_py-0.1.1-cp311-none-win_amd64.whl (229.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

moka_py-0.1.1-cp311-none-win32.whl (221.5 kB view details)

Uploaded CPython 3.11 Windows x86

moka_py-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl (539.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

moka_py-0.1.1-cp311-cp311-musllinux_1_2_i686.whl (568.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

moka_py-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl (645.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl (556.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

moka_py-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (374.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

moka_py-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

moka_py-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (424.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (385.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

moka_py-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (405.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

moka_py-0.1.1-cp311-cp311-macosx_11_0_arm64.whl (331.3 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

moka_py-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl (338.2 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

moka_py-0.1.1-cp310-none-win_amd64.whl (229.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

moka_py-0.1.1-cp310-none-win32.whl (221.4 kB view details)

Uploaded CPython 3.10 Windows x86

moka_py-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl (539.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

moka_py-0.1.1-cp310-cp310-musllinux_1_2_i686.whl (568.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

moka_py-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl (645.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl (556.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

moka_py-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.2 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

moka_py-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

moka_py-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (424.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (385.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

moka_py-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (405.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

moka_py-0.1.1-cp310-cp310-macosx_11_0_arm64.whl (331.9 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

moka_py-0.1.1-cp39-none-win_amd64.whl (229.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

moka_py-0.1.1-cp39-none-win32.whl (221.8 kB view details)

Uploaded CPython 3.9 Windows x86

moka_py-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl (540.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

moka_py-0.1.1-cp39-cp39-musllinux_1_2_i686.whl (568.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

moka_py-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl (645.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl (557.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

moka_py-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

moka_py-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

moka_py-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (385.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

moka_py-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (406.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

moka_py-0.1.1-cp39-cp39-macosx_11_0_arm64.whl (332.3 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

moka_py-0.1.1-cp38-none-win_amd64.whl (229.3 kB view details)

Uploaded CPython 3.8 Windows x86-64

moka_py-0.1.1-cp38-none-win32.whl (221.7 kB view details)

Uploaded CPython 3.8 Windows x86

moka_py-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl (539.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

moka_py-0.1.1-cp38-cp38-musllinux_1_2_i686.whl (568.9 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

moka_py-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl (645.8 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl (556.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

moka_py-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

moka_py-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (439.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

moka_py-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (385.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

moka_py-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (405.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.1.tar.gz
Algorithm Hash digest
SHA256 62bed98dfce68f290eb2405ee237bb4d5a7082f142b549c97df0f4d31ae9d527
MD5 b58b3c1b83058e8a5dd27847acc0e605
BLAKE2b-256 a7b53618ceb8fffdabc8857086f3612f295a9ea0a4fe9d50729a9c87a66a7e44

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 13b8b9cd0fda531da19f92ee83fc4b6aede42f0f27d69ec950a68983397f9ba5
MD5 099871ee3dc99df2a624ed0f77e040af
BLAKE2b-256 85792cb52cf2877cfb3c27b198b7fba7941d37d2261ad0b90a661a429d166afd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d1ad36254bf55ceda54f2babe373f794d6ca4361f9d9ba721f244bc92cddf1f6
MD5 b201810b5eaa4866b5fc38cfe5c75717
BLAKE2b-256 d31cb86b55850f608d67d2db57ca1f74188f9f85a89980937994c0af87af20be

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 5178a248e65e16fb8ceefc4d5856123f39801a06fb1534bd921b5932795733ec
MD5 c3597267426ef373d5f44aea895bb074
BLAKE2b-256 ffb27361b7c82217b089f253173a2d29369d1d4d91748ee4c4aa114ae033da17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2daaa18c91734dbaa71011a6b5e138cee24390383443102bba8c1ddd1c5aa02
MD5 e18bf4c7dce4622186f0d356b51448b5
BLAKE2b-256 9a0ef828f51a3d02330c15e3c39f8dd1be769bb5222063f599227155b8a18511

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 711dff92935f991b797030c335162d07ce2f259acf0f98fce8bdee787185c91c
MD5 e7a54fc4641d8058fa9cff6dfb981a21
BLAKE2b-256 d5229a46957e553a3b2f3ef82eb1f84efd13d803e140559f9fb10472069b2697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 11b07b2aa3ca957353c11529f80a50a980c3c205a4cf039513c9a7337f9b777f
MD5 8273962ee248c1cf62240785192b4678
BLAKE2b-256 f6619de208ba7b7b032daf73b09d03e9079a83ab48ca912ccfe373bbc2591f10

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c3c60d2ed2e3d52992bd5c6082a2732a5d7cd00feed5ef7f04475250cd5accaa
MD5 0c679b2926e53cf8979fab830e6af4c2
BLAKE2b-256 da31d43eb1ba4853a734afb785ab7bd84da26bec93fb5cc74624a54922eda330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ecf97f5f3c8062e3a23630abe437b8c79d4af9e8caf3423a3a3c1fcef4fee28b
MD5 54055bb8534acea75d52946d5e6ab14d
BLAKE2b-256 146437154667d0f6c937459e46a5dbca06bc08399179c5954d0a7b623b1ea2fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 73b416dd0d2601ea2a93b3e485d6a7e9d5abfc4aae8e42c9d497570c1009cc6f
MD5 429c1054aa5e853f8ccf95acb3e02b48
BLAKE2b-256 93fbb48255be52437998d4ecdbdf2eb00771c1fc1a5e4ffdb865d48475679a8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 612270619578c581fe72ca2465c653ab3bbb3ee65f50c8a1615895c887f16e41
MD5 466831df4293606177b733d42d5b619f
BLAKE2b-256 c0afe77dc360596633061c61a94b0d31328398034a1f31f0413f84aca41a91a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1bed70c6e85bc0f5c2cdc554e2ffce0e4219c7ffb3cd6045e3505a09d9ab1c6f
MD5 17a28def1f3a5a0188b8557db65a67cf
BLAKE2b-256 c43f57be1f1f87e4ded3ee678f2baaa436eca7f87337f4e02a25942fb410b748

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ea8a4e28df1c906660b21221fb70dbe87634dcafafe42dafc6f29668f9883172
MD5 19c28881c135f29b087767ebff8f67b7
BLAKE2b-256 ffbeb363fd6718b03c1aa37bafc57d01959ee8a157d19438cd7a2b9dbd49950d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0d00228cca55ec1f3246124981516385742a910a0bc373ac4c18f3bd17af1870
MD5 c4d298c6af8650585bf8fd0ea8b62758
BLAKE2b-256 51586fa8dcd3b3e766db0536d27315f9771e25a789f0c469e8f0ed44c19cfb9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1003e397b41a354ce9ee94a975b9bbe6b73fa7d7a787dbdbac38925a8c014116
MD5 ba12d21397084531f0e1ecded2ce2b76
BLAKE2b-256 ac77dfd2474dc45ac405f9f8d005ae3328176352d1ad40f838bb951d6d0d2351

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5dedce1af28ef18286ab3de17bd8e09a2ca9bec7cf9426e5878169af375c7f8b
MD5 3b4a952d48a48f3df30867330c650d3c
BLAKE2b-256 f34c3beab52eed312eb47ff17e8eba87540ab2e5dff773d05b4af30640c673ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 7b983100da8dc859f09b32b1f4d06eef3fa32212c34ac61111fc947dc477b1bd
MD5 bcb616ad7c63b9558ff3e3c7a9a4a6a0
BLAKE2b-256 bd78ec082e15ff283a6ae43dc09b55aaaafe0afaab5f97037b9ef22a510472cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 19a90629f1a87927624dfc65b3716586e53f18abd9ab9e36138729b235869717
MD5 ccfe76ff358f1b1607a72570669cd07d
BLAKE2b-256 f9698825c706109461488f002225ee8a7aa9e85a79bbd5ea90476ca9494f110b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 487499f455d33f12fecccc9eb43af97ef135b688f289887f487d0f73fa1a5bb7
MD5 6302a11bb5f9f6a5345f94ee21068948
BLAKE2b-256 9df87bd2d035bac27785d83f7495b05f29ac347233a6b93ebfc3b1256341bc03

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a969f9a0ece21a2c56e0ad16f936ef05ed25fc68babe696718be303f341234f5
MD5 e81a879f6ba4c3bef5dd0f112285b220
BLAKE2b-256 5cfbdd9630082f7bf5152ad57eb960aa66b762f18580a0fb67359a5c223f1c72

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d07f3443924d12ace3d4697f7b7f73f85a3bc4bffbc7ed6d7bbca8236c067eed
MD5 b940221cac1b7006847cebf92a205348
BLAKE2b-256 473e1dec90fa9baccf4a349d19f64716849e678a44778bcd358123281eb6eae8

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1f1a95c3616963a2a6080fec2daa4899c681982c79b9914848aa28a626d3257
MD5 505d624b40f694eab362092f44af92c1
BLAKE2b-256 fa71fd2144a0a9442c79fee8856d838ea296d5e4d62ceb1dfc1ce768470aaa41

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b11eb0dcb05b5b2715c860d62aa9fbe1a93337ccbdb0350b5736a18e4f57e8f5
MD5 28cd96daad2c5f9054a6b8f4fd654306
BLAKE2b-256 055faf0854bf5f533d036fca52a6b897a38be546c6c19295149b55ea86b10ce7

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e1f4756ef01e3450f75ca91486817ba55fab5f897d617e4bc83efdd801256176
MD5 690de276958c1f4b0a0db9490a1576b0
BLAKE2b-256 36360a72a5f25f76bad932bee1adf0e551465dc04622ac184b1aeb7e59e8e0b9

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1a4800e75aa4610090b724e16f2a959555ea7894b727ba59d313df1ffdf2dc89
MD5 22aac2695da845f2b727a331f7d36b8a
BLAKE2b-256 a40af4bc802fe3bc0c0ab2d871259b5bcefbb3d1787ca37db279869a85129e1b

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1183debb395aab115304964d46358f75988b9299591edc6f04439ad487d52dfd
MD5 9c063c9ab6ba81e7c0157360ce64a4c7
BLAKE2b-256 7b720636aa546137f72d78401544121372c778dae0c9a421db87d82683f96290

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1bd6dd0659a2ebe7094a33849f86ceb6578540dce8d83ff39a9ff53b168a8dfa
MD5 be7ad79a805a6fed937315e4c0227a39
BLAKE2b-256 7b19ac96e30235014efb6e22186c45562b24ad0405bcf9617ff0f9e3b73fe669

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 50a7478817751af496175fc464a2b46df3141281760bc07bd024b48816d97b55
MD5 2eb5a8abc7eb585368ba8c3c22a7cd8c
BLAKE2b-256 b0146abf866f69dbe27da66e3b395967abd52f7a01895eb3aed0457f87c3dcf6

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.1-cp312-none-win32.whl
Algorithm Hash digest
SHA256 90f5f6b02be6d316547390c7251da663b6ec4a5a68b95a7f99fde94e0b789984
MD5 67a5140653f9ab03b1f8f72375275af7
BLAKE2b-256 9321b78d63bafe3a85d0db34167fa1be5d4e5f8bd9a29818f6e9830a9966b332

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f4b92cfebf5dac0e50547222da021aa7e307a0afac6ce527b39454db4cd32490
MD5 5fb4c3b698fbf6021159772702ae5e20
BLAKE2b-256 9a540bb8cda52d37d3158b3d6e061a7896df1117f97e8973e3b4cf503673f994

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 148071643f0e3e19535168cf778a1ee792cf043c91716dfeb841ce89be4c6467
MD5 bd277add98319794cc6df7a86b5de6da
BLAKE2b-256 479b3d4b54a8e9a56057638d0c1ebc6e8cc545f953345b9ce60f1253afa58eba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 060317ee41f1e958db7363021b8482fc715588b8b7484c514212e8833a5284e7
MD5 04f26ae0868e0dd8e2f2210077eaac04
BLAKE2b-256 7c163895a9df8d2c0dcec7ff817d43f6962a656334077f87bdcaf452798b6ced

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 696214c65b37f2865dec62f875c1d47679e9c05630e835c3fcfa18c175f72779
MD5 dad48379b6344951b1ee5c7d87cb0eb2
BLAKE2b-256 f38d41d1ea93361f8f5165c871187ebcf25b29b085fed052b960f938cec79f22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c7699d2ea5002a5b9888329b9b6a0816c504fbe3207ce107b1fb393796dd07f0
MD5 5e7e450aab7ed69a509ae144bbfd98a1
BLAKE2b-256 9cf40e8700c16f92f3e59f39ff46112f0d0743f1b7826748c7dbb5994791b999

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 bd134f07bc91f62312b6861d960495b72514353f97dda3e35a710ab03ac4e8ca
MD5 aec40e5b90de219430eb110158d50931
BLAKE2b-256 4c455fa5cea0a6877d6a50c6d180e5cc9933b086e1bf7a889dd39bca7ba58cbe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 13ec28a665725049a5c982d678b77140288525b28c11d0ef886c61aae5963b18
MD5 dd0420e3ca004790d922473f27b7b3cd
BLAKE2b-256 f2cbead5e01ee7568ca705444fce22ceeede3454c6081bdfbd88279897f1825a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 802714476063537ecb5a00d752109cef7820241fda28f0e7f8a8163b3523a3ff
MD5 3ce2dd0be23a4ce0f216b2d0ce804a32
BLAKE2b-256 54594915e5b742f51c39759168a2b60e839d755aaf14d12cc64cb73b6174715e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d4a21c7b4248a6605e9dadd2939c5bff41d11f22fc614c5229543db89a9d31d
MD5 3240c616e7e5c0b1caaaabd70a3273a6
BLAKE2b-256 fa20813f58ce4e9889c9f7433f483d3b74fa742ff53a9f5ab6a80d88aa49f17a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 aa5823e92073b91b0f015451e326188e115b03ee500de56b9e60b71a1e82cd38
MD5 61c511dcf2e4d80786c6714f29643857
BLAKE2b-256 07b4af51ad24d4b6b630b81808b765d228b0b1f4fb848bffa3c32b656b7bc72d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5a68963485b90ff4555f29e1bd1cd4d4e22ddc431bb4587a386e49ab7e8a6cf9
MD5 6a9df34f49d53791c3f106dd955b6c40
BLAKE2b-256 07f461816e4ffcdb4ac9bc0872f587c07bdf9083ca3ebd7d6e79d43a6b4dd7e6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d5d989747990b7660821e8803b486bb86e2e3c020d113e3d1a9b33734c19fcf9
MD5 d313ce437d484e6d3bc0756efaa7a487
BLAKE2b-256 972cb4d64cfec8c4fcec1777330ea7d99349c6279def36bd665c356dcfbd219c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 3f486b63c60a8d7afb0c27edc00db640e9ff5dbd8892386d489135b33f9078b1
MD5 9e24fc2238f6a26ea890156f7c16e83a
BLAKE2b-256 7ab29b097abf780f2b6c19bf2ad6ebc2042e6f2f62640a587e9e4a2d78b39570

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.1-cp311-none-win32.whl
Algorithm Hash digest
SHA256 ae2610c773ec6ec18bf0fcc3a25dfbf25cbf6d7050c681173e13e7f34c0d50de
MD5 709885b328f8f612088de32f6fa4b649
BLAKE2b-256 5bc6922f932415550599287a454773ef3901c2be621a24f0f0c1243713c9bdeb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b864d56e7acbbcf8441b91f5ba9b54587c05117e143a1c3ff0f382a593e1405f
MD5 962e3355a6db6801de826fb216583856
BLAKE2b-256 616f74be4a0171994007c125721886f1149d5353308754af13c3120f9687d92d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 199631ca566ce4f4f1483acc08e87ca7aff2ece03bb87a6fc689ad9c04d6f4e3
MD5 6f5e360a57b852c7fff931b2c989a8d3
BLAKE2b-256 30f203e51f85c3cefaadcd3655046ce255ae0f9359f6e8081a7b483a41d64f75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 75118bbd6cb03def6fc4f1f820d4f9b8a28ac79023036a36d3a1b9af3b2f0620
MD5 6a71156dfc57597305dd9ee1375d81df
BLAKE2b-256 754242b0adb67221cf084619e17b761127ace8da11fa2d889f1116ed5f7230cc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ea35d6944745a1f610af1c668a5fb9fe7871df68212ad468a5d7f2709a07d3ca
MD5 656ec7f027b9a43755fe441b7112e5b8
BLAKE2b-256 aec4581422db202cc1449ef1566763fa002facca774f5064a1431b7e823b71f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 63370a1f6cc62c834d89bc600d8abc75fdadba9cf35481ff646d7a6b68ffe98c
MD5 d127394aa12c38bf65fe034705b08394
BLAKE2b-256 43474e2d53c366e07a44745347d5e5a34476ecd6aacfafb0354b53b8e3ec74a4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7c63838dcaaf347bf4dce67489ab3f097182e5e37f2a38fe516a6e4c7376d890
MD5 29f3ce41b4d2bac45cde473a7bceca21
BLAKE2b-256 6c227aff409bca6d9b5ebfefac0ed635bbda1863365489bd533667b97f351c6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3de133d5a348bd4d3802bdd3876fe9a96323e2ff051a40a7446fdd43392831ca
MD5 21d4684f82ca3df7ab977018693b1d9b
BLAKE2b-256 2fa0145cb99639da2ff7e2e8a45288d7df2cb35723d897f15eaf04bbbeb01d94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5d73af8c57ddfc6b17a0ad8c481b76c6d2e08383115f55990dd4aec8c75eb9e6
MD5 d713c5bcdfc166f4dc62ed6fcde55b7e
BLAKE2b-256 5759a003ee1d83ba80a35047b6404ca844085f067b5b3e6b4e2c6d0056305b17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cf3de8c821236d01009b4bd4672af884df9049cdbc460665b21fcd559d711453
MD5 680ddd529c72bb0b0e934a2b9e00992f
BLAKE2b-256 ff29803e4d44286bf09208effd89eb06eeddbed7eccee17d0e903c873a4ca735

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 20d05d50a82f348ac3c90d10127c3f79540f1c2e00d8b1facc13e6ddc42ce1ae
MD5 8f4ff5cfb36b38b1f98402aecd256d2b
BLAKE2b-256 5a99d968d0ccd6cf4f4995ef52dc4af267233337945abe7e0d61d4fa10bc1aae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0ca31504fe825bed431e8cf30cbeac3e1f1a95c79795fbd6626f2293a4414a82
MD5 78f4f70a115b7621a5865171262a6430
BLAKE2b-256 fca7d42f7ece14a3f03429f6df360dca0d099ca69c9a2af3e7254331bb7c2abb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f3a1823b0ff0dc6b2bceaa0a1456c53e630abd5baf461661ca30368a7534d05f
MD5 80c5bce0cff57d84705225d872a6c49d
BLAKE2b-256 a987aad70d0ffba7b38ef72be7e895475770eb91971eaedd971604031f76bf92

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 15700ea5adb7257fc1a8267bf3cf3f3fe9c4a56e3fd3b78955aaa50c66c176a1
MD5 e6ede5816d43c185e35a6563ba0e7b3f
BLAKE2b-256 79d8bce8c406ddac9eb9f1bb38e9368bbd322a77716efbb7be74bd531170870a

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.1-cp310-none-win32.whl
Algorithm Hash digest
SHA256 4214cc999a0f7fed69e16d5fec9aa874daf98bbee3b8fa587fe6e009497ae28e
MD5 fa11b1cfa31722fed707b406f3b9f20e
BLAKE2b-256 26e656d2ce62e932be97e5660269004bb5119a97f49d16a2382bcb960786e6d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 07024df8c89c59702561d250c72d006e97dac5ece1098321220768f04584a454
MD5 15ad7110dd4dfd47b887e308b7101361
BLAKE2b-256 233803bc3c66ea4d97bbc20faa11d99ed40dd397e51053627790aa27b403fcd6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 82d57c04c8eb9ef2328fa24a34b3e81e79c92e394388f58029401a12fab5ac8e
MD5 f0029d66a2f388eb92921c5bfe49f992
BLAKE2b-256 4a8df7dc18c4b5de015312c3c771d858b043eff0413e562832756a0fd5294cff

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 51855f1a2932755576889c531b4411e67bbba7d8f3a68d1b433ace87f90ebb7a
MD5 6eb7bb4174e2e7c52641a0bf57956f37
BLAKE2b-256 f78b7c0ab32d98909c0b377965a26add4031593a7bb8f45b5bc44203060ab00d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2bd5a63a08da863ba8348872a87c7cb3e45412c141df1a16c0dbdebaecd95a7
MD5 b064f6b9ab0a18112b526a90ba134fbf
BLAKE2b-256 1d3408722b13ee60cdc9fa8b71bae5aac4f6dfe371e197d43ec6de6054cebc0f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e76c7e3c529a3e122565c08bb8b651cec53a0a8061a7b19b69d7dfb3b2843c1b
MD5 3e548fb121c0aa766f8c77d9906e8a09
BLAKE2b-256 92543a1b1271901d1f006bd84a7aa34d7bd3801270ebe78a8ddf1a2e013d3a67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d732494fe712419684e27483152e998883463ccfcf87701580faf20b575ee697
MD5 15e2246cefaafe156225e374d7534464
BLAKE2b-256 0e286f005668f7bb3de40477a28b14ea0b19eef8a5dc2a77a3e6c326051539b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae5ca4653841391a8c7e7cfcbfd4845b4bf384bd2b28e6b5cf12052ede5bf984
MD5 e6f7687f0ff567d7feb20b55a6ae96ac
BLAKE2b-256 369c8e22280b0b89f45d6e9a65a9a186d7a2eea7602d82e5a528bb657a1bf027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1e317b7d1da244c8419a9710a70d20588d99dfb9a45bc425afc155ac952653dd
MD5 a4548fc4f69e1c2a54f1da4e4944ee3e
BLAKE2b-256 b70c4fce82337ab0e7a6f4de4676cbfad643476dfc8c000008c74dc0dce1ccae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 11e1927b6c4a6a89bee2163fd9810f35ffb8ab815fb0d4fda4fc42251e532469
MD5 2488b6b555f44bf84b9c88acfea9fb10
BLAKE2b-256 aa34260746312b94851a4871f9a865d8515e93d557545a18a789e676ce4c0c6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 06063d3dda98e07308f8b4d9eec60ee9be0d07197bb9ed16ea8d2ef5e3a90cdb
MD5 986ada09e8eb8d71ab6e2233fbcdcafa
BLAKE2b-256 ae980cc77a305d83e8703a36c7286e7d960a696fec52aa6cf0d017f7461bf24d

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 44f977d94ad89aa69e0c864f7c83fbc7971bc067520d96cc94b69094e12819ac
MD5 a33f6ee2d159c60532aeaa3735a99e4d
BLAKE2b-256 3cc3fd0e921f9ae4877b1515601f90e305a04784ebb2c3402d198ff954e4d887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 fb370538c0f0ef7a2eb098cc9c1a2a8c181dfaf0bf1a332a30a87581dcd6fac1
MD5 2be286d83c27432002190a8e2216dab2
BLAKE2b-256 2c4728d8ce16a6a8d2abdbc1fa242d22f3ab9312c407ece7749371bc9af6bf46

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.1-cp39-none-win32.whl
Algorithm Hash digest
SHA256 a98ea867d899c8b377e9e9ffe9a690fa892005e9bb801347427ffc224c17fb3b
MD5 0ee1902e2c9e9d5b93b7df74f799b863
BLAKE2b-256 ff68e722306c1951805d37cfeebf0a8583dc510cb38da9126f5ec306f60a6b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d9accf24f7ed84c27d55f7c3f87e8df64ef45ae9db56bd8938c0791eb0aa2d36
MD5 b7f2c5883973f58a15b5366442c2282d
BLAKE2b-256 b33444f8c4ae3e48725ac4dcf6484893007d5134de2ffa0fbb5dc704b5725e5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7b80b8c299e283f5d592d7eb3ff02013f3b53ad572756c1294228cc67c22f3e0
MD5 49cc85f9217098563025779d4bf4b62f
BLAKE2b-256 79cd5e971ef7cd41b593e857b95ec56634da9c90c44e1e48a6c4541b034e7c31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 522e64c44e79515ba48d33c968e9cc7cc61ea4800955fc51b96cd9758c7d2458
MD5 fe49d04c23cfc320f0ef0e0fad1a8776
BLAKE2b-256 435a0bddf7e7a6a47f7ceb3b99d3afc2e176b3f8b10248a7b8a9d5b45af09273

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 13dc8be4b3c22d06db7a02ec97a94c2640f2f6e3cbf62429adda944c2748a93b
MD5 04eacce5cb65d75bc4ac568f5fa87e23
BLAKE2b-256 0e99b4022323c9d0dffb0077d5c44b4b9adff8584b30877907d79a81335d83d5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 85456a9be9e564617c578f235569fcad0e0955ed48bcc32feb50027aecb0b8ec
MD5 9e87f63aba32b2c74b8ef1b25b59ce92
BLAKE2b-256 263c304d761c26ff2161c8245396a58bab9ee6c02201df61c818277bd11a8f55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7521974e6d346427df2e38b2857df0274961f5834557dbfa58741a98da25cb37
MD5 bcbff87a8fd819a592e2b75fc165b8a4
BLAKE2b-256 501f8b130d3f541d28694b0d7a357184ba89b510c1a08c33e5d3ab420c118a1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 cc146b896c73d02177f1f1b6feb6b26a0edfc9a0032b0170917724593073f6c8
MD5 e7ce66cbce86f181a1393f78c0b9219d
BLAKE2b-256 2c02b98ee5a5f5a459a86220598bd0fb07b8cf3a6e4e7c6675062dcd747e3887

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 050c36244dda3fe4d1856ace3cbb4c374231edda8cb4a1a14d07ceb0fee0f7b8
MD5 8b7e05c4e89ad7182441ebbb5184083f
BLAKE2b-256 6405bf2cef3c4a46c252d65e8276ec1847f26d8ae33843c60e0b1464148d0965

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3d32b2cf5f023f4adb27b0cf45cadaccdf6f51fa0e7ce9ae5ea4c7360234ed2f
MD5 d9bd7d34111b2407ab064a040db75263
BLAKE2b-256 dfb1622bfcd0cf2096c4da79f2c8294063e15c63ad2ef5cf3af30d21ec2d5f24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 de68e0897e1d6c3d288f9ae20ecc86ac3f52308048fde5aa8fcffa0d773406ec
MD5 4a80b69606d7bfb5bfdaf6be47dda6bc
BLAKE2b-256 8eb35720d6f817476b2b78a77308b0adae40a5a78b3c6c24acca31324778288e

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 18ce83dbd6f2ea1b678e4e62dd795ffb1f59250651daa9e8d1b40c9c560f1e9f
MD5 a19bb7af6160cfb34c378600281912e0
BLAKE2b-256 f7f20f18dbc73b2a110314722659bfc5aad3df198c138686c03d7a1d19ca44b3

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 d05e71a1811102eb21b89316e1c4e568620f2602d7b43b12fcc07b1b603a970c
MD5 f182d758298ff930b246539700965780
BLAKE2b-256 cfb9e179001a9d8574d8caa29efa7d03bc250f5f59005586350d9dc87ca974fd

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp38-none-win32.whl.

File metadata

  • Download URL: moka_py-0.1.1-cp38-none-win32.whl
  • Upload date:
  • Size: 221.7 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for moka_py-0.1.1-cp38-none-win32.whl
Algorithm Hash digest
SHA256 a5b712faf49b7f87aa3e4030ac6b26a81f7b1c70ab972e8bf947d10cf2d6c120
MD5 ecc90a684d1b38e14f84db1216bf27bf
BLAKE2b-256 08efec319735707a9529b8008e8e9f89ffa950a7f56693e31c63194709494d3b

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 84d4fcbdfba15fca52a89702771cefa1cae1743ce805eb59f13ce3e25e3c2e45
MD5 a5a1e2c9b57218d51f6e4f8f0560bdf5
BLAKE2b-256 7286fe9a871f9f6d78c309c87361dc72e8ae8c9fd5d7aee3e75be6b0ae263dd9

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 37c8c9d0e3dacd7debef5471226359e29384eb85a6ffbb02f8e39f207b3ff1bb
MD5 8255f4a69d93d5c9540cd0da9b328879
BLAKE2b-256 d275edc80f88c22a83a2babc6fe04614a571cf7b7941751add5602e66d52c921

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c4a1ca85915fa13af0deb3495fde0c5b6c4dc8d837f7b4a5330be07d9f0aab83
MD5 116032e30d7135bcdef75dc41571f3ff
BLAKE2b-256 059e6850848782f5b1c227c1953be80726aff6627b2709d63466a089d28de44c

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 52eb6e6606b62fdf67c05cb4445c6707d3e621f6b5878b340492fc8c5b1fdf1a
MD5 13577accdde0152ef87c59e2ff7bb8e9
BLAKE2b-256 7a9783503912aafc498a80ce31a7f27564c5450a03c4e9d6cf3106bba891be6c

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7a12e0f133aef2aff9a854367b93a2acc87d0153178f8eabade40239eb90790f
MD5 5ddc90754a2b28df61fb475bf68deb9b
BLAKE2b-256 bf3f4113dacd03aeb51d10ff070d7fcfc66309f3b32eab8b506d025d22eb8d05

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 96a06ac61131afa8adce7ea48429772dd47b18e6cc72a0a5e8e336a00c876201
MD5 7aab393968093021fc0d32ffac0365f0
BLAKE2b-256 c5e0ed40954bc06b421e5907a15e66593e604929afc1626abd159d7819860202

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d04d5fea8b20fa36960925f978d9d02204efc31a05e900a21c661e516c789036
MD5 51fbb24b19bf7d1195e6a347c26ce94b
BLAKE2b-256 8909ed9b03f9fbd39f0073f67496c3ef26cbaa7ff76d35bc71a49549a2d91e9a

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0240722569f523ab4a6280e6b126b57415f21836c73cdfb11ce40b3e17da06d6
MD5 e98e7823d188cf09d92a8a7b66ac16a9
BLAKE2b-256 60b8a0c87f1e568f3c669f6db97d8e50463dd4562877b51093508f685608a3f1

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 047134a63c7c2f7572ce274c7867531708083e5a898a05cfb53fb8faa8ac4839
MD5 d079fdab2044eaa56df38f739040c376
BLAKE2b-256 957d0dacb56cb5cff00a05fcf7c925525749d8dff467127624de3a495f720b11

See more details on using hashes here.

File details

Details for the file moka_py-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d7810333802585a760ee91678093ec3de065c1106f9c56221d065c331c2349d
MD5 99f4b11876e7ababac7fcaf306fdbaa6
BLAKE2b-256 bb2a5368dd58809f2e2330fed59d3d0465a9d363ad40c6ab0e189da413c5ce3c

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page