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.10.tar.gz (16.9 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.10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (515.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

moka_py-0.1.10-pp310-pypy310_pp73-musllinux_1_2_i686.whl (544.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

moka_py-0.1.10-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (626.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

moka_py-0.1.10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (518.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

moka_py-0.1.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

moka_py-0.1.10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

moka_py-0.1.10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (379.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

moka_py-0.1.10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

moka_py-0.1.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

moka_py-0.1.10-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (368.6 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

moka_py-0.1.10-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (515.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

moka_py-0.1.10-pp39-pypy39_pp73-musllinux_1_2_i686.whl (544.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

moka_py-0.1.10-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (626.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

moka_py-0.1.10-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (518.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

moka_py-0.1.10-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

moka_py-0.1.10-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (379.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

moka_py-0.1.10-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

moka_py-0.1.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

moka_py-0.1.10-cp313-cp313t-musllinux_1_2_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

moka_py-0.1.10-cp313-cp313t-musllinux_1_2_i686.whl (544.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

moka_py-0.1.10-cp313-cp313t-musllinux_1_2_armv7l.whl (626.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

moka_py-0.1.10-cp313-cp313t-musllinux_1_2_aarch64.whl (518.2 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

moka_py-0.1.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.2 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ s390x

moka_py-0.1.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (379.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

moka_py-0.1.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

moka_py-0.1.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

moka_py-0.1.10-cp313-cp313-musllinux_1_2_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

moka_py-0.1.10-cp313-cp313-musllinux_1_2_i686.whl (544.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

moka_py-0.1.10-cp313-cp313-musllinux_1_2_armv7l.whl (626.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

moka_py-0.1.10-cp313-cp313-musllinux_1_2_aarch64.whl (518.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

moka_py-0.1.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (340.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

moka_py-0.1.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

moka_py-0.1.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (379.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

moka_py-0.1.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

moka_py-0.1.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (366.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

moka_py-0.1.10-cp313-cp313-macosx_11_0_arm64.whl (313.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

moka_py-0.1.10-cp312-cp312-win_amd64.whl (231.7 kB view details)

Uploaded CPython 3.12Windows x86-64

moka_py-0.1.10-cp312-cp312-win32.whl (221.5 kB view details)

Uploaded CPython 3.12Windows x86

moka_py-0.1.10-cp312-cp312-musllinux_1_2_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

moka_py-0.1.10-cp312-cp312-musllinux_1_2_i686.whl (544.7 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

moka_py-0.1.10-cp312-cp312-musllinux_1_2_armv7l.whl (626.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

moka_py-0.1.10-cp312-cp312-musllinux_1_2_aarch64.whl (518.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

moka_py-0.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (340.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

moka_py-0.1.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

moka_py-0.1.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (379.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

moka_py-0.1.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

moka_py-0.1.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (366.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

moka_py-0.1.10-cp312-cp312-macosx_11_0_arm64.whl (313.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

moka_py-0.1.10-cp312-cp312-macosx_10_12_x86_64.whl (324.7 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

moka_py-0.1.10-cp311-cp311-win_amd64.whl (231.0 kB view details)

Uploaded CPython 3.11Windows x86-64

moka_py-0.1.10-cp311-cp311-win32.whl (221.6 kB view details)

Uploaded CPython 3.11Windows x86

moka_py-0.1.10-cp311-cp311-musllinux_1_2_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

moka_py-0.1.10-cp311-cp311-musllinux_1_2_i686.whl (544.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

moka_py-0.1.10-cp311-cp311-musllinux_1_2_armv7l.whl (626.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

moka_py-0.1.10-cp311-cp311-musllinux_1_2_aarch64.whl (518.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

moka_py-0.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

moka_py-0.1.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

moka_py-0.1.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (379.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

moka_py-0.1.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

moka_py-0.1.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (367.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

moka_py-0.1.10-cp311-cp311-macosx_11_0_arm64.whl (315.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

moka_py-0.1.10-cp311-cp311-macosx_10_12_x86_64.whl (326.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

moka_py-0.1.10-cp310-cp310-win_amd64.whl (231.0 kB view details)

Uploaded CPython 3.10Windows x86-64

moka_py-0.1.10-cp310-cp310-win32.whl (221.6 kB view details)

Uploaded CPython 3.10Windows x86

moka_py-0.1.10-cp310-cp310-musllinux_1_2_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

moka_py-0.1.10-cp310-cp310-musllinux_1_2_i686.whl (544.7 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

moka_py-0.1.10-cp310-cp310-musllinux_1_2_armv7l.whl (626.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

moka_py-0.1.10-cp310-cp310-musllinux_1_2_aarch64.whl (518.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

moka_py-0.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

moka_py-0.1.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

moka_py-0.1.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (379.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

moka_py-0.1.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

moka_py-0.1.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (367.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

moka_py-0.1.10-cp39-cp39-win_amd64.whl (231.3 kB view details)

Uploaded CPython 3.9Windows x86-64

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

Uploaded CPython 3.9Windows x86

moka_py-0.1.10-cp39-cp39-musllinux_1_2_x86_64.whl (515.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

moka_py-0.1.10-cp39-cp39-musllinux_1_2_i686.whl (544.7 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

moka_py-0.1.10-cp39-cp39-musllinux_1_2_armv7l.whl (626.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

moka_py-0.1.10-cp39-cp39-musllinux_1_2_aarch64.whl (518.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

moka_py-0.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (343.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

moka_py-0.1.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (479.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ s390x

moka_py-0.1.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (379.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

moka_py-0.1.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (362.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (341.6 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

moka_py-0.1.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (368.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.10.tar.gz
Algorithm Hash digest
SHA256 3c21ce610dd24091d18a51c0d7c9b29ed2eaff33d097cd4ad2bec1d69d648c5c
MD5 3cb3a3d46172d2ca057083718ba96400
BLAKE2b-256 4a8356db557df2eb2c152cb51d2bf137ba4b7629b0a18f94ec541fa8c25ced0c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f33de525b570f38783d257d9c5fa54097f5279be10b3726a4062dd44008cc87
MD5 3239d7ba0c8afd3a68fef321c1bebec8
BLAKE2b-256 294ba6229235341e7189e7365f760986a8780dc182421ec06a9f0318920ea55c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 bb1796868cc61021821188b21a044afa3955b440fd640f113b2b40d3de3a4fec
MD5 148a60717f98a963c673f6960309899a
BLAKE2b-256 9e5cac79902c790fa6d6ce1e6cdaf9f80862bdd2dad8b6fec7b0fe739e5dc3bd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4a42742f31b678a9318c213671c5dfcdc0132a575c29e3f5efcaa0b0b9e932ab
MD5 83235b0331bfb9566c19486c574e8842
BLAKE2b-256 ed58ba2fc7fbcdcdb97f6c29e93c1b8b5fe5b56997b939e34f035fbc0d9729bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3f48b0359d5c6429396ea84d6c6acde72cd275c0245733acfce53d176b6084ea
MD5 7a8bde0b262c09ecb74acdd640f8827b
BLAKE2b-256 b74de8e0dc5b849edc9df36924ba80559f42094df5f9a9c4b71027eb39e506e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ee623c837702c992c4a1c99768d1a4ac3d09e6cea5c73b74ee6312f7c77bc5cc
MD5 3d30cec8197e35c4b7e497e0c4a45d7b
BLAKE2b-256 bfe6ce94ba44124981dbfb0051551e26b0b4ebd1abb65731043fd9a107f3199c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7e6740efd8ed38b1643e13da8843484cb48f6d9ae4cd4f24cbda38239d271a3c
MD5 50774af6ca3ab7cb815477c94de2d0de
BLAKE2b-256 1ba4cbdf220dc2a47682cfeb47f05a796b0bdf17caca3b99781ae3bc6ff2fb85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3f5a7de3841f4c485f2ed88e40fe8ffddec499c6ff24a9934bb4b41175575507
MD5 8236190f33bd026cf1c8b2b7e561f19d
BLAKE2b-256 50ddede07d97e7e835eadd55926153abaadfa8b3d22d0161d3bde84fcd61627d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e9e317df48f4426f11af1e9f70d36f4005b6ae58b75ad83ac807bc89d624086e
MD5 60b87c6f1ac2615dcc3b3a908e2dbcd0
BLAKE2b-256 9eb976321262a1f4f1d9f508b2bd15e1e97a9942fce55b77f66340a3962c7029

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d3c62bcda9e91748847a757dcee39885e95f74c2da57ca39a4437286055cb8de
MD5 a0c5409a3b8420fae0720182a1e5e997
BLAKE2b-256 4c3ca7415f06a3e9ea9121577e87c2a9ed1621cf2266e4b2d187bb1769c0c022

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ac63a9e836d96debca4c343b1dc9c1de604e908c5a046e8f8d439154055db970
MD5 920e32ee23dec6de3ede550483d07d08
BLAKE2b-256 6c746c0b2bd3fecb0dafb689f991989a2d940a3fce26bb5438d933af6eb777c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1b806c767e30f865a514571bebbeff7707374d7fe476b39cbf0852d4fdccd358
MD5 5ab1f64bfa1ed3b8396d13f6c2ad42a3
BLAKE2b-256 03fb5de3074febec93a6f2c6963d35ee570c32ca7b5430fc6e64c98050ec8d2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 acbed38f7148792d4c3d37aaa6f5f74779d049c3858923deff3cf35a16521c45
MD5 276130f9b9948f7d870ed360ed66870a
BLAKE2b-256 70aedd68c723143b3cfc8e093de1d3a3fc06e233debfef863b57adb87fa0ddc2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4382f56d6d3772d51faa06a4e57e41f3b2e3f7f617bb24a6fab0cfc602a9773a
MD5 cd0b0cbd55fbb848a9e22de19236337b
BLAKE2b-256 1d34e83026e185133a804e369d060ceddf00c5e03be8ccffc2430521ea40012c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 42ec254f42fb81b5e70f25551cce50b7351ba64ee2ca7445971b131eb6ce224c
MD5 eb7a622077036f186e92e9f934865245
BLAKE2b-256 31a7a82c810787f41dc3fea30e710e7256ae88a76cdf97cb4362fe20a191a3c9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 40274a3d42fa431cc2693c3e35d9871a330164b678a24bc725960fce5eb2e2d0
MD5 54a2ed4e69b47a23338749326783e08e
BLAKE2b-256 0376ac9e07021b8f0d3fbc3294d5cd3e1b019ceb08c313674fc8f40cad3d57e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bedaf2f4ffdecc89d815edf61db5f90a3baba4d6ad303a59c3f89f7cc69c7e4d
MD5 79efd2227e1102759b0c1b6199010ada
BLAKE2b-256 c7398e6ffabb53920d12e6aa9c25b60fde6dfb132371439fe0b275b626503ee7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b3f4678f8cbe5a07a6c8e25f980867f676124611544588a2727c4ce5650f9908
MD5 38fa0af99ed3ec921105cd8866152dc5
BLAKE2b-256 afdf937836cc2152a5c044566367972aabeb4ebd48311e180dcc9a8b49ea7d4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab4df3e02546cb5bcf0ecb634a6f4f80e5116a842a21a0d878aa512447a968f4
MD5 89a7ca5ae88f3d2ab4d67e772252ed1a
BLAKE2b-256 5c270afa69bca24087ae229c8323ca21164750b13b48c924ca58fbf0ca2a486a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0632ed82018a0449df0b3656d53bb743ae1d6ba145afc826bafaa2a899902b95
MD5 35b35f7a354f2b69142c8d24c50ada2d
BLAKE2b-256 0db9537ebc80fbd01c5b48bbf11de4ac1ec888d50fff2fa114967d2dfba9a7b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 117ea87916cf722d21fefacbe74399824ede900ab0e1fbb8222f6e20d2d236f3
MD5 4c5b48801375a0aacae88cddea88faa3
BLAKE2b-256 9dad3dfb70934c8cda2795cbcd5e27d2205b29b84b79e1d7b13c66f36e26777f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 930ee00488c92077b35ebbb907a2b22d04d8a8b818863a14ee3fbce8bccd52d5
MD5 e8d655adc7fbdf405484103d119671c9
BLAKE2b-256 47e1fae5b8e35fdd6526dd3677332f7798d65227a23c6a7871e72b7ec7061e51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 675f642a00b92f9bd320ad8da54d12aa2fd467354da695df165eb9741e9e20f1
MD5 823f92895dcb73a71706b88682edec7b
BLAKE2b-256 d7694e1343fde00ee511e5873d430a5a0ed830269a7f2e82ddf2354510ddcf9c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 36b7bd622f8f4dd8786d767e4d776b57046ea8f63fa00e6bedc49a7a038f0311
MD5 fb6839ebd24a9cdc7974692b359553d4
BLAKE2b-256 98ba36f8a7af36957cc0baa0273889122031f42441744f3d9623b944ab4f50c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1071dfd795a605a849e45b2550711cdeeab73c9ce29095149c91c218011caf29
MD5 e6257619e8af0a4997cc5d8abacfe437
BLAKE2b-256 e63891293cb6a19f8e32ec67e0fd728f34281df952aa16f50068e97b0fb7e34a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 846e70fdc893e3dfaa5e23ddcbd36871c68f1ac3e7e0a50998410557a2bf0c82
MD5 851c6245a68b78bed8a8e084adc69fe5
BLAKE2b-256 6a0be852edd04bd6b2031702b464a82e82f7a13c0a4a265aad7d31bc4e6a1c49

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 282688e098f4acde2510e788bc94a4869fac894b3d022ec14b6fddfffae501db
MD5 1932539d6d84cf5973c7832d531f8549
BLAKE2b-256 2e16c15d418457d368b784361a6fd2e9af505cde5adff01f2052ba342b4fdd2a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e3f97377576cf08e1f72bc99599863cb726d9b7358aaa32e891cd22fd817fffc
MD5 c007d7a7640cb21930ce37dbe82344ce
BLAKE2b-256 e14dcf411eb5576e280ab442fd07d919fe9935ac327647345bc8106c6ece61bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aa0d0f0161d168a9ba77099f2f345ae39fa8b5bfb3dde7f5bc10d2548452ffcd
MD5 adcec48d5656d967debe290f6ee76e65
BLAKE2b-256 c7245e5c67680b7d3f5b917370da74f8232c0a692473189ae2ee39e2d99d7267

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bb501b49767091711224132aab4ad275a2869f999bded9be86e65f2d50983ca9
MD5 59718f64e1ce0425092f2bb52aedf824
BLAKE2b-256 722e5c8ecd09d914f4431b95990584627b1068f340eda04508b13d55e2ed12dc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa7b15ad80dd4f7a453a9de252138c01c264cec2b8f18326c630453b2cf0141e
MD5 5e32df2a7cce65878f0eaa9042eb822f
BLAKE2b-256 779a0177cce711b46315b1c4ef3f8a5be10932718dea0beb847a0839211faf9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dbda2a41665ec6d267c6340242ab3146e6257dfb1bea5161fc43c258fea317fe
MD5 96887d478a3e2f025c44231e584091ef
BLAKE2b-256 14c8a2ed90e3b7ddeb5eab0468e5d4f5b187f0b7e5e7c915d22977cf7bc5aa42

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3de30ba020b87e5640380cd650613027f4d5bc26e4a602d3afd9ee6795afc9b2
MD5 5d68b7d6c509ccfe5e8efeb46347943f
BLAKE2b-256 a5ac13d9ac0a3c93d64a52ac1579b8980648b91da8ece57e62f0610730ebd45b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9aee9257706976a659e264c9d9f5e0ea5f683cdca9cc5f7ffd7ce31e94b3c393
MD5 5d0e377eac8387187c8008e42cbe45f5
BLAKE2b-256 26036aa9c22397bd09e0bcbf2d75bf46792c2f498ef4d42f743e893ab56a2f7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 576a44521dd05fecfa667fae4e0f6270e81492151d773bea1873fbe1a169a1ca
MD5 7cc30d23213a42b826bc30a6e4c72f29
BLAKE2b-256 268e9a8c0197707c1e3dbf0f4db95face50f88c79e6a06c04c94c5cb5d8d0bc9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e7f743746acfcb0f5d778f34ca7eb6c6477064a39d4522eae449041a870df23
MD5 5e549c15bc8c69372467d3b98e8ab4fb
BLAKE2b-256 8e3ede79b58ea6142231bc56a88ef9cd91c0e23a23846e11ad2fa2046c0ec02d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3fd62f0632a145863a7139bd13d0fe2a6b27bd39d2da654f1736f814ac41345d
MD5 c94b49698c45adf4473f5ec4efe66696
BLAKE2b-256 027258b04a7a78d3d10ac5d5a09243295db49aebf54d6a035efa849c72bc7966

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a35f0364dc7f8ff641c0faace677ac483d098c8c35d0680e7b1c6b85e5d11e24
MD5 fcd00db8c7e94242267db749af6c1794
BLAKE2b-256 74c2790129ca21f9c5d2d4d458c88bbe983a78d45bdc0fe2d0a762c93c435d77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d33ceb5397441f0a1f84bd5a591e7132ad378c1cb6d697dcef43410d0fd3ffa1
MD5 ce05d7509bacd2f32eadae106c54f08c
BLAKE2b-256 a1fc893ade394a2661582b2c36e5597772698cf774bd5809a6cf4d105d678779

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 b62c9aa14c9dec516001617e314df161170064cade6374638ea13f34d0224b54
MD5 07e75a0bcebd7cef0c46b30a688ef75d
BLAKE2b-256 dae3f2100c74fa4eefd86e14c18ab313e1ed50682fa0cfb20b7f7217ca96faa4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 baf091278e643b829b576fabb0ac1c2837412052cd347dcd9936509156d88d1b
MD5 ad01e188c21233d9390139b614b9da2e
BLAKE2b-256 2589eee8560d111348cdf85526db98f84cb6a83e7d5710c247b569bbf90758ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ceadf2976df01b588e2a0f95cf9614bae7575948694a9de13d9df0bdcb364a4d
MD5 2f1877b086e61ac0483849fa5aa14c2f
BLAKE2b-256 1f93c447d525f10bc51b69750fcc6aa63367ca7a66a9f5922944e7c204d2a9c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6d5ef63ce34045fb443227cc36e4d4598a7da3a52ae8bc03f5f4807d1f877619
MD5 5c37763925d5c45e58d39e2afa3d8151
BLAKE2b-256 9257d26509a65ccb05c8e924098e63333ddbc337ad104b9578dab46f16d48d0a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff2fe74c90190bd1688462c26143df9095bb5a03e3ec19dfe92e0b4336e0212d
MD5 8d823bed2cf0b1f761ffde5dc94438ff
BLAKE2b-256 6220d419c4db68cdd3d7f7d7fa25ebf9bfc895c24f0241e59f1e40b66ffa39f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8c55cabf7e8779505a74c872217fc43af22a62b12103efff5642e315bfaac204
MD5 e94fc36dcbc4a31204b48a82fa8e14b6
BLAKE2b-256 5254472695e9e628d4b23347e99154f3f5a32cde4503185315ed1cf13ff5a47f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ce48bf7a7fa0fcdd3e0c6369727e73130aa4c9de1012b0bf8f3ab000c778041d
MD5 a04a2a26fd0eea80b6f12977495bed71
BLAKE2b-256 4062872678b8c533213193154b679ba76ec725cac0b5bc763e2cdd0bec6941a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6c608062e822add53224ce42ce29dceee0eaa629f0cf3129b69a8e01bf31264b
MD5 73f557858ee6983685aa4c5995660cf7
BLAKE2b-256 5e86d08d5d1029a1c1bff41700edc45411f2e41ec5fb4611d133ab67c27f6f80

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 de1c04c31e8384cfe4a435eb83bafab75425e7f2ec9503d119662cbb246b7f3c
MD5 3371909157f9c3ed2e6ec04c275a0d53
BLAKE2b-256 f3bcf2a9280e68b3298fd02dc9dd35592dbd6e57756ebe830ee36af3e85ccc4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0cc5c0ea0d97cdaba90d07306b1b32dc32a006cc1556b4e27d034296373db1e0
MD5 f721d6eaf7ec17d39b046364f08d316e
BLAKE2b-256 68e28f7d39a29b6e4e56076c6596e50bda4136960f0a2175d0185ec35b94ff40

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 16b23ddcd5a1b34e998c6f42fa39f8dcd6ceedc69a91d9c53fc94259c2f74ba9
MD5 5b17a3c50a2628657a955c6ed9766ec8
BLAKE2b-256 27da745d16211da05d71359d5a60b41592af09dd04f1f08db0a819125b81371a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 23e67a1406378284c431775ae23e5b546b677bef42de077d4c8a59e01a799d77
MD5 5b6b9b402868b42ddaa285e5a599dfc1
BLAKE2b-256 4a230b9791a21ebbb22f9bd85d0e97b20967b085ab147e0d3022a526b88e8ba9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 05322b1683c28f004e7c376cec1e2c7dbd4b12c6a680efc302705d85fd717391
MD5 4a15e0a2d1992a595f416f40fcec90c8
BLAKE2b-256 6734e59b1ac21b79aafcb3f13a92bb78d2b4c120f91b92563df3281461dc9d51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 b668508fe1d70df28a67939f14bf5d212492262d6ddd5380112126fb6256404e
MD5 1075d3b78273a3027bafbe42c7814814
BLAKE2b-256 c6c97adf2269ef82895aa8a9a56b0507b50bc817bb60a7dbc488f5265c0485b7

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 18e2dc9e78f088d34dc706932457047be0071314abb26223eb475da4e89d5795
MD5 5bf4cb9407cb28578a0980c5effb5752
BLAKE2b-256 52ddf57afd8011004883ae5d4b22c0195b2118c7293543a481331d1a1a9202f3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 54effb86efbb4fb5cb2da075931638129093892c4163711e4f0e2806c7303359
MD5 9654def9185c26a96cf3a078692f58c9
BLAKE2b-256 81cee0e7205ebdd9a3fa86ff928c002c37f9ca6543f5b6a793f4e2016c43fd7b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9dc0964661470ee05bacebd0f35c5aa42189af7257ee3522fc6447a81b317ff2
MD5 6698fee3680bc1377eec581fa449131f
BLAKE2b-256 460260110b1768f1043366be4f9be55a98b975e0d0bc9eab024f5ce76f263c72

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3e1d7dc1377ea888e4182cda5e3e68871bcd122e60fd3b33e10f2dba12e1d8cf
MD5 077f587070e09344724f6ad601adf4c1
BLAKE2b-256 c0a4a9ab5d3f0b7652205f8485461fe290bbe63d62014bf494ceaea24b09d0fd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 913ca1717e34854234d5813e5514f44da14d8f31bc309bf4713bb39e70267baa
MD5 7c35733d7d281ffde6dc41f8bae9b29c
BLAKE2b-256 7d5e559c96a950963d5861b9f692a9ad9eb96a008905d50486d16a79d3b27abf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1a981225ee2b00d86a4acb6a7fb65ad5e94994bb840d674a92be3f27bfd26f69
MD5 bf0e477b56595e1ffc2557d6fe6b6eb5
BLAKE2b-256 9eb5896b06241dbd1c281509d03b68a6a89a510295f8310cde5d3d7e1a5f7b3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ee14bc65779084c2bbbdff91cbc76eca98773ca164e7b602f4004dd14c9d27ef
MD5 2375ecb3dec32708a0b990763fbd833c
BLAKE2b-256 fe32091c0ebc02b575312fa67c591e15821767369f6d6996bb1bbbad8a3572bf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 17d3cc93662caa23e0c4c7f9a391ea1373d260e69dff558db44c7a1a000d6601
MD5 f81d1c9c70b0a608c3f4950f568074cd
BLAKE2b-256 25e32742fe46489da864e36e491c2ab2cb0af3f576f7277861b1e9708dba6ae9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5ad7b7cabd83f37900872f0bb61e5952498669a7b3861e4d2fe5bb506e6a45d5
MD5 aeef174b56acf9cd51eb8353c6dd0c1d
BLAKE2b-256 2afb6bfbd139ba13fd2448d928d4e397835c18fb5444ab1a613245c71bf28b51

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 08f2683f6da77ec1fede1aefb08f70e30d060edc4d67484ddad1e656c1f28403
MD5 b387ed810d2600fb9efcf95f87f220e6
BLAKE2b-256 97b2125d7108b6a7fe0b744ca961dda7e6134ebdf3ea8b4e61b0b1c3a648de69

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 ad5228ca2995277f88d0949c60ea9e9b76d899ecf2712896f416f2781e1f381e
MD5 28151ade64b307ad626ccdd38a940c93
BLAKE2b-256 d2867e554b7203d93753f8138a10e289e080966c625c1b5c49fda0abdd969446

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 138c75e4fc26fcbaf845131cd378125b0117fac08215ceafbafee610530e96f5
MD5 99590fc4b3114d60f9629c6548ff9945
BLAKE2b-256 e508346cea20520993be2bc8542a0c7ab6bf2d509478b4175cc8b7e142268813

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f702b2fad8036f8b4e79a6c1fb36462fb2916530a447b149f175e67426d2523d
MD5 a6cf2d0242df0683293e7110a5c85c03
BLAKE2b-256 4f1f72a5397baaf9b172cea6e889e0d46c40446bcb441cc7f6609e4e8510a400

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e0fe47dd70b74b7c06e69ac942a58d46f129bfbbfd0dc8f194f8555e041343d2
MD5 3bf281fea3eb966302d376841bd0ea57
BLAKE2b-256 28a6c215e287de4906837745f8c07568b83cea9107eb91a730e9c256bcff49bc

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.10-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 9b661bdf7f6d2be20cd6d2cb40f64155f1250c33db3813997ba1a1cb962e36f7
MD5 d90fb69ffad3761b3d8e4fb7262d90ff
BLAKE2b-256 4668ee4902e30230668f5ac662efef6a44f77d667a1f890343a00e6fd70ee5e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8a6618e10e7f2177c3f3741bac8c87ea9f9804af98de28de45ce209ff41d1b14
MD5 2d736fe8aa3906fa4d8ad76db22be0c5
BLAKE2b-256 fa1cbc087f568ebe0dd33660ac9d46f51f63b2ee8160a09a52ebca62eff279b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1376c861318aacddbbd0ce528bdccd183f2a573fdd31d136c301f4b4ee7beac0
MD5 d685cca8d6517ad77dda2fdc2939ec91
BLAKE2b-256 e5cfbde7c66642f47629b0c52d4bd27922597f09b25c278c9d2c9f52d50bc569

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2d44ee32441cc60e36fb1f20da4e8d24b14f541953619147053efea12de8b7b7
MD5 2f645f9b16625f2d460681a5030e69c1
BLAKE2b-256 835c533b22985a00a94c72e157d7143c7a125cfca91878722b47e6b2dea18027

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c6e13c8e7ca2a2e2a0daaf4a64c539d3b1874b90010fd2a8b8d5af99db60b60a
MD5 3b2e08e3795ef05c1dfe918171fda2a2
BLAKE2b-256 2616829a9ab36173a2a997b5e83dabb11ac8b561826d0bd8c6c89efda6853db5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aff052f3d527614fc1d231c20757fb7ce9a987fa5b5a659ec4c2355cf039c731
MD5 8d4b1d318a63eb18ec422a73539a6993
BLAKE2b-256 be1f248bb1c2c1ca9c33f39ed6ab04f13652ba38c50eb563f1d3e445dde34c38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b1e39111c186111f3534f9c9a78150b03cecd57a6a88d876fec3ab8e361e12d4
MD5 5e522136398bd9323603c5e7e9596916
BLAKE2b-256 2c2bd65d299311cc1b908f9f9c23542b6975de2ea0f505dc5f08beb828b8291c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 48575c1ff5695493131059a95638c151c750f2393c0cab29549c091a1d64b3e3
MD5 0b7cb574aa6eacf6f056ddb9d8e9af34
BLAKE2b-256 b98c46fc469992427856404b50931728180cdde26b1e8cc8c99d02db929ae0ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c7c33b2fd20c3cf5a77670e555ac08d9f19cc7039a18505a486d6dfe28d3dfa6
MD5 b3bca7a07fc1ad09dc1d5249e15d67f1
BLAKE2b-256 98b49898c47fd9f7f079188dca6cef6e9537269c439249c372bf35529d57de12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 efadc3236d0b3baac332bb7dc1adebf787da78ea6e515b1f151f99b2a82ab194
MD5 9a03f9d2d6b81f2c03121656526d2cf0
BLAKE2b-256 4530746cd637a51000c3f524a729af048288f06956cafba9974289a2db8485d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 220f6014a12922ec8899f4f3b0c4d8688e5bf9419d79e31596f8e56ae45f9511
MD5 b534a124953918a2c4b358a2abb19bb4
BLAKE2b-256 43d49be0fb16c440656c090c19f0f68acb42d09bea4f795b8be25edce7f82fae

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.10-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 192b49fd746de838b6a36df4f21ad89dbd1813337b3e5475f78fc4b540518712
MD5 df881b2fdc793c8f1fd709cb9e9dafcf
BLAKE2b-256 7901dd55dfe3adc04798e716792a1dbd4cc36e353c92aecac3bf1fb9fb8bb056

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.10-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 600312bdf4b008d56723d8258d21c41e84748ef372938c69aae25495df0f7bc0
MD5 0a424b2aac4149fb019f753e1999fe18
BLAKE2b-256 224d9444ba5eb2a65c1f811870243932a4bcb9eb56522f79b20525f1de3a95a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ce08a460b670dc517537c41e90d53d47034ad84c6d539a567490a060a67780d3
MD5 4e11fb4da7b1742c355a1d5af4ea4003
BLAKE2b-256 df797a31b8ba3e552c017379a12fd41b394b87297dd571d4195d627c37f9679e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f86d405817c1ff83c2e6af590d54f4933a35655402736553d064f06656c5d644
MD5 413d0f8845cb3aecb5a95e1b1326e12a
BLAKE2b-256 659b9d9539bfac29d785607e6de0446db0637eceb29a951c58bbc72cbd1c5d6e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 128a6d1f03f8265065bf216107cfb5cf64b56a5ac6d7e2d6bdb3a4fdc87ad8aa
MD5 87f4b8170277d355a27219f9d93bd61e
BLAKE2b-256 24f06415dea0ff5c084c419bd387c938c92b713e04d599769999fabff1307ed0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 3287af3a68c87d764dc2b3605a5891978d0855e873a502f4721cdbc9a8d7305e
MD5 2638fd797d58abf28b0147893db65756
BLAKE2b-256 6acbf58dd9296b11e2143ffcf7d228aee28adfff3ee41eef9816439c8f75822b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6fefc0b22dfc3c89d9c2ec7c88385dab02966f205cedd01ff449fe3d44526525
MD5 e1d89c538ec011520e0de71d3ff98ccf
BLAKE2b-256 1554c6dcc9e186a0407f6162a6697b2e37d6382a74cf5247394b4ab17390b3b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 6428671df06c151db2d87001b5c101bbd8913fd5867693905ad1d8056f5873a2
MD5 fead20ee3af4d15314fad4c7e2836211
BLAKE2b-256 ab3a8641c7ddef52cbd894ebf1c891c6f05c135565579f4d9075c3772c60e7b0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4bd0b8d780c3adb9337ed07d92814648dd8221cd2f37f7c78a84146f2b8f6923
MD5 50f5fcf5807873bc7d077c236afc997b
BLAKE2b-256 43ba86bba77e9b05fc280c4918ce8e0ed20dd6d51330858adf8e214762a452e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f17b9988c44b926865903ca51da92a4b550befba4096ac3b8756a94729690537
MD5 2c6b68c570a98d02c4888c1feeedb8b9
BLAKE2b-256 923e923de0fe235d85a4d297c68d79fe05146d8769667384006783ccce69ae8e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d38f77d1c8a60bf9af4a0951bee7eb76079d0bec51bf2b857d8af7485dc9cf80
MD5 8468704fb0ad83d91f915fbae12e6a3a
BLAKE2b-256 2f73709369d3ac19bb8a518596b0ce1d9334fa452394b7f281f3bfe6f2ff7b1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.10-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 082b91261248cd97eab5d66c80c1f4868e229ed7bfad4ed2520388b418da2aed
MD5 36e109b99fa349eeec5f3a94d3742a96
BLAKE2b-256 a63d2d646e0a4fd9df24be57e594aed7f2314015d3b4c0a19ce276cc27dfd02c

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