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

Uploaded Source

Built Distributions

moka_py-0.1.6-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.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl (576.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

moka_py-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (563.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

moka_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

moka_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

moka_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (391.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.6-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.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (415.6 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

moka_py-0.1.6-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.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl (576.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

moka_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (563.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

moka_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

moka_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (391.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.6-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.6-cp312-none-win_amd64.whl (233.8 kB view details)

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

moka_py-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl (547.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

moka_py-0.1.6-cp312-cp312-musllinux_1_2_i686.whl (577.4 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

moka_py-0.1.6-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.6-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.6-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.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

moka_py-0.1.6-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.6-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.6-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.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (412.6 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

moka_py-0.1.6-cp312-cp312-macosx_11_0_arm64.whl (338.8 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

moka_py-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl (344.4 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

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

Uploaded CPython 3.11 Windows x86-64

moka_py-0.1.6-cp311-none-win32.whl (227.7 kB view details)

Uploaded CPython 3.11 Windows x86

moka_py-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl (547.1 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

moka_py-0.1.6-cp311-cp311-musllinux_1_2_i686.whl (577.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

moka_py-0.1.6-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.6-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.6-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.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

moka_py-0.1.6-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.6-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.6-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.6-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.6-cp311-cp311-macosx_11_0_arm64.whl (341.6 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

moka_py-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl (347.0 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

moka_py-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl (547.1 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

moka_py-0.1.6-cp310-cp310-musllinux_1_2_i686.whl (577.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

moka_py-0.1.6-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.6-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.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (380.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

moka_py-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

moka_py-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl (547.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

moka_py-0.1.6-cp39-cp39-musllinux_1_2_i686.whl (577.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

moka_py-0.1.6-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.6-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.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (381.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

moka_py-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.4 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

moka_py-0.1.6-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.6-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.6-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.6-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.6-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.6.tar.gz.

File metadata

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

File hashes

Hashes for moka_py-0.1.6.tar.gz
Algorithm Hash digest
SHA256 a51b9484d09968a7e16a4167c0be43a639fd61bfae58426fe8252b3a5dbe2f6b
MD5 38fd7f44acaae4d837f5c8adff27fc9a
BLAKE2b-256 a9d6c1b598c2d40e6718d7959d89731d445731f41b4840068d31e2e7e859fcb0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 db8201dcea146c0450c9cb59e31f4d1a3727ae9658b4ad96716ff00581d0a889
MD5 704c58335c50c0c70b646dd1e28c7150
BLAKE2b-256 5dc68c1e619761a4ab8ba493cd01614eaf2b997be1b69246c61c23e815972ce2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 387d2fdd8554df1bbad96084e73c3074b3218ad7bc232e0d70a3ae70ef7deec3
MD5 85b82f0c0976ef77c1377baefdb56f94
BLAKE2b-256 cacd85459a26fbc2e39e48694e9f5940d28b80472afcfb5044024852d90e71f7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aadd7dd46da2851a1a4096794df889d600fc170622de3889b00e46516d409a33
MD5 18a8dfc8589ae7bae8b8caab858f5fbf
BLAKE2b-256 a5905bc91b1bf4149404114ec620c62434fcc205a90e8b38c7dbd3d95875df57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4a13bd49ab5f54c87a421979a71dd31765c6da88d7d3a25c51d2c1bd172c3fd9
MD5 c9a841871f7f802471bc08b14fd8e4aa
BLAKE2b-256 69616c0f8c9a84b43bb355f510ce6c0fbb3a5234a01d75287603648ea9ef40ba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 618a17fb587ed491ee28887698947a09658b91560300fbda72e567ac39cf2100
MD5 aac11ae9560f42f1d131e8b44b9f77e8
BLAKE2b-256 d8ef807287c9a2b7773020fa812f44e39b3ea280c019a7b3a1715f787fad87a7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2f77508c356319cfbaa21d8c82ca4578e91aca09dfd8e894443c54556cd12f65
MD5 7a4d8d2c53e038d22d33a457df9af875
BLAKE2b-256 e4e9f7aacabbcdeb8b230311cdff829e180772e5c7bc8da2ca7ab01b2d4698b7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ae109066a9debcfc0f03597ae5218c0b2e330dadffba6393c8a7cb6973698cd4
MD5 53716015260a2f84283bbe12bc6039ca
BLAKE2b-256 6d148859d38bb2e434d6cdaead3eafdaa33da78a8938b6a6f28fe9230afac913

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 347d4d3a595555b17796d095563c3aa21a07ce0b0f249fce76e9f2106f65769d
MD5 214c72d726ac5e53adf1c32d6885e922
BLAKE2b-256 c22612ec81e0d0f41c289726dac0779cc445e1347aa6745fbdaa00c83330a431

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 7f74dc311865222d2f8660dda2d8af5d98652da36e2cb2b2ed219c71e9b0c1d6
MD5 cc0ea3c2f85fb37c06f8421280302edb
BLAKE2b-256 2a64890e78fd8956c6dd92cf60ddfb5cb498fb5ac650e285688f358da2b77c8b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f95c1aee8d4e6b696eff6e211fa8984179fc8e3306e6407cc805b5492a0fcba0
MD5 2f98bfc75a5993aa9ccaf5127b5cbadb
BLAKE2b-256 f6573565b6807967bba458f8247e53673feedf15faab075ea8252980174ad366

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e302274217c1b82dd7c4fbd37148945b819ebd9f88b62c317c5cf1d3d9e3251
MD5 031584d8b9ec9b5857b2e8f7ab431c00
BLAKE2b-256 aa84dcef56b57d7be683bd5c10ac6a79a48301886cc6c31f60fd4e8544e65fba

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ae82dfb65cf18ff76718bafe9733b08cb36f13a4f1078bf0784456111cd1ef48
MD5 80a53eae03760185cb221e567b0d113b
BLAKE2b-256 991341ff786324a156931e993da5fbec5a34dcf66e30649d48318f6c845ec83a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf4398e32867809a63d16b959b8bfc731aad5cf8c2711e7d51ef95759e2703d6
MD5 8a433a89a51d0a5b57f15f0e12de5d00
BLAKE2b-256 e98a648cfe16e4c561d984d50f98cead4675bec33c3f036d8a5869ba20784767

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b84ef0ff1aad243f581446238c2b13720a6c43fbd0e9eede11a6911d6cea622b
MD5 966b1c163a1b3008b18111c9ad299bef
BLAKE2b-256 8d89315ab57d2b99a88572c3c2aa6ad606f5ab5c5b2bc32ec93c0aa2579a7b4d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ca174727914a12e8cbe438173bf6ec9e43e77b720616f33d2cbe9fc08d4ea97f
MD5 731d52a6529da8d594d0d8a2ad2e8983
BLAKE2b-256 cc7efaf9f373e59730450e8e0ae36a1d1a3a53a5edac0d291d9618c4fbd1bf5c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4919cf4c5e0da7f97027defcd80b87566ef9fa3ac9c4e5a9b4451d00a33c177a
MD5 19f8f5a3683fa6c83677c8a311bcb522
BLAKE2b-256 ff0793920cd330eecad71931d5c9f6f3f3f96d834790bc98cf5cc67aea582cb5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c39370434d5d182dfed0bb6b99012da307f95b72a9f9cb90b3f96fba745caa20
MD5 7378d30ef9343de7d2ef90f04c7e43d6
BLAKE2b-256 d231a95eabaf8c08d1958488c5e1bbf759d9e409c31bf3175100c2f75b975957

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b040dc37cd0275c4e83334cc33ca244120e26d4aa0537247167a5bc8d4417dbd
MD5 35346538d02c441e265f855bbeb53e36
BLAKE2b-256 9139957d5b34da5169a3adccf5f86e35e8538a1cd9c4e66845d6e6566af2ea97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 f80025030043ff18d40d32815f9cc09bcec20a42726a89aa1cb53061374e8442
MD5 ed6be52a796898cd44f079b44670a9d1
BLAKE2b-256 5171ce3764e18f0b45fea9fe77c8fe4255eed4b4bd777f4bf5e45c5ea8a3ea67

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.6-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.6-cp312-none-win32.whl
Algorithm Hash digest
SHA256 1983de3e43528a2e201f6c91ca03b706518ea20439cf15071d67cc04430aefc2
MD5 81890fc6afe1a12db03dc0d8e9581ac0
BLAKE2b-256 1d176bb85ed9a15ee9c573ee04a68280506108742048dda70aba63fac43391b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3dba56682ad1d8a26fc59480318c64169ca36f8a6f60c1ca7b43a64f90b07752
MD5 a7574a8d807890efef4206194de4d3e8
BLAKE2b-256 b1a96df12d8eba49642004404e843d04ee1c25154ec30919a47e87cae6a0b494

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 de5141f9962c5355cce9af668f10471eb56fb2967bee157aba2172e210139324
MD5 7032f37d7b12f2bf6d8a0ba1ef36459d
BLAKE2b-256 dd23e76c73d3e56146c83fdc4f329461064637fab1b073c1245175fcca77a951

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d70afc90dca9f0fd05f359ad34aa34d17f67d5f35c52b23cfcfa8b180d5a1a76
MD5 7cd484060e324fab2a4b8ec636f3e151
BLAKE2b-256 472ce9621706a97e098f483f899055a22757075b2009fffef7f741a22a281fbd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8480c250f3459fd8d610cff4d70726a125f6400c2cc7726a0535a751d423a67b
MD5 ec301aac174df3aca7f7bc246243a8a6
BLAKE2b-256 ac3257ca5783c127cef5d9dfaba6836bb351807b3fa4fd15ce05adcee1e5dd6c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 459c2fd5405a91de35bf08bab912daf8c4f7845b8b6ae6d06ab53cccc6328463
MD5 c97338032274f9fbd574b43fdae25fec
BLAKE2b-256 4931632bcfa210bbf4e7f1f43884ffba537c521ad70e1c839773692a45d69b67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 adb2bd111cc437de8b7ed41ae0b3c05fa549573b8f1e6fb1bef311dc7a37e0d1
MD5 156ec20b01e5eab290fd080cd2c55be7
BLAKE2b-256 97d0fcaaef66322bfe4f802defdbbb6be7c21ed5219a5a783859b001ed7a48c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8710a96fde96d57e5f4b2f181e04bc1f4b021411038f665ae7c2c4ed859e5d00
MD5 a5637d8b1af3fb747179a17b840f6793
BLAKE2b-256 0cd24bd0f3a3724603506adbb4f8c06995c59b221a533c8ecb2ca73fbd4f07e7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7639f7089a76451c3a513b4498c71515d18ec7b335dd1cd1bd33a0506e31a883
MD5 3c26251a90723cdb6ea5439a86f11dbd
BLAKE2b-256 f3cbc981fbb5d33bd18966753ccc2f3ac4e60f23e0244caeb7d286696b30ab74

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 af449484b5bd8bf31ab9d67b869b8e477a9c4fef74e89d6df5ad1f969314d0cb
MD5 d345c620653401f1f31e126b2af90e33
BLAKE2b-256 ba4aa6d715beecb72ae78b54589af8ea6062d7617a9da4bb040e59865aa8c074

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4d724c02a5f4780f8117e72b0f1e795521b9b7eb461a1b2fe8c58df9b1990c37
MD5 34132899da1858742e916a8cb0b535d4
BLAKE2b-256 08d7c3ec8d8b773bb5c79f34b7e28378c6a36471d8cfe2ba553e6d6c2bcf6196

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61dbe73434248db58120af3f2f99a286cdf333612287e382249a3aa40cebf0fb
MD5 905e9ad28cd3d20b6de3fe8ca57cc2f3
BLAKE2b-256 87a063c48002a42cfd2ede37f125dac3698274ab97ca3f60e0c881a6ebd1769a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 892598558d8674ab229a1cec6529f4dea69a66cddc0283f63ba79d3e1e3b9e1b
MD5 8ba01e6e2a18dab38aea9f1f7481114c
BLAKE2b-256 55eabe2333f7b898b01fb0da0bf798fd8bb7b151df0d70493430eb8a76ec5b3b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 cefd44d57de71265a70989527eaeb50e7c8027673c9eb3a4a2ce0fc5482eac97
MD5 981407d387ce4f486a8e44f291fdbf2f
BLAKE2b-256 cd940dc575c958f4da52772ebde21733966e36be14f7037043ab42e48166f2cc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.6-cp311-none-win32.whl
  • Upload date:
  • Size: 227.7 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.6-cp311-none-win32.whl
Algorithm Hash digest
SHA256 e17d91acef3649e90a7acb916f594e29dc769ac864eee7ecdb26be98952227a5
MD5 614ee7d7694d10691b2469d0ba915377
BLAKE2b-256 d6020da27a05a210593d7b79498c9b64ef03fc773948f3a3d8fd4fc7ebbe6def

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6c56dc7d1a78d3d5d8f4334180acddde09d4f77debaccf642c3e16ec6321f31c
MD5 b1e0ddd5aae31e7ae57f44242b7e46ba
BLAKE2b-256 467712dc4f8a73c325e61e23935e0cf3825226e7f67410024e13452b5c7933e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 59f7bf0d62df907752b780a15f35548868daec2ab8429b604cdf3cf07776114f
MD5 0a2dcd9917aa8bbe8730ce3c37798c7b
BLAKE2b-256 f688105786bd397eea231779fe1e93f639af3ce6d0cf5dbaeb1af108701d61fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 604460bac697a49e0c7e11fd8121d3ed466ea9444f74fb29c76e6ea48892cf88
MD5 dde214339cdb38c903f784b6f13a2e2a
BLAKE2b-256 9f309ff7d8fdb9d9c7e7c85bd92f7adb9d7ff25e561f8e86a82da48c9741aad8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 086e05a3e33adecfb396608278d9f4a38b47193bcd188d8bfd75d8b9e7f838ce
MD5 f6391c9a2559c97d55de89ac5d8d07ae
BLAKE2b-256 7947a4337c50e49a014caac17f5f015d87d08f7e5f727aa4166d9227e332e82b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 efb05ff5cb4196ccde5173fdb745a0a465ce3d9ab9be5bfb51a73f969f279da1
MD5 7a95da4a4c5f410ff29d70be1ce543f3
BLAKE2b-256 42c08a0c470f4f97dad16ecce309d8264f2f1af0171902342de1230d46a98bfe

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1dd7d04957f9df9a013e420d433dbf8845709ea27d94c3a9f89dda9778a20675
MD5 7b5979efa2229fcf9684ba71f050cd68
BLAKE2b-256 46077f14bc74249d6ff588bf6642e40caa9d36020715b93c2150a96a66dfbd9e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2e6bd639d5c6f932f37aba9e4e0835fe57a3fc786c8036f0ccc6435349c0f57e
MD5 f5ce7d577dd725f7f400e06c1824ccbc
BLAKE2b-256 e608a1d7dbabbe8fda2b6c17530b620a8da90cb4aae376dd02113204e666619d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 755acad94688ba42c3e99c3cf5e172aa208b07228153cfb6216c1162619b83e7
MD5 cd36de37b2e2159892fd88dc89718d37
BLAKE2b-256 d4269b3d2856e7b61f31219fbbddc57b9fb6ee3e22e9d376fa8e1330c16f8234

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b325b781c8e638d914eb5d0e6440acfdb63cd73d616b95ed03da5859cf30628
MD5 672aa6746d7b69ea4f3e08bf678b8640
BLAKE2b-256 06f6a160e27788f297baf4a2ee5bf673eab5fd4ad4a48a6717d133105413521d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bf0993489b8057a8eda8121b7f22ac2a1370243bb59ed9f055df66f16da001f9
MD5 39a22333ed46ae9b04ba8efa28dd0f2f
BLAKE2b-256 7c65cbd3a1a5e59858e46c120faf32e1289686b4fa0cc8417c538389c5005697

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 95daebfb51f91dbc21290fc87c3523baeee9ddcf4390f85d42c1761b07f3651b
MD5 abeeb54d16afffbacf2e7f4fddc159c6
BLAKE2b-256 1d94fa109305fa6fb0f8dbf206c0a8ea870169ed71faf58ec782d2e5bc1ac72f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9354266d8ce095043d6f961065ceffc4eaf376e8c5e6b45a0fc1f297de121344
MD5 31f553e76159c7c4e9ba0b362db6c35d
BLAKE2b-256 0064826c9f79c18207b39c95644d6c77f69c260cc037bb53ed6b9dddf9a9a698

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 8cf9a5aa853714aed2a4cc4142c7df31dc41148495153024f08200eb2996abe1
MD5 2bf878e8f905e201573dc75aca9a88c0
BLAKE2b-256 52278c6710082bccb2f1fa845eb76fe574543bb07eb9aef0f86fd1859f6bea37

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.6-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.6-cp310-none-win32.whl
Algorithm Hash digest
SHA256 cafb19b2f461bcc44e69c91dc232eb26b107069453634ba8cba4b5dda1c766e4
MD5 1d3fe9f34e0debcbdd64ed96930032e6
BLAKE2b-256 852be35f3affea99783824b1aade2d15f01d8b977fcd0b5277926c14e8aae8ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 66ab2d4afcdb1a36bc009aadbc33273396c04560a375dffa982a6e4408c20f78
MD5 653df84bfa75d72f79c817eb8180d890
BLAKE2b-256 48d4f1bd3711cfe7d19940192c378818385aa5b06946efa631430537d741bfbf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e5a8f7674b1ebf915bd4fec8af61a3fa97deaf6f3892ddc706bb7fdc81734f12
MD5 d222a62b5166a9d51ef068854c7baa3c
BLAKE2b-256 9b6b32f67d63c403b8a567bf73844ba286af88a7062e2020959c68e1de71fb5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e2b106ff2fc3f1b1e015785a329734ac79a6b431ab20bd76d1b3e3839385c257
MD5 5a2f394c776af53fe21919eb10605b05
BLAKE2b-256 b0f426b9c3a8e6fce0e7a11759d7c52805719638e3a591849539a10c0ce2429c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 48b090504a5c509a746dc4c38401e184d323afc1d7590ef3de142771d80ca7a2
MD5 240cdadfcf3aa33b929f3623404b34e9
BLAKE2b-256 8534914648f97e3d42f9f139473cc62414479ec337ec7fe20c63b9ddff7de274

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6ab924a1eb3fa289931fe29ba4726b8c91fc5661a495315f04c5b496ade1c02f
MD5 7187785dc98cc9a7ad6014280d2d6c60
BLAKE2b-256 fdd46dc57403ae112efd85f0c8433e5f81c7d8c7c0373321cc56b92414f25fce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4fd7e52a43f33996c55df9ee9a9833e484adda8f527774a34ac0a4dfe3114a71
MD5 8f71b4c63d52b3eac8a838f8b2b9e69c
BLAKE2b-256 d4129e6eee1aeb64759a12dd89655bbdcbb6a73134458c0327fea16589d30426

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 fdafcb0dd80fad3f26d08ee031be0cddfac201e8bd7a285f490181efd1d33b2f
MD5 4c79be22beccb1f5a1ac489af5a1ebf5
BLAKE2b-256 5f7a2def3f1eddd7d4524233aa42ad7b3b60382156aa6b6dfa31b11b9959bb75

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3fe32eec3c2633fef278ba71c40003222e76cf2dd012fff7d44a629559688a8d
MD5 4db6a3f10a94169e36074fdf81cd5590
BLAKE2b-256 d5fafaceed7d4255be75691c2bbdd09183772c1170b4c52e422f265f10d2d491

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 731293dd1bc290492494b48fcbaae974b64ee9da187f70817da1d58c14efba6e
MD5 b96891441c0b29d3aa3b8d589723008d
BLAKE2b-256 d71688e5b81c4d2511c3a27bfc54fad70b150b270fc9b022dc66d23fc2e8d20f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5c1cde7f54a323ce7b6bf23b1e5b7bcd2c6270c5af83387d397d6719a5bfbda9
MD5 bcdcc91d6c8779fe92e82c1f85294bc7
BLAKE2b-256 4bbfee0e478041c96cfe2ae8048934c8e6e91954caf7e1e4ca50a9271d2ccb55

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 29078bcf072fe6875bfd69af6edfd11757f68e922710a48a70aac4b8d934ae59
MD5 1fa7c49ff38f6a32ae2922842456790c
BLAKE2b-256 5f70ecfb36b655e572e03e77528833408c98c8d6cb86f725f41499234c0b1a14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 2c10038bcc653be01278d781e1c2cf3b5988f736a74e63b481183b99caa1a94f
MD5 681a3fd1ff36205e34b1fea4ab74ecf3
BLAKE2b-256 0f8a11d8da52a7df6f6fb077a38747e9986614a9cd0f5031042d9685ac9afc11

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.6-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.6-cp39-none-win32.whl
Algorithm Hash digest
SHA256 8b068eabc3d8ade9a42ed060d0dc9c1b32ab5cd8e2d737ccd334cec1f72e222d
MD5 9649bd883aee574848ec6e42b8a63b37
BLAKE2b-256 b33e541529388df32c02a2ca36705b3b122d47a6ec890301b668c140ac96c2e9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9038cd394a4b132041a269ec6878c0e96e8b93ac7c7d2ff187951c0b830e2e79
MD5 98919f59658a5fc92a531c842b12f6bf
BLAKE2b-256 eb80f4365d3583ff0ab024117c6b9040026ea45e0a3af2d246bec67fbed1727b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 e6e1057746fa2c91a27b848a87d252363eed3bc3539ea93962af91c66e87edbd
MD5 11442145949e18cfb92bf0660165f5e3
BLAKE2b-256 6f8222686f56b8c89a84e9434903714da60b1582b9aa84e9dfc2e437c7df9b46

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9ca70fcf5ba7cb3ee8db4777e6aed64fb2618052ee0a859d9e8028c11341a0ef
MD5 ac2a9aaa8625c147bd17dfa047f3f980
BLAKE2b-256 ec03765c3b6c92a572d50350420673cc67aed8649427c2fb397a25e9e395ac77

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 261239d2de89a6ee8ee97af9ca3b07152d41351ec2cbb13475d42f2c3f775ae9
MD5 f8732975fecfba9623ad50c2188dc0f5
BLAKE2b-256 c6f9cb528b6ae6878729b07e8dcb1e998c78e7094d49bc52fd373f1692948b7f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dfd0f3eef935c990bf08f92c078c4b8dd7f3ad19427c57fcce6e4a7e9ee3f29b
MD5 6e068dbff44eee0e2a9fc244a5499aef
BLAKE2b-256 5456f7b4afac1e7d47d29030f4a47bfbfbc620bb3691017d5ac9169dfcaf7cd2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 273213d7185f38ef2d68455774a36a6baa7fe611cac13b9c6d4c49329bd71412
MD5 c1b8da65064e2a3376043531132789f9
BLAKE2b-256 9473afee1dee186b0d9844d3396c78eb9bb1b481decf0d37aafe8ee43583beb4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 bc07a9bd7c12ceb94dd19cfcb94e5e164f93d55630931efd4eaa946b13079617
MD5 e3078c40f35981103acb78a86a0d3563
BLAKE2b-256 ea107104ce97aa64d8f2a81bddd596cf916eee0f565854739a8533f9b7b2cf04

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5474fc5db7ed2d2e2c606eeb75b9d7269610dbb991b6ce55c00fb99aafed7168
MD5 50bd22b603171a7da7cf78d3b9014660
BLAKE2b-256 42e0e60fb120eb87e2ff4a08c82717fc5d8013b5e45287aec62f82ca523b911b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 943b8212418fe2f83af85f1712e8d112d78b3c84f8b990ff9208fdd5e1d50edb
MD5 e579e350e75523312462c1f6e8fed324
BLAKE2b-256 a172a3823b4de81eeb360b16a017a62bc27bd1bd303d006c730c965dfce5be64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 83eba353a2d45b8dc0a334f9f65c52683234185b0602967ff1f0210232be8908
MD5 f156a81dbc6624c5a772dea3be6e33b6
BLAKE2b-256 b0c3fcb60ded963f99ee630c719e05680cef43257324a34a2d274878af49bebc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0a348bfa33465c60a058a8a5788b834ac52a3743abe9861dba830dbbfa52f146
MD5 b722939a53447d1bf5be633d6342a35e
BLAKE2b-256 481641f26a39e3919118a7231b97943b2d56d7564bdb02f18999abfcc78319a7

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