Skip to main content

moka-py

CI codecov PyPI Python versions Downloads License

moka-py is a Python binding to the Moka cache written in Rust. It brings Moka’s high-performance, feature‑rich caching to Python.

Features

  • Synchronous cache: Thread-safe in-memory caching for Python.
  • TTL: Evicts entries after a configurable time to live (TTL).
  • TTI: Evicts entries after a configurable time to idle (TTI).
  • Per-entry TTL / TTI: Override the cache-wide TTL or TTI on individual entries.
  • Size-based eviction: Removes items when capacity is exceeded using TinyLFU or LRU.
  • Concurrency: Optimized for high-throughput, concurrent access.
  • Fully typed: mypy and pyright friendly.

Installation

uv Using uv:

uv add moka-py

Poetry Using poetry:

poetry add moka-py

Python Using pip:

pip install moka-py

Table of Contents

Usage

Using moka_py.Moka

from time import sleep
from moka_py import Moka


# Create a cache with a capacity of 100 entries, with a TTL of 10.0 seconds
# and a TTI of 0.1 seconds. Entries are always removed after 10 seconds
# and are removed after 0.1 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.

# The default eviction policy is "tiny_lfu" which is optimal for most workloads,
# but you can choose "lru" as well.
cache: Moka[str, list[int]] = Moka(capacity=100, ttl=10.0, tti=0.1, policy="lru")

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

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

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

Per-entry TTL / TTI

By default, TTL and TTI are set once for the entire cache. You can also set them per entry by passing ttl and/or tti to set() or get_with():

from time import sleep
from moka_py import Moka


cache = Moka(100)

cache.set("short-lived", "value", ttl=0.5)
cache.set("session", {"user": "alice"}, ttl=3600.0)
cache.set("idle-sensitive", "value", tti=1.0)
cache.set("both", "value", ttl=60.0, tti=5.0)

# Entries without per-entry ttl/tti never expire (unless the cache has global settings).
cache.set("permanent", "value")

sleep(0.6)
assert cache.get("short-lived") is None  # expired after 0.5s
assert cache.get("session") is not None  # still alive
assert cache.get("permanent") is not None

get_with() accepts the same parameters:

from moka_py import Moka


cache = Moka(100)

value = cache.get_with("key", lambda: "computed", ttl=30.0)

Concurrent get_with with different TTL / TTI

get_with() guarantees that only one thread executes the initializer for a given key (stampede protection). When multiple threads call get_with() for the same key concurrently with different ttl/tti values, the thread that wins the race runs its initializer — and its ttl/tti values are stored with the entry. All other threads receive the same cached value and their ttl/tti parameters are silently ignored.

import threading
from moka_py import Moka


cache = Moka(100)

# Thread A: get_with("k", compute, ttl=1.0)
# Thread B: get_with("k", compute, ttl=60.0)
#
# If thread A wins, the entry expires in 1 second.
# If thread B wins, the entry expires in 60 seconds.
# The loser's ttl is discarded — it is NOT merged or compared.

Interaction with cache-wide TTL / TTI

When the cache is constructed with global ttl or tti and an entry specifies its own, the entry expires at whichever deadline comes first.

WARNING

Per-entry TTL / TTI can only make an entry expire sooner than the cache-wide policy, not later. This is a technical limitation of the underlying Moka library: global and per-entry expiration are evaluated independently, and the earliest deadline wins.

If you need entries with different lifetimes that can exceed a common default, do not set global ttl/tti on the cache. Use per-entry values exclusively instead.

from moka_py import Moka

# Do this:
cache = Moka(1000)
cache.set("short", "v", ttl=60.0)
cache.set("long", "v", ttl=300.0)  # works as expected

# NOT this — "long" will still expire in 60 s:
cache = Moka(1000, ttl=60.0)
cache.set("long", "v", ttl=300.0)  # capped at 60 s by the global policy
from time import sleep
from moka_py import Moka


# Global TTL of 10 seconds.
cache = Moka(100, ttl=10.0)

# This entry will expire in 0.5 s (per-entry TTL wins, it is shorter).
cache.set("fast", "value", ttl=0.5)

# This entry keeps the global 10 s TTL (per-entry TTL=20 s is longer, so global wins).
cache.set("slow", "value", ttl=20.0)

sleep(0.6)
assert cache.get("fast") is None
assert cache.get("slow") is not None

As a decorator

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

from time import sleep
from moka_py import cached


calls = []


@cached(maxsize=1024, ttl=5.0, tti=0.05)
def f(x, y):
    calls.append((x, y))
    return x + y


assert f(1, 2) == 3  # calls computations
assert f(1, 2) == 3  # gets from the cache
assert len(calls) == 1
sleep(0.06)
assert f(1, 2) == 3  # calls computations again (since TTI has passed)
assert len(calls) == 2

Async support

Unlike @lru_cache(), @moka_py.cached() supports async functions:

import asyncio
from time import perf_counter
from moka_py import cached


calls = []


@cached(maxsize=1024, ttl=5.0, tti=0.1)
async def f(x, y):
    calls.append((x, y))
    await asyncio.sleep(0.05)
    return x + y


start = perf_counter()
assert asyncio.run(f(5, 6)) == 11
assert asyncio.run(f(5, 6)) == 11  # from cache
elapsed = perf_counter() - start
assert elapsed < 0.2
assert len(calls) == 1

Coalesce concurrent calls (wait_concurrent)

moka-py can synchronize threads on keys

import moka_py
from typing import Any
from time import sleep
import threading
from decimal import Decimal


calls = []


@moka_py.cached(ttl=5, wait_concurrent=True)
def get_user(id_: int) -> dict[str, Any]:
    calls.append(id_)
    sleep(0.02)  # simulate an HTTP request (short for tests)
    return {
        "id": id_,
        "first_name": "Jack",
        "last_name": "Pot",
    }


def process_request(path: str, user_id: int) -> None:
    user = get_user(user_id)
    ...


def charge_money(from_user_id: int, amount: Decimal) -> None:
    user = get_user(from_user_id)
    ...


if __name__ == "__main__":
    request_processing = threading.Thread(target=process_request, args=("/user/info/123", 123))
    money_charging = threading.Thread(target=charge_money, args=(123, Decimal("3.14")))
    request_processing.start()
    money_charging.start()
    request_processing.join()
    money_charging.join()

    # Only one call occurred. Without `wait_concurrent`, each thread would issue its own HTTP request
    # before the cache entry is set.
    assert len(calls) == 1

Async wait_concurrent

When using wait_concurrent=True with async functions, moka-py creates a shared asyncio.Task per cache key. All concurrent callers await the same task and receive the same result or exception. This eliminates duplicate in-flight work for identical arguments.

Eviction listener

moka-py supports an eviction listener, called whenever a key is removed. The listener must be a three-argument function (key, value, cause) and uses positional arguments only.

Possible reasons:

  1. "expired": The entry's expiration timestamp has passed.
  2. "explicit": The entry was manually removed by the user (.remove() is called).
  3. "replaced": The entry itself was not actually removed, but its value was replaced by the user (.set() is called for an existing entry).
  4. "size": The entry was evicted due to size constraints.
from typing import Literal
from moka_py import Moka
from time import sleep


def key_evicted(k: str, v: list[int], cause: Literal["explicit", "size", "expired", "replaced"]):
    events.append((k, v, cause))


events: list[tuple[str, list[int], str]] = []


moka: Moka[str, list[int]] = Moka(2, eviction_listener=key_evicted, ttl=0.5)
moka.set("hello", [1, 2, 3])
moka.set("hello", [3, 2, 1])  # replaced
moka.set("foo", [4])  # expired
moka.set("baz", "size")
moka.remove("foo")  # explicit
sleep(1.0)
moka.get("anything")  # this will trigger eviction for expired

causes = {c for _, _, c in events}
assert causes == {"size", "expired", "replaced", "explicit"}, events

IMPORTANT NOTES

  1. The listener is not called just-in-time. moka has no background threads or tasks; it runs only during cache operations.
  2. The listener must not raise exceptions. If it does, the exception may surface from any moka-py method on any thread.
  3. Keep the listener fast. Heavy work (especially I/O) will slow .get(), .set(), etc. Offload via ThreadPoolExecutor.submit() or asyncio.create_task()
  4. Per-entry TTL / TTI and the eviction listener. Per-entry expiry fires the listener with "expired" just like global TTL/TTI does. The notification is delivered lazily during subsequent cache operations (e.g. get, set) after the per-entry deadline passes — it is not instant.

Removing entries

Remove an entry with Moka.remove(key). It returns the previous value if present; otherwise None.

from moka_py import Moka


c = Moka(128)
c.set("hello", "world")
assert c.remove("hello") == "world"
assert c.get("hello") is None

If None is a valid cached value, distinguish it from absence using Moka.remove(key, default=...):

from moka_py import Moka


c = Moka(128)
c.set("hello", None)
assert c.remove("hello", default="WAS_NOT_SET") is None  # None was set explicitly

# Now the entry "hello" does not exist, so `default` is returned
assert c.remove("hello", default="WAS_NOT_SET") == "WAS_NOT_SET"

How it works

Moka stores Python object references (by Py_INCREF) and does not serialize or deserialize values. You can use any Python object as a value and any hashable object as a key (__hash__ is used). Mutable objects remain mutable:

from moka_py import Moka


c = Moka(128)
my_list = [1, 2, 3]
c.set("hello", my_list)
still_the_same = c.get("hello")
still_the_same.append(4)
assert my_list == [1, 2, 3, 4]

Eviction policies

moka-py uses TinyLFU by default, with an LRU option. Learn more in the Moka wiki.

Performance

Measured using MacBook Pro 14-inch, Nov 2024 with Apple M4 Pro processor and 24GiB RAM

