Skip to main content

Percolator - Match transient documents against a set of queries.

Project description

About Mokaccino

CI PyPI - Version

This is a Python binding for https://crates.io/crates/mokaccino.

Mokaccino is a Percolator.

A Percolator is a component that allows the matching of a stream of documents (for instance representing events) against a set of queries (representing specific interests in events).

Install/Usage

Install via pip compatible tools as usual.

Example Usage (taken from a test):

def test_percolator():
    p = Percolator()
    assert p is not None
    qids = [
        p.add_query(Query.from_kv("name", "sausage")), # Use automated query IDs
        p.add_query_id(Query.from_kprefix("name", "amaz"), 42), # Or provide your own application query IDs
        p.add_query(Query.from_kgt("price", 12)),
        p.add_query(Query.from_kv("name", "sausage") | Query.from_kgt("price", 12)),
    ]

    assert p.percolate_list(Document()) == []
    assert p.percolate_list(Document().with_value("name", "burger")) == []
    assert p.percolate_list(Document().with_value("name", "sausage")) == [qids[0], qids[3]]
    assert p.percolate_list(Document().with_value("name", "amaz")) == [qids[1]]
    assert p.percolate_list(Document().with_value("name", "amazing")) == [qids[1]]
    assert p.percolate_list(Document().with_value("name", "amazon")) == [qids[1]]
    assert p.percolate_list(Document().with_value("price", "12")) == []
    assert p.percolate_list(Document().with_value("price", "13")) == [qids[2], qids[3]]
    assert p.percolate_list(
        Document().with_value("price", "13").with_value("name", "amazed")
    ) == [qids[1], qids[2], qids[3]]

Lat,Long,Distance Geography support

You can match queries based on a location within a certain distance of a point.

    # Matches documents whose "location" field is within 1000m of the given lat/lng
    q = Query.from_latlng_within("location", 37.7749, -122.4194, 1000)

    # Alternatively, you can use query parsing too:
    q = Query.parse("location LLWITHIN 37.7749,-122.4194,1000")

The document field "location" can be either:

  • A valid H3 cell index (hexadecimal string).
  • A comma-separated string "lat,lng" (e.g. "37.7749,-122.4194").

H3 Geography support

You can match documents based on their location within an H3 cell.

    # Matches documents whose "location" field is inside the given H3 cell
    # (or inside any child cell)
    q = Query.from_h3in("location", "85283473fffffff")

    # Or using parsing:
    q = Query.parse("location H3IN 85283473fffffff")

Using query parsing.

If you plan to have free formed queries, you can use query parsing to build queries:

   qids = [
        p.add_query(Query.parse("name:sausage")),
        p.add_query(Query.parse("name:amaz*")),
        p.add_query(Query.parse("price>12")),
        p.add_query(Query.parse("name:sausage OR price>12")),
    ]

Query parsing works as you expect, with boolean AND, OR and NOT and ( ) to work around precedence.

Non-word values can be enclosed in "s (for example field:"non word value") and the escape character is \.

More extensive documentation will be provided, but in the meanwhile, have a look at the unit tests, which cover everything you can do with this:

https://github.com/jeteve/mokaccino_py/tree/main/tests

Development

This uses uv/uvx to handle the python side of things

  1. Prepare the venv
uv venv --python 3.13
uv sync --extra dev
source .venv/bin/activate
  1. Compile everything using maturin
# To regenerate the mokaccino.pyi stub:
cargo run -F stub-gen --bin stub_gen

uvx maturin develop
  1. Run some examples or unit tests
uv sync --extra dev
pytest
uv run examples/...

In development, loop through steps 2 and 3:

uvx maturin develop && pytest

You can use --release to test a release build:

uvx maturin develop --release && pytest

This is developed at https://github.com/jeteve/mokaccino_py

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mokaccino-0.8.0.post1.tar.gz (30.1 kB view details)

Uploaded Source

Built Distributions

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

