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.
  • Weight-based eviction: Optionally bound the cache by total entry weight (e.g. bytes) via a weigher.
  • 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])
moka.remove("foo")  # explicit
for i in range(10):
    moka.set(f"overflow-{i}", [i])  # over capacity, so most of these go away with "size"

# Maintenance is lazy, so ask for it explicitly instead of guessing when it happens
moka.run_pending_tasks()
sleep(1.0)
moka.run_pending_tasks()  # whatever survived is past its TTL by now: "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"

Size-aware cache (weigher)

capacity bounds the total weight of all entries. Every entry weighs 1 by default — that's why capacity normally reads as "maximum number of entries". Pass a weigher — a callable (key, value) -> int — to weigh entries yourself, in any unit you like; bytes are typical:

from moka_py import Moka


# A 100-character budget for string values
c = Moka(100, weigher=lambda k, v: len(v))
c.set("a", "x" * 40)
c.set("b", "y" * 40)

# Maintenance (evictions, expirations) runs lazily. Force it when you need
# accurate numbers — e.g. in tests or metrics:
c.run_pending_tasks()
assert c.weighted_size() == 80
assert c.count() == 2

The weigher is called once per insert, on the calling thread, and its result is fixed for that entry (replacing a value re-weighs it). The contract:

  • The result must be a non-negative int; a negative result raises ValueError, a non-int raises TypeError.
  • 0 is allowed and means the entry spends no capacity budget.
  • Values above 2**32 - 1 are clamped to that maximum.
  • If the weigher raises, the insert fails with that exception and the cache is left unchanged (for get_with, nothing is cached and all concurrent waiters see the error).

@cached accepts a weigher as well — maxsize bounds the total weight the same way. The key passed to the weigher is an opaque hashable object built from the call arguments, so weigh the value:

from moka_py import cached


@cached(maxsize=1_000_000, weigher=lambda k, v: len(v))
def render(name: str) -> str:
    return f"<h1>Hello, {name}!</h1>"


assert render("world") == "<h1>Hello, world!</h1>"

With wait_concurrent=True on an async function, a weigher changes what the cache stores: finished results instead of in-flight asyncio.Tasks (a Task has no result to weigh yet). Concurrent calls still share one computation; a failed computation is not cached. One asymmetry to be aware of: if the weigher raises, the error goes to the call that started the computation, while concurrent waiters still receive the computed value.

