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

Uploaded Source

Built Distributions

moka_py-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (546.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

moka_py-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl (576.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

moka_py-0.1.4-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.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

moka_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (391.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

moka_py-0.1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (415.8 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

moka_py-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (546.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

moka_py-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl (576.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

moka_py-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (650.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.4-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.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

moka_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (391.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

moka_py-0.1.4-cp312-none-win32.whl (227.6 kB view details)

Uploaded CPython 3.12 Windows x86

moka_py-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl (546.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

moka_py-0.1.4-cp312-cp312-musllinux_1_2_i686.whl (577.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

moka_py-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl (651.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl (562.9 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

moka_py-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

moka_py-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

moka_py-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.5 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

moka_py-0.1.4-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.4-cp312-cp312-macosx_11_0_arm64.whl (338.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

moka_py-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl (344.2 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

moka_py-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl (546.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

moka_py-0.1.4-cp311-cp311-musllinux_1_2_i686.whl (577.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

moka_py-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl (651.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl (562.9 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

moka_py-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (380.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

moka_py-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

moka_py-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.5 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

moka_py-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (413.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.11 macOS 11.0+ ARM64

moka_py-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl (346.9 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

moka_py-0.1.4-cp310-none-win_amd64.whl (233.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

moka_py-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl (546.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

moka_py-0.1.4-cp310-cp310-musllinux_1_2_i686.whl (577.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

moka_py-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl (651.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl (562.9 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

moka_py-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.0 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

moka_py-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

moka_py-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

moka_py-0.1.4-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.4-cp310-cp310-macosx_11_0_arm64.whl (341.6 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

moka_py-0.1.4-cp39-none-win32.whl (228.0 kB view details)

Uploaded CPython 3.9 Windows x86

moka_py-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl (546.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

moka_py-0.1.4-cp39-cp39-musllinux_1_2_i686.whl (577.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

moka_py-0.1.4-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.4-cp39-cp39-musllinux_1_2_aarch64.whl (562.9 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

moka_py-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

moka_py-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

moka_py-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.5 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (383.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

moka_py-0.1.4-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.4-cp39-cp39-macosx_11_0_arm64.whl (341.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: moka_py-0.1.4.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.4.tar.gz
Algorithm Hash digest
SHA256 6ad5270a04ff2a45136b1405149704e3b61b96ae032eb526b53c0e9114458cd0
MD5 9ce2c9292eea996b46148306a8f9d58f
BLAKE2b-256 d82a682195c581122267886edcd5a1894034bc4e3ff6e3ffbdb18136030a246e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a96c6af1652f4d630f593dc2a1061bb36c6ae4bfa384b71af60f07ffc72a426c
MD5 2d14e19b112f760895f30a1e0538bc7f
BLAKE2b-256 189e44e2174385bb20a5045ff4128ff85e13634be05d124e4f7ff05064a7f03c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c77a8481f87df35327d7dea0d0c1277e4191df9d4d9c74d982fcd24b16bbb6e5
MD5 6e0a2ed59c08a52b2cb39fc6c18d72b2
BLAKE2b-256 e29072ce0ba2830b3508c049a7d6d3cf042b93bde3dd59d1070d33d28656eb1c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d59eb3a92d8b59476fea7e4d16bad8ff51c3994f86406de362aa726ffb68066c
MD5 b6155dd97078addc00e274e6ff8463d7
BLAKE2b-256 a6176d1f383f6fa3023c04e0d8bc6be0e14d0a7f5caced6e1479b2099a9e7786

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5f1441ee2c50a4f1029ca062bda808e60fcaf7ce549f42426ac6008b30833274
MD5 e447423bd90fc318766721004cfae992
BLAKE2b-256 39f8003bb1489f1f14329f1ffa58f7b83c2bce9974b5b3a5ce60a87a0f126f65

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 04d2c71f6f035c117c3627098c483a5b3fc4b27b47fed8b3822409ea22ca6824
MD5 2ddfe8e2b80a1ec212ce37b881aa9054
BLAKE2b-256 25991c9b2ee3b3e1c21e412f1111c8001aa9de9bfc1045e061821befab722b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fb2630e1fc926305e7fa90f103f205810412fc99cb9f282ebfcdca808223fa0b
MD5 e99af1c359394c1cb2bfdb6c7b1160d4
BLAKE2b-256 bf503dc92e95eff8393a648bb4ecd865c28ecc3ded5c5ec3cfa5dc8b8de218f9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d5391b067110c93b352f251b50bf1cc7c51e83a9cf6ad8ad5ef66953d4125ac
MD5 d5cfcf90d62bb2b8bf0a66754d7c6505
BLAKE2b-256 d05ad141e3e062f0cb4454ee58edbfcb06d7025fa0fcad47cfb26dfedadbbac1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c3d3bf8147340d31ffd92ed7286e519ecd873af266282d988192b218cad9e80
MD5 1b669b49a8476d93987ecd53dd102f5f
BLAKE2b-256 24353adc008660193c6c5a610386d3e4e10266bce3c4debdc5912fb6d5de6d5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bfe9f21c6f4c3e6d786eca2ee08491e297ee4a2a95c21449e9f6192eab9fb141
MD5 a925039a7d0e7d552d1c2e1284e333b2
BLAKE2b-256 89a2b6c0c9b2af6b1a0a9548e09fed6b1947dd2c60a29a0e999a81752c4ad89a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b43425d6576209a547475ae315aec00a03dd5ff4592a07e3d986a4b977e12929
MD5 59b104f3755baa7d6f5a8c1fecd74dc4
BLAKE2b-256 5cce8366ce351deffde04649a75a51934a2d068813ffc87d75cfb1cc0090b863

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d3a7052e54123a4023cddca918203203a894b2d3e7abc2ab2d1528c7e16ec85f
MD5 2876d463320c05745bd9632dee01075b
BLAKE2b-256 965a2b282e74ed3d4c4f9e14c1b2198c45e51f464b8208278d4e824510c01dbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 15fb3106052673684944e1ff7456529b236455294e01984e79f70bcd080ec2b8
MD5 e4d7fa91f910729cde59cbae646ea200
BLAKE2b-256 751236f5003cd2bace1e75f69c38d78e0ae0df42723f25e49ca8a8a97e42a01d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e688ae0b8b7bbc5d42137782c586bdea50e60a148d856a0da7e9ebbc1cc74ec8
MD5 339a84d1a9102ee01f211787592ff201
BLAKE2b-256 3a710ca2f9effc6ab55adfdea2515257d23c65fd54842ad6772a02e322379e3c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c5287587e0aecf4e21302920697bf198ae237f09d026ec0f49c02c047610210e
MD5 a8ed4a384d2521b9cfb6f54c9b7e719c
BLAKE2b-256 5cc8a4f2744165d62a4add950513cccdc510a1122c63340f8cbcbf73f87d2be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 25d97c7936e6cce2872b641a9236c8fc2f1b767b83009ca75340bf83b120fc4a
MD5 ae415886f9fa9e72a5196288b03e82f8
BLAKE2b-256 b64615a9741d29ad9ad67ee9f14d3fa2ca3338b05396e70cd6c6ab0e48e447fe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3c05f5855b2adc66470abf31c81dcb8b0d3eab711b0faed095a902f6eb081738
MD5 1e485080c14473b26e2308863faa014b
BLAKE2b-256 7574cff1b664c598b5e1f94c014249ccaf46e3f728c83ddf0ea2286cf457f3ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 70c31201529fe7a14d464056e320f660a4f8bace9cf8040fb8ad7488988698fa
MD5 66ac1552c99e8e5bde75c3232429b60d
BLAKE2b-256 cdfc514222e38e4fd8108b275ed1aaae0e9543c73419d024cb1fc72ad1f71c87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 65bf15f139b212413514cfaeac8c11f28a346b51f3b5b9b8a8c8d27bdd9c9677
MD5 d2838dc315a322e9dc05af77377ee3cf
BLAKE2b-256 766b910d22067dcc4a4f11a21f65dc3b1d228a73cebcd44261c5161e2f32765e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 dcc64e9357d694c069149bde7a78e03a3e9b23e2da8b645738b1f5cc8a69fa74
MD5 afa73ce5e97c693d0856ecefb3d31e1e
BLAKE2b-256 8582d88d22bb699c353f5b65901bc7aad444b99f34e375ea41d548d381635761

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.4-cp312-none-win32.whl
  • Upload date:
  • Size: 227.6 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.4-cp312-none-win32.whl
Algorithm Hash digest
SHA256 4253dcb8a2c72986c5fecd0ed988d093b13149d91726b26fbfda109bec2c8669
MD5 9d02750eafee1f69b099b3ef214aebb5
BLAKE2b-256 b61490856344180cc6bbc91b0e8540eb5a16aa43cbfb5af1fbe7f818e37b1040

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6be343ac01720b39e443bf8bda05dae569d599ba2a902a1f33dce7b8e6003b70
MD5 7f835e0b024415415c4fdba4830bfaf5
BLAKE2b-256 dd6154a793a43c2f60db516e7ab5ced3b63b20d4e892d7bb372bf7bb81e9ac55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 20fbcb4d0cf8c95788f763581be90d5fd72847d00aed69cd7e846aaf6448761a
MD5 770e49ebe4d78d35aa2e847455c0d315
BLAKE2b-256 e9441eb292f8c4894494c855f6978fdd56e4e7a6bc736f5e91aa3ac22e7a55ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 910370c394fecd79b59bcfa0ec7da364d6e34e640d364daf29c209ac6aa1f2d0
MD5 3690621b11d7a8eb2456eb23560137fe
BLAKE2b-256 19aaa92034303900817d9f984c6b587a46afc73e5c92cfdbb276ba26fd54efdd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bd073cffe3413448cf7cf979a69441174c1e14c3bbd920e6f8ba660a266458eb
MD5 76c9a09be73a1da458bc86eaa1104eae
BLAKE2b-256 6756d9e554109befe9665f9705590d58233d7bb8097a0c3799ec62fede9cab39

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 aec69177cfa6c4839317044364fd3ac0096ae94d952c4151985b204977e839c6
MD5 497b4d3e0fdc299e4ceac4a975083b29
BLAKE2b-256 4de497a64509a1c0dabc8a957ade3d88ea8aeabb4a4b26751af34322a036950f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 69c95d1d0419206708e8ba5fd0d76c9472e8ce6b30d053dc19d93e2dc9205b6f
MD5 0f9a53ee7e55f650c0544cb45a9e0410
BLAKE2b-256 b0de7d2d89e40ca286e94ae77fa5af18c6cc73ae45460c58606b639031ad8e7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 82244394721f65f75b43bf4e0adcba27b4de860cf5f0608b184a99e0c947a217
MD5 ef6569f2461b462f72bf387c74503394
BLAKE2b-256 7848fbc2fe8061a944ae3b342075f8467ac48d51be8838a9f565e7cbbd3d4c68

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d5e71e491b9f43e5b5c082d7195a578413664ec6e5f97ba38d3354cfc6566d88
MD5 20935a7f0d363388293adb47802cf015
BLAKE2b-256 642cc6e8ebebc36b88470cb0b9b9b66b24545960fc3092e7d37ec00253a37a6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75d62e90745818f6377d50e4fb6c6ddbdf8445d9f4ba96d48acdba0b77d6533e
MD5 2fecb8e2d27231fbeb105ffd192057ce
BLAKE2b-256 d618524160a3a3ae0dc40328c7febcc024e84e41891eb4b5dad67ccf642bcd83

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7444d63a7e2105ae4d0cf7907ee04a7ca72a98c44898ab3e9c0b37d35f099594
MD5 320c412aaedf62db2d66a336ba61885d
BLAKE2b-256 5da54f6dd609569caafdc396e621c78ab7e17c33475a66fa82ce2d48f2c0ddb8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7ff742fe47046875fd85ef19af099ad4a10939c33e323c20fb53cb28e8eb0305
MD5 1820a1b933cb2e0753a73d6df6f651c9
BLAKE2b-256 c4b25f652dd68996465f27e4ef521f2c7f4fc64541cf5f8fcd4af1ff93a38441

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 13bae7094a60f85a112c9c7c55665fb0e44e6e0dc3c491fcf1d21a640cb4a5b7
MD5 2b1a8b3cb12f6e411666d29d7f092c00
BLAKE2b-256 0c3a5fa6c4deac2cbdad25d27d8e3c350fa5e9a2f0ec9398c0dbb1a7359b4f43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 6a38cdee0d18d124edfe8b7ee2b60b41835071237d8be5f4dc8ddd5b0e7e1eed
MD5 abd3ced80c07f9c18e8ea503078d8560
BLAKE2b-256 1698b09a6b0b5fcb1a7c2f5b1b4d2c84638de59ff2bec5b59d2d3f328b99dd7e

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.4-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.4-cp311-none-win32.whl
Algorithm Hash digest
SHA256 70f31878f2285d739137a41438090944c332fc3ebb7314ba5348f23763ea84a2
MD5 8caaf5ac15a2b178042c0dfadf618c54
BLAKE2b-256 c46cf5eaabc819c4e892f92969249b87445efad44f0d88bff7f0b0bacb41dfab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 06e13058d312d7f9f4660fed83995c57d3dc15dd0ab2a697a5c75fe40887bdf2
MD5 e3e0e09c26774acf83d332d0435b2c9f
BLAKE2b-256 ba76ed57f8152ddb737e6788a06f08fe8c0d0eb896cab6ecd37d32eae14f2b3f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9203349d6e1d6382bf1fe91901e4d29436a98b283d7ba872e27b238ab16eff44
MD5 8bf8ad239024b113b6b1f8a81d3ee96e
BLAKE2b-256 44fe3c39d160d17cd2f3f41fd0e5b6d74fbea28969775383fb1422355b8fedf4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4fc1c400464eadcd54bc51ad9565a7b7e45f722fb2837fcb893fdbbd19f195bf
MD5 7f87e01912f23cabef4ac53c545bcdf7
BLAKE2b-256 a7ff83e1dd1f62377a3e50356c2b060d8bd3f8314e6f0733178345e34af1c2c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 6ee33ded8a68fdeb1a467eeadbe8681759a52b8e2e93b1ea90a2009c5dacbb54
MD5 2138eefdaa6cd1e5e0b0a19b7935b475
BLAKE2b-256 c20d0aedb69acfdc13fc3a258d6546474dbf83f51b07b197ecc04b32339a4667

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e35721f29d77a095372da9bf835b4c6a06ac6c8cb3fcc606cb534c720c253c59
MD5 37800e02d0c0a890c7588db602420ffb
BLAKE2b-256 51d89f1dcec44fc60c4663e8ea92d6b94189e425006cd8d1f2528df3e7edd63d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c2bd9a7349f3350401b550bbdc1db58e33edc1ade8d58954ab4c1ede04f0ce80
MD5 7418baae2c876aa710b3763617d69e14
BLAKE2b-256 a1faa821cc78ba6c307b2cb59cf667f7f2e1dd2681d8a3b69f0422d109f40b70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1bfc60fd40e66abd62b1a9c193773424c6610343cdbaaf5e0438efdab18abe75
MD5 e0bae2297379f15b3f136374ccf1b1fa
BLAKE2b-256 f849a255fe203d626de6f78f96ef265e3a92705109ebae9a5574d53b77f9d877

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e6468c0880d0cffff77a7fb7363d2a7bd7e424343de5f4e4cab235620952478d
MD5 1733c610ec081b77e84ae788e1ad1a57
BLAKE2b-256 9ed3433434afd2a74d44a387ccabf18bab0031d15d277591add36226994ba62b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 63a4adefc791d1c576393594ee783ca1423b4ebc74c72949d04deb60619c4066
MD5 a9c2ecbdd9267710d7e26ec6e13fc8d8
BLAKE2b-256 cdace0b67addb67b7620e1c062a5bd6b7c185e347aa5a8fe4e3555b374a9c801

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e23e3b36e40c11496ea4e4285b3af470c9364cc39faac97280c4fb7fef18d5f4
MD5 859e525baf94d17f7eebac93232edae5
BLAKE2b-256 da6e0d8c551f9fce4f432ec808a4354842570fed5624f59f08f7fe4a1cf1e895

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a3b2f95be9ada4986dd225b5a712ed62a031a40e4190f1d8e62bf1ac018c84de
MD5 12bcd4243813998449163b7a2b0ed9b2
BLAKE2b-256 19d9343e50756050906897d2f608ddd8b67e6a503c72e4b6144590ce83233e47

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 b936be8891eb0675f1b298edc715391cbea8af471191598f66e56825e0b9a5e0
MD5 879cfaf565c89103d566cb4064fef5d0
BLAKE2b-256 267dfad09f2e396a089c8b5a2f780ac8e56b42397b0a17461a24493f0f42b3b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 f8872677846137005250b095a4505ff516391be5efc2693cf379df9a558edc2d
MD5 8691953d43489f8da262f44cd4d20e14
BLAKE2b-256 170de3c2933843997c5848f8b95068ff4486253bfc41b65505c4f749d554fce2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.4-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.4-cp310-none-win32.whl
Algorithm Hash digest
SHA256 39c9d535a8c7f95145c024429bbcfc1bb9ee1833658f6275228901aefa568a62
MD5 ac5f3cb291eaf99a73133073ed1870e8
BLAKE2b-256 9c457e3f68ce6f38cb0c993a3e1ea7224af9290402518dad6dfb630bf28720f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a941de8e2f664a03c53bb778323ee35914d93cc770cef4c1e82410a4db6548a8
MD5 315ca22947868951b7cd3184ddfa8058
BLAKE2b-256 a19ae43806325b5eee55bdd6db1e0a6864b7049df869028362d3358709167a7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 5cd13181994f530e37351e8d9260efe8a23eeb03a88dbc310157b2ace0ec6050
MD5 cffc44bb4440b354d9715bb6bb2960f1
BLAKE2b-256 0e36d198e0fd6d827a7694275783238b8da0dcf6078cedd7d9d573c65185d65a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 98b54a47f4e18ff47c8643f65f0326df5bbcfacd3d3d71c966c8fda897acfed9
MD5 53e7be2dd51a77be9f2b6ebaeea86e29
BLAKE2b-256 3b409fb7443da487be51ca86a64e1a5df38c9df2a58c622d2683a59f7ec872a9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fa8d48541148aab046d1a7152915f0368d64a0e6ccb692bebcc90100b1c1df6e
MD5 9b74ac7a151748490394221f567e82a8
BLAKE2b-256 a96928d280405ddac07f9f329b8014f47733bf2174776d502b3cbc2c508d561b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18fb62fc51d40c56e32176284417c3ffb0f2b33ce8c8a43f7f35a23a8bef4c5e
MD5 8e6904ece4b9be2e601780d0799f6abf
BLAKE2b-256 a2032498f71d91ab6097962e8a77b49c84d132e074088ac94f68353166385020

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9603cc0a230e8f00bb7289d41ef23088060a2599a41e69d5bce3db068dd04f9a
MD5 cf365a5a021a63e94f31846f6d090225
BLAKE2b-256 6a80403dfbbf1560a12a2ff36fe19642a11214af95929c0e24ae0b8180835b23

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e31f46963b7e54cc40f4a0880d75008fc1a3fa4d31d4406573f8bcd5e848b5ce
MD5 7479fdce60ebfabc806401c503e69e8e
BLAKE2b-256 293990ca6dcd6abb8cd72e378f162e0032571c0eff29e934394b5aaed6872853

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 06adce2b152203ce61e23721498ccf1744ee2b31a3640ace332aa30b3423851d
MD5 a34e109a7f6956cb9ae8292ecc60c4fb
BLAKE2b-256 db698e84d77e5b409788ad626977ac47eabc82696bb697b3e83f2eced31fb3f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e1000bdf7ba01ee47a07bf5724769d5106a2602b50d4000ff30085910d733783
MD5 e3a56d869cba7f18b5b76d950dc174b1
BLAKE2b-256 927c5c3f7bf49310e29be92cbc3814467b4f2c6ae892cc0e763968fa8e8e1e7c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4314fd81f4276104320210f8c1feb927532365fd856a676c0f15bfb145aec226
MD5 1d95e29e09892233be0df1402a4e8034
BLAKE2b-256 52b08648f2a07e075d18d00acaa4a479d08b486d1277d1108aeb841c5699494a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9eef0a6c266765f4fb9c91dabd55ac430d08f3c84df2e9e62ee00a9050450486
MD5 80d8b150d64fd06cd83801d7a83cc420
BLAKE2b-256 64bd759101f48cab76de05f89737890ec419ccec50811949fed7f8e51624c864

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 fd311e0d12e65f9b16b71ada5ee6e93e5a11c7a3ede88ad3d7fc621e8ff9c799
MD5 9e19992d0b65d3331a70de2615040cf7
BLAKE2b-256 e146fa3d020215c9bade44c4db61f3d2c75fc6e987b07e046506b481a3d095f5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.4-cp39-none-win32.whl
  • Upload date:
  • Size: 228.0 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.4-cp39-none-win32.whl
Algorithm Hash digest
SHA256 b5a8b4b0af273429f724b3ccf7c26d4888977e0a182f7a1b4cec9a4950e80318
MD5 c2a57a4089083103c8786c9f7d579f88
BLAKE2b-256 9f6c96783ed64d0e16eef99bb40415b36671a7e6b1ee383e426f3a5024d81b6f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ee6c0ebe6e1fc00a2b3e4f637bbd6a59ca95fecb62fdfdddccda1f17f5fcc98c
MD5 9faeaf6ad1b8318c756e44612242308f
BLAKE2b-256 4bea9acc2cd0771f2d3254d29315dd19f8456801527d94af81118c90a21b3f09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 03a84ca2522a2b21ba8da8dbe800cadd4a8904f9af088591fb702d634a3e49eb
MD5 b9e0cf3a85d83472d4877a4b06a73448
BLAKE2b-256 30e13baaa77a54621eff2e47ea6af0ac4a7b0366a671bf96de292be245701482

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7afffb3ba7719364b146dd120e330983d8512a8b902dcba84bf214af5d2b2b85
MD5 48bb661aec180637e505878e0da008f5
BLAKE2b-256 ffc11d8a6771816fd89e568368709c120197435c9245b64ce35f1fbd2a4d546e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b7797b26e7aa62df200fa1ede9abb4143f2e82176fe12e4d6d0359791bb37ac6
MD5 8b0f7edcbabed959e1883d97b0593077
BLAKE2b-256 d954e001d7885ab854ab427827b8f08673775e2dfe9de540f58076ea3140e2e5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0067ce60db7cc12eda985db194aa45b1d4fe8d3ba7235621ba48d200eb15d26
MD5 43025bf3c933774205d37068652ef2a8
BLAKE2b-256 ff0174c588f917ec3fd48459dfa3e302f66e4973e02155796e76a76a848197c7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f20fc7fa3a3837e47b9276f446eee4c03165dd9b8828449481a8240eb931607c
MD5 13f70e86b7055b39fe5537dd7972470f
BLAKE2b-256 65c5cdd33698346ae506a4235795af95d7dd108192deef08d34f0830dab4fdca

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 94b080ac3fd3268c495f0d19ca9d6ccf3c9ffb29717128e475a262f89f99cc60
MD5 b3e3df940244a1b460524fdda8d4fef8
BLAKE2b-256 735008a0bd09810ddad67180159cf5b79dd0b0e2f5f1eaf01d1e63beab647b97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 88c9c51988dbebeb484e6773b2fb3e0894d18c2d7e2046441e99b169355b48e0
MD5 8ee53cd819311b113bd21a098435e7ee
BLAKE2b-256 0702ad1fcb911d091d04b6e69332651d25788462f06b3e6d64d0a27a7f0382b8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 39d48a8491f983f9e6ce32b08b8565cc0852851d4b14e541ec0bb83a5e7ef10d
MD5 6ccfadafa4e9f602e0f3ffc5b16f8cd9
BLAKE2b-256 22c66c788c758b688d96b880c553bbf1a1096898c434c46671bc6df1a1be482c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 58bd264ac5a88803ed1d6273725f735cc478d31fbe00d0b0bde2d160f170241a
MD5 aa43c72fdd6eda6ee797b7b8b81e9178
BLAKE2b-256 1711dd5df7e7bf0477555b4f210ba9daba9845d182a889035ad7b47d944807b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2eec5e649e6e677c5d3b7b07f0e10ef94897826e59563e58e0be839c5e424047
MD5 8274673c31aee7c75a363c2c8744ecdd
BLAKE2b-256 bc6127c7c538e3e71c7870ae662ea954c75e7337a57c88993356cd6398daad31

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