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.
  • Integration with Python: Simplifies usage with Python-friendly APIs via pyo3.

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 and, TTL of 30 seconds
# and TTI of 5.2 seconds. Entires are always removed after 30 seconds
# and are removed after 5.2 seconds if no `get`s happened for this time
cache: Moka[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

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

Uploaded Source

Built Distributions

moka_py-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl (542.2 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

moka_py-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl (570.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

moka_py-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl (646.5 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

moka_py-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl (559.4 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

moka_py-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

moka_py-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.1 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

moka_py-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (384.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

moka_py-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl (406.5 kB view details)

Uploaded PyPy manylinux: glibc 2.5+ i686

moka_py-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl (542.3 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

moka_py-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl (570.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

moka_py-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl (646.7 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

moka_py-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl (559.1 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.2 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

moka_py-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

moka_py-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (384.4 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.8 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

moka_py-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl (542.8 kB view details)

Uploaded PyPy musllinux: musl 1.2+ x86-64

moka_py-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl (571.0 kB view details)

Uploaded PyPy musllinux: musl 1.2+ i686

moka_py-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl (646.9 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARMv7l

moka_py-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl (559.6 kB view details)

Uploaded PyPy musllinux: musl 1.2+ ARM64

moka_py-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ s390x

moka_py-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.3 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ppc64le

moka_py-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (384.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.9 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

moka_py-0.1.2-cp312-none-win_amd64.whl (229.9 kB view details)

Uploaded CPython 3.12 Windows x86-64

moka_py-0.1.2-cp312-none-win32.whl (222.2 kB view details)

Uploaded CPython 3.12 Windows x86

moka_py-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl (541.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ x86-64

moka_py-0.1.2-cp312-cp312-musllinux_1_2_i686.whl (569.1 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ i686

moka_py-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl (645.5 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl (557.8 kB view details)

Uploaded CPython 3.12 musllinux: musl 1.2+ ARM64

moka_py-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (374.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ x86-64

moka_py-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.4 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ s390x

moka_py-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.0 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (384.3 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (377.8 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.17+ ARM64

moka_py-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (405.1 kB view details)

Uploaded CPython 3.12 manylinux: glibc 2.5+ i686

moka_py-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (332.7 kB view details)

Uploaded CPython 3.12 macOS 11.0+ ARM64

moka_py-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl (338.1 kB view details)

Uploaded CPython 3.12 macOS 10.12+ x86-64

moka_py-0.1.2-cp311-none-win_amd64.whl (230.4 kB view details)

Uploaded CPython 3.11 Windows x86-64

moka_py-0.1.2-cp311-none-win32.whl (222.6 kB view details)

Uploaded CPython 3.11 Windows x86

moka_py-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl (541.3 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ x86-64

moka_py-0.1.2-cp311-cp311-musllinux_1_2_i686.whl (570.2 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ i686

moka_py-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl (646.7 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl (558.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.2+ ARM64

moka_py-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.1 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

moka_py-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (436.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

moka_py-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (424.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (385.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.4 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

moka_py-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (406.9 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.5+ i686

moka_py-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (333.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

moka_py-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl (338.4 kB view details)

Uploaded CPython 3.11 macOS 10.12+ x86-64

moka_py-0.1.2-cp310-none-win_amd64.whl (230.3 kB view details)

Uploaded CPython 3.10 Windows x86-64

moka_py-0.1.2-cp310-none-win32.whl (222.6 kB view details)

Uploaded CPython 3.10 Windows x86

moka_py-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl (541.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ x86-64

moka_py-0.1.2-cp310-cp310-musllinux_1_2_i686.whl (569.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ i686

moka_py-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl (647.0 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl (558.8 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.2+ ARM64

moka_py-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

moka_py-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.6 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

moka_py-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (424.9 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (385.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

moka_py-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (406.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.5+ i686

moka_py-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (333.3 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

moka_py-0.1.2-cp39-none-win_amd64.whl (230.6 kB view details)

Uploaded CPython 3.9 Windows x86-64

moka_py-0.1.2-cp39-none-win32.whl (222.8 kB view details)

Uploaded CPython 3.9 Windows x86

moka_py-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl (542.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ x86-64

moka_py-0.1.2-cp39-cp39-musllinux_1_2_i686.whl (570.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ i686

moka_py-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl (647.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl (559.7 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.2+ ARM64

moka_py-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

moka_py-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (437.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

moka_py-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (385.2 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.7 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

moka_py-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (407.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.5+ i686

moka_py-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (333.7 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

moka_py-0.1.2-cp38-none-win_amd64.whl (230.5 kB view details)

Uploaded CPython 3.8 Windows x86-64

moka_py-0.1.2-cp38-none-win32.whl (222.6 kB view details)

Uploaded CPython 3.8 Windows x86

moka_py-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl (542.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ x86-64

moka_py-0.1.2-cp38-cp38-musllinux_1_2_i686.whl (570.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ i686

moka_py-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl (647.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARMv7l

moka_py-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl (559.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.2+ ARM64

moka_py-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (375.8 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

moka_py-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (438.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

moka_py-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (425.7 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

moka_py-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (385.4 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARMv7l

moka_py-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (378.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

moka_py-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (407.3 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.5+ i686

File details

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

File metadata

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

File hashes

Hashes for moka_py-0.1.2.tar.gz
Algorithm Hash digest
SHA256 8e356bfb9c724f192300339208575f9cde98bfce55f0033ea4b68ec2c9a75cba
MD5 680ced60237bb782bd6a3485407232bd
BLAKE2b-256 f3773dbeca9aa329e29c501fa56e04d14b713a1eb6b0c0039e4632d17269ac22

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e38881b9db970a668a856f43c2c2640aace351665844bc8e0ac2f72833d23741
MD5 3d513831efcf60571faea0e6a983bbe1
BLAKE2b-256 84810416195c95f79a06491e853a19b53eb68a58f640f215c92393b3bd8e6d70

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp310-pypy310_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9f2c7c024c68c1abacde6d39be0023ed112176c592f519d6ac4f4873f4312dc6
MD5 99ecbe260e2ff95b4e0e6d72b9650c2a
BLAKE2b-256 703a6a675d4fcba384d93dd30fb8672bb5bbb5c58f013027dbaf790a1e2296ce

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 303a98ac4b2e0be5957f15fff6abbae964a322794a2bfb4fceda6d6475ddd95d
MD5 34e17d91552696dfe70aa225e24a350b
BLAKE2b-256 309ec4635b84b2baa8f7242da2f28837d4005d4394b4d35a382794714446592f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1bd2ad556fb61cc5ee5cdbc368639884d8dcab28a79a1bea77b4afa0c224f85c
MD5 883f46799b5550e1180f74cf59e44afd
BLAKE2b-256 f26a7dc827a5e1a21f4adc665c6936ec6e3583a059c65f596f922adaaa6f0075

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 352ad6b0c73972cc1d9ec389419292916cd52eba96922ca5c14310228b9ac339
MD5 68cf6a52d351a450120d73934511f428
BLAKE2b-256 7ab86014d33fe751dd320e86878d98f1ec30aa30ace277d57574f56bde0557b6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2bed6e675d1f593492459641923db258765f621f00c01dbad7a2c6c6e89b0859
MD5 c4225bfe97ab5c4af7d000f0ea341677
BLAKE2b-256 3472418008e9233e1c8de7e818bdac56363c53ba4f6a0cadd1a46f928d5f2114

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1489df329949d01f946aac4ca84d7996041835f9cc8da37f2935bab5423d23c4
MD5 8fdc630748d6eeeb1c3e8092d6843041
BLAKE2b-256 95219641e25b0cfb9e80ca0de54479c4c9f525620c10047fa37f64a25e93af00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93a3456aca91c60de733d76a2e173a9f2ef621cca8fdff89385eca15f3d3f0f9
MD5 eec1a67d3a93c8f8ae06aafd08838971
BLAKE2b-256 0d115440df434b8163598b6946f5107cd60ef3205b34dc0a0651dac213d4fc34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 691625c807a19d83ebb6452e8962a8779ea0b729c4075510de8a115f95b4e9e3
MD5 e297cafa310955c9429aa431b4adde5f
BLAKE2b-256 0ec4689b04fd64019509fc0d4edb9743bd9170586eb204735a78cfff3e509b5d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3896789e0f18897ef13fbe6ced792b98a2b53f7edc9d2dc0e3144c25fb188eb4
MD5 f931722bc5876bddcfb822f6ac39d035
BLAKE2b-256 12ffa3e3dac70d0eadccf1554a87410cd91085cef3701f797cd2c950fddbcb85

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp39-pypy39_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d63fdffbf04a53f59a48ad2b7fe3668b4282c1036154aa01a10989dc83fdd423
MD5 0b0547532c7820dbccd099c9bd60f74c
BLAKE2b-256 10ef2a027535d4b81cefaa575150c87674e6c22c36d26e9ac28a3a7580251012

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp39-pypy39_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 467d1678ce57902732ab5b7d4346cc95c5687e3a011419cb5e10a3bb831da02e
MD5 895801496033c8b4d0549cebd5c13617
BLAKE2b-256 33e084fc5b60c1ea0ef475ec528bc67bd8b75b7e45c082e3684a937c04183e1d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp39-pypy39_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d4e712e69c0d99bc14282d563f41f7a4d55a595a81e59afa0ce1134c56da49c2
MD5 e83fcb26145ef0c7079a46f4b5186183
BLAKE2b-256 b18b7b3250e0491152f4af3f68ad034f8b97de28012b8954fff559f69b8b3d45

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp39-pypy39_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2416b83b9cd88a8f9d9f8f96f9086acbcd74137cd63d57e845d6d35d6b80ed48
MD5 d9f503bad231e21066d59516a4b65225
BLAKE2b-256 9f6ff5b1b6f3849423b0a646b1ad91213e16767aff2d681ba5db91c766548457

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp39-pypy39_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 71f45a435044ef1ee3dac7f1a120280c66d62948f9cf0fe2d2b5366457dee0e5
MD5 6bfc90e1ac30355bb4c52866f0e4f63f
BLAKE2b-256 45fe031ab54d04842315e02e4323312081181c7ea5dd960f15ca22250a7171a1

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp39-pypy39_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 d3dc500edc0069f0cb07336a22cfb3d69b6d51ac8c722f6e2d26416fee8e3d97
MD5 21491e6e2471328852188fe1b72d0516
BLAKE2b-256 b735a08c9e3ee804f18a06e5ddb5cc648cb34e610ac461ee64677a64633b011d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp39-pypy39_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f74912ea9fdf74967c45e10da824af9ace53b1b9a6be6444a111ed3d139ec657
MD5 f1f301f7b1f48a24b2e057028184b298
BLAKE2b-256 2798c31e38b950b052aefa393d19364c1e420179507055e3a12bc961eab018f6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3f8a60038d8be935ed94c20da719f8905c819e992753c7f613d3c6d8ebaeedee
MD5 bf764229fb8eb57c4c5fc744185842b6
BLAKE2b-256 4ecea02510aa8d225422e2c7345937154fccbc508dea52f183bf9dee1df9a44e

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-pp38-pypy38_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 598c49bd12c09baeb96f1c1ea253442e07b9419192fa2dd4e9863425ca9a72d9
MD5 7adbf3c8ab6361f0340325b2d40be4dc
BLAKE2b-256 ec0cf153e3af69f6a70c22ce88609089165b5758c91a40c39df8c31c8852f1a3

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-pp38-pypy38_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 63967c7a556858683fde70d708e4c761b9825991e26b52c093dbdd45d5eade49
MD5 045ecb71e1b9853ca6706949c0328ddc
BLAKE2b-256 3e7bc21507c4ada39460232ca15124d49a48a0d942b6a2809913fa25d845ae28

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-pp38-pypy38_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 329ac95034651fafe7c0c5ff281112ea6cd6684282e0c0f77a86f879550eefaf
MD5 3cb38d671fa2d4259c0639d282c531c7
BLAKE2b-256 94f06c93d70b35b57d26649f0ba0faf5a3428355a409fb1851d80028081aea46

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-pp38-pypy38_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0d68d7fc803a05de6b4aba02b9befee371edd4868d473197f6f0fbd379ed23b1
MD5 d85a903813582d961a9226fbdb5e5d80
BLAKE2b-256 6c766deb57c4cb0b7cd6cb4085846357d4068410f999214ea3d474a3893d5d57

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-pp38-pypy38_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9629faa7c676b250cb42faedfe6c21651a7ff848a3e85561ba9bf7f3915de1db
MD5 d925066f15d7bfc836f725f1ee5f95f3
BLAKE2b-256 688b3bc742e9af073eff237bec7738d462a6c6f213853699996e64bf10906d55

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-pp38-pypy38_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 369b355f594b55a675845136bca133191ce47ab9ef15fc70e1534d0b028e147f
MD5 8f933cd37a93c68152e000468ae078d7
BLAKE2b-256 790905a8a049c03c56874747226afcb8c4564b8429fe047ead61d3e5dafd9cf2

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-pp38-pypy38_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cf462c518c2c7213e7a7767e8dc47250cf086e69c44a0cfb0b973c5f3ce07251
MD5 2221661f3a4fe37548b0b28250f64186
BLAKE2b-256 14ff1fd517f6c6a1b7103dac7993c3d9a365bb5d4ebb71e833a6762c025be545

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 5510bee542bee947ae1c50267a412eceac2a9ad553d1abee0f7f776d08083675
MD5 8ffc5e8b000814a781b05861f69b6dc1
BLAKE2b-256 aed7dde720258712076187545f503e135d6ce166717f4232dcceda171865f618

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-none-win_amd64.whl
Algorithm Hash digest
SHA256 c2d200eb4f91e113171090ccc3b477ac2d9a97953ffa06c3a3b8cacd4c01e08d
MD5 86fa65e4aa5551d0fd4587657b273fc4
BLAKE2b-256 2242bde7d4bd51956af82ee1797513451837b266e5cf63530641e87a7c46d197

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.2-cp312-none-win32.whl
  • Upload date:
  • Size: 222.2 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.2-cp312-none-win32.whl
Algorithm Hash digest
SHA256 1eaf7f639b7a88eab91bf457b6e23c44d6ef3aa605de614669502b6fbcf4de98
MD5 85d505b6dedca8fafee55f8d59d0da27
BLAKE2b-256 a55538b153c9c41f273cfd5cb998e2902c8ebee02e6a5405c46b81aa02895451

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d22cbaf7773a25b05d82eb362936ca7b65e57b59e6792e8004f3806c93ba281f
MD5 e6cc74e935689d49ddda4c9ed6c8d2fb
BLAKE2b-256 3366a6fabd72f3a4de80e45b449d0e28b1178347d9a4ce31c1ce980dc4693e14

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 acebe5aa8e87cefe451b1b459cd620b665ac8046724d7c6312e79691ea3de468
MD5 54a818b44bb9dcb7cf97017d945eea17
BLAKE2b-256 dc85864f95c7e197ea3a291a7c4978b24db956aac12ed3a031d78c310f53045f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 287ee1e92d8c87d2d799a913a86eb00fce2de7b02f9f35776954aa93b773f5da
MD5 1f6425d6a50b172640c2c8d06074d35a
BLAKE2b-256 926de9e2367ca04f742cb36f7b47884d4e0525a1f18d38db2073fc6b9d63ab37

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 619c2d04976b4809dfcda21a50e6f09463a706a64e8a2a50a6b6bde3c43c3bb7
MD5 d095010b8734650eee1ac14c6afc9fe8
BLAKE2b-256 f328f7ef1e593ccfcfcc0d965aa8b5e4bbe9f73221cd86bd9802c58b22f522f8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ac5bde068c7c1981d87490e5105cf8f7dad444680b055594c24fb5111dd18329
MD5 50c3bbe15502450183a619d5707936f0
BLAKE2b-256 f888ca31438196c756f5f4a43ea3d79067b7bd4bd279c61e957dc4a8cd79914b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 253ef120f884dbde3545ab238589bc7f899b7adac13a29d60f58a0b2e972a66b
MD5 c5657418b05b9f93d3c9d4422fdcff9b
BLAKE2b-256 64486f39c68c83d3fd12f9a96a05d12552e1dc78f1f8406688627e80541ff122

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 46bce9f64794dbf370f7e9730db85627c9ef31b661c01bc82302b69f4e4ea02b
MD5 8e5080b12c4680df4ed93f096fab03e1
BLAKE2b-256 d9e421574428f747ed0ea5c48fa3c2823fece714f7b96da993e0a12d115f498e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d8528bf6ebda26a3fa28d93d81009e34989745db896a2dbd1b784dbe25354487
MD5 654264cf385dd200fdc1948a47e9660e
BLAKE2b-256 93b200bdadfdf382ddacd9bfa05b84f04d3683c6a624b57c7c2400f92f56f16c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 230ab0ae3c70c01e1af3f6fa6e4b085df3ac186049c03103aea0666aca6fa06f
MD5 c9e0c6bd4990f6e0de631c323baf4c18
BLAKE2b-256 1841f1af1ca94abd948b07e4dea89c768a8b9a2570fc453e2c45be1676c670a6

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 68f609df7ea34fe2040fc3cd1bc0915a26c0b34da55c273c5f0d3fceacb48fb3
MD5 f5533af06b39275cdd009be2806ead8e
BLAKE2b-256 11a2aba0ae76b073eb3a1a1613b6e5585fc79fd49e01762c0fdacdabeb615474

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d02b316a550249c8dcc70ffadc3b5e9e9cad4c5c40e6b99baf276630e340b010
MD5 6d9856b7ccb96c2bc7c630b4e6becbf8
BLAKE2b-256 f0d0efeb70ea7d11ab37e28d446c95413eec7c6373f3648589c2222d0748dc87

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6147170cde4931e8ba5186b6ed641ed3363a3ed50610e7d982cb45a96da1c120
MD5 c83161e21846f02e3d8a12c1c6f771fd
BLAKE2b-256 2b895d84e2755261f2e0f37b32446ef3d29a4b9a000cca2d617ef48556302013

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-none-win_amd64.whl
Algorithm Hash digest
SHA256 42b34c2933f5817169f96845358470e70c5be2cef64ce40daabe9e4762c4a01d
MD5 09340c7ebb03477a94d015a977ebf1fc
BLAKE2b-256 1edcf84f7720b0fe7c6105922b378cc1c0995ba66db1e699189438c8ed75edf1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.2-cp311-none-win32.whl
  • Upload date:
  • Size: 222.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.2-cp311-none-win32.whl
Algorithm Hash digest
SHA256 06c9a6a8fd1d194a03725bc48fc1811933a03172f9fd4f37fd8eacabfe689c77
MD5 95dceac01dca148c9aa516ad1584f781
BLAKE2b-256 f44d41f2e5cdea04bf9d05990d1cc6bb53636fd0136b22158cd585a43c036e29

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cd120272670970b35d0a2b49cde7e256ffa594edde92e41e623522b0afac5e7c
MD5 cea0b1772d7f9e1bc0b24ffc280cbdf9
BLAKE2b-256 082a0b7bd1c5364e1baf138f22a88fc9eaa403d6bb897f4ec470dda602cf0393

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a98a78550ec8bec2750261d98b05ae15bef0aae2aea294c7ca93a52c42c1f2d4
MD5 eea2ffd41d709f4cda3d060eb8f2fafd
BLAKE2b-256 6a0e7c74698738f638b0a089867be0861fcdfb00a324a097e75e54bd28cfbd36

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bdac5bfeada6cfa5c25f08650eb162545c0945b0d8a629141423bcf19c18f77a
MD5 b03d7851d86003b287b8c4d13596cc05
BLAKE2b-256 c5d2099e2a72ffe70519772e26f4055176c9ff31a775ebb7edc35b95b7989d00

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8345ca1ca5f4685456ae29578ea343b5c8e76b95f0d83c76006b66f2ff5646e5
MD5 8a860c28c26b81e269d3206b98dadaaf
BLAKE2b-256 afed292413ce4a3c87124067fcaa6e86883e9e9d6ddf395c718f256f9f96c353

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8fd72afb359b7133047a021bed5e881a41514610b45dd468a63fcd78a9f653a5
MD5 cf82f066126b54ecf792cadd0473bef7
BLAKE2b-256 871b9ae54e3f305361dd66dbdcc038c320c898ec6f94984af0a187da7674fb34

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 ece560ff36093ec7c0b51f26e388cf9a0309f34b78a3bffaf4dfec8c10fed2a3
MD5 c713d7e207c21c233fa63ffc79ac0330
BLAKE2b-256 cbbdd8319bda07c64c4aeb435e772ee980219b7b5f7e0a7baecd546b44d5ea64

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5745076d4be6aee0e532dd076040c655fce53b9f1c0e60ec78bcd6a5029bb86a
MD5 5a9ddf26e426347aa295170acb2864e2
BLAKE2b-256 36b7becab69007e8afff18c3d24071afa84aaadbf141e1197bf6315b9ae17348

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 be4cc80961092997244ba39166235ee1ce1ef08cc306fae86f54c3ee947eb439
MD5 1e0c2eefe3caea8d671f741092ed1527
BLAKE2b-256 f817e1ffe526f97c9b55e350816f8e270b98eb7a6f24c3ad414df0b8d11618dd

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f4fb4cc2db4cf856fedccaaf8a2eed537f4d038eecab5316d2fb86471b55cba7
MD5 04d7ea9ede18cbd7b84d2debfb75650f
BLAKE2b-256 92f1b6da09cb8e9a2c143f15e1dbb6042437cc74c78b4bc1ddb54c7b58465e8f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1d3081864ef5535ca34087145300c03620f5843718b57cabc63aa5a89715bb27
MD5 0952e2529aa2d0eb381b0abc84b8b580
BLAKE2b-256 999c1b0aecab1ad02c3e87c24fadd012658a57c1bcd956a91d37a52f0c96c2e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3a009fbc583be17c7021144164b5d9613e0300cfaf590783a844bcd066b9bd58
MD5 66541f4d69017fd2cf8a095cf157d203
BLAKE2b-256 136bd4f136a2de10296d5b735557ecab4188062d54c8187865889e3cef67be2f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 dd8204a698a265872c38b742307f7192c00e0b74059d468e5dbfbe651fc584e6
MD5 7a7c83321676a0e4f0ed9a40c159d17d
BLAKE2b-256 a639d08692e60070086f4204ce51e9828416975e05ac53d2e9bd637d85951d24

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp310-none-win_amd64.whl
Algorithm Hash digest
SHA256 71256426cbd4de60f764c1088cca8b1ebaebc4bf3329af872c5214c746c171bd
MD5 b6b6d7b85f2f751387426524a547e340
BLAKE2b-256 005c08b04f8fd45b6c332a1da2908e5c5c18bb3c9d711bfb27a5f6cfdc87601a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.2-cp310-none-win32.whl
  • Upload date:
  • Size: 222.6 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.2-cp310-none-win32.whl
Algorithm Hash digest
SHA256 26c9948d105da64e8f92ce8106ed1d97e97821ef626010724afb024cb9f8fb6a
MD5 320d3ce8f8f3ee5a7ae0e200ddcfaecd
BLAKE2b-256 53f9feb1bb373c69d88000e92273f6a003964b4b1791ccb7e9a78ec26f3deeb2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 bc5fffe9de85cdfdccd86633fadef0b8ac55e7b46aed172758e70e85d09ebf9a
MD5 5f231514a78791370f72aa1d56d728df
BLAKE2b-256 4672308fbb770dc7b11ab957e9ca169ae3f9b0e5f0c2a917526684eb3d324c52

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 485bb080185a87e26d6c99738f24a2d546fb3dacd193e17029d288dd03878833
MD5 789258b4f257baf63b7e93ba446e6dd1
BLAKE2b-256 05879c15cfe718e09e2d0825ae4e16b8a2e9acaff397db9ac757188727042be8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7566ce25094ff14b3a19fcff3e9450954401f309131268c9e1802eb99f04fdec
MD5 5853f10b7a89352d93cda067e7cbb48a
BLAKE2b-256 44557a049e856954e0f5b98e4df4debe3ccaf7118516ed16ab615283b574bae8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f04e76c2281197e4915c31c4155ba82df33766696ddb576cd292d9cad78abefa
MD5 fcce784165fd9bb702c9dd08212ab62b
BLAKE2b-256 1b8d09fdc9ca4c31d4e63a77dce29d801f97811f937310a0723a48ec3aee87f4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 937f6e22fd6234a3a0a2325fed97ac6f7f50db3508bfed2e3e36381088205492
MD5 298e0fd5ae05b7584092571c888b3def
BLAKE2b-256 ca1f42f366ca67120af6a7d684565ff8e284ec816c2a3abdce94b6604faf26eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e7c28221b79b848cbc3b6bcc3df5f7fb23bfad8adefda0c6549a96e879f0f8da
MD5 121d40e7275dbddd12f69f8e22a7fe06
BLAKE2b-256 6ce3ac2420d2434109cf01c5135509c7ce1703acb818b95ee9092108a2081484

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 aa82fb198da7e6c9ab30d1a4c2014ee03747fa2e551168c0e3375ea3e7e5df77
MD5 71237a9154792848285490c3f53d72d7
BLAKE2b-256 36caaba711be16b2574069dbf4b00a98e16273fa3f67b6f0907883084efac35a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 74be3b257593f65dc6ae6b0e6feadd13dac5ebe33909ea11081094f2e2d108c4
MD5 ebc12e79b06781dce5e27989faf16bb6
BLAKE2b-256 7f27007a395aafa3e1c2f271f5c3f57d4488ea765e92d6ff3621807e5f1da58c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1ae63c8ae9989e3aa044f7650c5204c2b18b2ba5afa4db7544a5c282a093c0d9
MD5 ca15aad6642cea88dd711033973c9a0a
BLAKE2b-256 ac47f92e8cb7ff96c4a6b4002b181b90570b6cd2ae40d22205dd135a74a2739c

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 bb917d60dbe2e1a96813218e3e284e288d86510c7d8f988e19e9a2847a436c70
MD5 06673178fc18fd3d9ff44830e3b209c7
BLAKE2b-256 269b0868b7f24ffccf790932716a7b23e9d3bed1943ca5849aeb3f443c704b99

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 77a5a33b166d740fd053b5e229389bb808ae3de344e757e370fbd1be9479304e
MD5 8db18943c0a73149b610251e3e7f3409
BLAKE2b-256 1af874960fe7512a422d9efc80b6a50b1a5ab9c65a7a34e5dca60d4d82ccc024

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp39-none-win_amd64.whl
Algorithm Hash digest
SHA256 94f787ec7646cced86fac397637bd66fc5b24142c75d34d9277dfd6a6ff96c63
MD5 ea15cc8686f542871d17209dd626c002
BLAKE2b-256 41db5cd8b211225e4769e3d75b2e508cbc945db66ae87681a20de273cb612fef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moka_py-0.1.2-cp39-none-win32.whl
  • Upload date:
  • Size: 222.8 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.2-cp39-none-win32.whl
Algorithm Hash digest
SHA256 1eb4b1912ce280d51d2216031efa6314609246c913051685717f01b1a45c0daa
MD5 dbe7c29926f14363a7885ef0f8177ea9
BLAKE2b-256 7aece98b00280f099c25f13c1cd9a0bacf4ca3aa30d6469e27fa8bf21e039c12

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a3258dacd526a13ebb9240a76f9ab6a7e3d17389ef00b0c49972b12bd918230f
MD5 e8c74264e0363a8615c7f691b3af81b4
BLAKE2b-256 da888f6b378032a82f52625bc0c448e3eb1541caf714db152ac337b38f65fc9f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 19953e8eb9cca348f7d75b364fdfac155b461cd9d1cdea5b920fa2cf28d6daad
MD5 ea5288c0b8c94dc76d56f3ec2270b316
BLAKE2b-256 981d1f1964deef95c20098f3789c847e72e799ecc30b8229afe7b3e742e0a37d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 604ae197d3985670d9ae838192474128723fc8d8d1612a1c3a2b89d6fb8925c7
MD5 bcd6a99333140c697bd9e3935f5c02f0
BLAKE2b-256 1d2623ef0821c0a6b7c51e9917244cda46317f6eeebbcea8ec40efcb14d13147

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9f85e692c1212f6764ffb503ec5d52048deff6a44a063c8fd720b2a90223892b
MD5 2af81c631354ef02df20bf172c9267ae
BLAKE2b-256 0d8065617404e0dfa3f728c6f373bc80b5e531fcea2f9b2c8dfa84635c6623b3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c9fc542b55203ec900a03352193be7b7b0a2222edab16ba277552324c33f037a
MD5 f6a3776c7e8daf649e6bf1915f6e049f
BLAKE2b-256 e16316ba770828de7bd091eb213a1c3935ba25e734cef1f676a592ef1f30e281

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 0febbb086bc9d8059fa4b6c8921f7967e76f0944d011ba6bf1419311d1fd4db4
MD5 d4ee92e4e49e127ec8f4e2c24a2b6c85
BLAKE2b-256 903d1a5f52229dc15129c496f2037340c636c4e3ec9ff62c67bc8045075cca7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4333644dabbb9afebc417ec10d49aea6e0a04d608fcdea6303b167846387a58e
MD5 f5c0e93adfdff81f49a10179073f8cb7
BLAKE2b-256 264b0097f48228aaf36592b262a561c90e6e2f666e54a58af4f366384f3ce9e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93836fdf9775da3de4f008c725e8e8482704cfe3f4ff6b82e272d756f4f16db6
MD5 ada4b2ac1ef60698224e5419b958d00a
BLAKE2b-256 5b4eda0976103a338d7d0969e41eb94a90da07b7d8a00a2d8e093a46a70f3a43

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ab8bbef3ae5726604f1a32325b47f6d281d3e6c356a390554b73e6b6f6e236eb
MD5 2aef01fff0b16e4610a5d324c65bee09
BLAKE2b-256 1b0be6254c71d1b4230309189a56ab333789473ebcf2d070d4511d20771cc24b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 4c33af762ca4229efd8d724796d8fa8413a6b4b981d6e3cf37fa9ae2af79d92d
MD5 f3a03d206035e5467eb6e50840a66494
BLAKE2b-256 d442f17698519af187b10ad1ad877be3c5294bd6e9cf8adebb870ac844882724

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moka_py-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 97c7c082d56d67bf8b20bd080c26d5d57508f5b840bd0ab96d0c8b5e74d199e3
MD5 415ad92f1f0f9125f3fdb817dad16ecc
BLAKE2b-256 be484ba4ce48874b01dc76d2404bb6fa0531ab10a9fbb3b79a233ffe0bb1f962

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-cp38-none-win_amd64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-cp38-none-win_amd64.whl
Algorithm Hash digest
SHA256 7a03aa99c8cde84872a0d5d98a9ff0fc17becc6b5f89014abb8a2577e8b68059
MD5 98478dd3ca12025e0777aae12ad63f3c
BLAKE2b-256 cfd4b8326d900c979fc1c4db1bd70990db9883618bf8250f91e3d4172f2c2d76

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-cp38-none-win32.whl.

File metadata

  • Download URL: moka_py-0.1.2-cp38-none-win32.whl
  • Upload date:
  • Size: 222.6 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.7.4

File hashes

Hashes for moka_py-0.1.2-cp38-none-win32.whl
Algorithm Hash digest
SHA256 42a7c5c5d758508e60bd6da54717311fc5d62b6f08e64d11bf03b4cc377588c9
MD5 43bb3414fa6ddedd84bb97f6446c7320
BLAKE2b-256 1a31bd255451a9772a369542cb42868d3137af4bec33fa2fb14fecce47283234

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d89ed58cece1f9ff5235a5ddede98c732a10b9dfb5e1b87a6a15bce762355efa
MD5 1af08f2d41642f4d8131fdcdeb3ac0ab
BLAKE2b-256 4559fa9bce396ccc40dd6c95a237e564c2703bf2136aab00aeef9ea14cb5d0c7

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 90dbfe317bd8a404387fe5a17c01bc36d606fc0143ba84bb9c2f84eebe8d38d0
MD5 44f8f579e55eac5a4542c506cfc965db
BLAKE2b-256 95092e4cd5b1357fef38ce0a6fb34ccb1e0b18628dd16110457b12b865e87ae8

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 be487eac2749ce05f1884b84694f567567e79b8c605e1db2aecf864969278e80
MD5 72c8fc8fe536ca9aade26269f0ca88e4
BLAKE2b-256 44e171838847fcc91a5acbec8c64a327a5ce7d1a2dbfc80a9e789f855c038620

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 71ed7ad54a5968a36d442dda148d2af363a897842bafbec4f144f785827a4c38
MD5 be7b3d5903b8fb3ea89e6a83137a9c86
BLAKE2b-256 5c53f0854c9c92b81b0ebb3554f7c4097e398b597866849d5527c720dd6f5ac0

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 20243e2766b8f65419c99d5aedc47e5c90766d48d49e0561336cf5756f20328a
MD5 bae26db4551de60cb2e160c0752e7d14
BLAKE2b-256 26c9786137d8eca5558a98cd19a47ade44adcf5542224c81e618491606d64ac0

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7af7a6f138f937cbef296e98467ee12957407df876d16fdd3eb479882922626e
MD5 e1e45846a488ec5731c3b7ee65f1d77d
BLAKE2b-256 64b67b0a4e77b1573e22ecfbf1d79f9c3df4baf7ede0b27477470c22be2f97b8

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 dd517df0a8ddce968830b134b07301b24c12b979c2b13724c34010ddc25af650
MD5 c17b23db6385172e8514ed682d28b0a7
BLAKE2b-256 b413b39acb2fd1ec160ef0054f8c43685b2316a041f97e6a93560db56a7b2f08

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 137f55178bc8ef8a551e78cfedfb7876a1da6250d03cb01e11aff37cea65ecc2
MD5 94204284d7ad364a51433ff1a1869c6a
BLAKE2b-256 9e0fed1c2ef083258533adb4ebacdd11f7260ae1105315dc891c0bc7100df975

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 87469076155002c2f89e117d1c40177458a52e1fecebcb25b4defdc09e60644f
MD5 f048153e1e97fb1dddcf86a691431d24
BLAKE2b-256 08d8243154aa68f05d7558ab5b6f3b3c7a2b17e67ffd6d395eb2ff63c5f1b568

See more details on using hashes here.

File details

Details for the file moka_py-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for moka_py-0.1.2-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e7672af2525269773474a2ea000308617a78ff1181a50a43148eb08c8b43df70
MD5 fbd2e4c83939e02e98c863998bd0ce67
BLAKE2b-256 2e470898cda39dbb8ee31058646df110d6cbbe054ef0d5f7bfdbf8419f7c5ad8

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