-------------------------------------------------------------------------------------------- benchmark: 9 tests -------------------------------------------------------------------------------------------
Name (time in ns)                       Min                 Max                Mean            StdDev              Median               IQR            Outliers  OPS (Mops/s)            Rounds  Iterations
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
test_bench_remove                   68.1140 (1.0)       68.2812 (1.0)       68.1806 (1.0)      0.0671 (1.0)       68.1621 (1.0)      0.1000 (1.0)           1;0       14.6669 (1.0)           5    10000000
test_bench_get[lru-False]           77.5126 (1.14)      78.2797 (1.15)      77.7823 (1.14)     0.2947 (4.39)      77.6792 (1.14)     0.2913 (2.91)          1;0       12.8564 (0.88)          5    10000000
test_bench_get[tiny_lfu-False]      78.0985 (1.15)      78.8168 (1.15)      78.4920 (1.15)     0.2678 (3.99)      78.4868 (1.15)     0.3429 (3.43)          2;0       12.7401 (0.87)          5    10000000
test_bench_get[lru-True]            89.1512 (1.31)      89.6459 (1.31)      89.4480 (1.31)     0.1910 (2.85)      89.5190 (1.31)     0.2458 (2.46)          2;0       11.1797 (0.76)          5    10000000
test_bench_get[tiny_lfu-True]       91.4891 (1.34)      91.9214 (1.35)      91.6827 (1.34)     0.1867 (2.78)      91.7339 (1.35)     0.3141 (3.14)          2;0       10.9072 (0.74)          5    10000000
test_bench_get_with                137.0672 (2.01)     137.8738 (2.02)     137.4143 (2.02)     0.3182 (4.74)     137.2839 (2.01)     0.4530 (4.53)          2;0        7.2773 (0.50)          5    10000000
test_bench_set_str_key             354.1709 (5.20)     355.5768 (5.21)     354.9073 (5.21)     0.5631 (8.39)     355.0415 (5.21)     0.8900 (8.90)          2;0        2.8176 (0.19)          5     1408297
test_bench_set[tiny_lfu]           355.6927 (5.22)     356.9633 (5.23)     356.3647 (5.23)     0.5645 (8.41)     356.4059 (5.23)     1.0390 (10.40)         2;0        2.8061 (0.19)          5     1405450
test_bench_set[lru]                388.7005 (5.71)     389.5825 (5.71)     389.1170 (5.71)     0.3837 (5.72)     389.0796 (5.71)     0.6915 (6.92)          2;0        2.5699 (0.18)          5     1295615
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

License

moka-py is distributed under the MIT license.

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

moka_py-0.4.0-pp311-pypy311_pp73-win_amd64.whl (259.6 kB view details)

Uploaded PyPyWindows x86-64

moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (574.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl (536.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ riscv64

moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl (550.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ppc64le

moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (617.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (645.2 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (531.6 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl (360.4 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (333.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (341.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (341.6 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64

moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (319.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (354.1 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (398.1 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

moka_py-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (323.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

moka_py-0.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (339.6 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

moka_py-0.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (647.5 kB view details)

Uploaded PyPymacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

moka_py-0.4.0-cp315-cp315t-win_arm64.whl (249.4 kB view details)

Uploaded CPython 3.15tWindows ARM64

moka_py-0.4.0-cp315-cp315t-win_amd64.whl (255.1 kB view details)

Uploaded CPython 3.15tWindows x86-64

moka_py-0.4.0-cp315-cp315t-win32.whl (242.1 kB view details)

Uploaded CPython 3.15tWindows x86

moka_py-0.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl (570.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

moka_py-0.4.0-cp315-cp315t-musllinux_1_2_riscv64.whl (532.2 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

moka_py-0.4.0-cp315-cp315t-musllinux_1_2_ppc64le.whl (543.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

moka_py-0.4.0-cp315-cp315t-musllinux_1_2_i686.whl (608.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

moka_py-0.4.0-cp315-cp315t-musllinux_1_2_armv7l.whl (637.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

moka_py-0.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl (526.6 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

moka_py-0.4.0-cp315-cp315t-manylinux_2_31_riscv64.whl (356.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64

moka_py-0.4.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (356.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

moka_py-0.4.0-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

moka_py-0.4.0-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (332.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

moka_py-0.4.0-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (334.8 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64

moka_py-0.4.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (312.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

moka_py-0.4.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.1 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

moka_py-0.4.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (389.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

moka_py-0.4.0-cp315-cp315t-macosx_11_0_arm64.whl (320.2 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

moka_py-0.4.0-cp315-cp315t-macosx_10_12_x86_64.whl (340.3 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

moka_py-0.4.0-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (644.8 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

moka_py-0.4.0-cp315-cp315-win_arm64.whl (246.4 kB view details)

Uploaded CPython 3.15Windows ARM64

moka_py-0.4.0-cp315-cp315-win_amd64.whl (250.9 kB view details)

Uploaded CPython 3.15Windows x86-64

moka_py-0.4.0-cp315-cp315-win32.whl (238.3 kB view details)

Uploaded CPython 3.15Windows x86

moka_py-0.4.0-cp315-cp315-musllinux_1_2_x86_64.whl (572.1 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

moka_py-0.4.0-cp315-cp315-musllinux_1_2_riscv64.whl (534.7 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

moka_py-0.4.0-cp315-cp315-musllinux_1_2_ppc64le.whl (539.3 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

moka_py-0.4.0-cp315-cp315-musllinux_1_2_i686.whl (612.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

moka_py-0.4.0-cp315-cp315-musllinux_1_2_armv7l.whl (641.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

moka_py-0.4.0-cp315-cp315-musllinux_1_2_aarch64.whl (528.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

moka_py-0.4.0-cp315-cp315-manylinux_2_31_riscv64.whl (358.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64

moka_py-0.4.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (358.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

moka_py-0.4.0-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

moka_py-0.4.0-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (329.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

moka_py-0.4.0-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (330.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64

moka_py-0.4.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

moka_py-0.4.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (350.8 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

moka_py-0.4.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (393.5 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

moka_py-0.4.0-cp315-cp315-macosx_11_0_arm64.whl (322.0 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

moka_py-0.4.0-cp315-cp315-macosx_10_12_x86_64.whl (342.2 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

moka_py-0.4.0-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (648.6 kB view details)

Uploaded CPython 3.15macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

moka_py-0.4.0-cp314-cp314t-win_arm64.whl (249.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

moka_py-0.4.0-cp314-cp314t-win_amd64.whl (255.0 kB view details)

Uploaded CPython 3.14tWindows x86-64

moka_py-0.4.0-cp314-cp314t-win32.whl (242.0 kB view details)

Uploaded CPython 3.14tWindows x86

moka_py-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (570.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

moka_py-0.4.0-cp314-cp314t-musllinux_1_2_riscv64.whl (532.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

moka_py-0.4.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (543.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

moka_py-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl (608.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

moka_py-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl (637.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

moka_py-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (526.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

moka_py-0.4.0-cp314-cp314t-manylinux_2_31_riscv64.whl (356.4 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

moka_py-0.4.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (357.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

moka_py-0.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (330.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

moka_py-0.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (333.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

moka_py-0.4.0-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (335.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64

moka_py-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (312.0 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

moka_py-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

moka_py-0.4.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (389.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

moka_py-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl (320.2 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

moka_py-0.4.0-cp314-cp314t-macosx_10_12_x86_64.whl (340.4 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

moka_py-0.4.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (645.0 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

moka_py-0.4.0-cp314-cp314-win_arm64.whl (246.4 kB view details)

Uploaded CPython 3.14Windows ARM64

moka_py-0.4.0-cp314-cp314-win_amd64.whl (250.7 kB view details)

Uploaded CPython 3.14Windows x86-64

moka_py-0.4.0-cp314-cp314-win32.whl (238.1 kB view details)

Uploaded CPython 3.14Windows x86

moka_py-0.4.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (118.0 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

moka_py-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (572.2 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

moka_py-0.4.0-cp314-cp314-musllinux_1_2_riscv64.whl (534.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

moka_py-0.4.0-cp314-cp314-musllinux_1_2_ppc64le.whl (539.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

moka_py-0.4.0-cp314-cp314-musllinux_1_2_i686.whl (612.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

moka_py-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl (641.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

moka_py-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (528.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

moka_py-0.4.0-cp314-cp314-manylinux_2_31_riscv64.whl (358.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

moka_py-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (359.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

moka_py-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (327.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

moka_py-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (330.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

moka_py-0.4.0-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (330.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64

moka_py-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

moka_py-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (351.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

moka_py-0.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (393.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

moka_py-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (322.2 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

moka_py-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl (342.2 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

moka_py-0.4.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (648.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

moka_py-0.4.0-cp313-cp313-win_arm64.whl (246.4 kB view details)

Uploaded CPython 3.13Windows ARM64

moka_py-0.4.0-cp313-cp313-win_amd64.whl (250.7 kB view details)

Uploaded CPython 3.13Windows x86-64

moka_py-0.4.0-cp313-cp313-win32.whl (238.7 kB view details)

Uploaded CPython 3.13Windows x86

moka_py-0.4.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (117.5 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

moka_py-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (571.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

moka_py-0.4.0-cp313-cp313-musllinux_1_2_riscv64.whl (533.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

moka_py-0.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl (538.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

moka_py-0.4.0-cp313-cp313-musllinux_1_2_i686.whl (612.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

moka_py-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl (641.0 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

moka_py-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (528.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

moka_py-0.4.0-cp313-cp313-manylinux_2_31_riscv64.whl (357.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

moka_py-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (358.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

moka_py-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (326.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

moka_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (329.4 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

moka_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (330.0 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64

moka_py-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (315.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

moka_py-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (350.6 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

moka_py-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (392.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

moka_py-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (322.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

moka_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl (342.1 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

moka_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (648.7 kB view details)

Uploaded CPython 3.13macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

moka_py-0.4.0-cp312-cp312-win_arm64.whl (246.1 kB view details)

Uploaded CPython 3.12Windows ARM64

moka_py-0.4.0-cp312-cp312-win_amd64.whl (250.2 kB view details)

Uploaded CPython 3.12Windows x86-64

moka_py-0.4.0-cp312-cp312-win32.whl (238.7 kB view details)

Uploaded CPython 3.12Windows x86

moka_py-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (570.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

moka_py-0.4.0-cp312-cp312-musllinux_1_2_riscv64.whl (531.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

moka_py-0.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl (538.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

moka_py-0.4.0-cp312-cp312-musllinux_1_2_i686.whl (612.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

moka_py-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl (640.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

moka_py-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (526.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

moka_py-0.4.0-cp312-cp312-manylinux_2_31_riscv64.whl (356.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

moka_py-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (357.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

moka_py-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (325.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

moka_py-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (329.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

moka_py-0.4.0-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (329.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64

moka_py-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (315.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

moka_py-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (349.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

moka_py-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (392.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

moka_py-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (320.4 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

moka_py-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl (340.3 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

moka_py-0.4.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (645.1 kB view details)

Uploaded CPython 3.12macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

moka_py-0.4.0-cp311-cp311-win_arm64.whl (253.4 kB view details)

Uploaded CPython 3.11Windows ARM64

moka_py-0.4.0-cp311-cp311-win_amd64.whl (259.1 kB view details)

Uploaded CPython 3.11Windows x86-64

moka_py-0.4.0-cp311-cp311-win32.whl (249.4 kB view details)

Uploaded CPython 3.11Windows x86

moka_py-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (574.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

moka_py-0.4.0-cp311-cp311-musllinux_1_2_riscv64.whl (536.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

moka_py-0.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl (549.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

moka_py-0.4.0-cp311-cp311-musllinux_1_2_i686.whl (616.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

moka_py-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl (645.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

moka_py-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (530.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

moka_py-0.4.0-cp311-cp311-manylinux_2_31_riscv64.whl (360.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

moka_py-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (360.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

moka_py-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (333.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

moka_py-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (340.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

moka_py-0.4.0-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (340.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64

moka_py-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (320.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

moka_py-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (353.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

moka_py-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (397.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

moka_py-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (323.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

moka_py-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl (339.3 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

moka_py-0.4.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (647.2 kB view details)

Uploaded CPython 3.11macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

moka_py-0.4.0-cp310-cp310-win_arm64.whl (253.9 kB view details)

Uploaded CPython 3.10Windows ARM64

moka_py-0.4.0-cp310-cp310-win_amd64.whl (259.6 kB view details)

Uploaded CPython 3.10Windows x86-64

moka_py-0.4.0-cp310-cp310-win32.whl (249.9 kB view details)

Uploaded CPython 3.10Windows x86

moka_py-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl (574.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

moka_py-0.4.0-cp310-cp310-musllinux_1_2_riscv64.whl (536.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

moka_py-0.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl (549.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

moka_py-0.4.0-cp310-cp310-musllinux_1_2_i686.whl (617.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

moka_py-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl (646.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

moka_py-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl (531.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

moka_py-0.4.0-cp310-cp310-manylinux_2_31_riscv64.whl (360.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

moka_py-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (361.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

moka_py-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (333.6 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

moka_py-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (340.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

moka_py-0.4.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (341.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64

moka_py-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (320.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

moka_py-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (353.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

moka_py-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (398.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

moka_py-0.4.0-cp310-cp310-macosx_11_0_arm64.whl (324.1 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

moka_py-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl (339.9 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

moka_py-0.4.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (648.2 kB view details)

Uploaded CPython 3.10macOS 10.12+ universal2 (ARM64, x86-64)macOS 10.12+ x86-64macOS 11.0+ ARM64

moka_py-0.4.0-cp310-abi3-android_24_x86_64.whl (312.1 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.10+

moka_py-0.4.0-cp310-abi3-android_24_arm64_v8a.whl (300.2 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.10+

File details

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

File metadata

  • Download URL: moka_py-0.4.0.tar.gz
  • Upload date:
  • Size: 91.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0.tar.gz
Algorithm Hash digest
SHA256 2689db778e6f90c4e76e561b201070e450cae773a10c3e11b1e2a225c319c39e
MD5 677f4696b367c9fc0787817ad0eb7566
BLAKE2b-256 d74794a30cb8b5e344a6f7065104c98c188ff6f830b87f0ff9d3a0608e211261

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0.tar.gz:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 259.6 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 d466ca6511d537f6ac925b488b8c9b72ea674d1ee3e6a07cc9fdec0eae473313
MD5 56139f9f7a2d2d4b18d7d099c1856cbc
BLAKE2b-256 b206673d32ae04203f7b26e160b3c8c2dc70b66f8d2b4e29fb9556a0164b3d44

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-win_amd64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 574.4 kB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5e91b9905d2b18a89aa738fc6f52420b2ceb189a25259e602d97adf119fd0882
MD5 6ade612b4e747054f0f1198fd797d6d9
BLAKE2b-256 dcfeb81fe8fd11d9532009c5c04e92ae8d4cf9d417130952e59ac113d02af7a2

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 536.2 kB
  • Tags: PyPy, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6bfb6b4a4d6a603800366d8c3899a7398896ce7a99583fae7f6bc1ecf3fccf34
MD5 8ee3daabb7f1ce578b75b0ae6bd6a65d
BLAKE2b-256 749077a03d1606aea62d737375e3484cdff0cb804bf6c371ac01872776b0a139

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 550.4 kB
  • Tags: PyPy, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 04f05411cad821bbc1e63f821166736244bdee7c899f1713cd5f3460c4c77441
MD5 8cfa325081055bf748f5e8029be5754c
BLAKE2b-256 af772337849d147c39c79d8ce5617fa1964c43cd5a5a80b5ba0a3c266d68b84e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 617.1 kB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 57260606e864d701a9513800b80db5c7eba039578e2d019d4be3ae4d8219aecd
MD5 8575000578b91d2133044264819240aa
BLAKE2b-256 5373e9b9fe5423661b5c9bc404ff5cd44eea519d13905a798b2870de08531c41

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 645.2 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 aabb3ba46b2f37cc9d431539edd9002bf413170521f6cc4ddec850df8e21898b
MD5 df0693e11a5aafdaac9c7dc70f9d1116
BLAKE2b-256 2aebb09e1ac6f11e6f1dd5471ebfa4e2368e60518e0f0d9322afff2a1caf15b5

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 531.6 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 21d98f64bd37828175c066a060749e172b5f0628f1eb0939d6a4d1faa961529a
MD5 e4e4b7bd12843cd843b22d641c5070f1
BLAKE2b-256 3e6c8da6e8d4b9cb4af2a796ff046a93cbb4223a98bc20602b6cae79120f6259

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 360.4 kB
  • Tags: PyPy, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 00253ba029e589c6d75c7c2115677f78f9985a05d065d4b8287d9153673dfec4
MD5 7f885d31cb6ecb536c423aea4e8381e8
BLAKE2b-256 04fa07a3a56805cf53c3cbdc9f9e00497225e6c30e055a3839fa6e63da4c7529

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 361.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2dcb623e8cb78f4d294cc097c91ac26df34e1804a0d24f466483d012540134ce
MD5 ffc07465bd6b883c40a859419a157cc8
BLAKE2b-256 179dd5f7af50d2fa480cb6aef16a0da568ed2fa7c44abf03c145008f07785fc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 333.9 kB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fb9f40afa5d181d380f98c23894807a5205b5771a5429bf6ab97fb9ad66740c7
MD5 87eea9c558e6fa778670621f204e1f89
BLAKE2b-256 bb9c1f81d680947383463991af1a43afb9d7c1cf3bc21ff6b11f9f8dbe3bc2d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 341.5 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e491a4d99dcbf433683aaedef5fcde4b60687d1e9e75a7f8f8e0e7da9636ac70
MD5 99ff486ac35a69e6b749e22e012b2acd
BLAKE2b-256 2df2ce0ec2dd00bf3c466ec61f35a418b51385c64ac72d825ce2bb39bfd32ee4

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 341.6 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 55d52d0d0cddb7a78f3282faba44c7684bc5cbc6ad703d82cb31f15ff7efc8e0
MD5 c756131349c2941392c4ab2dd8994090
BLAKE2b-256 fc2b594b3c116b38d9bbc21fc2fcff0a3cb28e2fdb841fdf6718fc6670ace791

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 319.7 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 1d9651a53467dc7abe0f76b4ac4196d56a5b140b0086a6a9800d2d8862feab7d
MD5 bc36f8c2c2a31d4c1e78f8061edf66d6
BLAKE2b-256 81d90706379b2e5e2c1dde8414f22fa28aee1074ca5a8eeeb2ddbc525beda54b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 354.1 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0b753fb5c8df66bd9dd9a2cceb9654ad890acd22fa1440472138cd71e2858715
MD5 7cb5e5108b41e9da1b155f028004ebae
BLAKE2b-256 f46dfac325db31c240455054991f55af8d2eb2e5c5bcb960225c1f05a6aded6d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 398.1 kB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cc943039c2d901b3b9d22cbd99113129d7b524d04a402c89416b6d9c7333e1d8
MD5 94f0e581616410c48a5ed1e5b6505aa8
BLAKE2b-256 bee8eef5d993f11c9c68dfd544bbb8ae67133ce4018376fd67c82423cb57ffac

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 323.6 kB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8eeac20ed752d7d24cb36b52998e91530d85bba062a59d3426c50259683754a2
MD5 0ef6a1de01272f1ca5bd2007b9b4e67e
BLAKE2b-256 9a1523a6f6cbc6d22da7e520ee6e5eb48c2008f024f033464094a06e4a55eb61

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 339.6 kB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 c12c5654d078fd8f019f5476d5c805ca4412227c00a08cdffc7aaef87536917f
MD5 45d89218c05c39d0ae58b4e90a05fa18
BLAKE2b-256 506a91d7d47a262b6ab2c33d41ece47a8d975d36f3ab80f13fa1eb726f74e757

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 647.5 kB
  • Tags: PyPy, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 cf4a82f0dae7a42b97119771b4101995c16647e42bc9ffef85df6066e99a0a3d
MD5 102725ac8ad22c3cf6b4b1b9ad3a8784
BLAKE2b-256 ae3f526b14f450ee64cd2b5e09cdfaf3d831d730d5a59b114763ae5c34959790

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 249.4 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 62e72bb44ce158243b0e46f1b51523f6c6d67ff3d173a218d706863561c51e91
MD5 55a9a2a66f302b93499b79e4bf420199
BLAKE2b-256 136ec27d01c203e6ee799380e3234c31558e1be5c22914194f9f48c6fb664562

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-win_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 255.1 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 2deda1c4900734052af2cc7d73cc7d4eeddcea01b68779c4cce1fca1b713cba8
MD5 730b0ff7ab4f3938231646fec5d4013c
BLAKE2b-256 9c22717b961b2c8aabbbfb1cac720bec612ffd2a600c6d7fa4c4b839bd4571ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-win_amd64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 242.1 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 bb904d5deee99a9c4a41491d79e812c17ea4e2b7491493e4bc850f97924cd4b5
MD5 35c6089c1225cee924c0f67e93915e57
BLAKE2b-256 864db90ecdb6bfb6f7e9f2ddffdfb0e9f72424173e5610464abd37180a152730

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-win32.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 570.2 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5b7456d47985db127bfaf268d510f690904a7d41399daae193b08229e6ca2c99
MD5 9568bdb728ad48249a5824fc9f8041ff
BLAKE2b-256 cf225238a7b619a259fdfaef6b757b9f14319fc0822547f54f6d9ffe85a148b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 532.2 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 a49df128157045c892281da8778f975cb3de4effb0d507ef490b309e376bbb5e
MD5 36f57a5734081b97f49594b4f2aa2cbe
BLAKE2b-256 eaf23176bd0358ffb1a73a8acf39a40630a2c43418b5286752c9563280e87f7a

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-musllinux_1_2_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 543.1 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 530846dacdb1714b82f5987ea64bb4b63d3e4183b1580289a591a55e4758daac
MD5 8221d33a57f9f87d9a83c8d60ddc911b
BLAKE2b-256 b1b98259ee62f42d1cbf143ae9d0ffc3bce3fc7e15f2522940d3b65399718a86

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-musllinux_1_2_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 608.5 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 efc8cdca0f52015aae9c622d829834c1b9e356790d0df2208a24d7b23d1c060b
MD5 55ab188bd7205757702bd3caa5aa4b05
BLAKE2b-256 c9a88a8b511add992d881219762f0ba8e6b149acf0b48da4a14941c0ff8ef9dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-musllinux_1_2_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 637.5 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a9fd7aaba7c49872bb33bf69f6b11766638e5f30d9f8a0c757894f44c6369782
MD5 39257424f484e1bfce216c570af0cc6a
BLAKE2b-256 fe3aa9351fc43f8eab6f0b9c75deae44ed2363967ca3a8576a701bcfbde0129f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-musllinux_1_2_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 526.6 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 dbf3ca8c6b8351c774c3e8ae616ba8704654fd4432d3d4de99aef99017e1846b
MD5 5ca468531a6a8c5ca2de56b6cb60d295
BLAKE2b-256 afc06add1b6d2f073aab14d5a84be72b5862efeb5ddd17c6078ed62eb3ddc18b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 356.4 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ce69a929ae05eb12eda8f81fa87aa6d2f778dde410f6c058dd09c8893567e084
MD5 70fb021b508e502cebd9e408ed55696e
BLAKE2b-256 6b23d302a34fe5e0fe78be7b89b9d762d1bc0225adb9068f5f079f73c337fe4e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-manylinux_2_31_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 356.8 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8916413bc29fe1c93ce7729c5ebae2994b0903c5304b804516216edf07c9fb5f
MD5 f95358633c4dae8df8d5231a56ab478c
BLAKE2b-256 6a6bec7a4ad31f022cf5961d2085b418ee1e1a8f256fd4211d61db28732f543b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 330.1 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d320b3907fd9a0e2ec6cd05937749802a5c124b292ac86337a31c3aee0a55feb
MD5 10331e9453be2b026966da797e6486a0
BLAKE2b-256 38459e8f6e7aa510281dd12660dc2710fc5a5a78d0a84cd7f6a5b1afce94bf27

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 332.9 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 80b858bba8a4c6049184b42c8111b0c88e80b74dabd369d48bf97270dc53049d
MD5 af90d6e13b1f50102317758970f5d8bd
BLAKE2b-256 98d7866ca5aed659dc912f3a165e5ecfb8edd538aec0ce38e30dd428a1d196fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 334.8 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 238c1b70cf06a6b740091bdb1723cd9b8feb257518fbaeae6ef2ba96d3f581f0
MD5 fdf4e2b7780989aa135d398e9f0fca6e
BLAKE2b-256 831970212e7563bb61d204a03a86b1a1c004355865c22986672520aace2b1c07

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 312.2 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2813fd15eb26bbdef89e8d8a8a0c27c196719f36267526e73ffc308dbb4355cd
MD5 8665d1ea73bb515b8e7575338637b275
BLAKE2b-256 41ea31dbd2936bb16858a35f51deadde1646f7166a026db642fde06021eb074a

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 349.1 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4c85e8fa3e19732a71f140c2b50bc03cf2f808d48f582300e4e4c5abcd0cf161
MD5 1ba266f77c4d00a00ee19c04d9992a07
BLAKE2b-256 dcc3bb4aca9e46fdda1472b36fc7c9c4f101580b1102926be3db2fafc1870f07

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 389.2 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e069c0772e91ba77354b20215b81c4b8740643c665927ee3af627841566881cd
MD5 618b990b2d271080a861c804f3d17e77
BLAKE2b-256 d3697d6caeeb90d611955bbc92a44241bc2e723c235da0dd98aacb483587264c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 320.2 kB
  • Tags: CPython 3.15t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 08fdae7d6bd4cd269fc9990300e86a15645b737b6c0c648f349a2eab4a591db6
MD5 31c12d1e3425ee6824f252d353d83ea2
BLAKE2b-256 8eeb631db4b6f0d125e22fcda1bcdfd28a20370cdd1c0c31590fe35d1fe8874e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 340.3 kB
  • Tags: CPython 3.15t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 97a56e0f6d95bf3018340e346fd0e7fa03216bde73c31d89970a53a8ce399c86
MD5 9cc428b806c7caa41ca3b1c89b46e15b
BLAKE2b-256 f28edd05c6d76e174e030d39412f2fbb447b37ee0f9abdf4dff2d359d564d997

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-macosx_10_12_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 644.8 kB
  • Tags: CPython 3.15t, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 7e67d2b74c7ebdf05284f8fb52f2b8bd9ec012da9ba45180f00720acc6384753
MD5 dfcff25e7cf0e14ca90a200b924e711a
BLAKE2b-256 3b42a7d2377abd83a6123768249ce7840c330e2afd5429cc40440234282dd397

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 246.4 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 e2eda4b796c897c8e1b8fe54a41c1350ccbfe023288f534358b329f63dcf77d3
MD5 1a80529de9c8ec3bd2eb1d4c5d6e7fd9
BLAKE2b-256 e7a4860d3b5a8ef8f52b7966f043acf3dac92139dd8b1ffe8426cc225cd21de6

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-win_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 250.9 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 8519e5be293626b0e06c38531ae35d559b5b30a482e60cb0896cb6abdb018ff5
MD5 62d70dd1d1a1ea1fce8d15cd32d40c48
BLAKE2b-256 9a252158c7210467d8b9370485c09ef46bd56dfcf930f8a63ea22511eec6ab44

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-win_amd64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 238.3 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 dcb77306e64d6af1e3d408a5709efa862c95151f05bd5f36ea6b5fc6062d91b5
MD5 3a96b9e034a9b442e3a2707d657b4b50
BLAKE2b-256 aea3f194f6ba40b682c0a390872a05038b4e1f0ea48161ae0775d4134520764a

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-win32.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 572.1 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 23a915b73ac4e953de08227e49a509d82ba6c9a057b107846cefd8c776ef8b76
MD5 a7d2a9b5a94d470d07dcbafabd74069d
BLAKE2b-256 7030407d490d156f6fbae4071d022adbfc97c37f9bc38bbba7f22a5e496b40ce

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 534.7 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 8cdcfc65860472d8e860ce1ea8198ad32a503615c75bb16810c63637d87e5c32
MD5 cafc2a965f17756aadfb057f3b8f079c
BLAKE2b-256 7000655f1b597a86f3f51b2eb39e874a32f9a345c6162cbb27536529e162f168

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-musllinux_1_2_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 539.3 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 6bff2f498098e3d36470352198e529bbf10e1f22922b0dc2e78aba7253e85f65
MD5 1a3fb3a0c8a97956585b3312d145b4a8
BLAKE2b-256 ab870ba7a09998bda1b94ee91c8920d4a7db0a9b900e775ed889992d702c3c76

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-musllinux_1_2_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 612.9 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ce13668dc52c78194acc4c24ccc1373adc28447734ec837bf093a96ccc1b0685
MD5 d0e65d287852df6b5cd869ecab84a2a6
BLAKE2b-256 3d3ca7e178297e2b4a7c1769e545f1ca0706f590dd24744f08c94a6251a5635b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-musllinux_1_2_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 641.5 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 19f1a3c1e6ee162594e7aa04cebd3e52d96c4bb1b6bcdcd403e6dd50b10fe097
MD5 3ebb0ea4f11d4616cdd98766ed25e049
BLAKE2b-256 915cc5090d3fe97207a120be1a39774771313629c8daaa934a84cfeaa2a0b2c1

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-musllinux_1_2_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 528.5 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c333ee88a78f4e8a8b60cefad48f73d948af376307971462b7eddb6529dca0a7
MD5 8594b1f4ae6c03acc68c12ceaca9fd4b
BLAKE2b-256 0afd5c3e205b23e38eea2eafb6dcf8234e245bc2e925c34b546b8150e0f262ee

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 358.7 kB
  • Tags: CPython 3.15, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ce4af9c2cd47a97e549813a49bb8238405a4c60d2e6c0feaa0b7f29314415ae1
MD5 4158b9e4aa7eede816271034231b3f76
BLAKE2b-256 1c5cd6824dce96a0692b62c2cfff374127665c1712eefbdc0dbb83497b348f55

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-manylinux_2_31_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 358.9 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 183e4634e21663fa3e0dc4591034d9a8e3cb3e9abf5d4aafeeed6be94d0f9de6
MD5 f50d06e37581eb04249baeb644d985e8
BLAKE2b-256 99731ff65b6d2b7e815bb6b01d73e5a486d1c2d76701cac40d5dd14103cece3e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 327.0 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 d60e899136ec8acd0aaf80f138de2a44ff770c7ebaf67ed4f452ecbf91b7369a
MD5 4a1abb3f90d9adefdb714e0f62ab3131
BLAKE2b-256 f6b16137a414f4f50fa873ffce7c9b051edc04ccc5fa4c674d41ab8c7f7e89cf

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 329.9 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 524b49485123072120aaf2914dbcc55e7b8b81925cd0a6459b732e8911e58dee
MD5 01c6e90513675adf4e8eeace1bd56f0f
BLAKE2b-256 0ec6967e2add2629a6b6b35f188c3ba84b2a28a57e7905fe56448228166d859c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 330.6 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 cde31011adfafe6fe543d808032d9db17019996524281af6fe4de69af5468618
MD5 3e4c67b5e2c43efd968ee40aaf4f6025
BLAKE2b-256 65784df9b908a999bb026d8ca6863407d6c2ed45b485d68f01064f4ff4c95c5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 316.2 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ffa7f2d425b05d021e92609ec8f4ab2c6fc3fa4de0a2cbc0dd63b00b8fc2ccd8
MD5 93f6cc96ae97d54aa326b0bd3c33c54f
BLAKE2b-256 2744d6568537cb2367f84e594cfabefd907c7c2a902a95a80805620cc0b7d62e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 350.8 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a52f3914c95a6b1662a39d99772b75476baf1e72496970165bc99d5851300889
MD5 dd3d2a804120a3c0e0aa12bc7e12563e
BLAKE2b-256 373b71ffa2e06f55f9c25190dc0838f9f6fc1076dadf3f5d1dcd1ed998a20446

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 393.5 kB
  • Tags: CPython 3.15, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03cf3d291518e12b923fc5c249bce3999b4b3b53a3a05c81b09e052c3fd17440
MD5 5071c7149ae32c12fda882606e8ea141
BLAKE2b-256 4e60d8ba8bf06e8b273120f1bfb8f0ab78be4a2044aeced07c435515281cccbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 322.0 kB
  • Tags: CPython 3.15, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0bcbe94c68bc4673e6e691497067a2a99f2bfa1b6707cd7be781a06e23235fa2
MD5 449a6d2c5f94378cad2cfa83904f7253
BLAKE2b-256 220c4e3f75f8ba2599e15ab014ec604a27806ca4896eafa3949f21ae1cf7e06b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 342.2 kB
  • Tags: CPython 3.15, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5a0be1f32547b833a90f83649b5d0935ba51bacfde8c05d64fa1a5de3c8afcf3
MD5 ee2bb5c666e842890fd72527556ac1b6
BLAKE2b-256 8c773133cd188c88903566747b1a6a6b168b13883d5476260ff29c17ed23adba

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-macosx_10_12_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 648.6 kB
  • Tags: CPython 3.15, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 0bfe16783e4a52f4deec870ec2e77cd5eb51c84a0632df7c7487719e8d9b8758
MD5 650aacdc3b9648fb0568275550c8f9fe
BLAKE2b-256 368f2761166d66cfffd0cab95553c90601968b12148a67d8c4507bf2d92bf8b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 249.3 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 23acdc5c17c8c94ad3e0820eeeb86304cd1067dc641cc9ea67cadefd2bb37ce3
MD5 263d58e0d6a28ed4da2d73ef63ec832b
BLAKE2b-256 9be210ff07d98469656a8524fc16f44bebc5b2bf42aea06078b9d2ebf41eedce

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-win_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 255.0 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d51df2b09ab5df5edfd3ed53a955706e1b553614532e92885eb8fe2aa5c16396
MD5 e6377d28c4cd34be8edc179c74a82a05
BLAKE2b-256 c41f7f920cdfda63503c27916bba4e3455972f3254fbf89d2ea4c59dde2a41e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-win_amd64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 242.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 1b97f3611e542eed8b27b240970cf0308ce56394f8068e0b27f49cde9c959c4c
MD5 0b9bc33341cd7655ec14441514706881
BLAKE2b-256 bf964e86d2245a4faa13c369085597192d90a7513bdf45c49aece8c4c63f91d4

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-win32.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 570.3 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 80fd31c915e8b625df2d318a65ec768b40328692bda6a1ab2847a7ec3b1ce39c
MD5 ed8031b4b1c1e6e198d2efa1631ce650
BLAKE2b-256 d44c3133222a2d7afccb082b9e4e6ccf953a54b4812443981a29e38d8adeadf6

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 532.3 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 739aad8aeb59b7ff793ca306510451860a6480b469e1fc9c8808b1f1e65f0664
MD5 4c701bdc4e8c3d8b4d6e3ff6016c27f1
BLAKE2b-256 d425eb2c84658f1ff51d29c5e04599f3e0d6adb724d37629dc20d24b3574c727

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-musllinux_1_2_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 543.3 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 0afba9c5485516dec4e4cc79c7c0712190b2a1b014cef8cd33f6f170386f3e1d
MD5 d70b5b220750a8afbc87560607724c61
BLAKE2b-256 80caa67fd9975ba70d098314d7a04309aa7bb31c0a5ae0a2e0446e9c456435bc

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-musllinux_1_2_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 608.3 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 89d74e7a3ce3c7326966866d400a80dd1e2eeab9eca1b4981a653aeb4e496bba
MD5 85a757eb27da263af5a46dcf37a2b5e3
BLAKE2b-256 feb0d04ea10ea4f0e5e4fa7b4b1c799a9c80c678134b6bf0a1f50ad05a116f88

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-musllinux_1_2_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 637.2 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 4bf5b5b7d44ac2980e400ef16c73a0f57a9b536c02f7bb4e8921afc7969392f5
MD5 fa2add4ced4dae190b5d9b68b2c8c484
BLAKE2b-256 630f026360fab57a0d87ace4f56b9e9883d544f21c6c66db80f75efca9310435

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-musllinux_1_2_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 526.6 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7bc3b5d88cd7f1444662f7d1be7fb8f33d43505ebfab71d18757a4a72fafe72e
MD5 a11fe9a63397fbdf8fade67c5ec74d30
BLAKE2b-256 67ffe9a5ac0a04b7bbbaa787bd17e2d5c5c2c1136988806292a4989676e4cc2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 356.4 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 6535e6ff66eba1096840f744a4ee1632096310e74310775515522c044db87e33
MD5 14916d0708c384cf6077ad1c97f7ba51
BLAKE2b-256 529204320923381414fac525a358221feddb4dcb0892a3c428d359ca98fe9d41

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-manylinux_2_31_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 357.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 86279b53022a3e9b1989c60836402f1740626359151156f23dd8499f5a436ed3
MD5 3b636ab10475732e969036437bbf4965
BLAKE2b-256 699fed07a05da48632f2fb627a5edf33e4061b672d7140bf95c75186ca531ea6

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 330.2 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 f5268db4d42402823e9c83d9cd417efd4afd31791a896e41465358cb46995300
MD5 15a2ec79282303fc4bd8e2722d2ae2d6
BLAKE2b-256 fd810f263dad0b36890d35b7ae8f20aae92d0f334e59b1314994248a1bd0343c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 333.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e0843d0fd5d8e02999613f462b2a4d790beb9d6b79aa7745b46bfff2e3c14510
MD5 e2fca889086a43a5220191ee936642ac
BLAKE2b-256 4b1f78a34c564e6b376997ec7f00a5585867ac4a1c9feb0b54f58663d0dba31c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 335.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 f2783903d582c5b01db35d61fac87accafb66feb8b5d0f32be30ac515f7a2c7e
MD5 0f5654fda200dcbc6494cabead3e5fe5
BLAKE2b-256 bbf71c406585bb51d7055cd59db4e2e499ad66546fd75c23ab77cf2e7f061192

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 312.0 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 2d5dc07263dab8a68754565f9448295cf7f4238ceae2b6a36b20e4995973ec8c
MD5 692cf5efcbd4f64f4ea7fa7b7e1bcc7a
BLAKE2b-256 6052cca7348d01096dc7f24498f936fb985362c9f634d0e058421c91a75cf482

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 349.2 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 3b87e8250ce9b3bc5258b5f6ca962128d86a07ca0cd67123034b6d74f7a4eae6
MD5 f89349e092213fc16730c5b838974aaf
BLAKE2b-256 3ce6fecb7dbd925eff2f87904ea682ab6331a6d11dd48483ed21de6f7f0c3a0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 389.1 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 96b4596ff908ebe277f7581889e7830b5a38fbf84c1b73f2d5c23c2335d198a4
MD5 f6c3b029553bbd17cf01183f7cc2a799
BLAKE2b-256 62c77ff2ff0fb2ef48cb727f1075dfc455ab0584c3f32d2783e47d3084ed1858

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 320.2 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0b3f6ecf7b2dc4eea3ad8f32a8d1f3330e035158b3c6831be52ba3867ece0169
MD5 a628cf4b4fe0ae4e42a35c01e244c287
BLAKE2b-256 371c64f2591235e9591081cf9696af82a173c39686b12d811d5f1ce3f6f6b43f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 340.4 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 bfef9c49d8970f3452262583f91e0802d63095ecd3cc653dfcc8cd8f04ae8e9d
MD5 399bb50531e8a011d95fdd5a8f2f6871
BLAKE2b-256 b1928d93c3fe20e1efb893aa67116e29899dc9fb2ef9f0654757ba5cc7e7565e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-macosx_10_12_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 645.0 kB
  • Tags: CPython 3.14t, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e085f23d13bd0469ea4f37b1ca6629a43f47a3b0ebe426d71acaa3dd66f7dead
MD5 7350173d1d3117242074c4f3fde7fe12
BLAKE2b-256 3efdf094836ffbc9c3ba4ea35ee84e3c87793da4a851cf01b65096c70fc9066f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 246.4 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 25a86e94daf2b83e52de2e412686b4e3c0e4bf85d8d0edeed14b56e8cd2bdf2e
MD5 519d656db0a437fed09dcd00961e6c79
BLAKE2b-256 6cd43e97e010d3a949997fe3de4c2d8bdb648c9f2c3398ce9dadd7653a856392

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-win_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 250.7 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 dfc48d7cceacd796088f4f431de302ba60bcd135eab4766648fd9e6eb20ec073
MD5 53db81ec496febb704370324498e3899
BLAKE2b-256 bb1c512551d72a97c8a6a2b9b5bcebbe1fe1521f861ca50e712b1b37ab44bb5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-win_amd64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 238.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 2e73aace124a988bb87e6fa517288b1bc39ff407639ad7ee8a019fb83f94c83a
MD5 ccb4f13e83e7c2c6ac82100ceb545882
BLAKE2b-256 2a971df48e4e2828726bd3cc5f6adb3ab53be2dddde12e688fb9748bc93bfd5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-win32.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
  • Upload date:
  • Size: 118.0 kB
  • Tags: CPython 3.14, PyEmscripten 2026.0 wasm32
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 c410aafad5471bf1718d7d326c6b1f48db8521393f1356ead0c6e79a5b92b2fb
MD5 22bb1b623ad7c1816864420a36e774ab
BLAKE2b-256 24142da5b77695946f4d8467522e3b20a7d2d9fab4025c97f7b2cde51abfad73

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 572.2 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1cf51dc33f671506795ceac04f83f041d3fbacbd500a4905201978677f3bf877
MD5 f42c0ab6cd542cee5b0b40e7742848c0
BLAKE2b-256 ee879107527f975737d86104e258c29ead7e6f6e3be735285169672a9a7044bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 534.8 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6f92ce6d0d7e0c2f13cb3ad1f06d99431a29f9c42fdf6ef7bcd60c6d9712b2c2
MD5 c5e5abe0258145dbcf9e27b9cb32ba50
BLAKE2b-256 86625b5606b8cdf81d13f567d32e46290d9db77eb628f3a6d7c7a2d50684c682

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-musllinux_1_2_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 539.4 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b9066c1011b1a36f0a47274887eba73ac636d6c25ba770ba9c73ffba7d1845e3
MD5 bfd124ed912a8a7d41bc0925d8cf11dc
BLAKE2b-256 27e9599e82283a77e77891758d282bb9a6b68fb434faae4975d20e33546fefb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-musllinux_1_2_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 612.6 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b7d0b2650252bced73ae651e04069068076db028e57fbdbae89a1a4062e03e05
MD5 d4448840fa891968e938519b2df808af
BLAKE2b-256 84cd44da2291591763bf9d279aa6b5ad9f9f75d929fe804fd8eed8cc71d05766

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-musllinux_1_2_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 641.4 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b0670015b80fe767d1f393efa9baa4ef8d0560602dc6e4242adea48bb3ce457f
MD5 1bec5fb92840f6c2e68113fdf80ebec2
BLAKE2b-256 e7e0b5ea2ce4706aecbd3a884a04c092ffef3e903164ee5bbd27cff37233f553

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-musllinux_1_2_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 528.7 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06b8fe040799ae6e106d46badc39861085c8fc7c1aa0876ffc38152ee1ad0d96
MD5 84737af20f4fa8a1b0a03e5d65283610
BLAKE2b-256 1440159a245938b62d293df33e96818843a848d222da0253adceb612fcf3b3ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 358.9 kB
  • Tags: CPython 3.14, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 9c8f1376f1733367d5627f12fa9360ba2d6e9dbb615674971f033dfe8d6e6845
MD5 7b36bcffe7bdcc3f256c14035fd641c6
BLAKE2b-256 85da5352ff72d3aea32c61faecaaaf6e59f5fd1a2108764c338a3fb40895616e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-manylinux_2_31_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 359.1 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 18240a818e880ed42e875594989930b220a837e3523d6da5e751e3927f340f6d
MD5 2631d4a0f27d966f28e12929eb28d863
BLAKE2b-256 ebca7f670b632953cb40aa85e2e83b05d74e88467b6784634a59bfdfcfc44d5d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 327.1 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 fa049cd49b05c1714e2bffbe71ba4dd5586778862b2241a78204c8e3f146cb73
MD5 9bc35c0e1fb9860611b94a2aaf06f3fe
BLAKE2b-256 84fdc28b309ad8c47f5f1e7fd8f9fa9932a04ffe9823adad2eaafa5aa2e67a8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 330.0 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 68336cce0d4c73ddffde0c9256249bedc6f24e62b461cdebbfb0b326cfba0972
MD5 d351da5808e8c9951c2f4f592ecc3e9f
BLAKE2b-256 99381e81a11d5b90f313d9ab1cd1774266956a92b6eb07ef4408cf09ae691805

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 330.9 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 23883c47ab3fc105b696148c13092e45db48bad66782f718c730ad3677800785
MD5 990535c04765004742b66ab73e7a025e
BLAKE2b-256 2f124c482fe51ce4479426fdff1f7868d781403ea38e7932fb4ae40e58e22c0b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 316.0 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d76e8e807b7dc07735b26f13640b55fe9f8ed5ffbd1580e6d80f390778e8e1a5
MD5 4ca2aadd495c54135f6544b75426d5c4
BLAKE2b-256 c678a9e5bc34436316786eb66a6b24415db7df2f3854b07cb3452b7de1faca46

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 351.0 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a2cdd4d8cceba7902e7502168491b0a04328b48964a483adc208cb7a9a18a5a0
MD5 81fbe6c933663102108eb672bfd02b10
BLAKE2b-256 9cb4b7a64f972557f2890a8b0e315d92b0932eb53cc9efc3a8b3488f16275cec

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 393.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3db9fb8efdf27bd16957096fa2b72bf3d05085d090b15a49a1f8c32eda831e51
MD5 473b61a88d5171d28a45c75ffc583b3a
BLAKE2b-256 02faadd97e25705908ebe42ee8eb821e59188e53aba41021e0b7cb3fd4e0c6b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 322.2 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4c06f49c4d628a0feedf5761b3a079078bf79b116c4b0631244a084dc4136520
MD5 7b160fa72235f845fcf34254ca27c62d
BLAKE2b-256 5da3142a998953f37924a502419d1fe1845b68e9cae16af67e3a4e2d388ed209

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 342.2 kB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9794b5510f0b90a2540e33ee72e17adf5d10a067f9e7ee2e1523d8ebe590d453
MD5 8b34083a262d522d465b314924fa12bb
BLAKE2b-256 f0e9365d0994ad0a36d6da735c8654f6295d252e0432eaf7fd29d03939cf0e3c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-macosx_10_12_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 648.8 kB
  • Tags: CPython 3.14, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 63d773276dd5c6f57f9e295fa0a6f3cf301967cf9ef4064a9cb1253123542d67
MD5 318f013248af565a74545dd43b304323
BLAKE2b-256 847595b0967bfcf91fecb61753ba9256dd4a003388c2c6fb5855fa7e984cc150

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 246.4 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b3124bbf8ff91e1edee54f3baee1fa67976a023f477fc64c1d8dbacdb7f9a297
MD5 0f9fb9f9ec32d28989d7e67ee8d3f702
BLAKE2b-256 c3bb846d54d4aff7b4af9b2a9c11a7eca850241596e13b3a5071c3a3c98277c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-win_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 250.7 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 f71f3b693d97e227c046b2993784305121900ac492d33da82b954f2adaacdc32
MD5 fe679d71f4277863f7aed600ccaacd21
BLAKE2b-256 59a6ded0dfe776b4b2a52fdacabe5442bae9529f7588b6c8afe8c376d06c9ae0

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-win_amd64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 238.7 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 c1e000685d62127f8a67e931691fe71a45d58ef0e0bbccf7734ac430a22beed8
MD5 e58cade85151e89b2c6b85cf58d1db58
BLAKE2b-256 86778cfae6d0a5f15c03286241c3eef09f9949667ca752178df53c45cf3125c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-win32.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
  • Upload date:
  • Size: 117.5 kB
  • Tags: CPython 3.13, PyEmscripten 2025.0 wasm32
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 340f44091d48ac61afc24d62e34af24465e5844162be4a8567068b9210902802
MD5 c66fe7ef21668b816493f9253cbd8be0
BLAKE2b-256 797dafe7eb304ff8d2217e7c02af145e1775693317f0168efa043bdb65427062

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 571.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f33ab5da66a99b387914ce7cce032763d892b7c20071f0fcc1d3c78a7b9d833b
MD5 5937b4dc6a66a66f4d914767add1adfa
BLAKE2b-256 1b5e7757955da5a8aebaa34c7790db197fcf3c81ff9d9469456252e2593f7ba4

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 533.8 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e567a91b2636e72336b167cfe3f103414b8cbe8bddf53eac3f59f194572f00ca
MD5 910bdd62042c6767aaf32f2c56a12d31
BLAKE2b-256 1e1378b91628af525636310bbf1fbb763490b8c29f0079739f4f5cc3a182011f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-musllinux_1_2_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 538.7 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 a5831ab04b3b5481e3659a2980e8b2a39bc14d01cc5a7c637a911d2016883535
MD5 0158f1ba12d3fd68e6df939533884530
BLAKE2b-256 2d14e3fe475a2aafb6ec612309b48532998688ec3aa866940fdda4e8d1e38f24

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 612.1 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f2afce017a582d7af3e96a3120c471d040419b04276bf5bc084cb5b87cc87174
MD5 a3ef50329cdba9406e5405d3534c4fc6
BLAKE2b-256 2dba9664efdc838a1e6fc9050b9dfd1d648e40c6864dc58b29df141cae5c0f7e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-musllinux_1_2_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 641.0 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 7b00ac18432ccaa2c0ac0f855954b51b2d4c1e5a53cac8093ac0e0604d312b25
MD5 1e66cd981aa9f9d2de00e8283a256f45
BLAKE2b-256 b6469d1c964cc1dbb747de7e46d36acbf8625eff8eb7b622ee3c11cf0da2dd79

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-musllinux_1_2_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 528.1 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9661a7dd3f71869ac9c7b93ca2a5ad12d1ad1b396acc114f37ae3bf2eb5db415
MD5 8165fab6d9d8995f438e04261172d9cd
BLAKE2b-256 c7b9936f4cc2a8b097d55d922795ffbb1b30b472ceabc15cabde07c3c80efea9

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 357.9 kB
  • Tags: CPython 3.13, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 27524251408c0a572f590b1d49d51a69bcac111e0262fec7dde5b252d9f6ec6b
MD5 d32965e8d2284e0a57cdf99d737353d0
BLAKE2b-256 9208f3d05cf63926e2103ec7bbd1c9a98ccc34e9ebd0be989cb5256c74061c24

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-manylinux_2_31_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 358.8 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6c7bb29544729b0b9c05cd87dddeca814c2f90ab9cc11c709888b55f6be3fb07
MD5 146104d850484e13b988635cc2fad2d8
BLAKE2b-256 b9307aeaa289c7b03d4d8deab674e4385095c0921929a72c4195bef18429d1a6

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 326.3 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 dff73dc27ab9a326a52ba2c4b836cdcdeced716c5bd0a7129e223d8f036a7801
MD5 07630446ea20850ddde8b6b67c70be50
BLAKE2b-256 fc20bd872fc17a2452d7bf1f26d2eecc3030d291dde383e3b48657cc1835d416

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 329.4 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f85b11951aa0a404eaa9e4433928349339e5cbd02b4cbb889b4a22cfe6c2667
MD5 ba26ce3fb0b75b93a024d5fd810aea8b
BLAKE2b-256 cd3daeeba50b88cbffd1d202f0ebdea9643ff129c45f31b466a39845c3520582

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 330.0 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 043e33f855bf8dd96303cc748b0680d3c70203d160065b81887be65b28f9fc93
MD5 9a06d964c8b23791d6a2b7b2cf07a909
BLAKE2b-256 b5b1a0742d4c18dbe9a390991581f9726f6688cd9ae917576b19e2ebab116292

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 315.6 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 785f0f18417722068180c9e9aaf61b7bb77d15e785377cfbedc66413fa6d5fa6
MD5 4cbf1b67cff70cce7e28717ea8599801
BLAKE2b-256 c5d4244025f4648713a3bf52ae03d61a4fff235e96a701d9f77af66244b21650

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 350.6 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0e9444af1e78ca939a31c2b1c47b7b527ea181ce59a346929e4ad8c1ba20ba06
MD5 92bbc8f6d258d53237278466fb7b6c17
BLAKE2b-256 72d69bbae31b1cba80642e2ac197e2ddd472f6026d590b83437205ee19a8c1b9

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 392.9 kB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 38af39d2ad095873466d643ebf76237c528185d37791d6268ba35a52ff53eebc
MD5 570f056e659c29039177adb0ea0092e3
BLAKE2b-256 4273401806d46e128b20e938fc56cca2fe6ff7c0fba8c3fa0250b2449400fb43

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 322.2 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d2d94b7b982d37b7419c89782bbc68a3ef90a61a9742ec4588d73fa67c36314
MD5 57b0ee8521296fee3bed80c8f4cedf0f
BLAKE2b-256 9da7be7dcd664f1016494cbd86107acacce677bb8c05b69ba466fbb48e234fd6

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 342.1 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e34566af53f6000a4561530cf3d7da925aa61fd0bc19d245b2d6e9f39bc5262f
MD5 aa0627950fdfcc3f400f968494c1cccb
BLAKE2b-256 58e0f91a9ea31198a625c5f3480ead8e23921c4b5a46199a2ad4410c61813029

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 648.7 kB
  • Tags: CPython 3.13, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 ddf3d905465bf5844c12086ae8425c8ac0b394fe2cda1e96d6d43a75ca2182af
MD5 cf8e6e090b0e153b1efc3ec91a299817
BLAKE2b-256 8acae2abf0bfac24181d93d294d0e5aec923e0ba5a08699a64ed6f3da44584d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 246.1 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 1a8a7bfec3606a881f0fa14da1fe446e2363f9fd4d067001bc1ca09e23cfbf0a
MD5 0a9d7b26e0fa0da6fd81ae2715d90b71
BLAKE2b-256 de935151c7fe75fbbf8cc55a31e96d7c5cc6a53bf6f55f60a43e8aad5401524d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-win_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 250.2 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f02ddde3d72a170f2920bfa0131285bd74e87dccb3a882a7b9a23a7bd34472ec
MD5 9c028317debafb69a7eb279935ac60ab
BLAKE2b-256 665c76063cff7e07bbd942d40a63e01e655f2b85ec43bcf4ae32cf543f2332b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-win_amd64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 238.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 ec682595ab02573fe90bb24641878f6ed5698590b2f6701c6db61b9afd5592a1
MD5 cdb8d07ccfb35dd3da165d9e9aa2f30d
BLAKE2b-256 b35c8a687a91d012c0bb7816cf40236bc0bde324bc645923e361e17987b15e6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-win32.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 570.6 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ae5347d3939813f4a9ee2833893ce9c0949adde36d3a64ca6bd318b7e05d3e04
MD5 2584a179a95e8ca0c82f2eaba3799f08
BLAKE2b-256 533702c17ac5cffc2fa5a917383d1e7658ae6f94bc6c04a0f2203b485dfba47e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 531.9 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 378f3ef0340d4ede275bc164bfacad3f1371a01f89c1c66dc0d2147cb8660e37
MD5 903f1e6c1137f694f4e16108c8f5a74d
BLAKE2b-256 5d175c87ea9e0015aeacd298dcba60c380a61f2fcb3e1863e8a7adf36718040a

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-musllinux_1_2_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 538.3 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b7b78afbc63a1982e384d0498a961896ab2d88daec6cb13da8761b209c7c1833
MD5 eb4f7a20b4a6b2bbcee17cb4c6755a96
BLAKE2b-256 08bbf0c082d121550165d078cd0c760574a09d675b8400e7c318317c8ddd55a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 612.0 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7636eb8e837a0cd5a65f69b55dfebc288ad8151a2b4f28347831c58aa4f39bd7
MD5 e42d2e3544a896b6b382e66ad3da2969
BLAKE2b-256 a745431b815e3676251e9b962aa54421167bb0ce38edcdc6738eb7f0e5015e21

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-musllinux_1_2_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 640.9 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 b0e383118364a19473b2cf211ee068e3e9468fe98b461305873281300a94d1b7
MD5 fe5cb87e8b9b820790b8655fcdd04a17
BLAKE2b-256 937b586b97d30bd57e5bc88288d8491fc3d534d3e8809e51260cb74bb965acef

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-musllinux_1_2_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 526.6 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 cd267d06429d89c42e496d67b4b26e86881b8f43634a610506a6466e66a21eee
MD5 ba338a6b01b4257333b8e6de94bb560f
BLAKE2b-256 28ef37fcf7c37e6919b8186526be2a071a60ac5f3467bc5df638dcf3525b8dbc

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 356.1 kB
  • Tags: CPython 3.12, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 452e189364e07aa3e2c8ec607674de5bf69bc5667811c2af708645d19c48410c
MD5 873543d703d557b95bdbe5142cd40528
BLAKE2b-256 1672c6cd62b47847a85ee3041b6e96b219da5a84c058d5ca717ff5a60ea13ddf

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-manylinux_2_31_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 357.4 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d6e726d85b66d3e62a5176c370c0d2941d25499c39844483d54960d7866619d9
MD5 3e32c793f6ec219f89b922bb7cf68c07
BLAKE2b-256 b6b73dbf57ad745723f4a7405984f40dd3a6032685a7065e87b61404646567fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 325.8 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e6fe60fe52daebb260141664e73e75fe605d0f441b6098d7aa639a343508d5a1
MD5 418a96b21b8ab583dcb1ae6488b156d4
BLAKE2b-256 b8c38d3f66e9f4aea1ab3a8f25ea29c7ba2fadefb0841b8c408eba917d7ef518

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 329.0 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 e363c42e885ebe0d751ee369311aa337f9fa6d8ddfb198607ed7d4377fca3352
MD5 5216dace0eaf39e5aeff6855e9afbc14
BLAKE2b-256 451ad72c8b2ed491a44f59d368332f3d709025bacd20bbafeacedc870e72e709

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 329.5 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 6690eec88c8ed70f082941a725da7e85ac367877672671036eefccce85aeb949
MD5 2f3adf27a54e58e20e67a452d7f55811
BLAKE2b-256 bc6eae36da81b3bd90126b9798a9abc3ef7b18e6b27924f34b54dae37eddc847

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 315.5 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fa4df08c0fbfd0b20ede0d9b9be6a7dcf1e0437ad56ca5927b314b4f8d3a84eb
MD5 18b0573aa15c742a8574c0abf39659f4
BLAKE2b-256 0ce3f8139a4ad8bbae6322f52ba046677bd2ce5472fdcbd4f8283b9f20729d69

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 349.2 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 de4c8d31b380a87ec8772edcf427ec65b079d7346cdbc268e399f2e6849ad26b
MD5 ddef1b5a673eb422402a18bfec44bca3
BLAKE2b-256 adadcad44f1af548fe684fbcba6fe43d7efcf7bdeaf685ca5e856fe631b97b2e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 392.9 kB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 6303c49f164b677b81003e506b86050beb365ca781dd71cb0359989ffdec3cd6
MD5 859eea99478a2b42bb2822a2ee63d39c
BLAKE2b-256 eb9585c3c67509947c5c3d383fc5b1cadcb18adb7d7d39a43d1f46595ab4e110

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 320.4 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7bf59de46283651cdff0e6bc762ce830bee9cc5fcba20af548525ed7f498968a
MD5 32a75d6ebca25a7f508d3e28f4202fe9
BLAKE2b-256 a4c54e1d5d0bd3bef50966d57e18e0e7967d771755f174a143429420ba22fd8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 340.3 kB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1bf38b75dc91917f7ec80e82c236d7bcfa022cd74fa29b398121bdc3f94c0052
MD5 9a7dc734a9856ba1e36a3b09aaae9728
BLAKE2b-256 46577f9dc6128b5b46e82cde95440ca1119ec3b7fc0c182963afe16e611f9319

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-macosx_10_12_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 645.1 kB
  • Tags: CPython 3.12, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 c0ad41be5a7bf48f471a08a4b429664c4760a6cef9d47574ea7f0a79546bc045
MD5 b8f4da0623d447117d44a2db10323208
BLAKE2b-256 977e27ce6b73b150ca9de2226e0720fc8377afbc20ff7a8faf6ff6fb25241961

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 253.4 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 30ea9058145c1ffd28bbed4db1529c6639d14e78b79f0c4c0fa5fe9066966c0f
MD5 8dd69c2cc0305d4259f6e482190883dc
BLAKE2b-256 c33809b5f59bc66930f19626256c67b27fd33816c8451a26d20a7f8d616b5709

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-win_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 259.1 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 15aed5316c9541c0378ba0a68fafec7c96c97607f93e8f4192ea2b07dc0daab9
MD5 92364a292aefb3832b54075f9e36d5ed
BLAKE2b-256 8349dc4c8757b647e6a09dc1331b77a7d625d869e01a25f72d5c6168c03cf202

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-win_amd64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 249.4 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 39551be6311cde450a158ffddcce67dd1f64353f06889aee2e4abe70a1b53c1d
MD5 5bd8eb4cd38ba2ff922f0515358a36ac
BLAKE2b-256 5ddded9b481f015734aa8a3657ba0d12797f51e78ce457c4000c16b48c45fb12

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-win32.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 574.0 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f7727ae0c518dce4c253520fc20be73690e0725b9224e73437107962c518eaef
MD5 9d6f8c7ca15fd075258d4ec6db498734
BLAKE2b-256 2ade3f439cf3e6e349d3ff71c23cd7e96960480ee28423fe721aaa22d2791345

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 536.1 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 18fcc3179f1aa0fcf8d529692f78dd7b82eb4ccd50e9f6c04f1b4d0533f50ccd
MD5 2d5999c9b0ec22ae53a2012d271dd10d
BLAKE2b-256 55c35d491a46aad7a8a66581dbb36fb007c9e870aecadfc03e821d7558a9ee23

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-musllinux_1_2_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 549.1 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 b296a34636fd7786919e9a4d2d0f3fabea427e4cda366594876ae6ae1892dd81
MD5 4a0a5bab25aa6ce3f48b0b2d43cdb79e
BLAKE2b-256 27a14b644ca64d13beac48cfc8f8986a82b298abeaee30e669c319694158bf63

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 616.8 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2f1db34fbd0b708e8bbb79d8b7cc667c3fe445a4b4159218a0ccb36feca27650
MD5 2abce831cc1e2890a2adfb01ecf5e5dc
BLAKE2b-256 41d0b915aa40adcd580d074975be555c6856df24dceedaa6906020083d0c1bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-musllinux_1_2_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 645.4 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 fd224c4faedd1e90a6546d1a8f9211934c3e314cc72d73500b15ad5ed1d43149
MD5 46840ad7d62ba6333ac012fa1a70726c
BLAKE2b-256 43029da74d425984473de09de62d47f5de4cd65a4c11368735fddeb9b828c406

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-musllinux_1_2_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 530.7 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f6de7712118c41773b7ad84d42ab943e5117e2f6b890019ca63fb9f7dc3b9cf7
MD5 ace49e6febd08391bd920acc6f0d2393
BLAKE2b-256 b4b488bba125188b6b976e2b52d0a53e0c66f174a52423156ce93840f7ccdf48

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 360.3 kB
  • Tags: CPython 3.11, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 23be5584638af0973bc62a5c3099d33c7a126e1aac8c6fda636ddc29a8cb940c
MD5 569899c4384de50c079d6d70e1ee0ed9
BLAKE2b-256 c3fea2cc522bc19d12846ff311382caaac892a3d979600d894f7c9dd3fa6d55b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-manylinux_2_31_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 360.9 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 1f3681d69bd76d9cfb687a855050aac3bfa9e4be0fb353244920fbeb6d5be80d
MD5 40b097477b10843d816e03947b6a2b3a
BLAKE2b-256 b5a09d2f5ff46665801ece9665654cf31aeaef2f93b1606aa66ce24ab66cac2b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 333.1 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2b67678761fff544c6e47738bea9083324d51f3a45254c7eee22e5dcad24ee20
MD5 d8577e069b4e251dad48b3e3f5cd4da8
BLAKE2b-256 485c2789b80d306c890fd88bae1f5fb5da17b2e0c49c5ea9af7e2f76c9000d96

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 340.3 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 58c4024eecf1a652c85fae00c70a244407195270d6ca2cbeba4d39f9bf5b2df5
MD5 02e3f0e3999ae70b4a778ca6143a7c89
BLAKE2b-256 2841d22ed2267ab9e84a7bd3877c24adee77d0ccefabaed437ae64a4454d1e41

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 340.7 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 b2493529c1d3b3e056fbcb83740448a3b593fbabd28c6848ab3568b628f8977b
MD5 d03b58c42761bdf5c7d4219a1998753a
BLAKE2b-256 a132b85e0856fed6d1960831527d788ddafcaaf5e1b911832ef65e0bc85b8550

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 320.1 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 05f084c388067ca89dd467064bb33b4a05bba83a9d9dc38e90e4932b4238094d
MD5 7e672e51d6c100222fbc811324bde48d
BLAKE2b-256 39c4972e3f7d3b51cfeb2c73d2fa13de00ac26fa694d56ba81342a690a291c88

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 353.2 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 47c590dd1f86d2cd16b2b2bb630f4ca03fa5db8ccc3f50c86dc53a0d81dc0903
MD5 0cd8782d23590bb229c2df1e5677af58
BLAKE2b-256 268c0c013da9251dbdabaf167bed436f7698402add2b6c3bbe049878eb2ebe65

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 397.9 kB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7cfd88f22d77047cab21246361acde45fb6c953751f9dda71a35a6e1b758dd29
MD5 97ac82d8496c5a38bf7c8736caa9f37d
BLAKE2b-256 d825cad47ee4cbe4f40866529d64373a0ba07477a560db04ed810e4f6639e44d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 323.6 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 61e79cdfdbdd304fde552b6699e9e203a217895f55927bca45d0ba5045fd924d
MD5 2279aac7916539183aca0fed039305db
BLAKE2b-256 2d8a8c57b4c438f33205c9a515369ef7192796b9d57c2d21f6d29b770ba165a0

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 339.3 kB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 655874b33b1fd46d221303cdd3adc54b4e77db9dbe9a6f3ae80ef8148db044ec
MD5 aa372468143c155cb42ae2a6984099cc
BLAKE2b-256 313f0eb0e4f0a918cf7dcffa724b5643592d222109c0bb33b36465e8a4d64d2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-macosx_10_12_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 647.2 kB
  • Tags: CPython 3.11, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 874c6bee06c7c012718cf48ef518bf9da3e1e300f6689aba1a5064aeb8b2a751
MD5 33fa7f0c4548208306b0f8cdb32aa313
BLAKE2b-256 7294092fe24d496b5fbcac9d69b465b31f523ebca35b26be12e312af6dadff91

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 253.9 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 0cb720b2b72fa7237fb99d2d9e93d7ce4ddd30a8830f93843d9f028df90e79e4
MD5 998bc7cf0bdfdec98d08c6e6a32cf7de
BLAKE2b-256 3a23bcedab6affa865080060a5d7b0de350375ba4379b258e3c5290f12e653ed

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-win_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 259.6 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 95feafc4a626455e027d53f536a8ecee1c32250b7640ed4af61a75534cdfdfc1
MD5 b9a9e32ddb9f54567da4f45d011ce884
BLAKE2b-256 aef164d08664264097b6b7845a99dc13c00973c3ea0c5dea1afa315445ecfefe

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-win_amd64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 249.9 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 943df41383e9d309ffaa7ac5d4df05afecb7c5c44915f8afe04ddc687bb4f164
MD5 67367137aee7d8f41c07bbfd599e195e
BLAKE2b-256 4b959a98fba78b54a761accbbf84cb58160dd54ebe973d5213682b09ce32a1ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-win32.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 574.6 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 34aad31161a66e2e5fbaf9ce6bc019e84ff860fa1e169bcb72afae3e384ce5cf
MD5 92122ca5991585d4be08cb910a91ee36
BLAKE2b-256 80c0d71b4121b3ca45068a7575fcff6dc363b1a9cc4f0aed59da2915ec5be452

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 536.6 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 6401fd07b230b124484cf92a98bb75d6f1b3f1be008b41669aeeebd92f7a39eb
MD5 c7705e71b734b8a0243fcfb546f99af8
BLAKE2b-256 26fa0cdef3531516607582cdc62d8b54003991a9dbded75544c8f8429bf1ca68

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-musllinux_1_2_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 549.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 13583a372b04539dea54ed7610b3480b72e3c9e0b6422261d9996a72906217b8
MD5 af57ed5e8e4d6659f9d28b11a301fb03
BLAKE2b-256 91c77fcec0440aa56583261fbced2f11ca0c3f77406b834bb83f0da547c99948

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 617.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6439acb033073e21c105c4e57621f6f1b559cb5b1aca4542bf28e71de6638268
MD5 f190d8b645196e504ce85f682a3a9da1
BLAKE2b-256 8bd3f6d40375c05a885a9a3b4d202d304345e1ad7ce09c8b9b8f94846cf2a532

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-musllinux_1_2_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 646.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 72e3ec56eeea024736fe1a8701549c0f454105fdbd83e57f17e109a90db41e44
MD5 96420d9d6ab1deb41a480ca5c9ea1739
BLAKE2b-256 e048787fe8e9a740b71ca4f8e611748cc896f766c46a302fa12cbd84d3c1605d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-musllinux_1_2_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 531.3 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bff59705314bc771c1b19d050c6edcda941f2499dc7aff2109d5e13f3690b249
MD5 3dc4c130d170ecc397c23fd5e445585d
BLAKE2b-256 e34b4fcb231ba7d67a6dfe47b210db064e5bfceb251a5160a6705b1b09b12d04

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 360.7 kB
  • Tags: CPython 3.10, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 cf97aea642acc9c1eed30a45737e5fd27fa4c80b0076f42f48fa81367545b0c9
MD5 a4fde3b7644bb6e187bd5e4a85cbcd28
BLAKE2b-256 c3a96640ca30c62393d911e22a3de625134dae7fa3137e00b6e281201faf3756

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-manylinux_2_31_riscv64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 361.5 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d8f173c7adf939013af348335f4adf627e39f95864e8032b4fcfece2c081886
MD5 4016e95e228ec7a9a515fe2da6fdb836
BLAKE2b-256 b13b0f76d9729ae2b366fba78cc2df526d0de54e898b2eca4791dca4587f50d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 333.6 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 befadc8ca7a8b253dce01b882a5571f18d2f89e6f9e9df6346928b043c8a8793
MD5 2e591e921f73e2bd756e5472043c5412
BLAKE2b-256 5213dd49f3ab3577d4d0e5ac84e019598551efcad02a8c98927d5715e6aa0e2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 340.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 9fb8338e3ff198421bcce212463ff5ac65d0b6f54430f84a4ee4df4370a82145
MD5 f74e6bf791c25d23b6be2d0f07161166
BLAKE2b-256 5d28402e430e5669be202375f06d8f8eed3a3a02e5d47318fc12e043cbad32d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 341.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 1bcc1c94431f264dc12d52f749e40a06eb2695765ad0e9c3558340569ef435c7
MD5 d74f8615d471c7efce8b7a1770dbf1e8
BLAKE2b-256 809b6d23b7904d7d68c67d4e025a6d7fa0a1502f56655adf6dcb4bb7552fdcff

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 320.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 aa2cad5596bbdd8ebfa1f9e536a57bd8fa45ace12ce4d12bf35699d4deb90329
MD5 9168d5787ec4c1cc7f7d4f50029dd179
BLAKE2b-256 c129f34ab55cc81d3c06496a8acfcb6a203af49b24ce96c4f4b6ca6e9cb4805c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 353.7 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 4008b0f891954e8778548b9aa706607ad3cec337e0505f19f29957962641b130
MD5 5cbaad1f6685dbe4cc2d68e5fe531b75
BLAKE2b-256 657cf27536a6a761cad398e6af495aca8255d7b3bb353ae80b9a2f39b5b263ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 398.7 kB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 96e63523c8539f70fd701e22f494bdc70a5efcbf75d67f1f9c7cfe4441714550
MD5 1d18bd9770ca298ab3eee6233c652efd
BLAKE2b-256 7ae484214c1cc65b2dbe874b5e0a165cda66f1210cd2e672d4c76a09fd5fbcc3

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

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

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 324.1 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 43b9333f9fe6c538b0d36f7714c66520a86b4514e45f657202137e6a2c170b42
MD5 9bb06a2ed84b41b51b3289bdc9278715
BLAKE2b-256 f998d9cf38056f9711fbef349765f85012956cd38a5120e6f711364f308e3d58

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 339.9 kB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 f40b2687a0779d1ee3df1d10394451397090062e6406040380a8f9a3c15e25c5
MD5 f244aa0f4d498233dda711e3bfc03620
BLAKE2b-256 0cfae3f9e4e2047b6cedf722b27e3f653c59b0e50f297c560783b4b9b74a53b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-macosx_10_12_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 648.2 kB
  • Tags: CPython 3.10, macOS 10.12+ universal2 (ARM64, x86-64), macOS 10.12+ x86-64, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 e9f3c83be3c38ae96e65917d995bb7e16a0f8e21c78269fe481e963f3ef98b5a
MD5 8758a8a04abc27b7b4d80850bc4fe937
BLAKE2b-256 15d037f6332d3140b6bbe734682dbb3a43f49048de42d47ab669f1f832910b97

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp310-abi3-android_24_x86_64.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp310-abi3-android_24_x86_64.whl
  • Upload date:
  • Size: 312.1 kB
  • Tags: Android API level 24+ x86-64, CPython 3.10+
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-abi3-android_24_x86_64.whl
Algorithm Hash digest
SHA256 1f394948838aa847308cbd389a6e7dde3c95e606ccaf2bebfbb21509d511d89b
MD5 53c377836d460a78f7ec0703abcd9ce7
BLAKE2b-256 58262e3936ca4b68ad7e19a5c567f8c90fc4533e45084912fd5c21a7f0230a78

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-abi3-android_24_x86_64.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file moka_py-0.4.0-cp310-abi3-android_24_arm64_v8a.whl.

File metadata

  • Download URL: moka_py-0.4.0-cp310-abi3-android_24_arm64_v8a.whl
  • Upload date:
  • Size: 300.2 kB
  • Tags: Android API level 24+ ARM64 v8a, CPython 3.10+
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.2 {"installer":{"name":"uv","version":"0.12.2","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for moka_py-0.4.0-cp310-abi3-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 a6b51dc5c6325e52527a7d3137c439ee65a9421bb1b8808bfa41afaba2462048
MD5 8e872fddffa96fc955fd2584a1b81147
BLAKE2b-256 1e0f2722dd19fac2c18198361d07dc12efa83e9fb745a83794812a42ab939c6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.4.0-cp310-abi3-android_24_arm64_v8a.whl:

Publisher: release-please.yaml on deliro/moka-py

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.5.0

183 files

This release

0.4.0 This release

183 files

0.3.0

137 files

0.2.4

137 files

0.2.1

105 files

0.1.19

105 files

0.1.18

105 files

0.1.17

103 files

0.1.16

91 files

0.1.15

91 files

0.1.14

91 files

0.1.13

91 files

0.1.12

91 files

0.1.11

91 files

0.1.10

90 files

0.1.9

90 files

0.1.8

90 files

0.1.7

90 files

0.1.6

73 files

0.1.5

73 files

0.1.4

73 files

0.1.3

73 files

0.1.2

93 files

0.1.1

93 files

0.1.0

93 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page