Skip to main content

No project description provided

Project description

moka-py


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

Features

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

Installation

You can install moka-py using pip:

pip install moka-py

Quick Start

from time import sleep
from moka_py import Moka


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

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

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

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

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

from time import sleep
from moka_py import cached


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


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

License

moka-py is distributed under the MIT license

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

moka_py-0.1.5.tar.gz (9.6 kB view details)

Uploaded Source

Built Distributions

moka_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (546.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

moka_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl (577.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

moka_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (650.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

moka_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (563.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

moka_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

moka_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

moka_py-0.1.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (415.5 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

moka_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (546.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

moka_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl (577.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

moka_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (650.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

moka_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (563.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

moka_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

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

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

moka_py-0.1.5-cp312-none-win32.whl (227.7 kB view details)

Uploaded CPython 3.12 Windows x86

moka_py-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl (547.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

moka_py-0.1.5-cp312-cp312-musllinux_1_2_i686.whl (577.6 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

moka_py-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl (651.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl (563.0 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

moka_py-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

moka_py-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

moka_py-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

moka_py-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (412.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

moka_py-0.1.5-cp312-cp312-macosx_11_0_arm64.whl (338.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

moka_py-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl (344.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

moka_py-0.1.5-cp311-none-win32.whl (227.6 kB view details)

Uploaded CPython 3.11 Windows x86

moka_py-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl (547.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

moka_py-0.1.5-cp311-cp311-musllinux_1_2_i686.whl (577.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

moka_py-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl (651.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl (563.0 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

moka_py-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (380.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

moka_py-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

moka_py-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.3 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

moka_py-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (413.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

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

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

moka_py-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl (547.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

moka_py-0.1.5-cp310-cp310-musllinux_1_2_i686.whl (577.6 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

moka_py-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl (651.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl (563.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

moka_py-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

moka_py-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

moka_py-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (413.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

moka_py-0.1.5-cp310-cp310-macosx_11_0_arm64.whl (341.7 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

moka_py-0.1.5-cp39-none-win_amd64.whl (233.7 kB view details)

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

moka_py-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl (547.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

moka_py-0.1.5-cp39-cp39-musllinux_1_2_i686.whl (577.6 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

moka_py-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl (651.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl (563.0 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

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

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

moka_py-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

moka_py-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.8 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

moka_py-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (414.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

moka_py-0.1.5-cp39-cp39-macosx_11_0_arm64.whl (341.8 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.5.tar.gz
Algorithm Hash digest
SHA256 a9526853eb64a88984c6eb90b140f00a4b7304bcdddfd7bef49a0acd48ee561a
MD5 ba553b5e3f13b8b992962a414c1374c1
BLAKE2b-256 c79cc2e44c8c3688b459ae8d1d516a61c122bfefc4e2ba969fa16d9b3f9119fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2664f42bb4162d0e0b84cb0e2b61f5e023cd8cbc6291d748244c0b9213a58d4e
MD5 b4cf715e1259def35e8a7c7e0d3ad2b3
BLAKE2b-256 b2728c69ff42275e984c8a977dcd358a286b69c940287f8c92bb796e4fbfd5c1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 66d42ee97598d39e7a0c3cb7705311796175ba3cabc9d857ca40a850b328a683
MD5 e8344f29db74ce695b5d1d898a56f47f
BLAKE2b-256 556b5e37df82a1af7d5093978baab7a7921f4ce56f5bbdfb29700f38e055e192

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6237a21ddc9978ffb87682ab441707977392c7fe66b822f1e94c560a08c1ce0c
MD5 2637a7bcb43c96ac29bfaba9eb7f38e9
BLAKE2b-256 fd8bb835a72321311f835ff70f02c2ffdaa5eebc6671087c855c7af9dcbbcfbb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e2eada0a6a57f2865953d5cc56ff99feed3e254b7604f7523d3c60189eed211a
MD5 8b1aeaf0a4e5c91c0aa634c7d513b673
BLAKE2b-256 0816e2f3eb734e9d2d110d54c6afef74ec016b98995b0bef8d55f2f45fabb407

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 279e4b5e5a335292952bcc33ad2e93a492a05bfe32da2be3b54fe21bfe3ca162
MD5 109d5f0353f2b124619d88cff19e9ddb
BLAKE2b-256 6ea1023bb9014925a2e81dd3caa9b253be6d4bba407b903d256a0d0c9f508208

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b0f606a8c86a84f44806c50786648891436e9842ab1314a1fe287619c21f7ef1
MD5 20c7df124d2e5469a5bba12a7a6971eb
BLAKE2b-256 42ee01fc74f1a6489d4f414c8dbab41cc826dfe5b11979508893408447d86c87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e47281ebf6783d88378b6c44908667d788df1f9565125b4741aaddef84d56cca
MD5 a17031599268e03acefe17e40e897eea
BLAKE2b-256 959a22ed16cfe090317fed7b4908f486523f407a48e4b3d7add3ed031719cb57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 78b3b3095ccc726940bb54c91772472a35a96e8d083b2684cfb67df0da92f190
MD5 c119b2b03eda4c72ad40f6bd3c4c2221
BLAKE2b-256 65b2483f75717fb0fc0621ebcc7016a84059734b478fd31eb5ae0598a664ffac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9e08eddccf982c747888d8f1423b28407f1a2b0027a291c05d5198c415b2ca4
MD5 fd13b72c69a63da0edf9b3b48ba614ba
BLAKE2b-256 ad26272832fd171ec3c981721ed4e705124e6ac82fea42d22443651efa77ff16

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9372b23e3e64144a131bdb0bcfb839aab70679f03adfb9752dcedbd4f14cd8d5
MD5 9b52b7d0c09f70a9ce0b4f03e88a73ac
BLAKE2b-256 4d1649923920bec7400590ccc0c6144f3944178ecd85e995e92cf49fd3080ac3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a20d89931fa9f36cfb0278a93eae9a32c1f339db0acdd1c88e877f5b813aee55
MD5 6b812c8427ea0797d726d1be94a67384
BLAKE2b-256 4ecab224be71ba3acb4eea56f53ff3adb7ff8a826deb14d05220b158003c6f82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f60cd0f8d054c71aeac341bc7a3efdad9ddd37fc8ad1601c51df7cb045dc0266
MD5 1190d4bfbce0e8559df8dbc10b28f0db
BLAKE2b-256 cf2c4a5da778f5c5fba84deabb5bce12cccd9409fc7fcb159d15606bf38a0f76

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a6f916dda575ff8dbacb1ce0dc0202db012d19f8ff4a9ce4a701a606a4b1f480
MD5 60549dad55c2c86d3b2e9da321a5ddac
BLAKE2b-256 cb0b46b5ddd3d34fa2e8195040c12bda9eb1ef0d40daf90ad9615f46d7eaab77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 28adb6ceea1b036b7421a48d3a02980502932c3f3df20ecf114bab887e28c876
MD5 e5ea868652f9e480c938dcef4d5c3baa
BLAKE2b-256 9c5ce943616eab6a4bf55219aee8469050bd1ae84b676b15fbfbb90de72eb1e1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c3bef859098350dc87535717306aec6baf500c0fa4037d9c99468c274fcb8781
MD5 f8456effb24e1b00a4b46f5fe1670952
BLAKE2b-256 c26dc660cff6816bb2781f4329b3f6e37d386b0ef90f0f748dab27d2959f4bf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c712cb2c1e4877291d899b1b436adbc6b9331860efd6e78811c725808d6400ea
MD5 4254ae6ede88ebf309ae4708221ad6e7
BLAKE2b-256 a25af1654655e6f549303f1af17cf08863c3f1e38bd33415b42b017160a8aade

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e19e93dea5f3cb4d42c00ebfc7fabeec66abb314a96c56d53dab736d775bf8ac
MD5 8f390642eb88f5cb97ecd84e544a030a
BLAKE2b-256 8a03e94d0d186bbae03d15b5a9947b36c629087715c1ab0cab47d2ccf0e13ae2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5e41c143a82aa6cb0b459f2e19eebfb2bf81233e2ccd1e2ace31236477744257
MD5 612ee55c412eab9e7abbd221ecd40c03
BLAKE2b-256 37cea42e949580a079504939d634fe764609a9fbdc19bc3c2984420a46c7fb20

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 a943fe0a384236adb75e452aba89c6b1fc1f47b563e5848209ff9482a1aaadbf
MD5 fcb05bba8ed4bc239be7ca2ae718e7da
BLAKE2b-256 aad299fa002a23e147c841e67e7e41fb42e91269ee10f8f714406c4822bf4e42

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.5-cp312-none-win32.whl
Algorithm Hash digest
SHA256 04254d4eac49c690842fab87a84aec96b65e1b3b3e0fc8e4aa7aa819939b9f3d
MD5 286cb1e358dded7f744e3d3220c9f744
BLAKE2b-256 59fb58e2122cf4c50453da967c33c4d83b78163f0476f5c3f73db4d632391973

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2dc51d9f5c86b98b6e91b23c124ca6371bc9d74663495509f34f9df446f6ecf5
MD5 01466fdf964ab86c6478a1ef946f86d7
BLAKE2b-256 ee1622ba97ce7f033a2ba856a202f25d53d21e8345ecfb0c8b400849c74da51b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f7a6fc5b89f66e2bed19b1bac7d55dba065fe91327d04f57824fbe556fe98ac5
MD5 3e7077a664b4be413d4872a7ebbaa6c0
BLAKE2b-256 80060714d5a57f50b5c1ee35bac29c31b154f67987101a31c97e783e9abfbf6b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 11302abbe786d705daf767e70eb941137edad8f3fed3d4fbd6c421560e883309
MD5 30dc9050cc91c927bf3901fd78fd93f6
BLAKE2b-256 00693367016ae268bed59c42318265fa5c9f7978e2d0f9698103fa03363655e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fb42aa573fa6660765269e7457645e3aa527c74fdbc414bd9e1cd324c8970b82
MD5 05bee57677c8a585062596cd8eb33feb
BLAKE2b-256 6d02039456ea021243811ac500e468438951f37e0d318c3e0a990783d40254f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb2c6ed255bfcab6f7a73c666bbaee65a900fe00cff84b1fb1a123912e42f29c
MD5 1508a59c8d992ae0b4f3a7522d366685
BLAKE2b-256 f4b33389d92f6317d3c21b11723842cf993d8686709e600f056d039fcbe83b4c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1bcc2270133b22c20f62c024e44fb02997cc58a2ab3216c789b0f4b8564aaed2
MD5 efc719cd633a842ff4079d65c88271d2
BLAKE2b-256 77212b36e73456a4da4ee200ee92a7f5a5fa23edd6228eadfe163d2ff8272059

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e7ef73d7c313d0a1668c79def607a0968465712f7f1e07900ee989ae5cc289a8
MD5 ba125e480451a7b6baa0930830acfb87
BLAKE2b-256 6f821c42d77c9bf87a4c1458c47165c9e6ab4091bd9fcf914cd81d25a51c4c87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b8ff2ea2a5741e5d1cdfe4b70c0e2f7906ba50972e9348d0970f12d82a70ccaf
MD5 831871333dd212701af58f5f37130151
BLAKE2b-256 e4f301aa62e2dcbed2a23a66ce58112f95fc38d8c4a8851d1b35ab3036864393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 25b9a59e4458c28b1044cce624a49c50e01c47af898fee04336aef88f69852aa
MD5 2bb15905aecd9744671d0fa3b18d5e56
BLAKE2b-256 634ac68e9ebbd7096d1f00cdc3961d37e0ee70d5fc791871536f10eb5a248683

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 20c508d88ae38c037b8bcf8875d8f3acc375f83d11bb5764865423d2f3c413cb
MD5 cd50ab4fdca2a1d632b224061485bb13
BLAKE2b-256 ebc3f949b0f1bd8d821f2ff9eb80609e9b548cbe7dbdea48485b423efdf9cea8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 841d511c9f67405e492153c8955cb31dd3dd75c3370f17d34d7db6e485fb6eba
MD5 c2b078e7bc9636453910fbe2688e7c51
BLAKE2b-256 98d9cd899d5889454d148c71334cc9e269c528f7389409a6dcb8ea73d1acac96

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c1df47ac33702f73ccbeaa49c8e84b7a6b6de93c5000adc76a3f3504dc000845
MD5 fd402fda844f21366a233a913715f552
BLAKE2b-256 e238614a7415675f388be3aed6a0d7621916d7bc0b35134b2d51610e2cf6a0b4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 5c55350fd1750afce7a0d660697465aad1696af1c6a59300b1c51acc2ab9b4e7
MD5 b8dcbb629ae64f75b631a22e09fa4868
BLAKE2b-256 062f8ff20a9d6959eef310fe7991300ee1e56f5c5249de41dd20335662d8ef82

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.5-cp311-none-win32.whl
Algorithm Hash digest
SHA256 51122458bab54e877fc777b8bbee568a05ba55d2cb263155506934722159b35c
MD5 c61b698063469845dd62b600822ac07e
BLAKE2b-256 bfe7debcc50ac24f80467390d3e180af03a00c6c7c583d41bbabe6a3ca2b14c8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7fef4e778aeb8fe3a5a60a733c3568874d99309eddffdda44d52dcc28ed157e7
MD5 398ebf4a382eb6443547e95d69a5b4bd
BLAKE2b-256 5c82ed178541a90fdc7436b0635aa2f3743044975e866bca6b3d34b0bdb28006

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b42728a202d74c97989dc6ee0b02a7b21ac6d9bdda861bd6ac56e68b6bade5fe
MD5 48c6c5273de3c56983e39181e3eba97e
BLAKE2b-256 18605d152b6a752a552c6c259fb296f3fe65e86287fdd24fb2d55c452c74eb88

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c35100ecb7d7bc56e37aa0a64facb98ee88c46e66d5573976f9e26baaddd6a8
MD5 16e2bd3ff371321537cc2f3c04750e46
BLAKE2b-256 e7bba46ff00af35a522976596cd219c886d6de6faa1881c239e402dd12199f3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4df3a3b3fa8c074fed68840a285990507018216feb2a030b0e9d2e1e3cfb6749
MD5 295b77409dc4a56bb3721044d47919a8
BLAKE2b-256 d476842071a66e6ab9de37b055abd65d380df7b092f8603937383da8adf103ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3ae4a0cb6638231ed4ee118d5601b3c7d933788a2692449a413aa580a1baee0d
MD5 4cbb860fd03f87e1582c186e6228f65d
BLAKE2b-256 6e309df947f72ba12a01f7a842fe512a5f226a0eae39f1b74eaa99c7a1f13314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5fa56114a1c638ca7c02796f115e208252049ccda1b9b1475d0199d8eb515b15
MD5 e46d514258df847782d884041e947b5b
BLAKE2b-256 e1f19816db552b6b5bedeae9654f661d00d5ea7c4e9965093608e34183f37a4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3a2c4c936b7e8c7df795bcae21f7964ebbf0e5183b4f4da23b6a8d3cbd927144
MD5 26dd8a1336b5550d518d1f3db8038132
BLAKE2b-256 f810cb6045d666fa104a521bbc944cb4d78ec28e338c1bbfe8399c62e689eaad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2aeff39eab92d08318d6a681e75928df31674d06a5a5beb9e6a572d4804836ae
MD5 ed40a331287b7d498ef81721d38622ec
BLAKE2b-256 b744f9839d5832eb0afc071ef5ab20faefc3dcbec1fd4608ff5f3d566a0d83ae

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ee72e7ea18238754eafc4e2dd115fd76f86613dd3c9d5183deb7305d6f36ae3b
MD5 3a7c96222cde2b8c6b40f9bdea412482
BLAKE2b-256 ead759a1b371eac58701e9c717e352dd1986308a6980d7b616838ace490cdf74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1a8843627e68e41bd0bf9a65dd95c898590205e0584472e41227112a4e07194e
MD5 c4501f2611a6013471665491be2d3a22
BLAKE2b-256 ab3c3de3436472d4384c6154aa46d9674000e1d94609a128d25e024400d79151

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a15158fc23981448355d42209a55b477a9a10fa1a828aef3f733335062c5618f
MD5 ab3714d972d4410631734c251bf35549
BLAKE2b-256 14d9d96749866049fc70fd686d2f43fc9e0921cdbdb5a859e06126bd00e09cd9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 96ecb40cc73bf0aaa4924b1af3165af592ece81cae6458bf4dbe05aa98b1b805
MD5 222e7877fc2fbd1be1e5a64771f7c31f
BLAKE2b-256 e47060c7777f796959594215378c0494088b1b8bbca095dea7e69b39c6a86de7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 5e859cd58eb978895cc72415ca18e481d04b000b336bd8e4581e8f71647c3442
MD5 2a967c27ce59f34e0f15d3a6042cab27
BLAKE2b-256 272de58b887e19de695a8a9bac13a3f8a84861b48ec0b392f1f493ab8034cd27

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.5-cp310-none-win32.whl
Algorithm Hash digest
SHA256 6ece4e56564f119b5b12ee54dbd95f6876970bc8072c348b3e18ad810c9bb135
MD5 7a24c67c06ef8e143ca532b2ad1d3efa
BLAKE2b-256 4e8c50a8eb5766416cb75f7bcd66823c6edaccd7574d0b21365628e48236b667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9403eb5d0cd473a139dda7e593eee8eed6cf8eb3ced0227ac3cba8e74f724086
MD5 dc263e40e7e724f92403b5270c0482d0
BLAKE2b-256 2126c69227f3fb88771f4f1130608f3cee4ac1781a5a5eda58ea5fd82ca70437

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c7c09525b3e26212732f51c1746c9eea0dcb704e9f0e3003e111e103328d03df
MD5 37498160e6420292855ebfcdd63cea2f
BLAKE2b-256 5ccb0c7b316aed7a5db79fa7c483b818063e5a2556aeabb0673675dc73556d26

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 710b182752adc3b0146d63b6998638feedd8e70840e8b0145b644ab1becd8d76
MD5 9176dc2be69d51e7a6b200bcb50c7836
BLAKE2b-256 145dd59d7be729f4ff32a8a3ea97c70c8ae29aec20201b31643988ee4b759721

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b2e403433cda5e02776300342391839d19fe284c887e41899204b11f11b04a22
MD5 2211385f37993ab1f91c68da7bb8f0c6
BLAKE2b-256 60e6dd04a4b91cbfafdbf094a71dfcd0bcce8526c5a343d187c74596c7adf93b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc5606be2aa784da0651a0cc703c69399f09e3aa89362c3a0337b02e302a7a5e
MD5 ae030f6cb72d39f3382e19efebcb493d
BLAKE2b-256 a7580aa34dedf8220fea10b35e59d4c5044f75442af26eb6a0d8f3e769a43551

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 a5499d27f7bbb35ea7a02e868626e85fad9abfba153b25a5873666d7980523b3
MD5 e5b7809f76544d004d9da04603962ccd
BLAKE2b-256 642773f1ee0b0d678e05d6e944b45b47ab9bbbba5af25cbea348db9294ebdc2e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c0601bb6b163103fdcc0250c143dc60f98fae208457ca79c57f7762aa4bd51fc
MD5 271c05a2327d429d3d4a4c753a570598
BLAKE2b-256 e82f18e5ade20457879456780d38cb6a04d001a309d505578320ffc7a4d49a2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e47faf6f069c1231d7128e2a281237cc0249f21f27746d5ebf686f12d3505412
MD5 9d6661be10ce64d6f78514ef262158e5
BLAKE2b-256 d98d7cb1b1534eb03f4fd6953f88755a77a1a98f01036687ac3b99a78eba9508

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b69db9f246d168c5938b2a55f1083961f72d41924c35d6481cef557b3315a58b
MD5 043bb9c18845401908154e6ec366d3e8
BLAKE2b-256 9e9288a9bc5d59a29448dd15c1bfbceefef083835eae416fd8e86ed717d0f7d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 99833e806b21f5886d13222547ed3ff4c245e678ebabf6cb5b2e0ac00b2a6153
MD5 361970f0f1ed0c1320c95d84475b20dc
BLAKE2b-256 59488a8f21234687399effe6450ab3cd1d276a9e376dbbc6b1aaa7c4a888aa4b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 01c82b6f389f09f76adb3c084ff36cea642bd7801b725ce4e47effa9cfc2dbd8
MD5 d1236d9cc857ee7e28683eb287e3a64d
BLAKE2b-256 23e0419a81402b58344f6475e16e9f3eb41db2c255e7931504b5f56ac2b08354

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 707d53e37d0c4b12d66ba93f552c672d82f13d41b656346127bcb3cc32772b0d
MD5 13ae5fd2b0bab4c868da5ff91c58cb09
BLAKE2b-256 33c898d6b2705aca5629ab4a15455800b2b7c1faf1f83f5e6b23d0d4a3011bbd

See more details on using hashes here.

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.5-cp39-none-win32.whl
Algorithm Hash digest
SHA256 ce3abc7b580625d392b35ffc88d6ff4e6d06af35c3982e4e6c8750129ee78c38
MD5 6052928d364075fbff0ce8850c64eed1
BLAKE2b-256 f1171834e83459a5e9f58486a606668be671ce4464ee6165217028405749fceb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eca40116ad7864ffa077592f8cf57e9cec07ceaa6ae188f384584b6205ac10bc
MD5 ab592ef6debf378bd959457119676638
BLAKE2b-256 43c01ea97340dfa9773b62bd137e8c05a878fdca61d1ed7319db280c57c534f0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f4e20d2b9a10db4225e9c7c7c6064c6e2125edc547debcae9aee57a4ee8ec2e
MD5 b574820a1cf351fd43b69fb26523fd6f
BLAKE2b-256 924938cc4f58d7ee6bc4e9a80ccd6a9d0a5cdcabb1e18505be387d9cb4cdca68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b1d0b188776b90d1b4655289372e04888a5a07e480b241af902e517311809051
MD5 84b08fea8f0470ff5aaa42886542d0b0
BLAKE2b-256 34442b7afc2a68a86ace17f3d170a495bb1192b31c5da02eed3a147ea96e1412

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c156d67249cb7ead4531ecd7289359d11f7202df91a6ede55da7d8d739c5a941
MD5 06a68b40d0995fd4308555fbed6d680e
BLAKE2b-256 5c74dfd02d109151bd3e0c563acca1d7220c751c8c3cc62384852a1bf4704e33

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f25cfd4dbed5ebe92afc7c70521fff957ea5cb90219f799947875a2eeadb72bc
MD5 3c6d82f2a6119283ea1700ae100091d3
BLAKE2b-256 a7321d0047187f29f4ff07ae82926ee8cfa3e45a7a0e03bee4b1037a04b4250f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f51905387ff77dc80fe0c88b93579b135a392b30dda8607fb1d490da8dcc9a7
MD5 ca1f852c4dfa34d3ad84d81495b59a22
BLAKE2b-256 3b54307aa767fc00e46f95efb05f2b86f0816c4a8fc6c23580e884bc39373cb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8b447a5b7f109773474247831590a8e571cbbbfff4bc8e2cbeae7e69c2a35d16
MD5 ec6b8d5b5851399eabdfdd71ff30e128
BLAKE2b-256 494f1ab9e9200e42b875d06b57508f2d18dfedd5df852a9c9ad915be3b16e2c5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f8199930ac22ab59e239b4d9ced8640f3b212e87648a7a74a6ce80070cc6d1fa
MD5 e6c08871d72648335919aa56a161baec
BLAKE2b-256 60971e69e47fc10cc4aced8dc161cef17a1e321850f3d9838b63e9040ee0f133

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 247ea9859d191cd0ae61144460ffce14b9ca029aa86092d2d4743c39a20a5da8
MD5 290d3f779b1b810ae07ed34511bd41b3
BLAKE2b-256 9101c2bd39cf793992cd456befd53387c81ff61ab1330d4b44978c4b4e4b0a13

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f2fe9503bb1874dd0767d9e1f83dbe7859ccd7c3be2cf825fbb9b215e931fe9
MD5 9e2b1fa6bd01466aebfaa73f7d168724
BLAKE2b-256 303e020df8461ad22f7c2f561c15379b8b9ea75daa8eb7826656ab735ce657bb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.5-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f10b3f6ef182bc682fb7a12220a4cbe34791044d20d048e7ae514170764ac66d
MD5 af7095f90ef179878ee51e512d372668
BLAKE2b-256 00246ea7eba57ee8a90573e1c84e17c4184a6c1076aa9ad60400bb0b09ecd3c4

See more details on using hashes here.

Supported by

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