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.8.tar.gz (16.0 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.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (566.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

moka_py-0.1.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl (600.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

moka_py-0.1.8-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (669.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

moka_py-0.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (571.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

moka_py-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

moka_py-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (461.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

moka_py-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (446.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

moka_py-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (407.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

moka_py-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (397.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

moka_py-0.1.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (428.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

moka_py-0.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (566.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

moka_py-0.1.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl (600.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

moka_py-0.1.8-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (669.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

moka_py-0.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (571.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

moka_py-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (461.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

moka_py-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (446.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

moka_py-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (407.4 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

moka_py-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (397.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

moka_py-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl (566.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

moka_py-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl (599.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

moka_py-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl (668.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

moka_py-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl (570.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

moka_py-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (461.3 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

moka_py-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (446.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

moka_py-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (406.4 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

moka_py-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (396.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

moka_py-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl (566.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

moka_py-0.1.8-cp313-cp313-musllinux_1_2_i686.whl (599.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

moka_py-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl (668.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

moka_py-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl (570.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

moka_py-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (394.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

moka_py-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (461.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

moka_py-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (446.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

moka_py-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (406.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (396.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

moka_py-0.1.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (427.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

moka_py-0.1.8-cp313-cp313-macosx_11_0_arm64.whl (350.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

moka_py-0.1.8-cp312-cp312-win_amd64.whl (245.6 kB view details)

Uploaded CPython 3.12Windows x86-64

moka_py-0.1.8-cp312-cp312-win32.whl (237.7 kB view details)

Uploaded CPython 3.12Windows x86

moka_py-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl (566.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

moka_py-0.1.8-cp312-cp312-musllinux_1_2_i686.whl (599.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

moka_py-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl (668.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

moka_py-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl (570.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

moka_py-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (394.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

moka_py-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (461.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

moka_py-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (446.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

moka_py-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (406.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (396.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

moka_py-0.1.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (427.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

moka_py-0.1.8-cp312-cp312-macosx_11_0_arm64.whl (350.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

moka_py-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl (356.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

moka_py-0.1.8-cp311-cp311-win_amd64.whl (245.7 kB view details)

Uploaded CPython 3.11Windows x86-64

moka_py-0.1.8-cp311-cp311-win32.whl (238.1 kB view details)

Uploaded CPython 3.11Windows x86

moka_py-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl (566.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

moka_py-0.1.8-cp311-cp311-musllinux_1_2_i686.whl (599.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

moka_py-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl (668.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

moka_py-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl (570.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

moka_py-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

moka_py-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (461.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

moka_py-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (446.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

moka_py-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (406.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (396.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

moka_py-0.1.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (428.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

moka_py-0.1.8-cp311-cp311-macosx_11_0_arm64.whl (352.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

moka_py-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl (359.7 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

moka_py-0.1.8-cp310-cp310-win_amd64.whl (245.6 kB view details)

Uploaded CPython 3.10Windows x86-64

moka_py-0.1.8-cp310-cp310-win32.whl (238.5 kB view details)

Uploaded CPython 3.10Windows x86

moka_py-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl (566.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

moka_py-0.1.8-cp310-cp310-musllinux_1_2_i686.whl (599.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

moka_py-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl (668.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

moka_py-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl (570.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

moka_py-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (395.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

moka_py-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (461.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

moka_py-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (446.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

moka_py-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (406.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (396.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

moka_py-0.1.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (429.1 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

moka_py-0.1.8-cp39-cp39-win_amd64.whl (246.0 kB view details)

Uploaded CPython 3.9Windows x86-64

moka_py-0.1.8-cp39-cp39-win32.whl (238.9 kB view details)

Uploaded CPython 3.9Windows x86

moka_py-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl (566.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

moka_py-0.1.8-cp39-cp39-musllinux_1_2_i686.whl (599.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

moka_py-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl (668.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

moka_py-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl (570.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

moka_py-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (396.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

moka_py-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (461.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

moka_py-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (446.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

moka_py-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (406.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (396.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

moka_py-0.1.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (429.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.8.tar.gz
Algorithm Hash digest
SHA256 1a6aaa7e54a64e572bedd3584cb02ab647ef24805ad1ff2e56cb6e859539bc3f
MD5 b8559cb594ae46468306ffd77daf0aac
BLAKE2b-256 991a8333eb84a665bb36d7dc631dabb882f29f8acc6a1ea5f079809649e7921f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4472cccc897cbf7b40f01d9f092a00fc6bd052fc063f06ab8bb633fcc1b46ff1
MD5 6e15eadad8e323b69fa2bda8e59f690e
BLAKE2b-256 389f7c5378297236635369f0fcb7e74db1822aeb8a4fff30172370ded2737af2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 452d36185bfe2437223a1c44f3430e56fdf0f6e154c0af80e8a3a7d2a632f7d0
MD5 3a8833cb61175bc7b5f26da501420c2e
BLAKE2b-256 b83e4809eee2dee1d7e2ff6e6a38e03f4710ca8bd0e4cbf1c98229ef7de9bfa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 db00234bdf036be9b847410daeeafcb0fee1dbe85a14eca09709000d9d15e000
MD5 9afd70a1dcb485ecb68ddc34d929de03
BLAKE2b-256 139c3f2b9b41b83934ca64c2f18fa86219664fe52886c6ade449df8267cf4a36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a06347f0107e1e528b0a604dbbd74debdb0bda9734cfeed58f96e644bc7122bc
MD5 c07ec2605284b43529a5979ca45722e9
BLAKE2b-256 89c59990846aaf316ed188c6950f2f7f3bd62ae66caa728fdb8f06629a8e192e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 028d95cce9c28017465b54542ca75a4410bc61d70ed2d214dca9be811be0db54
MD5 909a027ae7032c16001f83afa70ad2de
BLAKE2b-256 a0fceea2c71ac51b5d2b654a23fb920acc18f00881e23aa4ecf47ba680b75375

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5446bbd7a7fea2b141f7336c606b19dde54d0a50f89d9875cbb2cc8bfc73276
MD5 5a0f6915b38c36e1f4d94be2966a1c2f
BLAKE2b-256 0d663cc128ce5520caf403fb6196e9838be7de2bafd8abbf57b298f8de9e6f5b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9cace2c7fe33d65da5fbbdc7f63278490e70d23bca6757a4fae0c5a7671b7674
MD5 05808433fbcb3fec9e6b757a7e2033ef
BLAKE2b-256 a1eff7b842cd2eb8d9de9ba432cb08d36e6855e09ed3daf6455d92e33ab4e88f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a302f0368c83d4aab8c1ab72699057567d5d37bb3ad3d95d084f8554793c91bb
MD5 418b4b19379e77809ede63991cc2332f
BLAKE2b-256 073dff245a41c08c821269d5aaf35f3591d1f673e6e60f53bf096cf062b2ed5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e4b3c4be84a6879abd646701b7967c4f7cc4496f38a4b4c61c4e18f8390cdf01
MD5 b91eb1f9c95b9705b032c653300bcc56
BLAKE2b-256 354b943b016df6f422bc2e624ceddbc6505db0a3f51ea896ffebb2ce00288dc6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 95a2a9f8f9840d4b5d5d2c234d2db8c79a9d69f98187b2d79a559ca47463c9af
MD5 6abcb2bbe743b1db4fe6b33306993d03
BLAKE2b-256 a307b00eedfaa59b64653a49a316afc13199f0576f9ee0f2bd4bafb6ffeb9db3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b0433870f08111cbbdcb83542dc7c4a2f42fa00cfba129c30f7724e26e4baf84
MD5 21ee183e0b11e606686f06255cba041a
BLAKE2b-256 080d5c7f19018c2a6dc452a77c897e8052116d6f335e85c39aaaeddce082d9ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c8a94211556bcb116cfc362a550355a8d6ea519afafab89b48ac93d88e8771de
MD5 0ceebd7d6a221c26bbc217a7ede70c38
BLAKE2b-256 75f8fbdc8db1a02241445b70f506074cd7fa62b39517aacb1951cfe15a32cecf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bea77da7173136c068adfa76d2fe9d2964e0e64bf072ee6f956f03598f804b93
MD5 e1bc14c0b53b18c01c17af6b94b047fa
BLAKE2b-256 9d473b7d72741b60995388b3984db0283248e10aa03e0b2e3ad64eac8314dbe5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 85c88817e6824a3a14ee7994141cfae3fa90fcaf2c2674fbc6da1c106debf157
MD5 07cce578562e5feb5ed8a6768bedb26c
BLAKE2b-256 dfdea90d441dbd7d34df6a656f08c4984625ef3ebe64f25e384c5483bf5c7706

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 46a1c274cf2bff7b2d91ea60e80f6b1ae2bc390dc135e84672c9069b704e276c
MD5 77cbab0e9666814bd5e418bcd8e865fe
BLAKE2b-256 2977ceaf4025ff56192159279be6118d1678bb55d4de515aa8a17b4d9cc9a327

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d9b66547cf47de1ca8b7e217904d52aa50930041f4805dc0a039c66c023467fb
MD5 f63bef5c7c79ea81bdae0f877aa165f3
BLAKE2b-256 b196c51bd34557b70e595c1b0783ac6be0578d8734127900fc4a71aa60cccec4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f5389e32e1b2402f6d10b0f94d718e675986eafca6016112af501be45e86e780
MD5 071e6ffe7f0feccf13a380d4dd225e01
BLAKE2b-256 d042adc07bab55463cf2e98b4a10b60a6e991ce2ff312632e06128435a1b9d54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 301d9a48686247334a40b587a682f52b1442a03182a8245a09e23fbf8e123394
MD5 df09dca2b2e23b1d952b2f7efa5a26e0
BLAKE2b-256 4cf9fa77eef036cb44102299ed699844a1fe4fb3b6247b4891134c8a59824e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ceea051d296511d73b9438c3b1e23d89d27260f210b6cc7ebcfcee8deefdcf3b
MD5 77d6a2b7251a4808ba420f7800b2f74a
BLAKE2b-256 5b76be8b9e099f9dddd69def1943a76a784c6e226ae99f5de528c770e9bfb9ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0f3fe5ea0411cf1dae76be507f4d4ce8b29675d1f00ca4ed279a2b4970259b2b
MD5 f4121c503d71b5fe3e84e21f13e4894c
BLAKE2b-256 823a0e084901f170181661bc920f776f03c7e4167e88ec0246dc7b7eadcbbd34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3d98e7565b05189fd46e444263bb0279d186de6a627cdf0811d7585ce63a7714
MD5 a76e31f37190048a92d2efb20793351f
BLAKE2b-256 e82c1c121b6204c402e27571abd23eb97141bd84b950de212eed47fbe500539e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 75cb5f3c0d32d10470c3daeef6947abe1b3c0a25a84b94a4e978e549286c14cd
MD5 26c5bd4ae426b6d6630dcd9634c7644f
BLAKE2b-256 b74c9a16aea57e9afe9a1b80ffa0f4b8882424eba091f37b35f36b082c2033af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2cd6d8e88185272ce0c4988170ee422e743ff639ad602800c28a632b27bc3484
MD5 7c17fb0b458b83c3de73d9a9b978de55
BLAKE2b-256 24304d046ac59034b097e37a4e2b84604cc04946b99f126260f35edd59322743

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 55d6b560c999508c20b5ba50d96befeb474c05842e0563a702c4fbf9868aedb4
MD5 a487a08789e02608e9d6a34ea0888c06
BLAKE2b-256 56c95fbdd425f152edfdfda728e98fd2652f4f396798cb3d91b4ed1a533f9f64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88d04d7fa2cbdf1e264e70dd4466b68b621155ca115a9cd38d1aeee827fe5e7d
MD5 86d74d170e247b2ecb7ec88b3acece96
BLAKE2b-256 0ad10933127d2856ca4318300d026f530557a69fab2c8b424aa6799c493269f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 cd5bf1802f46d4638c3973c4ffd070482a80ef82a029ce97dfe09d2f64097c15
MD5 8fff3383e3cf912c4b391fcaf1a2b4f5
BLAKE2b-256 e0f0369931006b14fcf302fa61c44e1da2b6fd7340b1907c454f8e929881483f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8f5078fb6d149ff7d34f430dd34792754f5cfb0c920911477c1a72e0c2bfe5b5
MD5 5c1c459bfbecc7d16d2dc3fdd2465cd4
BLAKE2b-256 d82a1a8f15cbedff1badb666c6942337d20bf900f3cc47b6513033440cbf81ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2947d9a836f90388984c7129aecbdb6ca00748fd56c279c913f933657c021da
MD5 08e5260d9e25c1376fde8fb93e363058
BLAKE2b-256 98f676afcc251dd135739efcef182bfb5f5a34ed689df71317a59acf2c621df7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4c95d511043bd050573a01631f91275065cb733c104bcedbe8cd27288da24c3b
MD5 ad839895e771cd0711ae9b892dd1de05
BLAKE2b-256 b46431df6938d245903a176793425cd85b5cd9ea8eb8eeaff8e86ede50c4eb8c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 260d8fc4bac1b1998ddbcc2f1469c3d61158281fd1f5a75bd65adf861549da51
MD5 a12e0618f0432631c95f0e0b3a4902fb
BLAKE2b-256 ce5d412dfbb74492fbbe5d51033e7911dafa59a6c84313ecbada4030bc2e020a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 de4cadc7bd638db66d0cb5282c6c7188cca9267abb8eb7c8d3a0b7609599a4fa
MD5 3950d69f016b1295d459a7dc0cc4b318
BLAKE2b-256 8cfd1981de385d941226ce035b46c588cf8ad3d45bbe6d8b302e0c7f51a437e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2901c06c24102432b1ef751c435881621d685345f71fa248c7f914b1977050c2
MD5 6bd28df9c525a68d6c9511b2d8e2f27e
BLAKE2b-256 2766191c65487a4cd494c528664cdb6f5f9aca4d8a11f8c0f7f7b9e1ef0bed4a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a01bb180979512974df77841d19cf5fc2494229a327cc2a8cd0cf9cc50637c92
MD5 750dda6f21b894eef6dbadfad33320df
BLAKE2b-256 3bcef591d31f38ef480061486ae5ce19c12552d84f05b66a0f9c62c311f207e4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5cb4f6f053894fbc0f68cd3250747d0883d42ef5ac61720c3ad12ceaba62d533
MD5 5fca3a54c8c5f140d2986f7e7a904c96
BLAKE2b-256 1f675c076d1601cf78e1fb50968ac11e07d1416035946fd8576ed9bfac43e922

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2171bdde7c2476239532c7ad723de328f5530cf18169b07f5a5ae5bcf62e5b3c
MD5 ad0144024a984abf9e69839766844f12
BLAKE2b-256 c16e240a96ecd8673b3d02ccaded24c199758f772438cc020fc5f10cc2cc41d4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7bab1943ee52be95057ea5433ca4da9f8f4a1fb90fdb25c79adfd094d3295679
MD5 ef0891677a311cecf3a66bf691502f6c
BLAKE2b-256 9ea92f035f31a3552abcbe7f03e45cfbf63a46985aef52a5446075c90af430d0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3241a21bfa562d5bf5cfb999b79b28df5bbe683182a08c8bf4499c55f5b5e940
MD5 ee62c19c22da13444d68c640d7ecfa95
BLAKE2b-256 39c42da9f66c9fa821ace33c44e4791439af6c77caf470c82162c92d2c8c7b3d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.8-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 245.6 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.8-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 40d81b13d51932ce46e9b931df6e84ac91088dded1d9a7491e3ab48d919ea50c
MD5 e2bc56cd9bb3586f518927874a794852
BLAKE2b-256 3feb294240a4ec8506dfb84dcd7e45bd50bf3ce746ba1df463b7fb1ba1d6b27b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.8-cp312-cp312-win32.whl
  • Upload date:
  • Size: 237.7 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.8-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 0c177763730e8f0d40cfecbf058ffb67bec4a5255c22ab5a778dfff96a478e6b
MD5 a48d5ba31e94394c19bf7f68c9c73237
BLAKE2b-256 edcd35efd9ce19ce418ecbee48ab3109801b67053d879702f71c551047004daf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8ef9ba7357b1086b4bf3694bf163f6aa24c0292990bdd1fd253f17fbc1e289ce
MD5 3334638e524c2f4171ec822abb5c5419
BLAKE2b-256 d6793c81a62b2cd030270893593236a47866b2694cf71a3337bdc0065e0fce03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 64a97e1694473fc2542d7f7f09f34930a3c2c45706a28a6cbffcb3c06e5e32af
MD5 73c70abb9a156ce7eee5ca8b7946a436
BLAKE2b-256 b39ebd2fd7add5ea30fba760f306f5c79dcdc21917b69f32e65d4b066231142d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c64080c83f56a779cde55510045a5d3f1ab9205ebfaa01596f29307630952ab9
MD5 a3c9db64a2b2710dfc1e38fe6a77d49f
BLAKE2b-256 3d75c55a73e13c74513eb4701820f0075d12d158bbf07880aa895d31f512cd53

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2d25b31b0568536bc9aa32a8fde8a7f24318691a650d61f245c6c8fd614b0ccb
MD5 cc16e1da9156f624df5eb98a0ab0903a
BLAKE2b-256 bd2378109f7b88ef6b94579984566ac19947f6dc1416f47d4e20a95058ea3813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 80e30868c20ec4cfd34905ec3ec4c16e033dc029b9062a74e09d56357a5ddccf
MD5 da6312a02d19c52bc164c14db3c88e5b
BLAKE2b-256 6de0dc9e0722ee09841e0447660fa62b62fe527bd4c5fab89db68f1a413162aa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9675556968eb5986e400bffbaf97a9b536ae3eb91a457cfac2568398cfb41fa
MD5 8c04344f5ec76dd9ade916ab38b1d217
BLAKE2b-256 5839c3f370b077d959fcdd2ae7c01a1be12f716bb30d58c0ad35dec985cea4cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 951b30351d3ba16403f66b50cfa19c3bad6d833cd831f85acbb01d3b825d85a1
MD5 8e5ae293d86fae537ffdc7f914813d11
BLAKE2b-256 f2b644b91e3915169266e60ff262b447d7042f793286562c18ca7a1784ddaded

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fffe3baf0007c7d0c9cb1940b86a525cd72653f4b828c02f186be3b2c7c78c43
MD5 ccf5e495526f9eeb275c1945d520c5a8
BLAKE2b-256 9d9c4f7299fdd6fc06e997f1daed6dcf7b88ea4fdafac3bd8b500374127f691f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba743f083ee9965bbc9be0c0f3a134b7013efec468caa0e09bad4c71d83c45f5
MD5 c6d519a3fd9482e9badd076d49e74bc5
BLAKE2b-256 c4031ccb5007fc2e6f88919397c568c64c73f19324f8ce4b4eed94be1d427135

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 069a5d8763e416d65be1b8b7bff9f8a32adf46fcbdcf35ebc7288ab78eaab416
MD5 e51430e220d3c45c98fbb6e7a85aa19a
BLAKE2b-256 2bd77852e0a38aea6929b3f7eb129677d369c60b6c26e1a6c09eba9d2f73e2bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 301b90ff35f71baa975e433996bf9beda7af945d471ce174c80e880a9ab8ef64
MD5 e8e9dce51f8f4f9770d02cff5b55f404
BLAKE2b-256 2a227de58018306954a5436bcd02516097b406befdec400127f13f82c93fd61f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d4de45db186426e95804d88c98a0d36e81bd2db0faa76974a3543d31095073ef
MD5 abc87783c1a35ae98929beb58984f5e4
BLAKE2b-256 5c70366e4ed6df016db60f188352f0feb9dcc5eabde6914a6cc77d9536085058

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.8-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 245.7 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.8-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0aaa32a73ec3d85780f3a095c2d3e8d0c815f42915598a3a1aad2d596484abd2
MD5 fc49eb697ca4ce6b189a5d0648f235e6
BLAKE2b-256 f43a5874859be9cc846231d26db41a7122d57ce712a29b5bd803ef9ee67c969d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.8-cp311-cp311-win32.whl
  • Upload date:
  • Size: 238.1 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.8-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 79a06d4be25438feac9d5e082726251e176fd58984ca7a3d585be1860e09dbdf
MD5 95b05dcc3906182596ca8cc99deb6f34
BLAKE2b-256 bf21475987e287fb08f91133ec24a4b8aba2b24d495674afef99958fb370405b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a07dfc0e6dbf91376f765776c365c0daf5d2b83fed429d080a504b8e0b3da0df
MD5 76fba7a1003a4c7e4c33106423ed742e
BLAKE2b-256 6a14da3008cdbd6127aed9b19573c51e78e205c604fd69dd8d91bd6abadea60d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f766141afd840618b8028ea8ce275f4a6bd8bf2169c46df4c4e45cd273cf6a91
MD5 e45cbac189146230d75298c881243dd4
BLAKE2b-256 54998b1f0c140ae66985a81e35d957f975a8f607c4c54716addcdbc6401f9605

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 821ba666ee98595d8d5947d372c29f43b4ef5a05f1ef1b7d9b442163946b905a
MD5 af15ca9a0fa2741bcc44d049a0dd1bc3
BLAKE2b-256 9f58e943dea01f51131d7f0eb5599c83a74f92555b60652f04e0317f0eda6a99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b0888b45eec31c82381e7cf065a0faa08607c29823d790c00777e3256d4c280b
MD5 e4a1dc8011e4c211f766fd2216c55498
BLAKE2b-256 5ee0a2c6978f54c4f5f5c8e7c4abd0b9c0d9ed9e4e070a44942aec3900382813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 07487798d72d866edb8bb3100c394c76a39ab9a22fb945af564c46dad5ba1226
MD5 f90366e3d36fa028ecbd31e3d149754e
BLAKE2b-256 f4658d6d6e876b9b854c4998157e8c3638a69fc31723eb0c1e9c5a44a95b0b35

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 788c36cf53fd21d1d6d68be332549ca83f81a152390d0099946bf3a1ecc62ca6
MD5 b5d9f281055852711a833b1dea1489fb
BLAKE2b-256 94977594fa262873dc1ae795eb0a1c18e6e3ccad0cffc538654961b7c4e5d943

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 952beb335e6cb066f144daf56c958d21f63c375053ecbd7934219d894ecc8468
MD5 eaaf4af5b57a7b6724872a74678f3cbf
BLAKE2b-256 17773bdf902cf5d19732dbe42850a02f4dbd76784eef4ba3454426964b18e2ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f57361cdca40fac2135368c4787691fe62e29b4dee049fbfac16efa0f6f167ee
MD5 9eaec1b339f09cd52e0a8b0514f37f0d
BLAKE2b-256 abf90c88c9bebbeea2f61b6c082a1e994fba2e954db641badbdd780993f384ec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 993711ef2314ea88bf640e599f5faa148d98418ef91e76d4855bc5a37f36f3a8
MD5 665b8b9095a355636980309b752c231d
BLAKE2b-256 22c9a60d3962fdf94abe6a7c79aaa99db7a9516845c32090ebe4bbe25310f5ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 17bfd70268b5135af519c65720d8c5af720ebda7c702bd83d877c618e03ce7b0
MD5 80a16b1583142cf9c8fd9b21b36b5e1d
BLAKE2b-256 38eff182f2cce67041666d662aff237a67d6779e1d419cbecec10224e2591505

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77ca2d8cd891a4ea2070af34fd1afba72f10b50b843b91a29009927b6fdb9056
MD5 790785e02211d1eed3a9cfc882efdc64
BLAKE2b-256 b18682c4d2e16e51edb0913fd503589121023fd7d446f1a511750fb485868876

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 46f46c8e77cb901fec396cad61ff0f9176d92ff67a3bbb087c3ef69b8a932acd
MD5 da0823daa851463146381edc5b2aacff
BLAKE2b-256 42533dae0565cabbec003f6eb68f41f2fcacdb8976ecb2eb13f2d0d11cb38c0b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.8-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 245.6 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.8-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 09991ddfe28079e1db6d9eef4cd583ffc1eb12ca226d95e80026313a22bfc18e
MD5 3f0c361cd20e76717c821507e1db7400
BLAKE2b-256 7b7c1e74f2ed82b5f630fdeb1e86ec4fb5ac709ff54aafc84faf6790b4d04a57

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.8-cp310-cp310-win32.whl
  • Upload date:
  • Size: 238.5 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.8-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 0c760960e865e6880d26581bd0764ee0dd2920042a813a57b0ad2e91f3fe78e6
MD5 b528f15667632157c6e36f710da64f3f
BLAKE2b-256 dfdbc1a33429c34090d78172d2d52e1edbb3f0787c77279077dab6ec296c7a52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f3fffd9d65c6638bbc45ed3a5a2298cbdf93c515d57e30529aac0836be86ded
MD5 f3645ce36cf191750cba06ced6287e59
BLAKE2b-256 bcc8f2eebf4c6c090616fee60fb662bcadd5099d878ebf3961b1e2a487a1fde0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 415d04f076e849631cb381169007dc76dd588ffb0efdc68dc6dc783530f6cc1c
MD5 c7febb739c520a085689ea33101caef8
BLAKE2b-256 390e7787fe45b68dd11a8ce14fe249134dd9ac0b6026eeb96b9688078fb65330

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7ae20b924f5ea08f53ff93392ad8e7d32968b4016473c5aba8978d84b117a65e
MD5 c6e0fcfd39eaf92a0b3b455e9834d82e
BLAKE2b-256 024ca3d8674ef95edfeb1f5c7f62a4295b4a99e6e09898061da38cc242bc5a03

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 30f7567557f8179aad484b5d8158bb12255af43fba00425591dcd1d137783917
MD5 84c085a7070599174b39a97932eda930
BLAKE2b-256 60fe362dca7c85cc2efb749d51c0f4c0642a4fd37757e3291ec55d22ccb85d88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d78574349597ac5f3963607d43eaf31cbfed2f0e244b5f75f7f4e6dd2e6dd2af
MD5 de914ea280344f752fd6b73cf7bca2ba
BLAKE2b-256 ae243d24de121a1442aece4dd22aec04794267fa716112f8355bad4be941402b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3a595af546a51df2548305e2eba0828d8a27744ee224ab8bb84aef423b1b2b67
MD5 625b6f8899ca325c39d5ebbe90f78871
BLAKE2b-256 da19bc33e41e0c4f63ae554c01716e6cc182fd7547707f8ef563a5d1a459aa82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 610c1ad13b5acbb153a4105f4f8381ab810bb2620858f418b13cb5de3b0f634e
MD5 36ce58f42655190a27c7d0e7017e3572
BLAKE2b-256 7298e3f7791d3e75f178fbcc9cb58a72c3f31a44adf58481e861f7559a02a8ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 32b07a76bf46c967043a4c2a476400f016d85d2deba6422122de057ab0fd5956
MD5 8fa0a74178c1252dc9ea763ce484e351
BLAKE2b-256 53f4c5fadc1151a3451a5d6ab3f7020a3b437e0050c8c70684642e54fb4a7f2c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4d45b9fe33f343290d1fd0f2d40efa3a4541395be0ee4b5f7b28db908ad07b41
MD5 620080b4daa74f814874509cfce00423
BLAKE2b-256 14f583fa4b98a8f8aa5690f57c07becdc83e222835e2f76f4b5569a1ee21e89a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac9d7d10ef074d80412f24a8c3ae1b66558ee25012f2b433b050acfcf73abaa7
MD5 f0846b0ec07ef479bbe85d4d810ca313
BLAKE2b-256 23fa21b9f8486c3f146150b874128b8fe2dc854d1209c89b71336ec4e0c3d89f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.8-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 246.0 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.8-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 5122227af2258fc9d1fc7a6c3e2f92cee97deb01ba45ce1dae9fd5ff4b0f5b48
MD5 73508b3c0c81a1c2656a19d08eefe0f2
BLAKE2b-256 a9a7fc1ef1557dcd69ed4df8730180f3791810912c32f7357b476849dcd1d58e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.8-cp39-cp39-win32.whl
  • Upload date:
  • Size: 238.9 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.8-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d205cdf4a4d815180c20138f2e70acc219aa94434706ee0180fc6b145a4db1e4
MD5 1902894011c18c0ecc50b3aea625c016
BLAKE2b-256 5dc00af808bf9a6b935f47552603ee01b4441eeaec45aaa13478264dcb66e078

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 648924664ee71cc60b0b8cc8e9ae0e4ed8a8dedffb42e8b969b845a49b3b1a85
MD5 0554ac924a58fd9163578f549acba15f
BLAKE2b-256 a3d5616ddb79289896d831fb263a740932af58a500b20ae29d23fd1fc2e3ea52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce71f1a803397708b365f042d8e7a970df0e1b282a0f3d50484a1f0068426928
MD5 684a16e2fa2a538ea44dc4b99961cfe1
BLAKE2b-256 315e54a5453b53555259773327dcbb87faa450c2f8dd5b0ab790c3a58a5fe1fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e62c1f50fde879b07432cecd374233fbe3ff362902bc00051b5336ce868c75e9
MD5 6737c9b5c8a87d3c942492a2e489ac73
BLAKE2b-256 62167088d726b5f5b61fd5849b89f6f934813ab09c6c31126b92dba0e24a1c1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f88880bd77cc5d43470237c778ce3e80a79e05f78e56e5cb2998330f1f796517
MD5 66aef6b9181e1cd30d17ef9e8213aff1
BLAKE2b-256 dc39f1f167b89f0dad23c05c45c6ffbd4104cb661027937c49a1cdb477a645f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 9145e11a6d945d1d6e448c94892f07f8a108b5fa3d0784fa48ac16edd743727c
MD5 8c9f20102038b9a2127ecfa24e95ac68
BLAKE2b-256 9081c55a0a362cb36dc88eb6c6a116e163b472f9ad9faca31d670f30638ffed7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7caac5bb5adfc2dbcf3e59f969ebe3079e347ecd10fec71a337f1e52e2cfba0e
MD5 c09427c7a9107fabafd4110b6a1a819e
BLAKE2b-256 d2962e587b10f4425dd3daf55bd4039cf537cdcf47dbf6acd0c54c2fc437cb7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 20c64d1390cad38f42c5781d1513d881af4d79f542f8424f473f10ac949d769d
MD5 cf94d318355528a727c2af71b4dadd0a
BLAKE2b-256 df50ac1583ecd715a2c37643f460259c7265671e77197e64c022191e9c963e62

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b4666cf958716bc5cdc90b4c5144dbc23a279edea286309047ba754914e01ed5
MD5 42ef7cacd4ce84fd2514cbeb97286351
BLAKE2b-256 3b616faab25831b274d7d20267da1513962b66d7fbbbf853c1e01f4b95baf0fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 290db860cbc1f8e41619af4858714d166e98a23db1118f17ccec7e1242f7a10d
MD5 e83b82b7ba7e7c83e5186a3023000fae
BLAKE2b-256 860c1a00ce6ee235f1cd030c39e7f3c40d54af4d929220450d1d60b5b03bdc1e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.8-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 61a36a22fdd0d978931568be0896112a78e596091ed12c3185edd5cbd68fee56
MD5 132cce521a04c1ecb3bedeb7c7d870b3
BLAKE2b-256 c676896ef8021f1f2bba45d94c5ebb55731292a6a042b76e0daf1cd0055e5281

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