weighted_size() and run_pending_tasks() work without a weigher too: since every entry weighs 1, weighted_size() equals count().

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.5.0.tar.gz (108.5 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.5.0-pp311-pypy311_pp73-win_amd64.whl (264.0 kB view details)

Uploaded PyPyWindows x86-64

moka_py-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (579.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

moka_py-0.5.0-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl (542.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ riscv64

moka_py-0.5.0-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl (555.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ppc64le

moka_py-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl (621.4 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

moka_py-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (651.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

moka_py-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (537.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl (366.1 kB view details)

Uploaded PyPymanylinux: glibc 2.31+ riscv64

moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl (340.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ s390x

moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (345.7 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (347.0 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64

moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (324.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (358.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (402.8 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

moka_py-0.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl (328.2 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

moka_py-0.5.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl (344.1 kB view details)

Uploaded PyPymacOS 10.12+ x86-64

moka_py-0.5.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (654.5 kB view details)

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

moka_py-0.5.0-cp315-cp315t-win_arm64.whl (254.5 kB view details)

Uploaded CPython 3.15tWindows ARM64

moka_py-0.5.0-cp315-cp315t-win_amd64.whl (259.7 kB view details)

Uploaded CPython 3.15tWindows x86-64

moka_py-0.5.0-cp315-cp315t-win32.whl (246.6 kB view details)

Uploaded CPython 3.15tWindows x86

moka_py-0.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl (576.4 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

moka_py-0.5.0-cp315-cp315t-musllinux_1_2_riscv64.whl (539.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ riscv64

moka_py-0.5.0-cp315-cp315t-musllinux_1_2_ppc64le.whl (548.3 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ppc64le

moka_py-0.5.0-cp315-cp315t-musllinux_1_2_i686.whl (613.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ i686

moka_py-0.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl (644.5 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARMv7l

moka_py-0.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl (532.8 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

moka_py-0.5.0-cp315-cp315t-manylinux_2_31_riscv64.whl (362.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.31+ riscv64

moka_py-0.5.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (362.5 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ x86-64

moka_py-0.5.0-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ s390x

moka_py-0.5.0-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (338.2 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64le

moka_py-0.5.0-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (340.4 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ppc64

moka_py-0.5.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARMv7l

moka_py-0.5.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (353.6 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64

moka_py-0.5.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl (393.9 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.5+ i686

moka_py-0.5.0-cp315-cp315t-macosx_11_0_arm64.whl (324.7 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

moka_py-0.5.0-cp315-cp315t-macosx_10_12_x86_64.whl (344.8 kB view details)

Uploaded CPython 3.15tmacOS 10.12+ x86-64

moka_py-0.5.0-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (651.7 kB view details)

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

moka_py-0.5.0-cp315-cp315-win_arm64.whl (250.7 kB view details)

Uploaded CPython 3.15Windows ARM64

moka_py-0.5.0-cp315-cp315-win_amd64.whl (255.6 kB view details)

Uploaded CPython 3.15Windows x86-64

moka_py-0.5.0-cp315-cp315-win32.whl (243.3 kB view details)

Uploaded CPython 3.15Windows x86

moka_py-0.5.0-cp315-cp315-musllinux_1_2_x86_64.whl (578.4 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

moka_py-0.5.0-cp315-cp315-musllinux_1_2_riscv64.whl (541.0 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ riscv64

moka_py-0.5.0-cp315-cp315-musllinux_1_2_ppc64le.whl (544.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ppc64le

moka_py-0.5.0-cp315-cp315-musllinux_1_2_i686.whl (617.8 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ i686

moka_py-0.5.0-cp315-cp315-musllinux_1_2_armv7l.whl (648.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARMv7l

moka_py-0.5.0-cp315-cp315-musllinux_1_2_aarch64.whl (535.2 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

moka_py-0.5.0-cp315-cp315-manylinux_2_31_riscv64.whl (364.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.31+ riscv64

moka_py-0.5.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ x86-64

moka_py-0.5.0-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl (333.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ s390x

moka_py-0.5.0-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.7 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64le

moka_py-0.5.0-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (335.9 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ppc64

moka_py-0.5.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (321.2 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARMv7l

moka_py-0.5.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (356.3 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64

moka_py-0.5.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl (398.4 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.5+ i686

moka_py-0.5.0-cp315-cp315-macosx_11_0_arm64.whl (326.6 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

moka_py-0.5.0-cp315-cp315-macosx_10_12_x86_64.whl (346.8 kB view details)

Uploaded CPython 3.15macOS 10.12+ x86-64

moka_py-0.5.0-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (655.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.5.0-cp314-cp314t-win_arm64.whl (254.5 kB view details)

Uploaded CPython 3.14tWindows ARM64

moka_py-0.5.0-cp314-cp314t-win_amd64.whl (259.5 kB view details)

Uploaded CPython 3.14tWindows x86-64

moka_py-0.5.0-cp314-cp314t-win32.whl (246.4 kB view details)

Uploaded CPython 3.14tWindows x86

moka_py-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl (576.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

moka_py-0.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl (539.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ riscv64

moka_py-0.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl (548.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ppc64le

moka_py-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl (613.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

moka_py-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl (644.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

moka_py-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl (532.8 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

moka_py-0.5.0-cp314-cp314t-manylinux_2_31_riscv64.whl (362.5 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.31+ riscv64

moka_py-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (362.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

moka_py-0.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl (337.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ s390x

moka_py-0.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (338.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

moka_py-0.5.0-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (340.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64

moka_py-0.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (316.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

moka_py-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (353.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

moka_py-0.5.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl (393.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.5+ i686

moka_py-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl (324.8 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

moka_py-0.5.0-cp314-cp314t-macosx_10_12_x86_64.whl (344.9 kB view details)

Uploaded CPython 3.14tmacOS 10.12+ x86-64

moka_py-0.5.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (651.9 kB view details)

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

moka_py-0.5.0-cp314-cp314-win_arm64.whl (250.6 kB view details)

Uploaded CPython 3.14Windows ARM64

moka_py-0.5.0-cp314-cp314-win_amd64.whl (255.5 kB view details)

Uploaded CPython 3.14Windows x86-64

moka_py-0.5.0-cp314-cp314-win32.whl (243.1 kB view details)

Uploaded CPython 3.14Windows x86

moka_py-0.5.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl (122.7 kB view details)

Uploaded CPython 3.14PyEmscripten 2026.0 wasm32

moka_py-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl (578.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

moka_py-0.5.0-cp314-cp314-musllinux_1_2_riscv64.whl (541.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ riscv64

moka_py-0.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl (545.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ppc64le

moka_py-0.5.0-cp314-cp314-musllinux_1_2_i686.whl (617.6 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

moka_py-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl (648.8 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

moka_py-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl (535.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

moka_py-0.5.0-cp314-cp314-manylinux_2_31_riscv64.whl (364.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.31+ riscv64

moka_py-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (364.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

moka_py-0.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl (333.3 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ s390x

moka_py-0.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

moka_py-0.5.0-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (336.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64

moka_py-0.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (321.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

moka_py-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (356.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

moka_py-0.5.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (398.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

moka_py-0.5.0-cp314-cp314-macosx_11_0_arm64.whl (326.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

moka_py-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl (346.9 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

moka_py-0.5.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (655.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.5.0-cp313-cp313-win_arm64.whl (250.6 kB view details)

Uploaded CPython 3.13Windows ARM64

moka_py-0.5.0-cp313-cp313-win_amd64.whl (255.5 kB view details)

Uploaded CPython 3.13Windows x86-64

moka_py-0.5.0-cp313-cp313-win32.whl (243.3 kB view details)

Uploaded CPython 3.13Windows x86

moka_py-0.5.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl (122.0 kB view details)

Uploaded CPython 3.13PyEmscripten 2025.0 wasm32

moka_py-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl (577.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

moka_py-0.5.0-cp313-cp313-musllinux_1_2_riscv64.whl (540.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ riscv64

moka_py-0.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl (544.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ppc64le

moka_py-0.5.0-cp313-cp313-musllinux_1_2_i686.whl (617.1 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

moka_py-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl (648.4 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

moka_py-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl (534.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

moka_py-0.5.0-cp313-cp313-manylinux_2_31_riscv64.whl (363.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.31+ riscv64

moka_py-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (363.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

moka_py-0.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl (332.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ s390x

moka_py-0.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (334.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

moka_py-0.5.0-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (335.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64

moka_py-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (320.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

moka_py-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (355.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

moka_py-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (397.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

moka_py-0.5.0-cp313-cp313-macosx_11_0_arm64.whl (326.8 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

moka_py-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl (346.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

moka_py-0.5.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (655.9 kB view details)

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

moka_py-0.5.0-cp312-cp312-win_arm64.whl (250.8 kB view details)

Uploaded CPython 3.12Windows ARM64

moka_py-0.5.0-cp312-cp312-win_amd64.whl (256.3 kB view details)

Uploaded CPython 3.12Windows x86-64

moka_py-0.5.0-cp312-cp312-win32.whl (243.2 kB view details)

Uploaded CPython 3.12Windows x86

moka_py-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl (576.1 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

moka_py-0.5.0-cp312-cp312-musllinux_1_2_riscv64.whl (538.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ riscv64

moka_py-0.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl (544.8 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ppc64le

moka_py-0.5.0-cp312-cp312-musllinux_1_2_i686.whl (617.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

moka_py-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl (648.4 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

moka_py-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl (533.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

moka_py-0.5.0-cp312-cp312-manylinux_2_31_riscv64.whl (362.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.31+ riscv64

moka_py-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (362.3 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

moka_py-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl (333.0 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ s390x

moka_py-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (333.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

moka_py-0.5.0-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (334.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64

moka_py-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (320.5 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

moka_py-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (354.4 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

moka_py-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (397.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

moka_py-0.5.0-cp312-cp312-macosx_11_0_arm64.whl (324.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

moka_py-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl (345.0 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

moka_py-0.5.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (652.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.5.0-cp311-cp311-win_arm64.whl (257.9 kB view details)

Uploaded CPython 3.11Windows ARM64

moka_py-0.5.0-cp311-cp311-win_amd64.whl (263.5 kB view details)

Uploaded CPython 3.11Windows x86-64

moka_py-0.5.0-cp311-cp311-win32.whl (253.9 kB view details)

Uploaded CPython 3.11Windows x86

moka_py-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl (578.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

moka_py-0.5.0-cp311-cp311-musllinux_1_2_riscv64.whl (542.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ riscv64

moka_py-0.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl (554.8 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ppc64le

moka_py-0.5.0-cp311-cp311-musllinux_1_2_i686.whl (620.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

moka_py-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl (652.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

moka_py-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl (536.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

moka_py-0.5.0-cp311-cp311-manylinux_2_31_riscv64.whl (365.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.31+ riscv64

moka_py-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

moka_py-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (339.3 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ s390x

moka_py-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (344.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

moka_py-0.5.0-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (346.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64

moka_py-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

moka_py-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (357.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

moka_py-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (402.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

moka_py-0.5.0-cp311-cp311-macosx_11_0_arm64.whl (327.8 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

moka_py-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl (343.8 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

moka_py-0.5.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (653.8 kB view details)

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

moka_py-0.5.0-cp310-cp310-win_arm64.whl (258.4 kB view details)

Uploaded CPython 3.10Windows ARM64

moka_py-0.5.0-cp310-cp310-win_amd64.whl (264.1 kB view details)

Uploaded CPython 3.10Windows x86-64

moka_py-0.5.0-cp310-cp310-win32.whl (254.3 kB view details)

Uploaded CPython 3.10Windows x86

moka_py-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl (579.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

moka_py-0.5.0-cp310-cp310-musllinux_1_2_riscv64.whl (542.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ riscv64

moka_py-0.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl (555.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ppc64le

moka_py-0.5.0-cp310-cp310-musllinux_1_2_i686.whl (621.5 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

moka_py-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl (652.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

moka_py-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl (536.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

moka_py-0.5.0-cp310-cp310-manylinux_2_31_riscv64.whl (365.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.31+ riscv64

moka_py-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (365.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

moka_py-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (339.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ s390x

moka_py-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (345.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

moka_py-0.5.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl (346.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64

moka_py-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (325.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

moka_py-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (357.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

moka_py-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (403.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

moka_py-0.5.0-cp310-cp310-macosx_11_0_arm64.whl (328.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

moka_py-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl (344.3 kB view details)

Uploaded CPython 3.10macOS 10.12+ x86-64

moka_py-0.5.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl (654.9 kB view details)

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

moka_py-0.5.0-cp310-abi3-android_24_x86_64.whl (317.6 kB view details)

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

moka_py-0.5.0-cp310-abi3-android_24_arm64_v8a.whl (305.3 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.10+

File details

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

File metadata

  • Download URL: moka_py-0.5.0.tar.gz
  • Upload date:
  • Size: 108.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0.tar.gz
Algorithm Hash digest
SHA256 e5e4fe102ec1e65c752efa4f341e42823de50c1034e27e31cc4b4242b131938c
MD5 b034be8f2f19160cae13a3979225c8f1
BLAKE2b-256 cf426181272454dfe861b8ce22eb84feb24cbaf93f1b5afe460957aab2ced6e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-win_amd64.whl
  • Upload date:
  • Size: 264.0 kB
  • Tags: PyPy, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 11438ecb3455c5e6af65c8f2a4591b613499f444c81317ca147eb15c48df16bf
MD5 8e062f4c3c441465df7d2725b3608a81
BLAKE2b-256 e85e06939062239b5416d666571510efdcfdffb848432219af607d9221300e9f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 579.4 kB
  • Tags: PyPy, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cc43cc546b60f37ba2775efb03a4adc780cfcf7471bac108195f38ccce31ef1e
MD5 1eaa4c515c7e3c9d238422962c3fefd5
BLAKE2b-256 c919935e097bc3359249d387bc8e6b33b6159dc000360a309c6b0855e648920c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 542.7 kB
  • Tags: PyPy, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 2d73a64140f83ac25d2beba787cdd5665038ab45a69a3dfb560eb5a7a468b780
MD5 1c337e354ebd3324760599bc92eaea2b
BLAKE2b-256 6295c2258070e62d2c96e3a5b0bd0980cdb58ddb69eb23b4bda9161c049343d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 555.7 kB
  • Tags: PyPy, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 3b344a34d016e94c822dcc53f371c005b4b38b17475172efec11b9e3ad9e97dc
MD5 cf9e3818ba21bf382f2d46a22c7d07c9
BLAKE2b-256 b635219567ae8da0d3d9dcfa2e2060f906131b9a478aaa5766c7371aba500135

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 621.4 kB
  • Tags: PyPy, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 eebd0ca7a5a179100634563b18a4f2092ef9c6f7b4dfbbc9a02a8d8268211b31
MD5 627dcebc49cdde71016cadd13e818c4f
BLAKE2b-256 d286c2e97df85957b45c16cbebb96c45da643dfdf2921e3455273d8de4081f08

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 651.9 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ec71e0d8f87db8d31eebff7d1d209c415e9465078a6489a8dd5b4a87e6e49a07
MD5 511a07e963883297f07c4dca87b2e2e0
BLAKE2b-256 0798b976c0b8807a76f8312b9ae2f8e1e49654402e1bcae5127dc31c6211cbb3

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 537.0 kB
  • Tags: PyPy, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8b933202a0b4f21b00c6ca8362d66f3e60dc4fd7c453e40d2097e71f7d8298e2
MD5 8a4989af938e864173fd7074a436e8d3
BLAKE2b-256 0bbedad85eeacb489e5698e1950f14ddb3fe359224cea4107115a0a15b9a23ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 366.1 kB
  • Tags: PyPy, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 27ed192daeb52a9d37998572d37cc876611d143a7579836754aeb31ade5e244b
MD5 c65a0c7e11c543a35e95af9cdba84a70
BLAKE2b-256 7f54176d9eac0b7eb999032f05990ecc11f103513a397935ebf6cf16d9361227

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 365.7 kB
  • Tags: PyPy, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2820ff23594d79ac2c2b69be1ff19bc1ca49d84358c7f78c43f411d37074216
MD5 4c80a32ff7d5e2bac15fdc6bb2e6f803
BLAKE2b-256 719be080b1ce3ab7dd7735f13456f12e6bd20b25757eb19d621bc1e9ef3258fd

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 340.5 kB
  • Tags: PyPy, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ad233d3b1bc94d40af9ff2b596c49cb16c423fbd629b9e76d8e6dd24b5f9eca
MD5 4df3012159a8f156e899f3119fb03d6d
BLAKE2b-256 15fd320109bc89dea18b88b7bda2ee786f79ab4fede4768e653004c8b5d0881d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 345.7 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ce22b0f19fae35f45b10d6d8b2a51c81b3841ee79f786ad324a0a04ffa955946
MD5 effbcc09d947e3a690304f0f26dea4f7
BLAKE2b-256 f3e7cc8578a80b29c2d94ecf6b3358668b3614667d0b3fbecb569cd27c1265ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 347.0 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 7640555ba8c027d2bb429fa8497cc1efc0d78a2bf8bdd36cad2a2c79bdd79fd8
MD5 5ff82afbf4a779778a7a140ce84c8e99
BLAKE2b-256 6b6d6e44fffd469f9475720a8f5531a21165d608ffd499c07be4aa6414f86a35

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 324.9 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 0e5c0a74abc37f64aec722fc09b64fc08353eea13efe29733ef34c531c1d9b3b
MD5 0ad14c893de7b9dfe0b54027f42b48b0
BLAKE2b-256 2e5ae73b58026f9b59c4328e499ded130fc7b17449692efd05152ae91e784023

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 358.2 kB
  • Tags: PyPy, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6acc321175817057e9c1ceabe74ca0b379486822d44a6fcfc768f4ca111d07c
MD5 eac7e66f22c8a9d4328f644f4d03ba9b
BLAKE2b-256 44ac06798b2b4c3fcae7b034df560c883551d889f840b6cdc754d9546753e92d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 402.8 kB
  • Tags: PyPy, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 92125425c846e0036e412f185b5aa0ed3a19d54880a7aa45148c47e243642ec2
MD5 1dd938b96e3907c8efcb51f3e72f8584
BLAKE2b-256 e3d31e77e1d6eb666cc15d42767e7fe40adb36deb28a94349a73bcf4dc892cf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 328.2 kB
  • Tags: PyPy, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5766c1495fc5ea958a1b5297b698a952dd74f2fe6a865c2ba9536c23b6dee69f
MD5 077c97ae35c8fd86dbaf945abb7ebd8a
BLAKE2b-256 858571a2c96a40fd68505cfade75fec6ab0b71000d846f94a6683571af092225

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 344.1 kB
  • Tags: PyPy, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 7f438696c8eef2da903ca43623b1818d6bda5bf94c382d90dc95d515a0d103e8
MD5 8960fdd6b404e00658eb6b99686152f7
BLAKE2b-256 ad5d1ef29d421a98c55f2d72daf99c052821dff9cfe4d3fe23d39865176a0802

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.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.5.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 654.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.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-pp311-pypy311_pp73-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 87b1eae8d6ffd2929e1cd5486e0476bc91fb573a4c0fe9032618456d00b73760
MD5 3708c7ed01b4af39a63254dcda457ecd
BLAKE2b-256 e96f69529e0757030b73a34e55a8437867b5b4464303c5bb28d2cb3067710db4

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-win_arm64.whl
  • Upload date:
  • Size: 254.5 kB
  • Tags: CPython 3.15t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-win_arm64.whl
Algorithm Hash digest
SHA256 7979affc480293e951c2eb617b282e8abc2f172e8b19c7cb833bd255562beb1a
MD5 fafe75cbdde63aeec6458828bdafe81e
BLAKE2b-256 814c4f9089a7bff6b1fa1e7af5fc77fbcebe2e0e0ea878bfe6ca6d475e65f017

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 259.7 kB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 3c2bc55b5ce1c6d0691e19ed73bbdb28f3f1d14164d1fe54f6499f7bc055024a
MD5 fe974c9315ef4a9f67dfe15936e4dcad
BLAKE2b-256 da766f665b66d419a74a632e1419278764cbcfe55b0685261acc70b091be3b8d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 246.6 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 c584e58ff54441e55601d0711c9e3a6805de2855623ac00f92baa1b154e8ae47
MD5 7b37cfaf4168dcd080393bb9120cfdca
BLAKE2b-256 3b5149dbd4cfbd3b5c9dead1bac8cb18abf992b729f8c513685b7d57629f4506

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 576.4 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36833be73617a57fa20bf43d71757e2ed54263a7695ba6c86e2a10c1eb37191a
MD5 a9a050021d52d750b8fcc6d8c1f72407
BLAKE2b-256 b3dd27b81b57e43cc8093680ba8afcb816997af2e1e859465983efaf9cdf6cf7

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 539.0 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 7352a2fefbe03198155db516227cf03bc261a84422b34f855b185042ac9128b0
MD5 c5c348d9696990336c4b5d41b6c8ce1c
BLAKE2b-256 2d0376b8f8f31e3658a640158d20e0d5d8c584e1f8e87b67127262e9c0e3fc00

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 548.3 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 c5681a2bddfc586d2d312bd03bbcf6f9d597882c26ac25f17bec59e6c1151b79
MD5 4b598e072ab24cec4d29c900ace148a2
BLAKE2b-256 cd32bf7e84563a47c3b28d9129bb383fa313a51892923058958b2281c702295b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 613.5 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 b85341de0d26a7dca56aab0fee01fdd55ebe3f5c8e8fd259ce7c54948fd5c94e
MD5 11ceb7ae6d52e0be257c1634426b86b9
BLAKE2b-256 514165c7edf72a63ccc926109ba6ce21c105d4a9e19f0df2c9a0fc3905b295fa

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 644.5 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 d2cd9a54df3628edd02a851cdb3a1c83aa8125c79ae7bd73a0575c065fbe1849
MD5 3431b132a7ab90f6bff4efed91911b09
BLAKE2b-256 1b0794292f9ea698512139c5fdd7553064e6f17cc760e61061902d6edceab97f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 532.8 kB
  • Tags: CPython 3.15t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 208372d9e0cb81ed3e1c7bb74c6d77ac41b02951dcea0414dac4ce6e478b0f46
MD5 069eb63947a2f8dc6a2480313ef74b36
BLAKE2b-256 3f99d12d55502b32ed47cd76fb78dea1eb4d94d6bc130e327f1eb402553cc234

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 362.4 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 ed9aac35c1daef39b4855481b80fb4f8ffd5ffd9ac153e9209b8e31d158082c6
MD5 7adfa7c1ee3775c063f94145a5af4894
BLAKE2b-256 afd0d13ab2bbda517a3eff3381831af59b9df531adca9b457f25ed35c41ac9f9

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 362.5 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b74e56af4ce7c98b892a7902a787783d3a931f777c41f54f4cb61ef29ff7fd35
MD5 846c1378a264bbc505b59f8d1368634a
BLAKE2b-256 e179a730e024ac836e6990fd35cc459e86570653f9021d5ae62e57b27167ae57

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 337.2 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 2144bdb1633b0e8c9d1b8b66906c84938964020d1d466a9e0f74ec29ad40e038
MD5 2290d451a9001698a0eac35b6c94e7cc
BLAKE2b-256 30e3150ad6de091e4c6b3b2d13fcd741f0b5028eb963816b9085d120569bad81

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 338.2 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 343c95437c7f63425ef82ed29a9fcc8b825206f330d367846d48444d22aa7995
MD5 f3029c480143ee75054c6a94fb5d4805
BLAKE2b-256 169b891de143c63b72641d523cffe543fbca443e09f27c165db39363cf60a908

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 340.4 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 a2a48dd4852f8afec7d4582b2dc79c76fbfb96ecb416087d42011ea3387d1dd4
MD5 687dcb05422cea284e4855c27db349b3
BLAKE2b-256 24cc67de15ff342efe140c502c536a3d16e64d778d0aa7901201556e814e78cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 316.9 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 68d40ee0530bd1a751f6c75649bb7c432f766a72766a66c041403ba2b14a52eb
MD5 fd221afc607b0f28fca38098151c3a38
BLAKE2b-256 dbd83e355e49a4b05a9abc58aa2c44331e26bfe2afabab6a95aa7c458521c1b8

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 353.6 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f6d73b3a23c397c8039517a3096c157548be7146398703a967d80d87db4ef66c
MD5 e746a50eecdc2867f0b10a42ff509e68
BLAKE2b-256 36801254e6be8f2172658f7b804dd3fd801d222cba13517e2d1c5a011b5bb06d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 393.9 kB
  • Tags: CPython 3.15t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f3f56e7d14e50878b0555586b449d8fb632302bd5f3c3b255e3cfe1d3bc273d2
MD5 6437da5d5750453de1bb93494dee818f
BLAKE2b-256 b3e6eedbdb50a0049fbccba9f29843638e97df7bb49a8e5dabf33524662271e1

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 324.7 kB
  • Tags: CPython 3.15t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 73aa25ce4374c8458231570b6f4cfd5e609b9149c9fc207b521bf0cfb3bd4b16
MD5 767b66b1d932434ca7332dbc75b2f7c6
BLAKE2b-256 cc026f69e0ba11efb5da6cf48171e8e54d582cad0e88230d9d2d482e41a9679e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 344.8 kB
  • Tags: CPython 3.15t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 941121f081a37cb4eeae14f70a37392ce0b345b6456f1c36688cc6e88fd5f8c0
MD5 e29dc18575c29ce9a4f228bd2874c943
BLAKE2b-256 7ac268950f89b7cf7e3f83f78ef858fdce9354292da80dda28161df3a5262e42

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 651.7 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.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 2cac780a7ec9a459943154a3fe276c85eddbd8a64c3f6a3ef27303a66a37cd17
MD5 db674795f710d1853f1e19867be80728
BLAKE2b-256 03573daac60bec0b0c1f6449e927b027c6cabb5a5bac4539dfc0a4a25d5869cd

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-win_arm64.whl
  • Upload date:
  • Size: 250.7 kB
  • Tags: CPython 3.15, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-win_arm64.whl
Algorithm Hash digest
SHA256 9d073e9b3054d05cb991c2c0f1fb98d18dd86982a99810229108bfb27b335ec0
MD5 4d738a8b48e85ddc4b540ef5abaf5317
BLAKE2b-256 3f486db20a47b649772a9f6a2bd5a6e7c52b33c66471597c6bc54dd47dd6d185

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 255.6 kB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 0dc29887371571869bd8c5d9c468c52806c20c98a4490dec1c143a52bea16c2e
MD5 738813bb22f686379197dd62e292da42
BLAKE2b-256 10bfe2b598018a958d1ecf60ac4331eb4ddc2313ba2c2a473ef03e3eab0fd9f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 243.3 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 237dfbdafab083a7c6fa484f512bea45466e8f093e0b5761967dc9bc2e8e3779
MD5 d52ecf4cb6fc23838135f685b023e328
BLAKE2b-256 d9444a67de9e8ceb53883a2b555ea63d2d27cadef382c7c37bb10537b5d0c6a1

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 578.4 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6f4aba5990920283856509926f224aba693feac290a8d71d5c7d7d765be869a0
MD5 329d838525a12f753e5fb697be32741d
BLAKE2b-256 3f2028df6cb6f653243fd7340578128d886e0746e7ffc9d1c1ef5060d1758336

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 541.0 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d10dbc61665679ce4f72f49aa98d879d2e4b0d85a07f167e3dd2111bb984ea8b
MD5 dfdc1808cc30d351a7382d0a4e7b0146
BLAKE2b-256 beb9bc642418aab2fcccec0eb9e0fc6e7bae821a0699273c75d04501959dd034

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 544.8 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 5e6b300fdc961b11ed6b9dd8cc0f2e878fee7c9eb38668a559d658dc0b885564
MD5 54a48f576f45cc69de945fc12d1ea3cd
BLAKE2b-256 8a3da2f2f03a212ad60afc4068a501a0b8e333c163b04873eb76056c3d99023d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 617.8 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 199de2ee5446868dbbe0ba16e394f7792da8f3e53e6ca95c575f34cd306b0601
MD5 23750c25831ee75300cb3b4b9f08e4a6
BLAKE2b-256 459484ee7194a6f178110d1bdb0f0521c494996dff406109b4d06f6a4799df66

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 648.9 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 cb9cc649b72b3fd07a92aba3e4739f70304cbafc6d6e9ac265e7763cb1711a7c
MD5 0575ecf02ee2683a7ec1ff50ccff440e
BLAKE2b-256 801479cac7fb9940b6e32b06630791f10601e63e602d93ea354d78f859178210

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 535.2 kB
  • Tags: CPython 3.15, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 a5dda18df616dd18396a19d9fc5e1cc1ec464e8b3b14417ec779658af7a3f1cc
MD5 b0575078406d42ea8a311293a7e1edef
BLAKE2b-256 a2f18c4d995769c2813d4a2e224aab2bfec33d4dd97a6134c1faad96e40b8df2

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 364.3 kB
  • Tags: CPython 3.15, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 7a0faf0c2c69f3854e4c5cf360a6c4f42377c7103a5c56d7ac97d81fc7f8de51
MD5 dcfd24d397122a3f85588274f2b7142f
BLAKE2b-256 65f0776b79b5c5a2bb5ec863cf959401764f223c3eb280fc00af982caf60d434

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 364.6 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3623f4f00cbf20fd8e7e50c0272d8da1cb88bcd2552b616063c14d3d87d5a9ad
MD5 5325fecf77308de21e532dcb886cded5
BLAKE2b-256 7a3d830a10f0cdc59b64fc2e8fac447333238d1d4bbe332ea48196d31c3524c3

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 333.3 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 b90bcb941a73a072c2215ec5eec010eff206e6c0b69dae907b39f4b24fea864f
MD5 473ea264567c5dd4f91e300fbabeaaf4
BLAKE2b-256 72e94c37b0cf67b7b3782ad5cd7681ddf6e0df6ea105bf7b0d64e1374f3e9329

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 334.7 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6d70e808337f336ceecf319b5f35e864cda5a0c7c105e4061189b3d7c211f8e0
MD5 4d5f01202310acdd4e2f27bb6fd06a34
BLAKE2b-256 6fcdbe77bd44f8c1c71e81d4e2f81e8611e4a7cf4a1d302f18af3046bb9bd659

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 335.9 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 1d2f92e6ec46feb4b4eddf25a9a86f2d38d73b7174fa1b7e350edafebc33409c
MD5 c65a7c86844b2155dc6f564b2ff0f840
BLAKE2b-256 3d2bd5036e9745adba3179484c78cc50b9ac2745640cb5f8f5056a530aa7561e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 321.2 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 4b10ad72568677c5a3f0180f62e6b2c029e647a5d63f40f0aa4a4363da69f174
MD5 3bf4f19845ef9ca746d8706d5bbc9002
BLAKE2b-256 6e3fb230295ee2686477d6da49de092df677f97bab0a51c6850787398a35ad49

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 356.3 kB
  • Tags: CPython 3.15, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 768f5265780f256bdefa670dee510399ebe2b645952032aff82d0a267045ee27
MD5 50ebc99b95801e6c37320aa256bc62ff
BLAKE2b-256 553d16349f250d1aeb8eb50151cde3deb2796ef767c09bbb285748a9b7d18ee3

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 398.4 kB
  • Tags: CPython 3.15, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 5e0973d8a6faae9aeaa8574c89c456badcb148f6353350150c0e39ecd04c515e
MD5 3a69d9462ceabb99cc0faace37ae4ab7
BLAKE2b-256 aecd8c35b8f8c5839db396ae4e5bca1f2b535588c1303f9781ddb8d1cbad31a5

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 326.6 kB
  • Tags: CPython 3.15, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e0b3f0facceb7e85d564980cb29b61cac2d9d78ecc698f598992e7d974ffba90
MD5 e017a52146471dfc8375639c29d2ec63
BLAKE2b-256 fb22b8f9e99ab036b7c44135fa5b0d21ee63825415adc6aece84a474f15f271f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 346.8 kB
  • Tags: CPython 3.15, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 5731d1a6b8127c704d873cbbbfbae7fb450627d9a165790b547598f367a0c2a7
MD5 ba3997f9fe6c0bac11e9c36101f12a08
BLAKE2b-256 49a2069c1aeedec511066f333ed5f502f30d864fd656e737ec48b47151c67337

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 655.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.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp315-cp315-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 ec8dccad909936cbf61ba14f56bf7014a6621ec47be4edd26aa8b9efecd9e24b
MD5 889b8782870d748a402456e18b2a498b
BLAKE2b-256 10bdee840c6415fe2a3924e691e6ebc90581180d11010eeb0557a5c8032a4cd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 254.5 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 2113b95546144a8647a3b8f980f6424657daf3511c63a12c97cd707c0c4c4bfa
MD5 a93586e00292962cd9c85c8ed3f8fa9f
BLAKE2b-256 774ab2249fd697d260a99e350c163ced28f04cd41c84bc11570273650d6d8aec

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 259.5 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 8c66819a479f3bc6b25cd60a3647616e135f9d23288b0b375c350c2a557022f3
MD5 3c4ae5adfd7abe4cbe574a072a560521
BLAKE2b-256 c3ad89d963290fe6d1418d169e4bde056a5ea6ad51b80ba003dade1b3d3ce791

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 246.4 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 28f7e69a4520f06a594a63ce67a8dae29a21e6f0efd3a4688c3cdb6ed18a83a8
MD5 c25f5df70f3a3c8c1b6c8150be3aade2
BLAKE2b-256 e9d147b57221f64b84cb5c1cce8e1c9eaaf214d878e9d46b3646a5bb5ac96430

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 576.5 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 15a9c85f78b65a45e4aa6ae922bea3c241eb4950fcdfe6c41d8e067cb5a29d15
MD5 11d0767dd1627381da3562dd2850df96
BLAKE2b-256 0432873cf455a309e2c866817375a9a93c4b5a71bc110cb1aac3a06812e55d60

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 539.2 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 748dd70ff95b17316f9c6a4f452207960a7990d84cb21cd503aaf368b3a810cf
MD5 d5e4bde7e70531be71cfc243f0b38a82
BLAKE2b-256 6482a800562ebd9ed29d25963388850ef140bafafb879565f1fb6159ed96dfc0

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 548.5 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 2bd26c959165adadf1c8722c44a450856093f70178768d9a1f404841fff4978d
MD5 b2942d8b90a8c435ea2bbe09b1008a38
BLAKE2b-256 2bd6c32f0a19c463ff4ab29a7078c53948a8f50e0d9389001db572b204dd97b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 613.3 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7df58d43d800d5cc0d8ac65e0289b80b2e2e4276262569657287d2da65469850
MD5 8513c897d6fd585b8d0a0e025868cacb
BLAKE2b-256 8dbb11ddf12e34e272542af564b9dc0c4ba281e3cbb1085ab585ea682eccb731

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 644.3 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 1cbb08a5a337d5dbdd9280b2fa17e8c97ccf665e26477685f648642a475ba567
MD5 02cbcc7b4c7b3cf355d3692dc72614d8
BLAKE2b-256 744a6a3ad071c4ed92e404b719e4101846b5ecc6c174b0b7ea73cb72dee2b49d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 532.8 kB
  • Tags: CPython 3.14t, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2df32c831b71589863fced08ecabc5f4ee33a08e6de3243854dd37f153389c4d
MD5 e9e0442cf22b0090ac56c0e52e9d8ada
BLAKE2b-256 f832bce44e46cf66f64e6f3673e1a4ef57fbae41c2c2b7bb68e27e99624a557e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 362.5 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 8c66dca5e8786214f0190e52056dd9508f4d623ef352fd0cfc414671d8d82acb
MD5 a33b0d9558892c234a8e093b2c694e24
BLAKE2b-256 be8bc63f739646daecdf9ede61150f85958aa031c453914462e421e355419cb8

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 362.6 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c8244586a6d6bd8d6b0c70d38316333921804d7814899d236a92808af835440a
MD5 806dda6194bb679ccfa6443dbe140c05
BLAKE2b-256 a2a6463b33d9ea9d1626ca2666f27fee8780d48de1286ca1bcc8bc19928a7e15

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 337.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 7f55d8b597ef82b5f01ce2bf7ede9f1d179d824a5c8b2cd7a7cc59cdc3f20ddf
MD5 212a58c2bf48c9e5c92fce12f98a3cfe
BLAKE2b-256 73b12ae75e6c63d546d2cfd3c1bbb59a7fa92285479c5bcbc1904b48b9151877

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 338.3 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 b6bfe04cb3c4a11a7d04ca62fa11a4f0a23bb65135aeb8bb8bc682f85c916d6d
MD5 76b8d0223d34c49667ef121938cd7ef9
BLAKE2b-256 48fd8cdad739c49d9e81d1064ace4809a7234d57e359253f3aa31a3324a2aec8

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 340.6 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 1f0f2c58877b4bab5b8eac8deb3c673163b83ea983a676da2a25214f4dabf5b5
MD5 a973dd5debe62f41c616693c18a0582f
BLAKE2b-256 ceadb7178973da8942bb0233e60e12ddc0f53cda6f7b1731aaf51c3ac448dc7c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 316.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 fe16b67a5a49d1e99cf28eafe67137d8c1a2a396ed1377bb6d673fe9ba345cbe
MD5 0d34c06a2f3ade1317491f876160073b
BLAKE2b-256 a0b2a4434622a4fc09872e93a792db834d73395f55aed821e440cdd82d615433

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 353.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 a19723af9755553f2876a6a56ff092c1961aa15e06c9f06240133ad35e9a29ec
MD5 eed06d39c368f5bedf394c7dc1fc0614
BLAKE2b-256 f76fddb8b8973ffc3e528e9eca4710c365668116334b82dc8ffc3217dbc16ca7

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 393.7 kB
  • Tags: CPython 3.14t, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 b1aabc97b847119c4e49cf50315942b3b0472c9ce18f7112ee2d61f51ca81057
MD5 dcc173ed4b6c701001f0ca0f82f26096
BLAKE2b-256 e0da88d8fcdc388dcb70afbbc52292af64f0f58fc9e4c6e8ac18a69d383040b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 324.8 kB
  • Tags: CPython 3.14t, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 899beac31432c917b81516a64af9e24d0871ecafe44f73be637d23f88f4274f9
MD5 d12365ec88085a687805b9602f393b0a
BLAKE2b-256 a95571820e741ce5d2050c5575d1a77c14fbe28c02f23ab634e88b2c769993b7

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 344.9 kB
  • Tags: CPython 3.14t, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 6541c9d34b7a66701d6207320c072cbef8813ccc6153bee041d4c97c5a452e0c
MD5 ae6a1c96b92165d09a20b9e9fdb424f8
BLAKE2b-256 1d0ff44d389571f7c0b3e0e9056dcfec5d24115829a865f17364a3a52f989577

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 651.9 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.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314t-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 85b2bbb27ba322307f69376560c0a6085b07b32f635980df77f96093edcc48c4
MD5 1ad4bd054be6a0d454d29f5b1b0b1504
BLAKE2b-256 02b901e00c91152ed4a685cd7f6b580dd94695a015de0172c27e8b75eb935f1c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 250.6 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 ff81687219b5ba4101d95443bbc522d349be432ebbeca4cd654af184dd93ae06
MD5 e51e3a972748cb0d58dc77a5ad720101
BLAKE2b-256 e8a8f6efab157b1763131de5b1ec897a088597d908ea02a88799c21ffa5e960b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 255.5 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 3164d4b2c5ff0598d0a99cf9dde3eb404da2db354e20d92745d825a132d2d362
MD5 700418c27539d8e9c096de30d435fc5c
BLAKE2b-256 d61d708d931386b62924a1f0bda675b21f25befd099d6d1f33d56f75bfae194f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 243.1 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 0657357f2258acb2e887d743edfd01a8359016ff14e2c08dc836150fe033023e
MD5 5199a18cc238f3d666a0a22c33012073
BLAKE2b-256 13bb2ebe964597550dca29c4fbf498ff948d5180ab678f0d279291d8bdcee6ea

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
  • Upload date:
  • Size: 122.7 kB
  • Tags: CPython 3.14, PyEmscripten 2026.0 wasm32
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-pyemscripten_2026_0_wasm32.whl
Algorithm Hash digest
SHA256 e4bf0ca9c97c01a3d85c818fad9e49fe52e89d48368bdefd373863dd8db184ea
MD5 7a40f7e8d01f506ee6b8139bbf528367
BLAKE2b-256 8d99f5bda0cdd7aa2bd76d8c2c208de7ab88aca2f4b9544d825640c35f765fab

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 578.4 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ad22ecf24dcdfc0832c754d058da708f85637f75dec873cb8e9a17023d185fa6
MD5 2629af2d10534163888ecc96dd366e43
BLAKE2b-256 8c3d887275e46a1fa1555a0c5ef1def710044b4c3254f4028cb103021e0735e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 541.1 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 0c2e2157bccf7be0b6d03e1d3f11f8f94fa15a276b9bc5c128413bd0de9056c7
MD5 0716d91943782d76f7aa3d7bf25fe788
BLAKE2b-256 82c4eaab1ce52701acdc7d51cd6250557dfc2112f46e6682be92e29f85bda055

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 545.0 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 cef448091fbb61f74a4c7b5cadd65cc1a7ffe24719781ca3258b9af15799a8ef
MD5 b604eef19e4caf3f8a1173046501eb33
BLAKE2b-256 2f80d186cea0bc2439aa65faf9f05f976569ed4fc90091eff710af3b49f97d10

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 617.6 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ec7b1e127ab033c897f3354df0fcecd06a428c8f81eda663c55f3d4947b1f629
MD5 7d1b1cb8b07f9f854ce4fb87fd93c5d8
BLAKE2b-256 481dfb9fd99eb5866e2654072e3e74386b9432cf1fe9360596a2453e5eeb9758

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 648.8 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0c131b0784cbb88fa4889ae7420a49d9435f7da3c44eea36d8fb58f09f3fffd1
MD5 c723a3dc211171bee15baae8a5488ad6
BLAKE2b-256 e2685c72ef98a82da3118297007a676aa618c7161a9f0f751aa8ac239581b14a

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 535.4 kB
  • Tags: CPython 3.14, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4ae688c8cf620bedef56eb8f355c6d64b82f85b4932697c2a106396fa782efa
MD5 fc3fc3c0789905e8dad9437d03fb4139
BLAKE2b-256 9b9388bcbd44e77f6513cb19d8aa518e2939e658952e5db807d0a99d2150df76

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 364.5 kB
  • Tags: CPython 3.14, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 05214763685f2153bc5ba2f3edba329eb680e0cd0681e4ea1727fb732de547ee
MD5 d35523c2fa5e6ea933d7b1c23ea069a3
BLAKE2b-256 f516cd45e6f71eae067c79399a21231bd8e7af839e87de3ca3c1013231574b66

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 364.7 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e089969f669b2834009cb3ca106e0dabae702e3473594f93abbd5d5bc7fe928c
MD5 ddc159cb8bd9a64f194d79b68d65bb6f
BLAKE2b-256 306bebb8ccf23165841192bf54e242f1f337d3e82b1b6b06c79d747266e74ad5

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 333.3 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 568274f4150211e010121367eb6c4017d0bf4f0874c0ae6af2e6afda0118482c
MD5 9ccee5359392c64d95beaebd6ba8804f
BLAKE2b-256 7fd237d23ed6f3b5465c10df875fcebbbcb785b4380c89e906c3e96aac1be1fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 334.9 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 59882b3303d702a8935b2aeb47b933040bcf7b3e3bc7e27d45fb924ac2409f34
MD5 4db0439b9fbc3d97f30f11e42ee3bc2e
BLAKE2b-256 8ed21e81eb6f1168f90b3667967a9e2f66d6dcfa938d037f9a4ddd9fd8b8edc7

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 336.1 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 a7eb0475bd1ab512f7a0cdb3ba817ea9d57ffd4c994af8c0f6af842deafb3078
MD5 ae12334d9887eb8d0dc2eaccc22d22b4
BLAKE2b-256 c435c7eb0d56afe82157c2b73541e2b27f4d99ae875adbec41369c1df008a5a3

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 321.0 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 3530961fa18d484a1efb2a97f3b24031fb5dfad87ee4bc120bc06e57b947c64e
MD5 26c45c7a8cedbbd5a618d7294f9be986
BLAKE2b-256 35264c33ce35d69c7f86da09a6c799b62ebdc272467ea27c34c88cc6a6191ded

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 356.4 kB
  • Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae3c66a73518f9e65bc4d32cdea3d934b88d43bee78dc95db97a32715f9381b0
MD5 ecbe4b82726837ec9b6ca32c0fef74a8
BLAKE2b-256 1acb98b9499eb9080b3b94b049188780b2082c55e59f4a67f92ad5e0f58d82ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 398.2 kB
  • Tags: CPython 3.14, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 90a5d3961104ed23a7156aac0ed9ce4aadb92b7154753bc59cab9716340d6cb2
MD5 6ab1a1e7de7914d049fc7dab5e358740
BLAKE2b-256 ad398525db5fbc5c1aa71fe8347b020cb8812b0f60bb035c6e5477f1ce03cc7d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 326.7 kB
  • Tags: CPython 3.14, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9d50d70952255b5aabd774502edbfbba074bd4759b441cfc0e96d2cef7ce1621
MD5 e075d0c56ed463568a1b5e8a66d6a715
BLAKE2b-256 053bc3a2d7f3ef20759d295593040b6fc3c31018da58d14f74fa7af1042253b1

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 346.9 kB
  • Tags: CPython 3.14, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 e7a2d8dcc6521a4820c01e2fccae8d9c6936290692ce075a41f5a92330789678
MD5 6a43b7cd74b2717878ba31f65e2374ec
BLAKE2b-256 6e8c5782815bef479e0789f0d4cd0a084074a5e3550faecc8b391a9d3b5a0b13

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 655.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.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp314-cp314-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8c6be97821e8494e18429a314eae2e3aea50ed9954adf452e825d741a870490a
MD5 a611f51ab050c458250eea7e8d8a3afe
BLAKE2b-256 7202e7fcb8000204c31f063d1edb1e7fd9aac2a7888a91457af67698510f77c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 250.6 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 ce4d20a7602b20c688dc3b261c5df8cedb2b152593c9d84c01746fb86025aaee
MD5 5937e752b3fc9499df749e64892afd4c
BLAKE2b-256 e17d35e0e341fccdf43caad2a5c6e23aa0265cadb78dda1c18a096460fd6bc61

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 255.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4341085d9a59bd4f2395501ca6be559d761146ccb4d29dc24c33aa9f57e67dab
MD5 e9f462cb69d30dfacace32f8ed4b8f91
BLAKE2b-256 5541ae970666ffcd63ff0efbff877e4af703b6db70c517bd0c905a09086b0d2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 243.3 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 0348530ad88efce17b4c7348d5b335f447f117c1915fb176c0afffcd74e80bc7
MD5 0f49300760d561f9222598a72657e8dd
BLAKE2b-256 26b7d347bdd83eb895aa59ef1c3be4d6d789241826ad8b47494a2c595719f225

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
  • Upload date:
  • Size: 122.0 kB
  • Tags: CPython 3.13, PyEmscripten 2025.0 wasm32
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-pyemscripten_2025_0_wasm32.whl
Algorithm Hash digest
SHA256 2c6fae193c36c80e89a4f18bd88df7de0caefee8ad19929dde1135ff1c882ae4
MD5 4c1a2a0a393889e818f54ef4eb274e56
BLAKE2b-256 1fe5e7a1da02bd618234886c90212f826d48db40445e9e43736474a5088fdc9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 577.7 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 be2b1d95e8eb4736de2af653c9360dd4e364481b1cb1bf9fbd7499f0ece8ce4c
MD5 4aae5ad076a36318a335e6d0eec4cc94
BLAKE2b-256 8972530cf3158147a5d6eb99a3650c0e75ad0139858c70f62bef1287a9532792

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 540.4 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 e828bfa4c24fe3eb9ea048817e184d44239c3f1307d2c84398d10cfd65a4d6db
MD5 bdf683724169f6e29b28f5f53cfde284
BLAKE2b-256 9435fcbc9c8af251740f2db47f238d2e458d7b53bee755f66c5b1fb268967803

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 544.5 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 79beacf70811955a4daabf8e9e46cccbb035e2cc79d6f4567c454bd6968ef067
MD5 79f1c3bac86c3f7d03d8572e2ec22741
BLAKE2b-256 e8b6b7f9b76a3d56eb75ea65c238ad2db8c30afcfff5ea40a3e81ae576b3c47d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 617.1 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 36b611c2e55155efbfd1e296002ead066a898eaf29aded23f54f97188bfa5563
MD5 ddf35fefeb98ea626b9e6696b00b51ec
BLAKE2b-256 4702d4dffa8a05e5c8264981f814b0c518db9bde2510bf092b20bf3a48b0cf68

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 648.4 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 58d01411b38960dc470e2a53938e32067e037a6a1eb7e42da98d61166c113078
MD5 28d323b2d527b376e5abeabd28b7fab5
BLAKE2b-256 e9f31f519eba3b10a45655f0b1328cbe32692b4db5c36b887b29181bc5695281

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 534.9 kB
  • Tags: CPython 3.13, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4b5a55b2a4184eb737c5bfc59624c7e9dd6e9061903328d0223af22d37ef1ed7
MD5 8a35cd93a5339e900d7a4e9fc505cd1d
BLAKE2b-256 788e8f562f55e17135c2764f639c8db7c08e1e7eb11b221dd65cdf296c0e3823

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 363.8 kB
  • Tags: CPython 3.13, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 070e183bfefc5ff9dd8c4e4f30d73bfd8cf1e3df73a6c978c5f8b252a1f4998d
MD5 10fb1623664ec4a5ada5c5deb2cfaf13
BLAKE2b-256 fce34fca87483a59e7dec7409d17c04e4925879554cd58f75dcc0635c4870268

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 363.9 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 41e4e393876b09d7fd7da75239aecd870c90c82a143e090f951f807cdfd501f2
MD5 581aa1d35b60d28844929ef522ef0754
BLAKE2b-256 2170bc6285014b864df5b52d86aa86ffc8ac161dc5f0874f930e99016957eb5b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 332.7 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 113efdf9d622f60db409c5c2dd0990f516e2887031741569dea0d990e817b597
MD5 1517dbd171a397df8158c1b234ea9b68
BLAKE2b-256 7ed881f0166aababe4a313836dd6fb7bbecbd10a367d448a28d86120fa53c461

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 334.3 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 70d55ff1aba4e8fc4b69c76603cb104eb1d495dfffe151bacb4a5ba0a6b0b7e9
MD5 2d4bc2fad8549378e4b82798b648ab7c
BLAKE2b-256 b61b379a2e38305e19d12a997a33afc9af4eddbefe557ba5c0ab0d46adccbe81

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 335.3 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 0fad8f80f33a618d8104fad05a02a2acd237eb82eac2a09abf060d44dd1ebf42
MD5 8b93bf338aeecb1255e9a171b34e8507
BLAKE2b-256 bad0680516a82b833973850df9a8c54e8efbd979d87ce25c4adfe12c5673a0eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 320.5 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c5042ed2c22ade168f3f4df52201e58d9ecd0433bc72e52b274f8b4b711e49fb
MD5 0bc72e876a95ef9532bbd37322f13c16
BLAKE2b-256 4c6ffde556165f2f2b4ff0e2a009cff44c9f11ba90222845ac94b8a3562d48fb

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 355.8 kB
  • Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2b0ee9dace83632ed21b69766fb39beaba9cc32186a9e4a5c423c2782d66b5e4
MD5 a4020d46bc465a85400b63bc81b672bb
BLAKE2b-256 a703d62068476a97124ec3ab3609f58b36b1196a698fc1ba03e0b779f118ed17

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 397.8 kB
  • Tags: CPython 3.13, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 a5ca9752c79f31912a1f3f9d895473776ca0b88fff8c069df3fbd2a4f433e4c6
MD5 507f213d96726e59af949fee4d439d60
BLAKE2b-256 7b2de1fdbd575f1dd12583826e30027ff6347d43e3603f0cb9ebfc8fa5a4d5e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 326.8 kB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 958a9977e778a8798d6349ef4d0624f92859ea146ec277f87876a424925988e1
MD5 17c04588aa5dd6437c5289b0b34e2f28
BLAKE2b-256 dfb28ffbea0e765beb313f22ed21f49d8e99f81e8c64b139f5a852a3f8825890

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 346.9 kB
  • Tags: CPython 3.13, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9e9eba05299f9d59a853f2c3510f22751b1f2831129ccd3bb0ed6d68e6c75e9e
MD5 f0a5446218ac62ef7874d2dbcbf78253
BLAKE2b-256 812d09d0ae84c13590e91d61dcaa2a5ffa1e7b294a954d6dd0b1d8d0ecc21316

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 655.9 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.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp313-cp313-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 117547c24947657ff0105a9a43bcf025627c8d52d43077f0131b6202430386d5
MD5 48351196a49d3eac95f714680074e8fe
BLAKE2b-256 d2325d851376c86044b9b6a0a8d09d7f6373cc5ad18a60f1d92921fa17b8811b

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 250.8 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 a7d76cb4f39448865720ed1a981f0814e81f620eb3f4fd260fa5fd20aeb9a1d5
MD5 8609ee89be46e26337e72417e4af1faf
BLAKE2b-256 be060d8dd92b65348568830adf799c3c606d14f9432cf4a30a8596c68f824868

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 256.3 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 5e737045fedcd7243c390bfdc0b489f4feda4777558c3986171f277e2d6005d3
MD5 8e9f173ddb4f0862d555b497b62f5ca7
BLAKE2b-256 4a6d260c97e0aad953e276ca440fd27bb62143351fce8c0c12134e174c0792f1

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 243.2 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 f6abd9806fff73e906b50b25c8a537d560faa6bc58d68c3bf95c0cdba910776b
MD5 0c7770f65d382ec9a0f9e207e6102fdd
BLAKE2b-256 c193bfdf5afe489df2224bddf12b5290670b4b9e09e7e5b807755039eaec99ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 576.1 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f0bacf7807c5407b05a9da5d313dd41e2b5d72d93700b07c0d6362dc7b7d0a26
MD5 3cb14fedb3a9f15150813235d295fe95
BLAKE2b-256 6c9e97e88797a8a1f3f9426835fbb96bd364dd0220adcf38d7e16a97b9cbb4bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 538.6 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 d0fd944ac71626c11739733bb81d9b0575e51c71b2bf8a70777427ece81e22c9
MD5 0084b2f9a6c8a82a2eb82a5f03e749f1
BLAKE2b-256 136b91153340a06a465258711df24d0587dfc6d5dd97657abae3f561a3f0c06d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 544.8 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 9a8e0dad51c8ab72697516b7b6e3c86b1d3bc27c12cc903ff89e11c510b8a16a
MD5 5d608dc02499784d8f800b3f3497c5d7
BLAKE2b-256 d60b9915cb0eb47f85e0b398bb962929497a2fbae2aa39d07caba33712a6e538

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 617.0 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 d17af71df7f3bb44a58b719f08dbe97f0172b8206954f369298af195cb042dbf
MD5 5bec38be7edc9dc962808347f2fe9ce4
BLAKE2b-256 7bf483530309dc741453391d8a8ba342c791b3849cd597ba8c2350e63262ffda

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 648.4 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c90a41d51124e7f31d29375b6d3724ea37162bd37852bb140e8883c4e84e6d54
MD5 a471d8f601f40fe1eb8705fe0b3b7d3e
BLAKE2b-256 32d71793fa50b8fcb302015f00196887b426f3d1fcc92fc6c19d853a4433a236

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 533.6 kB
  • Tags: CPython 3.12, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 aec0c82d2d9ce0be14a5bcece9c0d23a16800cc213318613351584424ba26375
MD5 16c922972bccad6238027189a54a8185
BLAKE2b-256 1b5d32828391292bcdd72f25086cee75091e3f60ddf8ab4d85926f97c0ad998e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 362.0 kB
  • Tags: CPython 3.12, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 41ec85a1c900f832fd58df9cfb03d18cc4d726818b2d145b2f531a3275093d70
MD5 36a7997fa23eabd3e0a8904fc4b0d8f6
BLAKE2b-256 db9685483a2b343a54d4fca4de76ad4a6a5eab2c6391ca0f27808e1a84dcdbe8

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 362.3 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 379a78e9ceeef446f761ba539e65326b394406c424972b80c5994f37fdc9f220
MD5 550c976b9186bb36f2999783fd197b32
BLAKE2b-256 846fb9e3873db1a1ba27fecb107a965d10016a28b65dd365924977fe3a897186

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 333.0 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 07f7a0bda3cef7c1120bd92760444214f6326a21d60be1052ae61146c6f1c2a3
MD5 92990f7636b8b862cf938a5fdc95567c
BLAKE2b-256 0eeaeeadee2a65531417468b130f9ee5358212c64e98f23909eb5a16c1610ab9

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 333.9 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 ec6f7031571300d3f3dd1d991cd377f2df5ee14dc5ec3e5e06ead33e03266d22
MD5 812cfecb3aa3184d5742a34e2c593457
BLAKE2b-256 c68f207066c7f4eb09a15a1e27d2a412207746312cd42b12c904b81f7fda2d54

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 334.8 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 1c93351b9292c8ae479d4437c6831ecefdbe8782f790fe53df456ff7b53fba97
MD5 3428341cb9795be3ad58ddc5d9caedc5
BLAKE2b-256 7d941655a678abea28eeba61bf4267363658da36e8509894a7219377cab34868

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 320.5 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 f23b9f5d19ffcdf62800508f555a27382386eebe39e9e15d0d5c68424d88b859
MD5 45788b8cccf56a9bd46f8fb0eca47577
BLAKE2b-256 b9d44aaae1ef9716bbeffbfd0094a99bd4f7400777135e71562114d755a13bdb

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 354.4 kB
  • Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d4eb9ae80dc2d87511a650d79fdcaf18cb9a64479323ff8b5f32caa7544d17b7
MD5 ee99dbfdcebc83bfb3864e077cb384fc
BLAKE2b-256 92a03b54d36d2d55ac9a086accb9a70ac71a93f719df4aec88d85ac6ecccbca5

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 397.8 kB
  • Tags: CPython 3.12, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 d2a2d89031334d5edce97ec5fb04fe0812cfca09ce5b880f9d9dbfe6fb6b1ad2
MD5 74dc6e603fdb26b47f7785ab44876ab0
BLAKE2b-256 a081f7e2e4181156a260959306957179bd91a604491a8ab9a9edf597250b1d24

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 324.8 kB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 116d7be4444588b233bef01e2f336067ee59de2e8a75db19b225a4f4aa426b5d
MD5 6223f06afb19e51c58d0e0e66828cc78
BLAKE2b-256 2d6be797e246044a9838989321a134128888a5b98c6550acfdd330f1602ee91f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 345.0 kB
  • Tags: CPython 3.12, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 22347e8e42e52d229853dcf55f8e24cc159420d471b53c8e4fd41000df764652
MD5 dba9884ea87e4e38b308c724d921e3c9
BLAKE2b-256 af9821d430fafd8e8c759d1411c545a720a51af3a8c7df9431d3bdf9573c11c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 652.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.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp312-cp312-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 2727ab8cd9afa359e7cbd746740dd7352fee3bcd1bac1c3c1e0ab8a6d7ed3d40
MD5 1e39ba01a15509bd28aa82beab5230ac
BLAKE2b-256 6f97ca7f3227bd791831319808fa98c4f65e1f326139a6167d55ceb97952414f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 257.9 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 78d2d21a51ae3a31ea1109195182c3d6fab3a89794cfce5ff64de3ec6fcd40e5
MD5 478cf75b98e7fbe80404bbb117712f51
BLAKE2b-256 f26133929a779e18047f4107536c7e009d68ac3b8358818249bc27e26a65220e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 263.5 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 0ebbced57e91bd8ad286a14fa61aac88a5ffa2e6bdb73c7c1bff901d5dc16840
MD5 d743f5d0d6ecf908ffba820de475ef23
BLAKE2b-256 a366e6c36b511cd5225b46f5bc0d0de7d53c6f5e032f3fb78ad631debc032540

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 253.9 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e58c2e0fa5f3bfc27997dbac9a8e7f83ed00d54083e89598fcd4dd5369b95b47
MD5 f6e85189067a47ef6b33373955b7ae72
BLAKE2b-256 9e7bfda29bc813b6c062ca758901d1c8182b797d1c396d98c67ebe5dc007a9e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 578.9 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f37497467dce0f0d3cf4de5b5103903db3197019350fe49bd5fe5ea4ce3f6ca3
MD5 1e0a145fa4e02c6c899c5d4198f08346
BLAKE2b-256 cfc733217e1b683ca8dec24e610da44ae8fc2e065228dd607cbe0714977b1cb1

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 542.0 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 f52c1b29315a438e28a484e3ea44b6bf72401a97707e0dfc5c74acdb98999979
MD5 e5f141aafbb68009717f778233cd01f9
BLAKE2b-256 a6506b3f1c2c787b3b541ae4190f40fb300a87f19174cb76c16b17236215d531

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 554.8 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 d2a5ff3f9c8bef030be49eb0dd5e89bcbbe676b6ee69167e2836201f4e5e4cb7
MD5 8f758045a9c0a7b5d2c610e3f52268ef
BLAKE2b-256 415d4b8c5bf0d390929c87e027e32693fd55d385b376963f5a69c50249d9015d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 620.9 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 aef50254b580ea2a115c1d8749a4b119ed83b29a6a0fc4d8b8524a4a13b765c5
MD5 833be6217618fafc5d8fb7cc09849147
BLAKE2b-256 782c3404aeab6b5d5919118d923b93518a1b759f582162c7c0ad1791db8dbaea

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 652.2 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad44b21f3f2c5f90ff14065fa79a2f5ceffeb7ebdef67858d6deba754a0e0b2f
MD5 503abad2e938809425371d60a7666c40
BLAKE2b-256 3751c47ee9ae7deed7b9218943ffb9eb208c9bb006f4296dd330ab37aa538c32

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 536.2 kB
  • Tags: CPython 3.11, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c236dcfce264552960a13a1320a11bf52a77de7c247b2db88ac9b6e50d9b6bd
MD5 ec65af2fce655d58f2c13d2457580e32
BLAKE2b-256 dbb95ed89178fcf4a0e1c2da72f033ecd50fe71d9c8995d4509e6f6403706d1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 365.4 kB
  • Tags: CPython 3.11, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 f881c6e0bce6a9df6475c7fff5dd3346e9771b8f5d8ed83438514b30774dbf33
MD5 b6f93db78129e66a4bb67a26efaeb5f1
BLAKE2b-256 9c02cbf0a7178f25a77651a64f49f8492e1671725ecde923d8c121eebde43446

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 365.2 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4bc70b9696a4ff2ab916c91aa98cacc3b2167714817163a2e818155810df473
MD5 8f3162785ea060ab1d9348d174dfc1c3
BLAKE2b-256 64002710687bfe55f411e362191828602c373c83ad7547ce109dd881314391d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 339.3 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4ba121fef3610dac0f7fd6e6c4a84a59aba04db74ba40c6af8eb48e578395b40
MD5 5e8ba58477cb3ca2271396f621c470a4
BLAKE2b-256 931a3d22947f8644bf295f09cef9e7ac4babe22905907e7140973e58c98b57e4

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 344.9 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 f5f463742567c348b52f2bbd44176759e943b1e91ffbee58c79f94decdb0f197
MD5 e0e3faf042d34c4b7d711e225df73cc7
BLAKE2b-256 dad95cd64e13c5e5f073b0fc67349a4ec290aaa6b1da96bfeeafd141623493eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 346.0 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 66dc008ac3ea9afc8764177d82de04f191ae611137fb379e5776ae9bd3ef57fc
MD5 fa3c6e14778f99bd133feedaf97ffaee
BLAKE2b-256 927ec1c0fe1ac4d6fb1e129f49dea69cb77b8e1c4a54086ab990e9800a37e5cc

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 325.1 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 ed23c73784bff9efbf0b0f80c609f9e027d229e4c0fc45ae8b9c247de349cc2c
MD5 648f63820f41a896debf4d29d8db959f
BLAKE2b-256 d4c082c7e7a145c4f6cfabd07ab2789e0b9704a9d8da6bbafdfe1836d0bf69b2

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 357.1 kB
  • Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c3a74ba25feb7e546949889bd20ba4276f2d6be6979733f0068831d650faf28d
MD5 409a54967a595f822919ce3a493f92e3
BLAKE2b-256 d5f77fb3835bd73cc241843a6f9d62ba927a0849d1f8849e5d87db315fff7eb4

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 402.7 kB
  • Tags: CPython 3.11, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 03b19df6c9a5584ab48573026a09a5ae17bff4866929193eea0bc719ef50f3d7
MD5 edd7700a3b2ad1e642e82f540fbfc9ee
BLAKE2b-256 c5e2d38c6c4b3111652fec40e3b2920fa07ffc36adbf941a3d7418606d8ef36c

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 327.8 kB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4785cfca2cc4351eb36d8f35e7fcdc046a8bb6fe63785e1c202e33c6b794c0cb
MD5 4ba37f98e4ff8a8e3e2c8472d4aac1c7
BLAKE2b-256 d1bfedd8cc1e67979efc65ec5bd570393db7371383702530fa897c95405999eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 343.8 kB
  • Tags: CPython 3.11, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 d25e6e50e42bfa5b63fb0e617210ff5cd9407c60937657acb7fc4d17f43b49ea
MD5 979d635591b7e18ebe633c50c0fdc073
BLAKE2b-256 59ee2ee3c3a60060832fd45f37cbe5bfb80e2fccbff3c27be90a013082f9def2

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 653.8 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.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp311-cp311-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 8273e77011a28655bdbf1939a96107e95d3fdd82bdc05faa4e47150189e8ff23
MD5 a941f558ac2d54b040412b7aeddd5ccb
BLAKE2b-256 8983e69b061d8c67b7b3eb8fa900e1d3e29f8a14eb0505f03be75625aaf53020

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-win_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-win_arm64.whl
  • Upload date:
  • Size: 258.4 kB
  • Tags: CPython 3.10, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-win_arm64.whl
Algorithm Hash digest
SHA256 84c0adfb797208fbfd4d4d5b9daaa51ef47541f9f9f046d4f84935f1b77dba3c
MD5 217aae5cd6c11a991f535fa813aa0a62
BLAKE2b-256 fd606aaa287f06e9ed7183a76dc03a3604db119ddd3b8eb70dc01123e5803332

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 264.1 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2b57296e62a36ee13a891e5cde26c27a3253fd0302b0337759aed34abf1b089d
MD5 1645de1fcd3339e4514a69c95aaf5342
BLAKE2b-256 bee6be23232923b8c4822ef2340ac5907909bc610241cbecba076e5faa66e478

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 254.3 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 27f9268fce1bc09c9c75152d5c21f5806fdcbe11cd80256bf963f6c4d673521d
MD5 1d23139f2b577da4cc90fe6ae03d3411
BLAKE2b-256 86daad94b5666b69784e8d7e04e471de50b9312c9c49b58375c418a03cdc7252

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 579.4 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9d7741489319fbf11547175df2ee3c283cf91224d160559213fe0087426d51d2
MD5 ce70f66151edb5cf780ac519a408e06a
BLAKE2b-256 6df3fed897b5708be617c20496579d66e9da4c5beb18e0587d51aa1d2f92fb43

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-musllinux_1_2_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-musllinux_1_2_riscv64.whl
  • Upload date:
  • Size: 542.6 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-musllinux_1_2_riscv64.whl
Algorithm Hash digest
SHA256 18702a9ff8c2ae12cd175507d8ab9a1246c8302cc553f4be8336b8cbe47680a0
MD5 6e764e0302ea79facdeb7b846000bbe9
BLAKE2b-256 506a1e67c0f8d3ee8cb27c037815b84f539a4de995d0984dff00ffcb06666d62

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl
  • Upload date:
  • Size: 555.2 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-musllinux_1_2_ppc64le.whl
Algorithm Hash digest
SHA256 f3a691de8ceb5b5f2da8bbfb87c998607cd2181bf2681cc5e9f8a007129ecf42
MD5 566ae3f2f975fdebf7821fcc6b885cc7
BLAKE2b-256 6e1971f1c378c83781c0f696fcfd04f803e486dd8313c3c11f8735e320938880

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-musllinux_1_2_i686.whl
  • Upload date:
  • Size: 621.5 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9bfb6901250da529beeaf48eb92acdd5613631795fd50df4850ddb91888367cc
MD5 b0c9ba4478a30ecab11443c31edbecfb
BLAKE2b-256 b29a567dd47124950e475f452f17efa0e965393bb1690dd600e04aa7187fae9e

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
  • Upload date:
  • Size: 652.8 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ad8af6a5b969e9dc636d276d957171652e8834426f52d2d6235c9aa9767b86a0
MD5 cec79bcda01841b8c3a2ec2f3729c9f6
BLAKE2b-256 69835b9b58e37dd3c297590014aa291a15aeede342143cd3ee44609a3dd8b12a

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
  • Upload date:
  • Size: 536.6 kB
  • Tags: CPython 3.10, musllinux: musl 1.2+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 273e953a4b3d37d6759e4e9993d34e2de1f7d4e66ca637807771c848f943ab35
MD5 49185740b092733c74f28a666828d66b
BLAKE2b-256 021143d4124fa51fc74dd314038d256c76adc3801923b3ef7119de34f9392b65

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-manylinux_2_31_riscv64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-manylinux_2_31_riscv64.whl
  • Upload date:
  • Size: 365.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.31+ riscv64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-manylinux_2_31_riscv64.whl
Algorithm Hash digest
SHA256 dcf469d0b3e80569de7801194a384937e5760fb2522db0e75a9aa477e517618c
MD5 1c4af72cfe919b85c7401067d874637b
BLAKE2b-256 95d6ceb0014cc54031977ab876d1911f2217202a8dae9a92b8720464586ff020

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
  • Upload date:
  • Size: 365.8 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7890a1cea10380401a7b13e8d0bf08bda25286e94fadd3390f609f400b9d08f
MD5 0464e579e56717c477e88e94aa595c96
BLAKE2b-256 099431e75a0c4e585ff33ea8b95e74f4381f92078fdf94e521b5b4e2acc142ff

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
  • Upload date:
  • Size: 339.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ s390x
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 4f0d136df678749473c1dceb822013c550819c3274215fddd39807f1c736b15a
MD5 46eeeb4586ee41a0e3ba9ef6df43192a
BLAKE2b-256 fb4b4c447ab75e21ccf498eaab860451a6e4d4ae14e14ab56996a7d2f61c681d

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
  • Upload date:
  • Size: 345.4 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64le
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 a88176d791b67af54e5c75c0fed2d4117d0c08ccb5ba44e19b168e45c9dbb351
MD5 cd8f4a4cd9da6408ba3f54f42e8789ee
BLAKE2b-256 470244d1091deee79a183c09ad12ddcbcb863a722844a4eeea57e8bb2ed30410

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
  • Upload date:
  • Size: 346.7 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ppc64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-manylinux_2_17_ppc64.manylinux2014_ppc64.whl
Algorithm Hash digest
SHA256 ccbc1bf819366910b02047a5e02cb85787ebffd888acefa836e7f476c6f79800
MD5 10028ff0452f091cc9492d6a593cc25c
BLAKE2b-256 43972f9a487681852d489995da0987b85c2be439f20020e8dbef638f77c6095f

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
  • Upload date:
  • Size: 325.7 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARMv7l
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 5f58f2def8417728e4a88c4a2e3f8c542d9487a6ef232e08d13e64d1cbc7aeb2
MD5 9519d461e5a5ba97481e34f31026d566
BLAKE2b-256 cf3cc65832d300553427a07a6bfbfee2cfc22136a796cf7e3c49f46544ed1ee9

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
  • Upload date:
  • Size: 357.9 kB
  • Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 55895f5d3a0573bfd3a150e0849c1c67d512a4da238cb3d3d2ae1fd7d07af065
MD5 cd922e1aa29e4199f35a4bc21a8fca1b
BLAKE2b-256 6945792b40a00dccc8553f0bc1fcc0d8eacaf1ea01873078b923c53155db55a8

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
  • Upload date:
  • Size: 403.3 kB
  • Tags: CPython 3.10, manylinux: glibc 2.5+ i686
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e2eacf67e997510015a589a87aa91f29990d4c047be88d763ffe029750cec1e1
MD5 2d94b0bafbdf6a9640f2e93f3a57e20f
BLAKE2b-256 45bedd1f84a7022507377bb0375469e6bdc1024adc3e52beabaa39bd09691799

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 328.4 kB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 66ce2e74681d4623e7860148c843ddf5138bc70c46b5ec230b8ca91881be133d
MD5 20256eb73a375b5b8a20e14686491bb2
BLAKE2b-256 54a75483f6b08bf223e3165a041efe21562155bed5c14a992d00a5642fd272c8

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-macosx_10_12_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-macosx_10_12_x86_64.whl
  • Upload date:
  • Size: 344.3 kB
  • Tags: CPython 3.10, macOS 10.12+ x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8f99f9f1c403a124861ac3f02687dd06cf8e957e2d179e6b45efa3423f6a7af9
MD5 28a501969d93e5eed9c72aa41ad8188a
BLAKE2b-256 a645a402c46bea22a2120321a3573231345392685f82afb8a1aa6c2cf117c6b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
  • Upload date:
  • Size: 654.9 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.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-cp310-macosx_10_12_x86_64.macosx_11_0_arm64.macosx_10_12_universal2.whl
Algorithm Hash digest
SHA256 62e2710e26d83f68324a1f195b7be00f2de842090391dcb86109b7705af5c7d9
MD5 03887d03b6147feeeccf4f1667e7dc4c
BLAKE2b-256 9bb9f3e5cb0da2b26e1798d92353e4f0e5f5d081e91e293adabdff4ec88ebb99

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-abi3-android_24_x86_64.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-abi3-android_24_x86_64.whl
  • Upload date:
  • Size: 317.6 kB
  • Tags: Android API level 24+ x86-64, CPython 3.10+
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-abi3-android_24_x86_64.whl
Algorithm Hash digest
SHA256 ad58f47df17c6bc1912dc27f6213e375f243017012de1815ef31c1dd94fab830
MD5 a8864c41646f238916acce8baac7b275
BLAKE2b-256 336a1643afabe2c1716b8729df011b98f2b8a4be833a271be17e0f72a188a4a7

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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.5.0-cp310-abi3-android_24_arm64_v8a.whl.

File metadata

  • Download URL: moka_py-0.5.0-cp310-abi3-android_24_arm64_v8a.whl
  • Upload date:
  • Size: 305.3 kB
  • Tags: Android API level 24+ ARM64 v8a, CPython 3.10+
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.5 {"installer":{"name":"uv","version":"0.12.5","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.5.0-cp310-abi3-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 652042ca50394b65b7e355a6b99056e2d63ae2e16d748cd6c895cfeb11a4fd1e
MD5 33e75bf4884e2efc39977813485d67c3
BLAKE2b-256 7369357366ccd9fc1f637e04287c20f809afe61aa090b0d8a9327df4b84db610

See more details on using hashes here.

Provenance

The following attestation bundles were made for moka_py-0.5.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

This release

0.5.0 This release

183 files

0.4.0

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