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

Uploaded Source

Built Distributions

moka_py-0.1.3-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.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl (577.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (382.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

moka_py-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

moka_py-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (430.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

moka_py-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (391.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

moka_py-0.1.3-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.3-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.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl (577.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

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

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

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

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (442.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

moka_py-0.1.3-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.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (391.6 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (384.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

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

Uploaded CPython 3.12 Windows x86-64

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

Uploaded CPython 3.12 Windows x86

moka_py-0.1.3-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.3-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.3-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.3-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.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (379.2 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

moka_py-0.1.3-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.3-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.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.7 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (338.9 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

moka_py-0.1.3-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.3-cp311-none-win_amd64.whl (233.5 kB view details)

Uploaded CPython 3.11 Windows x86-64

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

Uploaded CPython 3.11 Windows x86

moka_py-0.1.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.7 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (341.7 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

moka_py-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl (346.7 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

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

Uploaded CPython 3.10 Windows x86-64

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

Uploaded CPython 3.10 Windows x86

moka_py-0.1.3-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.3-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.3-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.3-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.3-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.3-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.3-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.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.7 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.3-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.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (413.4 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

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

Uploaded CPython 3.10 macOS 11.0+ ARM64

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

Uploaded CPython 3.9 Windows x86-64

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

Uploaded CPython 3.9 Windows x86

moka_py-0.1.3-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.3-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.3-cp39-cp39-musllinux_1_2_armv7l.whl (651.5 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.3-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.3-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.3-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.3-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.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (390.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.3-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.3-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.3-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.3.tar.gz.

File metadata

  • Download URL: moka_py-0.1.3.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.3.tar.gz
Algorithm Hash digest
SHA256 e2193610b8ee0611826785252a46c270398e2351d645e9e5b5d2be400ca37400
MD5 5f6a1b610d48f6e8a0efd0d301356a3a
BLAKE2b-256 7841f7cb7667c8f0c0f7eedce69e9c4dc3f285dece2532e1117b74052bc45645

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d6ba131d05f6999e02cc9acef4bbd63897029d5f0b0b18a2953a70493d1a201
MD5 fca2a21816253074f5f2633468097abf
BLAKE2b-256 ab1f7d807be6df08e51ae07f2672713ea40120429c97141b9318570589bf4c57

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0356141951372da3c7715b71ca239e26729c5f3e0f42cc07f9b5dfcfa4443d48
MD5 9e131c6516f0333db01daf05901d96b6
BLAKE2b-256 eddae7a39384ed11dc74ca4d8e352665171b1e4a411f9a49702f81037eb440fb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ded61b99248dcd24ed2f6a105ebf18eb951f6278c998cc313a07272caac9854a
MD5 5c168b3391cf8ed10895c687d3e5f382
BLAKE2b-256 865e13a1440cb4d317d9a99160086ad79509fa76076308cc0b543fc902a1d50f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e39ec6955eb5ac5e0c640981f57aab82c4b373b836da8458169139d6d1b9bf55
MD5 fd2e560502703313fd58d79910811de0
BLAKE2b-256 703628053d3e6a4d7f95d30978a8c132661702cdfeb7eb9e4b17c79b3d6b5033

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 14755d727416a0b630877049efdd1e0504837424e3d5f7b3fd23e76d16f6a173
MD5 5c83f3bdbee15ce5c408229920ac7d47
BLAKE2b-256 56b05028cdc2d4d8b7d1e74698bf7c21295c4a92450a6226523d3f42e15186d6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ac4672208f77bd06205b53866a9a0e7f3191bd56f923097e5260bafcf7fdd251
MD5 c56c09bdf243cd84bbf6eada76f91790
BLAKE2b-256 083f2df8f3005fa468bc87f5a03baa097737b7fd807aeef0d2284c84c58edc08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1f46d5b6379e2609b372de4f547e038341f0ff1db43d30bac383b1f16545b659
MD5 2a40669eae46c02b7703f048baf9480f
BLAKE2b-256 cf7bbb8d5d948d5d17dcdecd83bf1de0f6e94c1fe6ba0ee739bb8a5576cdaf22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b59c27ce0071503becb55682a875213c99437fdd2333073be6817aaa52d9ba8b
MD5 4d21e39471f8a12f28b1d6873bb2552d
BLAKE2b-256 63e89b7606468d291c3a5319cbb0097e324a249818d1985f2b3ca8344efa1d6a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aab406b6f7bb8517179f04ca726f3ea6cf28cd6ba87f7a8920dea5d86ab15639
MD5 82b5a12aac6f5defedb89e3bf7ce3564
BLAKE2b-256 f76ee0c7e812a9bfbb5b29257e7ffb40f4479515e22b06fe3d7ea83bbbce2c29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d6793733ec206d201d86d8ea14a3978aa412c010a9725e4c82861112e3e985e6
MD5 3eb41e3d727c52aff1eaeda264d1f8be
BLAKE2b-256 e54b143e5f021281cee61e177bca95621db1c2a8bf7af8a851519042c3fe3436

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1e09db207d809ce1320e677a01c2bf18f0196255f890ee20497a62d34cff1805
MD5 69ef1bcb12b91d278023d066e86f89a6
BLAKE2b-256 f05b63329901d2d2c6876adeb18420dce14fa13ff1a9985c0eee6d7189512242

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ecefbaa47b6a50e369ccda96723a00c2bb9daef985e38e14f64f383061b24bcb
MD5 759cb227806de3d4d4daa2e77b91ce22
BLAKE2b-256 bb09fbe9a611e3bfffbefe29a30d0bffd26024120a206a066a3ac6bfe44a35ea

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a8123ad7e2e25277ec9599abc1141b68b425333795f25ad1d5dda53bc0d52d34
MD5 e07c10f8545bf9719aa944a26b441cda
BLAKE2b-256 9d7ad8f981ed5cd47538ed5059d581db8656686f4105df128ae7b78492241ce0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2cf9ca17cf7d841b7e915b65eb69bbcabecfbf5acb6d6370361b627222824c7b
MD5 0ac9a349cbc29e01f7733e136a81d3fe
BLAKE2b-256 02c8826ca770462217f2fc228d0222a5ef54fc2d1e9091a8406d0b5ced7d6fa5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3452a279df923db1aa1ece1074dab62589139376d4cd78c3974bdb8efe01a941
MD5 64df9332286ca1f32719800fb3cf4bb4
BLAKE2b-256 d60bc6046c613a05f1a0acd4d38fbb3559320e3cf9f197bef3ad94d4e71c0be4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 49f45169b91c5b6a3512f0ffcf63e830067aefcec0302654066cb8b7eb806919
MD5 e7889c7fcbc8daecef2f0bc27c23ee19
BLAKE2b-256 5a9808f50cba57e0c555b9c002261e96f8f05bfd2d4a6c051e2b6d312807f28a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 b93e3818e9a06e7c2d61a83b3b2e4d63e24a306c53ce62f3282eb49e5226fca0
MD5 48e44c1d1ab5fa9293e33ade6a735f11
BLAKE2b-256 f95a1126d5679a44d1841ded6d5808aa64a2ef941ca6ecaafdd4625ffa8aab71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5d26945b5a4b8e01270039bbfe5aec7d54e7b8850510c4ba29342e7e61d8fbce
MD5 35187e20940a81f2fa716c25b1998f2c
BLAKE2b-256 eca7e5782e6f2f32b7ad3fb0e296b05b78ea967d6f42e19e5435c6f460148c89

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 b97219bfe014d93ea41bfa946441bc9142ddd4c9ced16fd1ce427f821d42ceda
MD5 0341fc55e2dddd130905f9768bd7b076
BLAKE2b-256 8b8873b86fa357b2e05415431cbf9a484d28b36ac24be23712e736ea89277296

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.3-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.3-cp312-none-win32.whl
Algorithm Hash digest
SHA256 0cde714ab4bad913d1c29e9cb09df7423a6daef5bff4a536923cc2645b7e7ee7
MD5 c92efc5200fd96a6e0bc611d72beb31b
BLAKE2b-256 4f9c8014c76370897978056568e0a95f6619a5fef6175af61c20933c5378b1cf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c53a24669ef7e3dae86bd266ece196e989976e38aa670d893ac109c03c1fad9f
MD5 8eb2854965caedd24712c225bdab685f
BLAKE2b-256 be347dec198d4387025b258731332319414cba101a3374917d23586843354506

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a75339b574d1846ecd92ba1f097e92aa350e8989cd80ed6703167d7067549757
MD5 c821df350692ec03620c3b02a5c79931
BLAKE2b-256 d8e24d0b188f5bbbd0c82de678efc53df342878904ce79bceaa85f7799a37f4e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 edcd13cc6c2b1e00489c2717ac1d5cc00cc5fb4f57f6f4c9dfc5583628a78087
MD5 e4ae435b5851fc9c91898be6ae4a3777
BLAKE2b-256 1bdcee4df863a8085ac15f6b3bdb2429db78f1e369eee3975f1846de8e1e135d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dc5ed0067b358e34e00c91ff74ebdbd0281d624732bd02085fca4b85969e01bc
MD5 995f12e923f662f05883bb097ae46c08
BLAKE2b-256 8b032139ae99588c904a65bbbae34c8c763c3820145209ea6e7535800d102cf8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 dc5390596a655b8b830f8aeeaba417dc1cfaaff74d6cdc0b9f240637b31ab94f
MD5 b08457b64d220aa8e7fa4ad8d8510e9e
BLAKE2b-256 a861ba761c8d06f2f17d88901f4f070067266a21d0f83b64269993b2e28f7e09

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 454a031e9748a883346177b2b37f706425b1789718289880cec597aaa4852bf2
MD5 440b77911056de75ccb04333701c63d4
BLAKE2b-256 9da82f1ad7f8aa79c92185b5f6ba0c9e4a77cbc360ec1c166d4901ba9f3f7d71

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 21763dc5f485470cd58401eadbd75ff84d4b479467c53c47970bd05583e8712f
MD5 cf902cbf6ca5f17c8c414f978aad90ec
BLAKE2b-256 bacfef11423cc7dc4dd8a6d6b2600f8eac5efae8ac800e5cd9a6940f2e65149e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4c9e42ca167ee28ea95379942af6f5aa4c1ff3fde7d9f9c64d999f495f3ebda4
MD5 4ba39a86c2e592a4d20933a10da24791
BLAKE2b-256 3554265ad100993e268bea74b030358370ae16451425ba22e5b4c7a4d7a675b5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1b9433eea980a65c196e4b42dd8b341898b40d748f02085209788bc386a08e2a
MD5 04281c7ff0388c13be5bd9c8e97dbf41
BLAKE2b-256 ac1deb438f25fd1488eb86b4be10eeec1c78b1a0804e1fe5f533d2b761f8a753

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 06e5b34f8c1af795f9839493cb0e6d7b05be97d67981008b583941fb1df899a1
MD5 059354af592e9ec6c9aa53fefeb0b6cf
BLAKE2b-256 35212f0e7e2f1832c4f654000cbf8a1afefe714749882d47a0ea784792104827

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 10c9181ab837e72c0bd3441f8b462d83730b9b2425e9e8cba018ea3a0b5b3b71
MD5 a75b8521edd0121262da44f2752d5027
BLAKE2b-256 b4fb3f8e68f8dd4bcbc18713cea0b1c9e32f1fd7c45b08c37c277af0847af359

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 178ec85874ef9e00f010250155c92383b8c6b5433cd6e145d46177ffa89461a4
MD5 ace1a9129ad17d09fb5c4a1b01824e21
BLAKE2b-256 1454d2dd750f6acae3b24ab68371245894a27d30c9a6378e4433e79666c0de19

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 1d7734883d3b53626a2846daf734e5c88708fc1b45e320fdf41ffaedf0724e5c
MD5 47bd676ae58fa48247b5db9146693098
BLAKE2b-256 1e6af92961ab6b1f6f40074878cf3a761bfa3b74f51c142471cb22dac8613aaf

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.3-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.3-cp311-none-win32.whl
Algorithm Hash digest
SHA256 39e01748faf0354be455cfd7ebd2701e38cb560a7df26d4e301062a60b35be9e
MD5 15c8cca785d92868e2653051c1330f7f
BLAKE2b-256 6afe0a4a77bab0c190b9cdcd36fffd3ab72c9010021d7a66676d09d7463d2b5f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 56c62ee6e1807b15623d2a8592262af9719374591a3c6d9256d87358a3304d1f
MD5 46145a4e08ec29bc293602bb7f841c84
BLAKE2b-256 c02daaad4f676e0e65fd9eec49aac097faebc85c9c99c64a5dd2035ab03d3aec

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 949dff0d3328f7aed0825296b9e6f8c48a44d613c3307ca74e9e58eb0bfb4d9c
MD5 6528d58bb7b87ec75e2b0cb574f3a33c
BLAKE2b-256 777a851e6bc545de47d49d7ba9fb05bc2c3f561f91b98e59a143c44830823c67

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0f39ff3ac3ec18051e8126022f82ee2e92a5d50205ed3737b29c12fe476ebbb4
MD5 580809873b7dd92ba4addd3fe845eb6b
BLAKE2b-256 92fcf297da6f9dc2c1737589a5f64eb5643ccfd4ae163a554d6a85ad0787308e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ffddde58ba7590069b6651f70d43e8cf585376d4d318e7f393f4622427b2bb19
MD5 8092011bc4250922fc26c73ff72d5d4f
BLAKE2b-256 afdbd705a71618e9e550ff928e97c06d72d9f2822234f9a1f752c3b4b19f7d45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8b70c19bf080f65676e6ae1fe4a5d25e0f353777a5ccbc85c44805e2c5753381
MD5 aa6ea1da0946a1812f589b3dc4cc2afe
BLAKE2b-256 0271a537a0ea30295c238f959a9d5218174abf11d3be5e1e2b5edb7a8eac9ff2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 5bfe8f549802f16f5c6c61da274ea9bdd18af4ed4a50811ca674651a29cd256d
MD5 45dc3962fa2135478a348a99f514ad0c
BLAKE2b-256 b37540904c90799df0e18d49242a6ca144aba86beb36208386a4f67b495fb568

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 8c52ac9aa6600576794f7ccc63785abd397ed684688a72557be4ca26129771e7
MD5 152bacdefe3dde86b28e588024b97ce5
BLAKE2b-256 56a5ea3138ee73809c6c3b393003cfa811174d8c5f5473def5778f6ca323ee27

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 349cf42ab2807917cf4e4cf14c52469a730d829d677bf872cbe79afe976a419e
MD5 3d51a716ef417d19feded00e59204f89
BLAKE2b-256 5a64a91578c993fee429251288cf9f63f8abdb390bc8d985ddab77b6a7f1a260

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e247a905873e6ad52348ebf99423bb9d251c9ba0fed03220344fc3061191168
MD5 a6cada06553629c5dd9e88f18eb149d9
BLAKE2b-256 009096ac1bd2bf76c5b225f7124bad51e929ddf19e19852048fa0f99ba24693a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7533a523abb9ee00bbcdc67962d08b24f97a810db136d43c8bacb360ad62f69b
MD5 04bed532be2ad866550accbe0c780685
BLAKE2b-256 8010c9e14c286167b5c04ca4b503baeba9ad5aa8e8a67a33a87d8ee2f67d5384

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9669e34203b82c3bd0773f344a1a7dde73dda32bf007d909e20f35b2e45456c5
MD5 12de70a5b91a37989c432ba3967a4ca4
BLAKE2b-256 85d2e4685d0024de556e048e6f11629460d9f651623abfd0e0f9fc8c3dd69873

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6f1939e4a22b3a24f7a665fb3855b2dbe00210deaaa7c1bd574eeb3197812643
MD5 e461a896aa0b581f640baa1e2b8df100
BLAKE2b-256 d6f24797947ea048fe7f3a54aad97d56763ce92e13a2ec649fb50199ef7f5f78

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 fb35e1222830c3096ba2d671692e1cd78c476261cea26adf434969fc0cdf60a9
MD5 9e67aa08c1f77e21bb5f471aba90c7b7
BLAKE2b-256 79a40b9e7a03993e5461a88c91f19b66e45fdb44f376367324bf06473763bbcb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.3-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.3-cp310-none-win32.whl
Algorithm Hash digest
SHA256 134ec096fb78d8e0c06f090eca7e05e211cc8ac52b3190c8dc60c3ac8ef3f948
MD5 622c18e5496e15a30bb47a91b4ace893
BLAKE2b-256 f7bf2d864a0be4fb3e60f3568b7eafe2a2ab276c935f039a91a99d1702ecc4a5

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 199afdac791e96fdffb41b546112abb69569b699ff8966b5c59a4e6ae16adb0b
MD5 a14b1af712b966b7a0aa90b1ae7decd1
BLAKE2b-256 8a88758b1e4b81ffaf6d23d47fd0aaec1ebba62d74d92caf3ae0ac929eb187ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 24b53985d09d1524f5f874bd7e6d28f22ed574e33e226aa4290310594f34fbf4
MD5 cc940c97ffcd661743f2513efdc02ac4
BLAKE2b-256 f1a83426b2dc9d93424c43b1c7d5b55e9f48fe0581de6816886dbab721ec6648

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 202a117021c76561b89a9da8d3921e72baa2f86e80f7cb8c1ad7aa7098b9745d
MD5 6ad28aa1960b92d6108967f949dbaf9a
BLAKE2b-256 8730cc860f35b71774ab64bbdf0011c1eb4c5f5e84cd3e37f181835846300008

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 480745d8ba3c4b4cc68dda31297b9f3306334a6d2b8d31a5e30d5cd229d84fb4
MD5 ad5c3d596f028ada5c4ec47ccf3779c9
BLAKE2b-256 c02a786a57ce76adfbd8a8e0d12a03894a5a63c778972177adb8fc4c02655419

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 67c7daf13f8dc240fef7c720d72e7dc92bfacc201f0542b17320461c65774a4c
MD5 ee48bc0e08f610d82e61c84e852477b3
BLAKE2b-256 048d4204aaee3153617bc0100c4ce4ba5d34df92ce548a0e6d9a5c4a08c942fc

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 75327b76dc036c178daf4165513d6eb89ff2f6441b7e7ba22a8cd56659d9f156
MD5 81783a7488961db8de683a8faa163ede
BLAKE2b-256 c2e743f3cee413649c561d60ad75f3f26c90f587d63a3f440bef14204a1506b2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d8b56ae422a76322da8960ed62c2c4ab9172f50ee471e16ca81d6ae4458d316
MD5 64d3e73d1ce9cd9838529f9c01039b5a
BLAKE2b-256 f4d9140c95cb2c181b37a2129f850da472f1b2584a2c2bc5c33d120ac07e136f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ab7d563ab91da889fdffeae4e7ac72f1b3da3798a10f14f0bcfc281ad673dbc7
MD5 277c0628de229eb6eb579361c9263d03
BLAKE2b-256 0320a562400b5aa97a3b643bee9e5c9138b7efa17f52f6815f462c5eea0f960c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 815009d801e15d051cb112c2183960747e85ae2c73ca18c91596fbcde1a56dd8
MD5 0c484b815e24e634971ef32534a5e995
BLAKE2b-256 4859e58e777dd5d055e1e8c393868b1391407e125460b8aa32bca38e9440683c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4a3357f0c2b14b95c468b6a9c0f4b459371ccabc11d801b7fed5790404818138
MD5 929874a5ef8a06207de69fe972de4508
BLAKE2b-256 fa1cc6dd14bb2b6c44e50dcb49908bf6758b670ce86ecdb770cd9025022a15cb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7288573797f06f9d3d43991a82f4e1943f4d7435d6a01f3c6daf2da673db641a
MD5 2fb725558125c1018baa10af264543f6
BLAKE2b-256 969b6ef13a12311987a4312a93ebcb82ec015d0a195b0a0bb56edc8fdfaba2d2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 4e438ce550a0f263dd2024ca362beb32d124d0167748981339e0a1cc3727c0aa
MD5 3de21c3803b1e9c97a058f6a27b93d82
BLAKE2b-256 7ba3201c19ad91ec4d6c79b42e9c0a9ceecfddb43cc5842fd577f967a8654a81

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.3-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.3-cp39-none-win32.whl
Algorithm Hash digest
SHA256 513ce734d57df902f3b0e80ea119e33974563b543d2d16f34f10d5a2c085a18a
MD5 aadc87dae07bc89e49a37223e407c4e2
BLAKE2b-256 6d910f7ad98163bcd541186adec4e56d6d458ecd4802cf186d0eebe15e0bb1d8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7114a9737ddee71985c3ad47f5cc02c5e12eceb170b7c6669f74530f7d0bd39e
MD5 9f8e53969d424116fed452684062478a
BLAKE2b-256 bbd1dcce497b30e18ce0d3e0df23e8c50ed4aee15625c74ae048219620707739

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b78ed7abe2f05bea17ed768802e3500ef56a11732216de4002f50c576fc942f
MD5 c95e94554492fd9f9d9fbb081d5cf1c9
BLAKE2b-256 7ea8c05a95e43fbd0988981f666c073918ffeb9c69c5af193815aa1a16d2802f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1cc7d2e570eca3ff012ac1463414f886772ec27085557cfbffb0043b6b87a569
MD5 2daf4a6c1e633c0c8b5ba58852dfa7ae
BLAKE2b-256 967cc61ce9cd04f111c061a2d415e50396dcaa99219ddb15d68e75fb3b044e58

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 34f33c86382cf7caa571b756ff55523411357875ec0033bbf3ec652c8a01e284
MD5 9819cfb98992af9705f925a6dc5c7b19
BLAKE2b-256 f811183921af28111290713e4a8b73e4ab57b96feeae24b596ccba77e2b8cf05

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 725c0fd9903e63b2e364f16c0c784c40efb36bc98845cc5aea9232872b276321
MD5 c216bcde1029b236352cbe2fc61e5873
BLAKE2b-256 6f006154ea8a42d5e461ee3f4c8de5a3a47d678d2c5d3acc446cbb26035d3770

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 8beb5d99df5c161cc657e83e8d2e8e904d9679180869b4185361993a23cbe2b0
MD5 c4dc8aa22c2a741d1d5d8d6b9234e00b
BLAKE2b-256 3bf42f3c3227c0a41629c21af20e569631ce0ba1b7452617effdda7d3670a25b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b606ff964f097432a78319e102af2bc1916cf6bf6e1c94018baee71f83a1c83d
MD5 547252dfb736103f94562f17b762ca59
BLAKE2b-256 c5fe919a986e178accd3f4ed72043f911a26fd619f19d2effb47a4b8aba43a94

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7e4dfbf7865b179d07c8249dc89ff4ab5562d80d71d347cb2e8d0b2519f63c8e
MD5 b76647db1e5f3843c5c0458cbcdfd2bb
BLAKE2b-256 9f554d22a7ad2bf750ff796f4bf7d9babd85d63c106cbd3c40f86fd8491712ad

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5a8743d8da3bbe3ae6b1ac82b9428a2caa0d5232f8978accbe33a7932bc4c6db
MD5 6aa5542d06edb47395fe57afa4d732d2
BLAKE2b-256 c6880d6f963cb4da407a6a78c111b5371dd8db08a20a6d5f0bda2e154fb445cd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d6d66ce39491c9f5d6ff6b4af7ce7a146e776d66e7841c846b6e86436d49c294
MD5 26de100f335878ed18ac91f6a98f2d1a
BLAKE2b-256 3114b8b8ba5352fc5520a448b9c8bb66fef01511ffc6fe7fab77023465706b38

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0e33869825aff7b6c9f02692ea5dc6c6248348944e85f03bd2cad5b9ce113757
MD5 c08c0b26fba09779e43c7fe1e94ae9a4
BLAKE2b-256 c4c63fbe0d6ba5e1ac19c80c65b46aa624c71706390987639c6e0b4f617b9bae

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