mokaccino-0.8.0.post1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (638.0 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

mokaccino-0.8.0.post1-pp311-pypy311_pp73-musllinux_1_2_i686.whl (676.5 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

mokaccino-0.8.0.post1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (692.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

mokaccino-0.8.0.post1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (603.1 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.5 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (465.5 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

mokaccino-0.8.0.post1-cp314-cp314t-musllinux_1_2_x86_64.whl (638.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mokaccino-0.8.0.post1-cp314-cp314t-musllinux_1_2_i686.whl (677.4 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

mokaccino-0.8.0.post1-cp314-cp314t-musllinux_1_2_armv7l.whl (692.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

mokaccino-0.8.0.post1-cp314-cp314t-musllinux_1_2_aarch64.whl (602.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mokaccino-0.8.0.post1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (452.9 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

mokaccino-0.8.0.post1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

mokaccino-0.8.0.post1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (424.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

mokaccino-0.8.0.post1-cp314-cp314-win_amd64.whl (339.5 kB view details)

Uploaded CPython 3.14Windows x86-64

mokaccino-0.8.0.post1-cp314-cp314-win32.whl (330.4 kB view details)

Uploaded CPython 3.14Windows x86

mokaccino-0.8.0.post1-cp314-cp314-musllinux_1_2_x86_64.whl (638.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mokaccino-0.8.0.post1-cp314-cp314-musllinux_1_2_i686.whl (677.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

mokaccino-0.8.0.post1-cp314-cp314-musllinux_1_2_armv7l.whl (692.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

mokaccino-0.8.0.post1-cp314-cp314-musllinux_1_2_aarch64.whl (602.7 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.1 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (452.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.8 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (424.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (466.0 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

mokaccino-0.8.0.post1-cp314-cp314-macosx_11_0_arm64.whl (387.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mokaccino-0.8.0.post1-cp314-cp314-macosx_10_12_x86_64.whl (393.8 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

mokaccino-0.8.0.post1-cp313-cp313t-musllinux_1_2_x86_64.whl (638.0 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

mokaccino-0.8.0.post1-cp313-cp313t-musllinux_1_2_i686.whl (677.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

mokaccino-0.8.0.post1-cp313-cp313t-musllinux_1_2_armv7l.whl (692.3 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

mokaccino-0.8.0.post1-cp313-cp313t-musllinux_1_2_aarch64.whl (602.5 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

mokaccino-0.8.0.post1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (452.8 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

mokaccino-0.8.0.post1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

mokaccino-0.8.0.post1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (424.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

mokaccino-0.8.0.post1-cp313-cp313-win_amd64.whl (339.4 kB view details)

Uploaded CPython 3.13Windows x86-64

mokaccino-0.8.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl (637.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mokaccino-0.8.0.post1-cp313-cp313-musllinux_1_2_i686.whl (677.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mokaccino-0.8.0.post1-cp313-cp313-musllinux_1_2_armv7l.whl (692.3 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

mokaccino-0.8.0.post1-cp313-cp313-musllinux_1_2_aarch64.whl (602.7 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (452.7 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (424.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (465.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

mokaccino-0.8.0.post1-cp313-cp313-macosx_11_0_arm64.whl (387.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mokaccino-0.8.0.post1-cp313-cp313-macosx_10_12_x86_64.whl (393.8 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

mokaccino-0.8.0.post1-cp312-cp312-win_amd64.whl (339.4 kB view details)

Uploaded CPython 3.12Windows x86-64

mokaccino-0.8.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl (637.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mokaccino-0.8.0.post1-cp312-cp312-musllinux_1_2_i686.whl (677.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mokaccino-0.8.0.post1-cp312-cp312-musllinux_1_2_armv7l.whl (692.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

mokaccino-0.8.0.post1-cp312-cp312-musllinux_1_2_aarch64.whl (602.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (425.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (452.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (415.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (424.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (465.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

mokaccino-0.8.0.post1-cp312-cp312-macosx_11_0_arm64.whl (387.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mokaccino-0.8.0.post1-cp312-cp312-macosx_10_12_x86_64.whl (393.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

mokaccino-0.8.0.post1-cp311-cp311-win_amd64.whl (339.8 kB view details)

Uploaded CPython 3.11Windows x86-64

mokaccino-0.8.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl (638.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mokaccino-0.8.0.post1-cp311-cp311-musllinux_1_2_i686.whl (676.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mokaccino-0.8.0.post1-cp311-cp311-musllinux_1_2_armv7l.whl (692.4 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

mokaccino-0.8.0.post1-cp311-cp311-musllinux_1_2_aarch64.whl (603.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (416.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.8 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (465.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

mokaccino-0.8.0.post1-cp311-cp311-macosx_11_0_arm64.whl (388.1 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mokaccino-0.8.0.post1-cp311-cp311-macosx_10_12_x86_64.whl (394.0 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

mokaccino-0.8.0.post1-cp310-cp310-win_amd64.whl (339.9 kB view details)

Uploaded CPython 3.10Windows x86-64

mokaccino-0.8.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl (638.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mokaccino-0.8.0.post1-cp310-cp310-musllinux_1_2_i686.whl (676.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mokaccino-0.8.0.post1-cp310-cp310-musllinux_1_2_armv7l.whl (692.6 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

mokaccino-0.8.0.post1-cp310-cp310-musllinux_1_2_aarch64.whl (603.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (426.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (453.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (416.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (425.9 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (465.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

mokaccino-0.8.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl (639.9 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

mokaccino-0.8.0.post1-cp39-cp39-musllinux_1_2_i686.whl (677.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mokaccino-0.8.0.post1-cp39-cp39-musllinux_1_2_armv7l.whl (693.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

mokaccino-0.8.0.post1-cp39-cp39-musllinux_1_2_aarch64.whl (604.6 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (427.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (454.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (417.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (427.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (466.9 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

mokaccino-0.8.0.post1-cp38-cp38-musllinux_1_2_x86_64.whl (639.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

mokaccino-0.8.0.post1-cp38-cp38-musllinux_1_2_i686.whl (677.6 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mokaccino-0.8.0.post1-cp38-cp38-musllinux_1_2_armv7l.whl (693.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

mokaccino-0.8.0.post1-cp38-cp38-musllinux_1_2_aarch64.whl (604.5 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (427.8 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (455.0 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (417.1 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (426.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (466.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file mokaccino-0.8.0.post1.tar.gz.

File metadata

  • Download URL: mokaccino-0.8.0.post1.tar.gz
  • Upload date:
  • Size: 30.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.12.6

File hashes

Hashes for mokaccino-0.8.0.post1.tar.gz
Algorithm Hash digest
SHA256 e34ebcdd499384804db60d4250d2534c4b5de31b57356c141a6a5aa54387c315
MD5 2bf74dbd2bc6c25a287c382f0730e700
BLAKE2b-256 4d787efa0634148ba166e06b4c9e8e484cc4d2d96297979a319e6e3934abe0eb

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e5baf230e3e03ca2538c8361d21a4a1d8dd951b4b553f71800fe9c0864817adc
MD5 ade4ac7dfb57bfb43400c31d5cb2aef6
BLAKE2b-256 44771d450a0112d0ec30bb1759a94bdde4db374a1af7388427f1aa57b03a0a25

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 750db797583ac708e5f7b83ac1792ae8349faa6a145320a56752edb8d68bc2ce
MD5 625209c671737355e02b308c31bfa571
BLAKE2b-256 806a880df782b6287588ca7d05ea8a76cda0df8e4fcc8b6987fafa563ebdd352

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 abd4061a8f0fdf707ced9f83d88f4140b4e92ea6faf1ad56200c5100c5086aa1
MD5 9ae54727ca7b56f303a824bc52a7b7bd
BLAKE2b-256 3e85b7e6eb0688fc9354359505a64cbfd9be28514350d0402a979f5870b73933

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b24be73257e4dd9fd4e77406de9a6a3596db0a50ced70c7040d01fb6602fd0b9
MD5 af9cfdb2347310325e4688e3b3c7e6e3
BLAKE2b-256 824369c322685615f3e772f481e3f809f8f12bfffdce0cb2888cfd81594a4ccb

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 19aa4dbf7fb6ebe8bbd90ba4c4a59fdd1e04ce4241258336d8b75ba2ae02c23d
MD5 b823ea9ed156a784bd269aa810943d6f
BLAKE2b-256 67041cf38a120e87b749c565bd8f8db5ed1920ecf05509232f0e26896e112fda

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3eab9d51332f37213fc67a34b7fe053db13b8db6e495406fd4f2a1d5b71f1db4
MD5 7950ded8049c8125e24c47938d35f3c0
BLAKE2b-256 9a7082133060636ce09ffb5744649c07777daa06efbb8deb5004e02b3f96b09a

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 cd0d3e806e14cd2ead13d7b1cef2815cf73da0e2eedfd666e58d3221aed81d2c
MD5 b3b12427e93707d7acf25a2e85c176ce
BLAKE2b-256 07a48b08730b73012335e1c2889d1a4cdd01e7e30576be70c246358eb4024713

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 949c75fadd76e3f0cc6c408c8001082f49d68f48f0fb81ece42f5ef99a68edef
MD5 8bc04c71bc0ec82d3ebd3d8bec7c563a
BLAKE2b-256 cf5cf45538b944c4b6a39586371a14b40c2755cbaa9faaee0a4a6d41d080cf5f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 57b8420e865352259fde07130e74632ff8c758b94b1c84a825a105e88a3dece6
MD5 c7a51ee3b1a6fabbac465ed6d4887dab
BLAKE2b-256 03a85ede09c06b7d1c9a1396ec1e24fcae163bc6853d68e89d245fc928e2007f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 f090a3768489f1a70719493f0e6b1377b52bececc3d8ca60b3ee8472ca7541b8
MD5 0d18c10043a86506bdd98860177454b1
BLAKE2b-256 a9a8d078c8a855c1e746343c8ea0d21e59f4dab3693dba2182fe90896d327bee

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 0b7658840d19b1b6dc2d6e76302784acd1efe8ceec1e78d0ec7848e7902e3c4d
MD5 abdefb4265143f8f3c7eaee900438b59
BLAKE2b-256 8dc33876ba53fd9f1dfe800dc2da7913109b5585ad5a1e2d13447d12a3b1b5cf

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 115ec0fa2046f376e6b4221f15df62ccb52a6b2240d7adea785609e396fca425
MD5 0bee6345008d04cab447ac054354bda9
BLAKE2b-256 0902cdf53595b4063ded6e1721d7a8059104d67d2559dfa1d2d713e107ad449d

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8a034ba338771600ef3a7cd20de406025b9a5bec0f192ad8a2742691f014cb97
MD5 5cf647f27793762931e75302906e5aff
BLAKE2b-256 ed5e6243f936ce09ebbae982d3a5ab810b9a5738a95deb01ba89347684339e3f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c2235bb0c399a7973cf7064ff9ed1df903a647d86963060aafc32f4b7aa8b12e
MD5 e49cdab509cc93f9ecfc5e2219228ab5
BLAKE2b-256 9ecbbcc4f7510cc3457ef38a0c9f75a27de0080d551084a422361f6300827399

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 93a557146aa1ab32d54855dcff298a5e74801175240d8586787d8a0d61a75697
MD5 473f0d3754e25bc68413a32417fbd324
BLAKE2b-256 ce6d65653cd3014a0c656a0f48b330d3ce71a8a58d350acbcd268dd02b9bf11f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b7e6484c7b0fa18a8539209639c512c504e29f02a29209f72c77ffdd803831f5
MD5 a682e3e703d63facfceea9bfd03293e9
BLAKE2b-256 0c7f495ec9021c246bbb83d8a75e5d80a8ae345d842995fc555aed3b8d9e5fec

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 64dc31309431612ca45d3512f66c2f01584e84f191aff3c089e7080c0c7a602c
MD5 652f2b2e59d76ec9a5bc9128ea392f27
BLAKE2b-256 61312dfd4509a993bb2cb4736fd25bb8ce55e851168041619d2ecb1c16a5a88b

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 d7723366e0be85eaf9325470f5656254924f609a74c60c0da9d208ef36536f9a
MD5 1f165e160251ebaf6f02cd13cd4c0c9d
BLAKE2b-256 2d7c0fbdd2241eefa0fe36860bc91ba6b9085b5ccb1fffd28da101e0f7ceeba4

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 946995f636185019803ba4bdd0743f950835d00199eb45816e36b1844d536022
MD5 6aa38fd8859a937a196d730d693adebb
BLAKE2b-256 bce5da97ade96b6068cd1cb35a800429202a080467d747228bfcbd37fb4297f6

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 8b2e02f92da1bb522f0e6c122e1dbba4cdba14daeebbd5950f71ddcb5211b07b
MD5 c092e42ff390f34a82378598bbf23fac
BLAKE2b-256 f1cf50779e57e7334423f73e6a77debed92d37fb53574ee04d904acfa4a6a661

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 bf351e3c8983acd6bf0eac4cea2f183ef6dedfce67cad376f58cee7b396a9573
MD5 cb248e61b3b8c9ea66f3e6f773df902d
BLAKE2b-256 bc46aac3ca10fbc5810c52a44376fbe1ce911bb88bce11eadcc067d7aa5ed52e

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 2bcaf14f3f000ab48dea624fe602994f82202557a17abe41ec9464b7ec3fab28
MD5 50a98ea37066bd85fc672ae4f0d2cada
BLAKE2b-256 5d825c662a5db2625a15662b31547fb570a1066fbaaca37538587f14380510f3

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d1d7f0166324b9a1a7a48bd122fecc4f2a94e9889c47c71c4b2c72d060360973
MD5 1b767678ec402eea4e2d7d00f66db6cf
BLAKE2b-256 2a6ffdf1685db4686c70aa160842c189f3fb41e97157969c3992ebdb72d8d64f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 224bee6139e9ccbbbfe2af1dc1bceec9cfc2811b9e1acba35b2a7e9e9e111430
MD5 7a8cff7734764aaa3fa0bf7ec8c0a1c9
BLAKE2b-256 a42fad38e27ec83fdc8c6f9a4842f380233dd05f47ffa7ea38c9ba8dee2ff449

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 eb584f47de1a88b745ffc109acbfd64ae6ae542da9a312907c9da41f48156cd8
MD5 73e634edaafe9aaa01965b7a34181229
BLAKE2b-256 9682aca0438584f682e4c04b2bc089804a44a04be35948241d75afa641156b59

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ff1f18ed0a54d0c802b205fe30e1e7b0a2b95d8e8da034d215b81306f52ab2a5
MD5 22ced302e0ac3de9219dd3b533e44bc8
BLAKE2b-256 3a0c9ff93e7eb65b7c5bf1d5927eedf305ae20325ddc2bd75400b81a48194f53

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 3b2a1aa31ae43b41774ee6c635ffefb99a8dc6910b7476b09c595182a5fd852d
MD5 6dc2f2acc9a6cfd3adf348d19b0dec02
BLAKE2b-256 4974ab610c0dcac01ef0fbb591632b16e7551d2fba0acda9e7123447eef3b421

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c59cd33ccb958eed64fa35b58952a6aee1cccd6a01172062d47ed9cf2a4bf75b
MD5 497b398e09c878637af8129abba5e08b
BLAKE2b-256 ff40025d4b88ccfaf79212f2e768d9648a9972ae75b89048a869a67a89d4f86f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 69fcec96a230506ec501ab9a8bc4ff2e0e3246d47b7ea030a746cab665b37d16
MD5 2624254e33e397814e6f5bb9cd7ce2cf
BLAKE2b-256 193e093f32d9e6573152316c2a2b8507cbcf31c05bfadcd8adf2faee981a9dc2

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 142519ec883b8358ea97412f9dccf9cb976814ab76a56c720484357e0a8a5a7f
MD5 9d9cba4e3239461182a83de112dc31d9
BLAKE2b-256 3770e3fd7ebd748978ab9ecf0dc27b5a834febdf81e5ac5632da7d1a54617a0d

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9798176b70f81c60b8960cbb8c3988dcad8bd2d98a09bd4b05887442b6351100
MD5 731d2ea7ef73a2bcf2e644b182e24ee7
BLAKE2b-256 159541af7d56fc868cb7893957d4c15f843cb4383ca8bbdf776767c3b5ff60f9

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 a506d68a9b5a5d75cb6d99a0736f52adbe22f72bf94309c084a78d040c81fc74
MD5 4664da25198f1646a0af27dfa13aab1f
BLAKE2b-256 0fe55913bebf22f42cb2d774eb7a1f592c3894d816abb45cb953fe3f8fccba11

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 928ed3583009dbb7b75ed74fcec60f5274811010d9243e1243f5d10d5ba4a58d
MD5 e99ff95187d657affc88a3982f5da490
BLAKE2b-256 649581314a3a333485df47940c355cd19bc29d612a90c334a037a4dcb9d06778

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3d5245b3133f59394179c33e758564f20eb3a92c7c4597b44edb10f8a1218991
MD5 3d6c731593425aceb4f723a5c6fff299
BLAKE2b-256 7d6f15f870db07874f391f1dfbccebec0073ee42b3a951b4b05827d420e0e90f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 7d125dd3353b4973d9afa1d4dd68b8d5cb09082e249627219d44e9949052c674
MD5 8acda94cc67b05cdbb5523c936e1983c
BLAKE2b-256 7f1f24917196f06875c71f5b5cd7fbc6f405ac8e25bed3783ae020a623892cef

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 935df4f5e9b92955ea1fdee2e1693d6b03325499f2ce85f987ef6878eac0939d
MD5 3ca762c2aa78723c68f04ea6689fe7bb
BLAKE2b-256 a87a95a329505d34069982161539b945338b19eb1be186428a79d3b196e6c98c

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 77621fef3e56cd83f7dd8dfb2045715154a6a29e903ff813a2ce81ca93980228
MD5 3c2fbd36958d940ecd3bc954262350dc
BLAKE2b-256 0f8377c11d1979b31e326c545b60933c41c15deb853554e3a04de1642a80a72b

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ea4fa8bc15fc94b025aa38f6c5a2df2f993db0494c0188c2ed37608e0d5a6d2a
MD5 9e0ff6a1f1defa3e32fda20b8c474ed9
BLAKE2b-256 465b807a0ffa13b2f22989342858952dc6aab26699efc4a8c8bd649664d725fa

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 6489de165659908cf848d4a6f6554b418d72140845dac61172fadfa3f55e3489
MD5 7cd5acdb6615f59004b533b3c97cee9d
BLAKE2b-256 444a397cc0577ceeddfd3da2f099d82823e071fb00454451fb3f13df65f69f99

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 9cd948c8789fefbfa06e227983f3491c12cbf73cdc5030ac0b03e048f3d1c338
MD5 17ed97cbeab1f012a98e5c47e5eea71d
BLAKE2b-256 c5762d4db837c1f5b57e027f5b731b5fbe0d1014d84a5938c19be2b75f64276d

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7e05ebb4e2417ba908dae9c86f3212603953c5f00eb7b197a18700090af32dad
MD5 5c88e730124c05c0176bc7cab05986e1
BLAKE2b-256 67f7fcdfbad5df95ce840cd52f8d1a0391506a32f47b12b421b8c31eaaaf5a5f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f2b8670bf31376f36b399dd48e205396a36e1430ddfea0b557d4aaadc6689415
MD5 e5b1f0a25f4427783974023b6213277e
BLAKE2b-256 a0fac2145ce23b1378acc3a26c5379d279b80d47c24543de725735136b8d7753

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 5d21246998af73265e24b6d8c6af18bd455e53e55cfad213dc8bc4773dcf5db8
MD5 a7b1c292a21155c50c88b1218434f0b9
BLAKE2b-256 061065d6e7f8c5bf485599f16261486f442f665f40110a27c40518bf95fb267b

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d95e63eca2323cc500b6ac33f8bbda98df8bc0a2ea49cc9d3b0630a8bec7f47c
MD5 d2d5c87a6b481d0cefda403398d90305
BLAKE2b-256 892baff9d15afbce64a7832a838789f306c6faf872d8edeaeb888fca2c784c3e

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 57e1b4fea0f5ed18f134b43a8c97b63c5b290c919fb3409692db06abf00e886b
MD5 887698787ef81582a0d66cf017b367a3
BLAKE2b-256 ccf539000d3f2d1e1a8fb093d3bf8ef603f8470f87369358d71b62d3bbd093b0

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 1cef3f1097a59846c70f0ccff26cacde7c38061ce977be55b5fdcb1efc3d79fb
MD5 e56fa292f887090c685a7bab3c9f85a1
BLAKE2b-256 84bb8e30a7c4990133b20e27f4fb18d2988f2960a831d65ebb621faa33e5f87d

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33ba526c868a2472dec8f9d36cbdceb31da1c23a4c2d7591163cf4b48f11a517
MD5 336acefb76a79cd02c5933ab56db19e8
BLAKE2b-256 b6a41de9fa388e68c8eb3cf98b63a9b233f69327a5f73101969b27ad03d7cf01

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 780d0b185ccb062201e1145f241ad082d3050956830fa14444e10f94e188e865
MD5 bd07735e4ce17cb90d099284a6efcb89
BLAKE2b-256 1fda3fff00898396a7d0fd9ea60381e52815051d6b1f8196550d6f29c1483b25

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 fab37374ea941a33f753e7a2db813f9a3a2509706fc769a90fd45cd024959241
MD5 ce1fe6dd91b19d8020689d00e6c0236e
BLAKE2b-256 bfc5b1304493e177720cbb9b1d07e44d9d686721bc53e9cd5517bb7675c67514

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfdaf0b15db801f4e24afa444de15fa7104d8001513222fcf05b531326b68610
MD5 05a4be5c1a2266cafeb9f4ca5eb49c66
BLAKE2b-256 31a2f4392e38d86f08c611fff5ae5b729a0294dce7336acd2b7554db24250abc

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 21259fcc2e831c55815281d5004932148ad34e0522f93fff1dfcd63081d24e8c
MD5 545c6f8110c26c9509017c4cdde06701
BLAKE2b-256 862c5df7a2a115b8065b10dad816b1d46116d5f0d3fbb13fe2f3bb52360bfcb7

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 e36b32409048defac04e4950eb9ad876de64d621e4908b4f1d135f316ceb9ae5
MD5 c13b9ba7bbcb596f8ee5b80e485c8a7e
BLAKE2b-256 5556986343bed511eb664d0df9fe41a47308918f0849995d1915da7ca008a0ce

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 198fdde2290850ab3ae4bff01cc2eb652831b5ac4b1ae2e951cd6319692e70df
MD5 a02ff2ecd800365175a24e759dcad055
BLAKE2b-256 11d977fcb372e1818937351696cfc0eaff86fdc3cb2a87c87acf180547ce02b0

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a85a046509b4b388628ef2310e7245d0ac0d5793151ec6af4180fb5edacbcaf7
MD5 6c4d781aca482fe06a37ec0ccb098ef0
BLAKE2b-256 afa81ea978b1c38537dfabaced643817de9e612933ac3e299787243fd64a6498

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4d2676e31f66bdcecd8dc6ee7693b0770157eb20dc6b7ab4bc21ef04625da396
MD5 f4907f61be829154a3cec0b113978916
BLAKE2b-256 dff1eb902b1b6c39b5d97d16c1046555fba1eecb997d9b2184c627fc217d4343

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 371205d24ed057b1338498983775c89471005dfaaada58248d5a279e48dbe135
MD5 4326b0a6ad62c71f0d59d698bdb742b3
BLAKE2b-256 13fb84b90afd1a13ba979f3590aa48ebb5c7a2b0f18d47bcc4788c64250e1435

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72f41deceba5f8f5832aaea584d9f91a7b38eb8f2a328fd87a82b2b668a27b06
MD5 90033b69cc0f2a2b5f022d4fa32c96ca
BLAKE2b-256 dc8ea9984a874731e2d6d386e0a1bc634f80935f37a005c0c548c2d7c5af4a55

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 01da5eae4a0eaf6da714d5746488c39d59527e8a4742a414fd23c714b9c657ff
MD5 b151775f8ff072804a8c1e06b7ca0f3a
BLAKE2b-256 edbe6b56b629384a9119e68c3e96dcc4a4d39bd106c560ad1c5f7a121a202823

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0fe06cacb20234fff438d63047b84166268b74e268519fdb696c26952ad3374e
MD5 8ae492aeabac2fced94e3f45e36468c4
BLAKE2b-256 1686a98334f241ffd4c64a40120b0e0ee794014aa39049f70e968a233c5ce1f7

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 cad54f2cc874cf137a3469aee13aa03f1a920d73cd5d1564884a277d9147d246
MD5 2d6e680edcad858e307b165e26989675
BLAKE2b-256 fdd29f3d862e624cdf9713632cf41126dfa1967f8875e39ddab72b5e8e50d8dd

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 a07281270dcea6c8ecd32567dfc2e81e7bfc6f9348a6bf3baf0d293f016e4647
MD5 36c580b6186b20862faa048751e3c50d
BLAKE2b-256 a70c1e4bd1a016c814e4765596e77270655b2e7944f18902cc0d4ab94589ba46

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e44313522b35783261a86d97e1e7545596f04088f2ff4b8526bc20d1b1a425d
MD5 14328f2c929c9a73651ceb30f802ca11
BLAKE2b-256 19074e77b0e59d80ef087d47b4583181ce89d1b72475994e2f5fb8eb913e2fc8

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c2804cfb4f2ab171122426b54072b724c8e2c644d35b6ba621a826975d0d6341
MD5 4e54596d86baf3363b05f32f61b1a4e0
BLAKE2b-256 76d0c6bfa68ef62abf59c1cd0fd0bcb8e5e8ac3864a4676852c9f0d3d5663a6f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 56713bf3d30b3ffca2ec1baf41ec010e6a132700495adc04a512ec64a951cda9
MD5 fec840608353e5965bfedb45723d5067
BLAKE2b-256 8378e2cba0d186944734b1e0dcf2d5982c6d7eb2bb6e2cffba19004c4484087b

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 9889a75641e78fd55e246b22b758c1749440be19fd114f99b0c40ae5653d4765
MD5 53fd24331cd1214e79af3c4ecad30e9e
BLAKE2b-256 7ef97ba3b8f207e36b9068186535a5b2ebf764eeb813f537711ea0cad25a7d5b

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ccc8e84740a96885f36e28f71a6d5d252394b63cdbf3d239ab760a73a3e2d068
MD5 3bf16f2cf0675fe166f1d2ae90a10145
BLAKE2b-256 b63597b5c43c5778cb4c30d2b29dbdf8f1bc4d06587af302f2b12666938ad6e8

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 78a47586dd4fec1dd4cdeba9efba374f71e6fe5ee4943faf21ae73ac6695410a
MD5 de2997d5dcdac7fe1c3a111babd78224
BLAKE2b-256 d8695e90e72aaf1c03d7c902b3f1945529c2f0f427dc79b961aa9fc30362b1e9

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 41ce5c4b225865ee83a6abd7ac3b08af3e29e60b20fbdf38acc6aa6148fb0800
MD5 df3a0ad92e500655224e043c138d326c
BLAKE2b-256 3ba50e0a253a444b622ad87bc903a09bb8a3af5c7f3eaff71fa4bee50656faa2

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 10842eff4abc943297fdd031ba9f7e35a3d6a059aa126aae22a22c35ba4c36ae
MD5 6ffb1316df6bbfffd969cca5445fa117
BLAKE2b-256 442bb44c931f3da7ecdc6acc4fa88bcfeda2f5cfa88396201fd84ef03b7b03d6

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cf74c78e3244094ce72226fbe229163127d1358d765d3148d0ccd79c7be39fec
MD5 dd04e94f49d080fef8c4d06e35ae8aca
BLAKE2b-256 629b35fc6c467916733256d9c732ea82119c5736fce33d8330e437c0d93a465c

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4d3ef3cc933270453814c8694561c5e33d08e6f0682a05c499892389ea180b3a
MD5 b95e216780e78b65a67e214c86ec2b4a
BLAKE2b-256 ae47884458e71c9ddd00a007c6b0d3bdfd81a4a4efcd89081bcf09b7239da7bd

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8915b14d3630bff0b986b21d6dc06c0118f754412f5334153035b4ffd1126d3b
MD5 ee6ba83e2a99837913e61429c33c9376
BLAKE2b-256 907c0d1832f463437d532036bb80e04aef05c7aa6ae37b6d9aea3b65a4552816

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2f25a20e0a8ff287439205b563d74d2344afe4b4d6fd928213f23e18f6671345
MD5 a107c61db2d1d742d8a48aaf4b7b6cbb
BLAKE2b-256 1435a44a7f32c338b08a6d67a8437a7d7fc5d2a1a973461e4c2084f72235d04f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 37e53fd6766e339fd108ba62132fde639a79342861c1bb1e5f2ece9d207782c6
MD5 15ef8d32382395932771abd6d9a3cd75
BLAKE2b-256 ef9746d8044049f6ff91176538e84c2454f38335fc984db9cc284ee615d4508b

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 2e73cc85d30cefbb46cd8045ea454e93241b380514d436b5f8b618cd85211fc6
MD5 d1550963274a6e45aece629d79b78302
BLAKE2b-256 dce9f95db76435997c4f21702c928ec0674267e650bdb0eac05e7eba7a789b08

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 25a63254a14bce82843c012cc5f13a4d793dce518ee158d7e7c369c17779ca4d
MD5 135198c5b87a701165eab12690f6333e
BLAKE2b-256 480195b268b03bba2c2fb0857abb590f7c05da6cff196c77d7d98df397985e8f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b11f389f29ff64e30f96a6ad2172b9b98fc2ee43dceb164dacb0a85b44c54358
MD5 f9d6c79d47bd352b582e6429bf0617a8
BLAKE2b-256 caa22d89eb8becd36a38d9a9929af074271382640c150c415c8b96266718c6b4

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 824ed2fce4ff87add863703d4ed4563637f9867765ecd173cca66d463dd08cec
MD5 583e38b354b3ab7c11e9d681fdecd4c1
BLAKE2b-256 9a1f29fd860e0de1ff3a0876259f2ccded30179940e72e3e3ce2470fabe70079

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 1e2455f9888d3c9664371dabe49b59bed8db156e0a38b9ac8ce515db97e8d32b
MD5 853bcdbd78a4cd802b2e428282aaccf1
BLAKE2b-256 fd7448a52a888969ed5bc4aa019a26e79257996472b97facd79486aacc5e9d2c

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d7eb5928c1e81ca4f56c61e27bc3019ef24d8a0e9a1e70f59078be1028b60c7f
MD5 1e3881c601dd8314397b706675e7af48
BLAKE2b-256 2608c26369950b3d6a72a8d3bd554d65a4741a6a016e19a6f7352b030dcab1cc

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 aea848770aacc0cbfde2e1767dd1f715f280c7ace5ad08e38ff43b49b3dd29c4
MD5 49700d30f032fc87c8bcbcb5b823b078
BLAKE2b-256 e448da3281a1741fb925022eb88d09b0a17af8667a0da92d9fca3578a14412ac

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 8887d369e14ef857f605d0cec966bcf0af1a260425b1b02e9bb7a1686bd15f58
MD5 2b703d6ab7249f3caa0484ce44b97d68
BLAKE2b-256 ddcc75096033adfecced8ce4ba3a6cece11cf15fb5b57751a2ca7edb9836a850

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2a90d5d205de78a851b4f0aa843f46f38a43a163fd702e4ae52ddcfd45a3549e
MD5 ba776ed1867b7fb5b03af6b2dfee78bf
BLAKE2b-256 aa02208d96fb732fb561adc85c504073dc49b8e225bf4892ac7b4f56528ccfed

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 f9de19193456e7f424849383ba178476d456e1faa825df1be39f75b9d9c75ff6
MD5 9881f0bf94289f14927d0ce94d074cf2
BLAKE2b-256 44f7db58286a54de439ddfb2d6e126911b5da2ab9105fa2f4329941cb2256e0d

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 198037d9a92527d2bacbbdf68b9a3bcf8c0cf087e7b87a466fe9a945456d4e7c
MD5 9fd3b0a9d6e6bc162735c9e2d6edb332
BLAKE2b-256 732eb0caf6d6f4de53882ee192b00ec0ecc2110ad24318336a0384c3a357d306

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff638831df23a418992dc2966cde1d178f0827a00bef840eaa33b3ad4eb49106
MD5 513845a08eb79d94d39c2f31d4b249ec
BLAKE2b-256 42e6046ccdfcbcd7fa3c5c2942e4de54a242889ce23ef04c2b079e28ceed47fa

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bdfe6a5252dd846a3e4e3fc66e915d70b8c4d71ea786b447c2777ddb17db64ec
MD5 7353e2ea0cb028d7f17bef47493bf3de
BLAKE2b-256 9dd745d42b5e503a681fef4565fa955b40b1409404d4b51fdfefcbe1c53bcc16

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0e34a9fb5283e2de9807f7067e5675989e49b7ec9b5fdad9c28dcbd2f6fd170b
MD5 64113b3d23121b9cf6780c85f021d860
BLAKE2b-256 a897fc759fbe0006b69a1aa687c2d01f688652442042510774fa1f4e460e37c3

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 74bb2325ee9ef8113b1cda90a4c430131889b1d39e950f6a2ee0f3d3e5114a25
MD5 695be4950bf5b3976af8ddefdf3c68c9
BLAKE2b-256 0c6a2e9aa0bbe8f704f5a891340b89f098d03d511f57d8c9e196b4c861aeed68

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b9104d8d9a9d332f36ff41b777b2d9503ada5164d35264434df901102a084124
MD5 ddeb5f659f4b0c5aa654fa63e3866a4d
BLAKE2b-256 d04dd751e982299805548b4afc9b46f7b8a01adf823f2af30d277065beb4533f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 663e8e66afc20298d3c7f6e65e6948f20aaae9e568c4815c719105f8d74b083b
MD5 97d7dfe7245f9a21c6955123e3198e88
BLAKE2b-256 5b5c87b8646030d7b22b40eb2611d76482c0a5a4e2abb99edefd4ca458e93def

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 18625d08a8c689b765130a3280dd59dc33098a6e5c212cbabb39bb1329b81a16
MD5 8ebd6e0d2c26d9a60df4535f52d853df
BLAKE2b-256 1bcda0c0b3df986af0f7fea99db880bfaaef2466d86c45c364f47c807591408f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 50724efc06449463ca08db011c2e618fa7be8b923330b2455307b1e4e4677ef5
MD5 02ca5fb44e2cd67735152c91f7393cdd
BLAKE2b-256 dee8a3da06b583792913fc867ed312c9153fc063b196ba0855ee85aa5ebc180d

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 0455ca1e538eeb6afc9ee4290baf6af0c41c2ca5340f1a0586350dc669bd4b50
MD5 636ce12b3df93a8bd556332f78a1cf34
BLAKE2b-256 680423582cf8589447aefe221c36373cff4fc6b82a0bd81a8d87e9ab3750782c

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 06fab68d301951fa6a8c09ef6360d0c7d8b0543d3ed1cfb138fd0f8bf4766907
MD5 a76ed0296253316ffd8a6af780076078
BLAKE2b-256 a03205289cdc3d8f2a3702e81f4a5f0deaf6f04d3fa1ebdb85343befd864a935

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bb804b98f79c8e7441d7e0109a98a174bfdb4738bda034ab8a1bfadbbfcd7f20
MD5 b2729b41ad2f730dd558fc3d7a2d9f2f
BLAKE2b-256 0f37a5c78ab936071bf0342be0388d2636f5e6684cb3eb3f968997c7e488373f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4f7cbcaf74eb8b5bb5eb0ab9a9cf18f7e424f7cfc4a1313420244519523eae31
MD5 deca7381373455c22b30edc5a6a777aa
BLAKE2b-256 4aaba7fbc42e95bd31aaa7e56b15902c22eb7f480edb5fcd5648f54afe3baf21

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 a27b698d06830801567d3cce9ff262464847c4ce4f6a62cf260962c497042c7e
MD5 5086124f9d924ca32f89627ef8e7ee59
BLAKE2b-256 9142de9189686c4409d0d02df4663d7aa025205e8231e2802714d9a28a97395f

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 99015aaa15f7b54f3ba4ff525aac3c076c908ad1372ba124d3753636c8988d24
MD5 888d230d74da16dcc10be72825c43394
BLAKE2b-256 d5e96294e0569413d6544263061bec0b283545cddde78e938964466eb82179e0

See more details on using hashes here.

File details

Details for the file mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.8.0.post1-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 e3ac8af60f8a7e1135fde6273dec7c46ab6e6ac06369c943dc67552cb905fcb8
MD5 f8cb328ce02d573db0050ddc0fa3b2e3
BLAKE2b-256 6d497e6d4e5042f9f1f44ae1d4848bb547d7ced890e8c55ddbfc8f2926edc3b4

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page