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-py 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)

moka-py can synchronize threads on keys

import moka_py
from typing import Any
from time import sleep
import threading
from decimal import Decimal


calls = []


@moka_py.cached(ttl=5, wait_concurrent=True)
def get_user(id_: int) -> dict[str, Any]:
    calls.append(id_)
    sleep(0.3)  # simulation of HTTP request
    return {
        "id": id_,
        "first_name": "Jack",
        "last_name": "Pot",
    }


def process_request(path: str, user_id: int) -> None:
    user = get_user(user_id)
    print(f"user #{user_id} came to {path}, their info is {user}")
    ...


def charge_money(from_user_id: int, amount: Decimal) -> None:
    user = get_user(from_user_id)
    print(f"charging {amount} money from user #{from_user_id} ({user['first_name']} {user['last_name']})")
    ...


if __name__ == '__main__':
    request_processing = threading.Thread(target=process_request, args=("/user/info/123", 123))
    money_charging = threading.Thread(target=charge_money, args=(123, Decimal("3.14")))
    request_processing.start()
    money_charging.start()
    request_processing.join()
    money_charging.join()

    # only one call occurred. without the `wait_concurrent` option, each thread would go for an HTTP request
    # since no cache key was set
    assert len(calls) == 1  

ATTENTION: wait_concurrent is not yet supported for async functions and will throw NotImplementedError

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.9.tar.gz (16.7 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.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (513.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

moka_py-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl (542.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

moka_py-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (623.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

moka_py-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (516.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

moka_py-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (341.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

moka_py-0.1.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (477.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

moka_py-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (377.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

moka_py-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (360.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

moka_py-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

moka_py-0.1.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (366.2 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

moka_py-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (513.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

moka_py-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl (542.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

moka_py-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (623.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

moka_py-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (516.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

moka_py-0.1.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (477.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

moka_py-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (377.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

moka_py-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (360.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

moka_py-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

moka_py-0.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl (514.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

moka_py-0.1.9-cp313-cp313t-musllinux_1_2_i686.whl (543.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

moka_py-0.1.9-cp313-cp313t-musllinux_1_2_armv7l.whl (624.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

moka_py-0.1.9-cp313-cp313t-musllinux_1_2_aarch64.whl (516.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

moka_py-0.1.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (478.1 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

moka_py-0.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (378.5 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

moka_py-0.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

moka_py-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.0 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

moka_py-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl (514.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

moka_py-0.1.9-cp313-cp313-musllinux_1_2_i686.whl (542.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

moka_py-0.1.9-cp313-cp313-musllinux_1_2_armv7l.whl (624.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

moka_py-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl (516.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

moka_py-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (339.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

moka_py-0.1.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (478.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

moka_py-0.1.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (378.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

moka_py-0.1.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

moka_py-0.1.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (364.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

moka_py-0.1.9-cp313-cp313-macosx_11_0_arm64.whl (312.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

moka_py-0.1.9-cp312-cp312-win_amd64.whl (229.9 kB view details)

Uploaded CPython 3.12Windows x86-64

moka_py-0.1.9-cp312-cp312-win32.whl (220.2 kB view details)

Uploaded CPython 3.12Windows x86

moka_py-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl (514.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

moka_py-0.1.9-cp312-cp312-musllinux_1_2_i686.whl (542.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

moka_py-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl (624.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

moka_py-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl (516.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

moka_py-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (339.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

moka_py-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (478.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

moka_py-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (378.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

moka_py-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

moka_py-0.1.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (364.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

moka_py-0.1.9-cp312-cp312-macosx_11_0_arm64.whl (312.3 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

moka_py-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl (323.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

moka_py-0.1.9-cp311-cp311-win_amd64.whl (229.1 kB view details)

Uploaded CPython 3.11Windows x86-64

moka_py-0.1.9-cp311-cp311-win32.whl (220.2 kB view details)

Uploaded CPython 3.11Windows x86

moka_py-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl (514.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

moka_py-0.1.9-cp311-cp311-musllinux_1_2_i686.whl (542.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

moka_py-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl (624.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

moka_py-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl (516.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

moka_py-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (341.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

moka_py-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (478.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

moka_py-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (378.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

moka_py-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (340.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

moka_py-0.1.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (366.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

moka_py-0.1.9-cp311-cp311-macosx_11_0_arm64.whl (314.4 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

moka_py-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl (325.4 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

moka_py-0.1.9-cp310-cp310-win_amd64.whl (229.3 kB view details)

Uploaded CPython 3.10Windows x86-64

moka_py-0.1.9-cp310-cp310-win32.whl (220.4 kB view details)

Uploaded CPython 3.10Windows x86

moka_py-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl (514.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

moka_py-0.1.9-cp310-cp310-musllinux_1_2_i686.whl (542.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

moka_py-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl (624.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

moka_py-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl (516.9 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

moka_py-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (341.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

moka_py-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (478.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

moka_py-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (378.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

moka_py-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

moka_py-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (366.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.9Windows x86-64

moka_py-0.1.9-cp39-cp39-win32.whl (220.6 kB view details)

Uploaded CPython 3.9Windows x86

moka_py-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl (514.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

moka_py-0.1.9-cp39-cp39-musllinux_1_2_i686.whl (542.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

moka_py-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl (624.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

moka_py-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl (516.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

moka_py-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (342.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

moka_py-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (478.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

moka_py-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (378.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

moka_py-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (361.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (339.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

moka_py-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (366.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.9.tar.gz
Algorithm Hash digest
SHA256 cf3bcc3872c8ec0742aa589be40a851c36a4c112896943ea1ec7e54f85028450
MD5 038cf0bbf850cf4ec5d8faf5c3978b2f
BLAKE2b-256 21e13d99499f38575c8853e737e782803fbcc2b6f7edaf1919bf3a2e9ab1fa3a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d18af070e27dbb8b91857e2d387da315c8129d64db6d0d29b804f5b1647eafc1
MD5 4554307ba36fb795edf3058c7cd7dc15
BLAKE2b-256 eb10d4704d2589224049df13dc774d4e30a046ee9a7ab180b0e231ec539f0992

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bfdbbc5fca29dcca4d7b7d07b8477a5a19d2a77dbd8dd5ed998bbd32ef02f922
MD5 94a99f6470ba06cdf454e59638f6b042
BLAKE2b-256 36b11335d212b66733421e7695d48b06ef80b2706321ad15e668420c2206dd24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1d7fc2de012ea6e6c9528c0a619b2c3f0522eb2f2f8edca1cf2a7201c4a8ec1
MD5 4a166d66c50ef25ed49a8939b36d7724
BLAKE2b-256 18eda3783c01bcfeaf41f6a7945516a35772694ec021f2ebc398ea314215da3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0e2b4728e543dd91f4691bcc7e5fc0b5d6ea5a74afa320a3383df75cd9839f8c
MD5 f8e8a470445671be1eb9c16eed0d2d56
BLAKE2b-256 0d8a14c77c62f82ca5562c88d2248969eac26df197c34219ff4084e2aeef465e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0c7c235cc306e59a900516c22c94b79e6b9dd658095fdf5426f06e820b61e72d
MD5 55a47a9d2d6884fe06702150309e4180
BLAKE2b-256 c51451a72a7f804b36dcc08ed28caca7e06fe76fc0cdca5ba901a6b1feb20c1a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5224c8267c92d8a08a43dd77d07536abab4b8377ed4116f2bfe2962215fdf278
MD5 5f5e098b2db4c0a507febb8337e107ec
BLAKE2b-256 5e9305b67630ae574ee7767f350638e56c1434a44de6a759fa65e224102d4bb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b2ef3ebe3f5d835e099887c5a274bde7d28fc46119c2b744f84af06ee8675062
MD5 91c943569dd9d62ed5a62ac31e7dd648
BLAKE2b-256 db2b07eb5f04361ec3ed4f026a88fba2e046d695211d50d9c3718b358ea01b74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2a4b56fd823fc9192ce7f051be5e45069e58914f8dab3ac3131b63c7607b9e55
MD5 fb015dea533cfeb17b76822823d2c14c
BLAKE2b-256 41ae6b58522a22fa52bce03da38b808ef6806ea8099ba1c0e3c13db22d62db3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 285a927f1404810d1fa073bd00ba08034f8de68369617f2b3af45c73c13b43cc
MD5 54287a3bf95609b07f8c5130f5cafeba
BLAKE2b-256 a8206652f463bf08681a830501e1307e6415ca06d2f349d243d0d76a791fd69e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d76b04188f5c09d74717aeaba74572a93b43b133e3dd0a98c86e13a6f770caf4
MD5 f9c917edaf7ea3aa8c4b7dcfbb185cfc
BLAKE2b-256 a8f4b884559f97a0a9d9be782f5939f2c022b9321a97c7756722498ec2747aec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3e2b4ab38de882f65d17f6f0dd72004102fce2be8683612de935f46e9938a7d8
MD5 deb0661377188583aba1e0287d1255c0
BLAKE2b-256 1e06260c182c34d80d8fdcb9baa23898e18acd2e6d101c7dbed97134669acb75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 cfd9102b890dff9ac4e26520c525fcabd9352810bfb70fc26c237710abd897fe
MD5 b65a4cc832e810f7961b15083f93863e
BLAKE2b-256 b499392f24843b84d5ebd76a5e39b6f498014f2a198502a7142fdea76b741f5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3b889216a3c9a351bb5a81062b04e3a96cd258c3c0d5ecb04ff9aa26afa2bab8
MD5 e6a1d65e6721a010383261af98efb966
BLAKE2b-256 93ddf9680714fe634b1a3327705aff892811a8700f48159c0335d32629de87e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d3e5a05af4ec76b3c8881df805fd150eb2580a04370457780916587793de90e5
MD5 cfe2178ecf53a0f716bf515391bd8950
BLAKE2b-256 a6fe64076de6efc5ad12659828980dd02494fa15819eda316b74a0d12b6cbeec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0e526f4ab6d20b41e7de67f6e9af062aabb06480156da1689006ba0a4fcacfa2
MD5 c1245330827a83feeb2a7fcb59ae2481
BLAKE2b-256 8962983e36bdf44d6577a51200e1ca2f89710ca43442cb0f8da4fa2249a8a481

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 825563a66384a15e43dd50758afdc70633b084fdd67fff650965a039ce81f939
MD5 0d1d8a902d8711918c37275049c7a17c
BLAKE2b-256 77f7fc43dc3ca29bb64f3547eed694d195bd7aa808e7322d0fe32968bb5ba9e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e4bfe8dab1eef7f00eefc281b8327e5ebe88e3be12d3ba8e40ca2387a2fea667
MD5 eda610544dd507fdcaf2f6679c7cb9f1
BLAKE2b-256 5881260099b0f78bb54c0769efdeb748eef5e2b8481a67386bccfb484d160b80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2f01bff165baefc7ca4ce5d0961f5bc6e3fc5326f68497b0eaa3ba0b3f12f905
MD5 45c9ee9c66b281cf45417114018a5cfb
BLAKE2b-256 44f95d7038cd26adf34e9a7a2f82f8abdfbf208c544832ae8b76dcc53cfb84ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 30d4760a2ab4760990d8aa0b9c61340d901497d65a14cc914e2f78ff3a6d9099
MD5 f34c12419648cff82a66ca0983fc7a31
BLAKE2b-256 9d9016223489b9994f110bc331a55051366bf3421385bd99df4f308ec020a8a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 013bada392662371d9a1e77210242d8a88fb8e2b09a11401eb21e1312dfe677c
MD5 cea5101889fd041f0c67e97286c08e5c
BLAKE2b-256 14f1cb3925b382e40c2ccf4fb6e815ba6cbeb0f3d628ea666a50e9a109032fb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72f82ac6a65947a8d0a69bd138002539248762f4cdce13ef458ddaaf69c4b479
MD5 3bb091eac5529cb55619caea4eb6fbc7
BLAKE2b-256 ad293b4d97bb154ae1852501b6ce054d09275fcba0a83df51088852afb8cb8bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dd87f7aaa6cc365c9cf11bd5b4f0efd7ed3dd874c6194aa2f6de1dc50215f617
MD5 5faece82344d79c64f47894ec4ed1e63
BLAKE2b-256 8fff08315fb1d564f959ec28ea9c9e84ab335b2b3d92a793d2049c6d6348d66b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4a99ae5d1d4ef8fc444afd83e09edccd3511c18b9d64d2aa880325170627844
MD5 0ad420b13a558621516c4667c267edb5
BLAKE2b-256 439c9220b59775e270ba9f8f8c012a4430db83b1a93205ee64b24c8ab69abdbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f6de99b6b79792afebe9c3d600631c735515444a7233e2eda425ae9b08db9099
MD5 939ace259718928c281e2aebda310697
BLAKE2b-256 0e34f1c17ca802b2d6584eed92dcbd70348bbe8572f2a0f1ca87629e31250583

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 928a55720afa8a17ad03de60f4a914a2df52d8366ba7449920551703a4101348
MD5 882072ff8cc59b6482e7417aa0174c6b
BLAKE2b-256 94f5570ad725f89fc8b7594532f74508b92b7f46c2eab51be9163d630ac8f7e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 368f4d1378d3dcca3a6c4ba8a7c080bb996952208350915b8fa6700696583b00
MD5 117d1c26a896122ae830625e11c345b2
BLAKE2b-256 02693ea9b43e852c53109ff026d76ecee0804d2d63e7093c70f9f835069a26d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 384df6245cabf6ac10980b2e2dc2121010371afc1e3a32cac5447e1c775f0ddb
MD5 323e5fd744e9bd82896e8d879e9742e5
BLAKE2b-256 89757e5473b742bdf28c3107aed7114fa5bdbab516ce54ee1781f2a2e87cf4af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f80930548781e948cec4dabe9ba21fcbceb0e1552c135bc84c4f2beadfed58c3
MD5 1f201d04c190fffa4a8dc174df7cffc5
BLAKE2b-256 c05496a4620443b208eaf9cb84584354299af7819b16a78eb553e9a282d496a2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 deae0111753622628d32f3eaefb05c1aff9a756946ee86ddec76dd4ebf4bbb63
MD5 dc3af85e98171eff852b99a2aa17b046
BLAKE2b-256 51d376ba6d442c0d1379ec9d90d81ff95fdd3c771183c49ff4e755b37240b52e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 03f92f2e8936e0de708953b4c3c71711169b2afbe0a17b060e80a6a9a3a32dff
MD5 142c9661e21a8f362a4cc7e8cdb9c859
BLAKE2b-256 7b5e39d6a8ea1b58da38bfbcee7be9ea7f945eeaa80c96b87a8aa3f7a1913631

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3785867e7cce2d4a096b8e54f9dfa52dae7affebdcc9c3becac4370bccccd025
MD5 c565961e6773d2481e1b6feddc0a6221
BLAKE2b-256 092ab0a7cd4c2e7daa964682361320b3d64abc55d8081a3712465326efa54f17

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9323ea6890891cefe89e2c2720838dff8d2d39b825b03fbe652647de877d6d7c
MD5 217b11cde10f73f7e1c9673838f681b6
BLAKE2b-256 073b19940397c3dc8aa460a8b856b19fb3a75cabec00bad71628c4fdd0cf7050

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 695722fb9b03153df8a225f70aa834172edc5929831f224d0c3791949de74014
MD5 41cd36508a091e70bd10263d3b71b4cc
BLAKE2b-256 f2fcb9ed2f4efe92de584c215839fdf7eab2fe29812ae0211698c0cf1da0817e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2390d2a5ebd9fc93cafa2748872ed0c593a1686f26a91f9bf58a21f06cf6707b
MD5 aca432f981e60bf73e14b08fec9be60e
BLAKE2b-256 4ac9ea3dfca5f64c73eba83397b4450a6c0aec7c9ba3cd804a099467e6ed0c22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 89c595e34254a9c195505460581226bff32ccc82a6f67d04a1a4c740aa1e7ed4
MD5 5552a9ef273c8ac71e89489f6105efd5
BLAKE2b-256 2ff14b0102002abe66f1d5e83f60672ba2dbbb8b96391497b1635d5c87afca9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bafbafbc9862bd15a48198a5238ccdf202c0b3ad5c5dcb9271330957360650ec
MD5 a4aaa1aa348d3d62e5cb93960d219903
BLAKE2b-256 e5cb71e7252ba23eed138fb040010b5271b79a0b18bed7837ef794c2d14fdae7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 617960f88008329d1b8218d270230af311a56c729f54aed20f286ee261ef88bc
MD5 71acbbf46c8ae5ee2abcaf0fe622b3cf
BLAKE2b-256 c4807bec1cba4c8db833395dd9ef3212ec7cce004b7d57a961048d3f98145e14

See more details on using hashes here.

File details

Details for the file moka_py-0.1.9-cp312-cp312-win_amd64.whl.

File metadata

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

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 6737845003822bf91f7befc5191502ea330103b0c5db727eaf745cff2a736b5a
MD5 fe504f5d8b85e553aca36f2cd86a45ab
BLAKE2b-256 829b45454165a27c931b56b4734fcaf80715edd84ea747b9f71d058b2794129c

See more details on using hashes here.

File details

Details for the file moka_py-0.1.9-cp312-cp312-win32.whl.

File metadata

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

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 e3a79d1a677dcacdef22efb216288daf9a50fe0f2c4a82664778c256645a7a6f
MD5 a18cdcfd86f4952a4d55b3808c00bb3e
BLAKE2b-256 0ec133e1397ced1677bce09e7e23d6781141a9a7040bfde6b069be9049c73317

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a1675655dbb6ff1570403eedbd42e2e72caee761b5edb594eb99a4cf1d8318b2
MD5 f742dfd6aa789b10327f65c1f2d4212b
BLAKE2b-256 7aa0ff1da01006d274eb4046997c1f70f07d5bdd100a0d04b103d442770114f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9b66cc2af96496cc5c8b95d3bb59301b39ba8efa8e712f8adb5cd548c00eeb03
MD5 cd4a90ce25653cf4c06b95c0678db836
BLAKE2b-256 3a09285b4f72a5f6961f5cc045272c0c33a20f9f77000df0a24439600aeb46f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ebb4427ffd6b2b23cb85520ef524d281d3266f2dba98f7cdbac8a4a81ed838c0
MD5 abf9ada57e1dfc2dc522b245789b43c9
BLAKE2b-256 c98650e0d875d24a1ff1a8134ee0fc8e007632e1fd8b5e68523df6867e1ca706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9e0d1e22bec3cbe6a740afdafe0c9ef7b5ef5937eb8d5efe5807615ccaecfdc5
MD5 a6a38facc29197e8544a809522c626de
BLAKE2b-256 2175839a5ac7acd588398bf5ce39d8030bb5553af19d4b3376546d766af2d13b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b58b759bf8dc2c0b3d32f153f33e29d93e3535a6984e8d11b1697332919f0a86
MD5 5c46246ff9ff075b3355d7ca2058b3dc
BLAKE2b-256 804605e0dfc7865467ce3bbbd8904846554f9f5297274cea81acb9fea2eeb05e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7766301553485c08b12aff78aad76b1be48da418eefe44a130b824b720c8ce88
MD5 facb09eb9bccc74fac4f629705d9217d
BLAKE2b-256 b01ec21dee3a76b56f3bc2aac4fd4165bd4566c06b8c3de1a25b2010d3a1e205

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d0bb1c01c22b872069633bc7e75379942ed55fd5b23238890c94ef4e1323f62
MD5 62a6e03065d4e96fe8262c25f1ea189b
BLAKE2b-256 883e601c7631dfe30def0083d0610badb6178945d7ffd90e60ef50767d3133ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f2737f8f1ed0211c245d9783f8d8cdd6cc3af82a2ff223956f4cc5c1852e9dbb
MD5 a00f7a64e2f779818326625572d86b51
BLAKE2b-256 d0151b3b694ee2a1102276964e221e30eb6bad39ff7793b99442bfb377f0b792

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 160353161a7d29c23b6d8f9db83b90147bb961ceaa8abc0e85a44999e28e443c
MD5 431e05b524c4129baf003e76a43ed867
BLAKE2b-256 0728ca5091d4406d71dbfe72d1b3e865ca9d603a185d601bc72bc3d9486d4047

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 055f9ad960cfd146e42192dc6b3a8510d262979968d32a6cbd43b1eb0517931c
MD5 d10eb3bd8c966f3f6ee3bb1fa3280ca9
BLAKE2b-256 cb04776ad9222714bd9bccfe51d3b055a615b4e2a06068fc289523a2a885e486

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd9666eea470ddc08885e90488772ab90777e58e53465d33d895a30be9f6159f
MD5 3302746c3b540e01b196e0a0bdfe859f
BLAKE2b-256 e7c17ab5a42ac586d7647cb9ca1df9950418b85bea4010865e0be3108f91883a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 79160554fb74bd8ed63fcf338404a5e0ddff6516a7a3e37550d18d0ab4c3d7e6
MD5 039adcb110a6630372e00e5ed5cc18fb
BLAKE2b-256 dcddd9a39f033242e45ce547388dd6181b8a9c4f70b17ee9b1d256187886fbb5

See more details on using hashes here.

File details

Details for the file moka_py-0.1.9-cp311-cp311-win_amd64.whl.

File metadata

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

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 635ac235142afbd5dc2b8dc81ef81dc1e6929b153c02cf6418997513a5239594
MD5 6fead28e45620f3cd9428031e3e4be52
BLAKE2b-256 42edc4171003c0090e97c79f4dcaf4faa0eb9f6ef135ab115d3e2dfd7408e12e

See more details on using hashes here.

File details

Details for the file moka_py-0.1.9-cp311-cp311-win32.whl.

File metadata

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

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8ac153c411292ef5d4acc1f5611b4f6ba4c737a561e283d8beafcb719ac11dc6
MD5 14f568e834d963ad83cd2d498b41c9a2
BLAKE2b-256 8e1c4667614845c8c187dfb6cd0c60496e4f407e3cc13fff2ef081aa316a75e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c731205bac6f7294d1abffa808ed8332fa0e9e90ffa19d8c5ae335664f34c899
MD5 eaea0c2eea77c12e6feecf416202e1c1
BLAKE2b-256 91ea4fb43b588b4bad219b55956decf6cb5e34f59b2d751d94c10ccd486e76f2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57a1e19d2fb52bc8af12a3536c1def21dd5598acb5f12f97d8e00b6ac68bb323
MD5 fc8933da5e420529f219fb0932dfc321
BLAKE2b-256 9f916b9a0cca5ffda7b5e25d310aa809cce849811a9ff85307bed614b1ca53fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e451c09615be3627a153d9933590bfd6d926878a042fce2c0b36075eb2ff4f80
MD5 d6b78496596df6cc9fb9d9c1756efe1d
BLAKE2b-256 f71db56504fcd3e35603a33a06958e5fbcda3a8dcccd49f6767b5d45ae8be622

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5144eecde534f280e7cfe86227d5d242aa40b761c3b2b0e8e8b2c309cf917754
MD5 f6a2594a17ba21a8bba1738617121511
BLAKE2b-256 637a6604157c1bcedd481f620b6db1a053a70ee4052607d64f6e8523478d303d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 32f84f83b9f95baf2c8fd804dc73bd1a4c29476b5d34a02578539aa7bdc30b23
MD5 52eba525fc306f70bf062694dda610cf
BLAKE2b-256 370fd6720e4d80d484ca03696c189f9aae54f76f1596c301433bc12983e25461

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f031bea0a350b21af3e09390f250b2ff45c708c6bc206cdb7aff9fad1107e785
MD5 dbf823c4e1952cdd88f476da7859f409
BLAKE2b-256 2c8ef049ccddd6f34f1007e79c3d7e56891a5858e423940b4fda31b3735a9787

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6f6870dc5575c4971d0868fc13c185175aa6adfedc75ca70b32e78f0116ccfbc
MD5 b695c81e3f1a6b69563b397601a6e5f6
BLAKE2b-256 360736e1cd573da0c3aca1bf23458452bb7e11d93805f48b1100b13fd0aebcd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 670af977f23f42a65f2f12c147c00e0732ad7d270d75d8f6027ef08dcd169629
MD5 77925c20efc95058739c1f21681709b5
BLAKE2b-256 37ef379a9397fcce3ba6b8dfd45c496fea391142833e4fe81cd325c624f63825

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ed809c226d3630e95d133887ca9fa231d8ae9b4efc4fc519d4b758b6d01ac932
MD5 278bf087c2bc5119904ac348160171c1
BLAKE2b-256 a75e4d01cf119ecc34b852dd89fd6b98cd6f359f39d81237315e83294640ada5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 2b6b7f5a04e22797e13a039650cb89119d788c50b9298cb163f13a6c2c5e2a8c
MD5 4ca27cc1733e5370689b9d5a6f57a44b
BLAKE2b-256 1ae705a4df38519f775f7e75ac6389b1a7d8b934952ca9ee8782ee01b1671a16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cd758026991b40dfe7b528b35900db63cc693880ff2067e61083be401eaf3f00
MD5 927acb1ad74aa6a0b3f5e4cf7eafc0c4
BLAKE2b-256 67b02a4c27b970eb45bc35c2637e60d24e387d2e5755499f5e6f17646196fe29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e14c0e3eac5e5cecf7c2aabe69db8d18877d2b95188b3301848903cc5eddb700
MD5 66a29db9faf22ff951a527b8306fa7aa
BLAKE2b-256 5010927010acf4d95c73153b7be227c36071ed5112b7a6a4ed48b9339672469c

See more details on using hashes here.

File details

Details for the file moka_py-0.1.9-cp310-cp310-win_amd64.whl.

File metadata

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

File hashes

Hashes for moka_py-0.1.9-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 9f99d54a03f9b24326f6754db032796e5277f40d177674f0a004d7195d311fdd
MD5 8a271c0581030ca0004262b505c4a15f
BLAKE2b-256 c7117a880e96c4a8e6878cbffced536e121cfdcf8a74bc9e746322901d878182

See more details on using hashes here.

File details

Details for the file moka_py-0.1.9-cp310-cp310-win32.whl.

File metadata

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

File hashes

Hashes for moka_py-0.1.9-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 5b80c1b09c7afeba225f44ea6e062e2a208266c532a9a6f7cfdf0202ed74e403
MD5 f43b371dd4e4ba350fe677301b98bd50
BLAKE2b-256 aef6eefba31dff603bbc02f8b7f60f4adf95a157c95b29c7d73c5aa088193393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c9e64eb107296d19b977eac6e02f8b170f00364d4b8a6d7900aff4b092d99ad1
MD5 141271dca9d3e5efa20faf622bb81763
BLAKE2b-256 ff0def4432c47ee042618c3c38faac69e3ffee3a187cfeaec79b4e666e486d2d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efb809d55c1bfac54e08c48a619ce9517e56b6c5a659f26077cda509a505a91d
MD5 c417f15690d1ff206b7b976b5915de00
BLAKE2b-256 7622db840c25a96f36ccc63782ed327d5f033c24d9db709ff3dd2e5ae9a8b474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b98d79129915bdd49e2eeb4a32d2c3b807f0690c83973fcc54fec35bdfed2eaa
MD5 c046994747fd66a8308d03a9fea6e5ad
BLAKE2b-256 6b1d3f1b7702a716e118e0dd1d73c4bc57f64d0704df028e63c1fff063d81537

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dec735e717b6de958e7b1e5b8efb897915582e3f679c43b7dfd43831658ff702
MD5 bb419b6e80dd22d05646c066087b26da
BLAKE2b-256 ec6447bf09519a52d94ca4d51a535f8cf11b321c22a3d04b100758872169b7c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9eac11c86530b16a17ce1651039761cccfbde1c6aafb670a02a9e2ec5c046007
MD5 20631aa043916db8294eac54123c476b
BLAKE2b-256 0ba536585132b404e11bcb01f6e19fa2ce4edffd33094a86d4b967cebec63978

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fdad94e96cd1725e390dd34374577ba3caf56eaa254bb42b78c34fae46dd0e2c
MD5 94564e39198eb9bd1c3ae5ffbbc75233
BLAKE2b-256 9eb28bf36d854e8679641728aa4cf421dbf3ed0184c9172b9bf2aa396c681801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 db3893041760990540bfe28f025986118b95e7a9a14fffe26f0e87062cdbf0ff
MD5 dc7ea104298581d3648813c5dff198ed
BLAKE2b-256 11ad9d6cedbb268a3be5eee16ab281bc6259c291abb67b5cd76a95b94c18c76d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c50cfb657a4f09fece9c80970d307edadc46940aa24896742a79a10910afc69d
MD5 5589f224cb21287eb586655e69d876b0
BLAKE2b-256 20ad1d88d4716d01161d41ec6aa9c80a63799a270385b03a90428489f15a8b41

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7570cd7a662e11d81040166e7fb15f59fe11f4290bfa3b76ad31d7f0e5bbbfde
MD5 d1f6d63f4f97a482475153638a208082
BLAKE2b-256 4206c624fc6458d7df31ba9756728c252b28ca8373a27f878f896f2359f0a4bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cfb1a4fb90b6ad8a13051b5ff5cfd086ee430e9e921483209d6f10be90f733e0
MD5 b0b53a4bd9af6bfaa9fa26bb9b873664
BLAKE2b-256 e50e11266db5ab41a7352acc1941f369c34868e9669100a7c3e134ce00a36fa3

See more details on using hashes here.

File details

Details for the file moka_py-0.1.9-cp39-cp39-win_amd64.whl.

File metadata

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

File hashes

Hashes for moka_py-0.1.9-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 d08c22ba19d68d33f0cbe5ccabfb9d348edc2a23d1b5918383cd592b3fc3f3f2
MD5 a2648d7ffd5c9c6ed98bf3278cbf53a3
BLAKE2b-256 535b12746855fa92f00d3c1bf8b0388cee6ea094e37a92701086cd078ba7b43d

See more details on using hashes here.

File details

Details for the file moka_py-0.1.9-cp39-cp39-win32.whl.

File metadata

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

File hashes

Hashes for moka_py-0.1.9-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 27271bbf3b6ab388cd73aec6385905d2b582c84a937650ae98a11d6f48931ef9
MD5 15966e40f82692842d71bf1c35f448ac
BLAKE2b-256 2c89e6f5b3c59ace8be8f9fc325031e61ffd4e551c95148502c2ab4ced84c6cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 fc4cdbee2e47a8fb72871c9fd22275a5f56fa3ade19dc48b29ade7c7142a8823
MD5 66e97784c20a80b74a8a025e2ee90927
BLAKE2b-256 800cab1e272e4ee750b593bb9a28e5a11446d1d595e5728944e3781c4253f383

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 204fe73534876c7d065b225b256fbbebbff062e0cb9d731665fba1440ef17c2d
MD5 3a1440653c355bc51b5fd17959934d89
BLAKE2b-256 c688a02e0c1226aac6c441c47d21fac9830b4c63134c7197e7dc6a9aa0199018

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 539c144a537890d608782abd39edf490e85b179a897ef24d8285812d075faa17
MD5 5d12584894ff6357f088b9ad987f10a6
BLAKE2b-256 1802ba4a13fd40476d710c192f7fa3cddff6ac465b73f7150d37b6b4030db8a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ed4aefff9f8a89c73e9040af6018de1470e8e07f36639c2f261178eaf0f5075e
MD5 be557af6005490477c57daf64e831543
BLAKE2b-256 31fdc21c7c507a07d7d2e672c7eadd34195bf69923030f14a3bcd4362c310808

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9e41d12382fcd7afb07a8d8f3e6f6a582fa76d838c9cdcbfe3e4b1387a2dc55e
MD5 c91a9f7ba77f1ae4e913283536d5b4d9
BLAKE2b-256 95c4384eec8baa1e47e5b8c344ef4a424471ae5275362544f75d59dc44351b5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 907c21ab55f8108a8d4c082006ab8f9a411c7ea6a1948b446e91f69ba9191026
MD5 44118dc32eb61019fd5021f1785c9423
BLAKE2b-256 2e5a08521e304d43f25d3ab8dfdbcf886aa221d4862fe12986b2c5ca07498edc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e8c519c21930dd477b14d459c19d55fc756684ae9f3b5b7f747e3e3a8abc969a
MD5 ed6ff5953dc06df664ba401820bcd890
BLAKE2b-256 b69d463716dfad0c89cf433dded647865fe22d59e01c7dea818adaa240829d18

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 44ac74ded5eab5d4fd465d15fc24e59a31a94de556f4882b113bb8351942f8fb
MD5 4b1da1fe42420ee7b029021728f86889
BLAKE2b-256 b6cf4edfdf207fa69152a3ec892eb981c9a70b9691ca549d9004d0ec61ce487c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 018cabde5451a9bd30c65990f5981b9f00887d1865b54a2f4a47753e04771866
MD5 395d92997ee61da206bf7e0a8ce43042
BLAKE2b-256 ff0a626a667c95c8ff2e4aa4e1e1304bca079415e0005fea129c13171907d4ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.9-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7fdd9acde1a2ca56124c7ea77fa38e38ca47eddc6b0e3a2bd27543e1aa6b5eb1
MD5 47ba484da1b26fe1d04feedca310ba82
BLAKE2b-256 103150f3c62e346162966028e0a4b811e69759ed64fbdb5e32fd951bc2d0a93a

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