Skip to main content

No project description provided

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")),
        p.add_query(Query.from_kprefix("name", "amaz")),
        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]]

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
  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 3 and 2:

uvx maturin develop && 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.5.0.post3.tar.gz (26.0 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.5.0.post3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl (707.9 kB view details)

Uploaded PyPymusllinux: musl 1.2+ x86-64

mokaccino-0.5.0.post3-pp311-pypy311_pp73-musllinux_1_2_i686.whl (743.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ i686

mokaccino-0.5.0.post3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl (788.7 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARMv7l

mokaccino-0.5.0.post3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl (702.3 kB view details)

Uploaded PyPymusllinux: musl 1.2+ ARM64

mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (666.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ppc64le

mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARMv7l

mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (520.2 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl (576.3 kB view details)

Uploaded PyPymanylinux: glibc 2.5+ i686

mokaccino-0.5.0.post3-cp314-cp314t-musllinux_1_2_x86_64.whl (704.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

mokaccino-0.5.0.post3-cp314-cp314t-musllinux_1_2_i686.whl (741.2 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ i686

mokaccino-0.5.0.post3-cp314-cp314t-musllinux_1_2_armv7l.whl (784.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARMv7l

mokaccino-0.5.0.post3-cp314-cp314t-musllinux_1_2_aarch64.whl (698.5 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

mokaccino-0.5.0.post3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (663.7 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ppc64le

mokaccino-0.5.0.post3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.8 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARMv7l

mokaccino-0.5.0.post3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

mokaccino-0.5.0.post3-cp314-cp314-win_amd64.whl (350.1 kB view details)

Uploaded CPython 3.14Windows x86-64

mokaccino-0.5.0.post3-cp314-cp314-win32.whl (334.5 kB view details)

Uploaded CPython 3.14Windows x86

mokaccino-0.5.0.post3-cp314-cp314-musllinux_1_2_x86_64.whl (705.5 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

mokaccino-0.5.0.post3-cp314-cp314-musllinux_1_2_i686.whl (742.1 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ i686

mokaccino-0.5.0.post3-cp314-cp314-musllinux_1_2_armv7l.whl (786.4 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARMv7l

mokaccino-0.5.0.post3-cp314-cp314-musllinux_1_2_aarch64.whl (700.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (536.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (663.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ppc64le

mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (520.6 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARMv7l

mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (517.7 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl (574.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.5+ i686

mokaccino-0.5.0.post3-cp314-cp314-macosx_11_0_arm64.whl (472.8 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

mokaccino-0.5.0.post3-cp314-cp314-macosx_10_12_x86_64.whl (498.3 kB view details)

Uploaded CPython 3.14macOS 10.12+ x86-64

mokaccino-0.5.0.post3-cp313-cp313t-musllinux_1_2_x86_64.whl (704.6 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ x86-64

mokaccino-0.5.0.post3-cp313-cp313t-musllinux_1_2_i686.whl (740.7 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ i686

mokaccino-0.5.0.post3-cp313-cp313t-musllinux_1_2_armv7l.whl (784.4 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARMv7l

mokaccino-0.5.0.post3-cp313-cp313t-musllinux_1_2_aarch64.whl (698.9 kB view details)

Uploaded CPython 3.13tmusllinux: musl 1.2+ ARM64

mokaccino-0.5.0.post3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (663.7 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ppc64le

mokaccino-0.5.0.post3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (518.6 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARMv7l

mokaccino-0.5.0.post3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (516.9 kB view details)

Uploaded CPython 3.13tmanylinux: glibc 2.17+ ARM64

mokaccino-0.5.0.post3-cp313-cp313-win_amd64.whl (351.4 kB view details)

Uploaded CPython 3.13Windows x86-64

mokaccino-0.5.0.post3-cp313-cp313-musllinux_1_2_x86_64.whl (706.2 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

mokaccino-0.5.0.post3-cp313-cp313-musllinux_1_2_i686.whl (741.8 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ i686

mokaccino-0.5.0.post3-cp313-cp313-musllinux_1_2_armv7l.whl (786.6 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARMv7l

mokaccino-0.5.0.post3-cp313-cp313-musllinux_1_2_aarch64.whl (700.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (537.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (663.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ppc64le

mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARMv7l

mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl (574.2 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.5+ i686

mokaccino-0.5.0.post3-cp313-cp313-macosx_11_0_arm64.whl (474.0 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

mokaccino-0.5.0.post3-cp313-cp313-macosx_10_12_x86_64.whl (498.9 kB view details)

Uploaded CPython 3.13macOS 10.12+ x86-64

mokaccino-0.5.0.post3-cp312-cp312-win_amd64.whl (351.2 kB view details)

Uploaded CPython 3.12Windows x86-64

mokaccino-0.5.0.post3-cp312-cp312-musllinux_1_2_x86_64.whl (705.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

mokaccino-0.5.0.post3-cp312-cp312-musllinux_1_2_i686.whl (742.2 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ i686

mokaccino-0.5.0.post3-cp312-cp312-musllinux_1_2_armv7l.whl (788.3 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARMv7l

mokaccino-0.5.0.post3-cp312-cp312-musllinux_1_2_aarch64.whl (700.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (537.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (662.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ppc64le

mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (521.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARMv7l

mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (518.7 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl (574.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.5+ i686

mokaccino-0.5.0.post3-cp312-cp312-macosx_11_0_arm64.whl (473.8 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

mokaccino-0.5.0.post3-cp312-cp312-macosx_10_12_x86_64.whl (498.8 kB view details)

Uploaded CPython 3.12macOS 10.12+ x86-64

mokaccino-0.5.0.post3-cp311-cp311-win_amd64.whl (351.5 kB view details)

Uploaded CPython 3.11Windows x86-64

mokaccino-0.5.0.post3-cp311-cp311-musllinux_1_2_x86_64.whl (707.5 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

mokaccino-0.5.0.post3-cp311-cp311-musllinux_1_2_i686.whl (743.7 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ i686

mokaccino-0.5.0.post3-cp311-cp311-musllinux_1_2_armv7l.whl (789.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARMv7l

mokaccino-0.5.0.post3-cp311-cp311-musllinux_1_2_aarch64.whl (702.1 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (663.9 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ppc64le

mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARMv7l

mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.7 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl (576.1 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.5+ i686

mokaccino-0.5.0.post3-cp311-cp311-macosx_11_0_arm64.whl (474.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

mokaccino-0.5.0.post3-cp311-cp311-macosx_10_12_x86_64.whl (498.9 kB view details)

Uploaded CPython 3.11macOS 10.12+ x86-64

mokaccino-0.5.0.post3-cp310-cp310-win_amd64.whl (351.4 kB view details)

Uploaded CPython 3.10Windows x86-64

mokaccino-0.5.0.post3-cp310-cp310-musllinux_1_2_x86_64.whl (708.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

mokaccino-0.5.0.post3-cp310-cp310-musllinux_1_2_i686.whl (744.0 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

mokaccino-0.5.0.post3-cp310-cp310-musllinux_1_2_armv7l.whl (789.1 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARMv7l

mokaccino-0.5.0.post3-cp310-cp310-musllinux_1_2_aarch64.whl (702.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (539.5 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (665.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ppc64le

mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (522.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARMv7l

mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (519.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl (576.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.5+ i686

mokaccino-0.5.0.post3-cp39-cp39-win_amd64.whl (353.4 kB view details)

Uploaded CPython 3.9Windows x86-64

mokaccino-0.5.0.post3-cp39-cp39-musllinux_1_2_x86_64.whl (710.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

mokaccino-0.5.0.post3-cp39-cp39-musllinux_1_2_i686.whl (745.8 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

mokaccino-0.5.0.post3-cp39-cp39-musllinux_1_2_armv7l.whl (792.4 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARMv7l

mokaccino-0.5.0.post3-cp39-cp39-musllinux_1_2_aarch64.whl (704.0 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (540.3 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (667.5 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ppc64le

mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (525.1 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARMv7l

mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.0 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl (579.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.5+ i686

mokaccino-0.5.0.post3-cp38-cp38-musllinux_1_2_x86_64.whl (710.8 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

mokaccino-0.5.0.post3-cp38-cp38-musllinux_1_2_i686.whl (746.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ i686

mokaccino-0.5.0.post3-cp38-cp38-musllinux_1_2_armv7l.whl (792.0 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARMv7l

mokaccino-0.5.0.post3-cp38-cp38-musllinux_1_2_aarch64.whl (704.3 kB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ ARM64

mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (540.5 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (667.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ppc64le

mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl (525.2 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARMv7l

mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (522.3 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl (579.9 kB view details)

Uploaded CPython 3.8manylinux: glibc 2.5+ i686

File details

Details for the file mokaccino-0.5.0.post3.tar.gz.

File metadata

  • Download URL: mokaccino-0.5.0.post3.tar.gz
  • Upload date:
  • Size: 26.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: maturin/1.10.2

File hashes

Hashes for mokaccino-0.5.0.post3.tar.gz
Algorithm Hash digest
SHA256 8ff4cd5aeb6601362e9b3325642e579dd27858f5900c5c0da0ff5bb5b45196fa
MD5 d43d6bd416148c9df82ae942e25100ec
BLAKE2b-256 cffe5b9daa450a1d86d418bff956cf8a607ca8e6279a394d60c0be59a01dc564

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 64104359c338ff3dc830f93e565516e0cfa79a84e83527bbfdd0c35d8dbf3b10
MD5 e97463216bf3d873e76d70e1e7cfc9b0
BLAKE2b-256 c9e600d2a2230189b696a4055dbdad6cad42efae2146b372f7339add2abba350

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-pp311-pypy311_pp73-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-pp311-pypy311_pp73-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 7e3cbc659a62671a4f6860941b081808daa57a2efec7b975d9bc13e58d6725ad
MD5 592801a2d42a5dd69752be55347927db
BLAKE2b-256 8e6a84c3913ee29e97b9b7204d66c3764c61e3350875092b9d6ec8d2e7120ad5

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 96333bbe00b8e81f6a21d82e7be8263b8c4b9c2b936ed1f32ab7651de274b722
MD5 af32d87573320a59cb236706811818e9
BLAKE2b-256 6a9ec09a0fecb48946231d9e76010b8cc530fd695d27765dc776bd9fbe7c2af2

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 c9f2685181ee8c6f154776616c367b81a5f8cde2d5f6ef6e12515c0be6a54c90
MD5 6919e26c6827d9e13f0a2a17c9ab7ef7
BLAKE2b-256 a3397743b601991fad4f9fe7f59422c0b984cbdb41cf8beb2d539eed369a2a3e

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7436325e5e8fca06455fadcb3750fb4f8748f240a5c25f49aa76e17f7824d3db
MD5 85a63ce6838356cb2a1cb9bfe44a213c
BLAKE2b-256 0aaef8841e4e23cec066aaeebc9fe4ab3e645fd524b4652d7055ba8fa97eeb40

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2d617d65260d8b04c7791574e3b3e756fef27976e9ec353095d9fcd98528e648
MD5 fd10050f102d960ed6697f7ad64a890a
BLAKE2b-256 d813615227a573f539c008d9b9782aeff4f833889ae8f07a1b0f8e00d7f9412f

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c1d58f09d56e0bded67be05ad6d0df7115680d7c965149dba9e675d1c6bc5a0a
MD5 a14b00d4af37cf1f859bdeb00c300850
BLAKE2b-256 538e30cbee36f603dd7e4ae7d0ddbee3c3a1e6c25defa2ebec5e718f7d666f79

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b5bae15aa72a5756b657d435072151f6fec121cf0111136ddb243a316c075ab
MD5 86c9e0fdc7d7a5416dda5aeb78732796
BLAKE2b-256 9299aacf60e27e7aa818c046918022d31715ac019fb4057c9f5d3d59a1932c87

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 020ceac6f7d37f26aede3496652cb28c6d34352353a853b23edc084ce1989d5d
MD5 bdfc1d717f3eaf6d2104cfd200e071e6
BLAKE2b-256 5c52323a9d90b25b10499ba685e014b3afed0cd5f2f147ebfaf1067cdb7e734b

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6b22b37ab25b0884620a854d8de9bb443a443fece14d7bd7a514b9d5aa318a3a
MD5 80e75c15bc448b3463ee56092bc1a6d2
BLAKE2b-256 26c2b76783fe0dbe8fb583518334ba4a8d87c6acecd841d1716a13ecf1fea430

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 c263c1e6ef849d0791a7d21af99b724687ac279a312b29c1efd0d420820bf2aa
MD5 cbb1b380937aab728b53ca9c7c716e41
BLAKE2b-256 928aed3cabc8a72936eb06e2d855256d3ab0e170c5f715d994b3016efb44eeda

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 2b5b1f2c13fd684b1cfbc44c78d7141bda352d005a493a899aefdf5530a9dcad
MD5 5b0ba9fc86b87f1c8fc6f17ab6dfc4cd
BLAKE2b-256 8e4faa567df3968187a15c482d6d109ca077f4e17a04c3e1fa2a1e98b2797bb8

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 4fe2e3eee60e4f1bbba9ebceb7f807c36ab8c8e63bc77bfbf982c9ee7b9b7132
MD5 ce606469c78a55c4af9d9a92cd7b250c
BLAKE2b-256 0f9d5f0159a749edaf335d9d2402965f0f857017b7f1b0ae244129b2d8dcc37b

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 86d9c7a185f1e1d5ecf1ff5526b7a35fefbd94a15ab19ba9537f328494606827
MD5 fb8b9fd36826cb6062c09dd2e263df13
BLAKE2b-256 a2b626cbc61208b72e9498210901b79da5bfda1834ea3df04109cf6ee51a0936

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 572d427c1d695a3351a06f4ccf1075a9aecd24779eb3b94185a424e59836b830
MD5 2d997939bf4e47a62764949e1d720794
BLAKE2b-256 e1a539938cfc9b3655cb20b25c3740b862438db8cf8cebb9069e51062e403ac7

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9b3aed96e3a1c7d813de7979a8bf82a8551683f29513c7eab0b102f7dd79f861
MD5 6ae5e79c9363e8e26b2594b986826e0c
BLAKE2b-256 27b4b6e581ffcbb6a6de8043d55aa563a638ddd5ebb17504ec327f22840ffb2b

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 be2ee01dc79ed99bc490cca9abd3f19cd8a5c140eb7c481f70351de5a8915e9f
MD5 05d1c12cdba8f976020e8f27d7ad66da
BLAKE2b-256 0973fd2f6d2a6c326c9d427fa71b9adf666f19d74a66f9bf40451f1d9f962126

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-win32.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 7a6731f0efd4db26c10cc40fbbd107ab507ef9a2fdcfe9f6bdbcbef510528b78
MD5 2785c2489fd430ab43ff580e450475a1
BLAKE2b-256 0c1819660af183ab261a68b38ee71371f4893c73ac59555a4f8515314e2c70c2

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cdf328e9faba8c1b1c82ba85551114938dbcaf82dc6890a86775cde389076b06
MD5 b2d54370b429efaa5a67e9bd8957190c
BLAKE2b-256 d7c092299a6f90a8517750c85d0efe914332be4a7475bf567abc9eecc0c0e1b8

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 443ce77bd8e88da263d9c7c1d4a6049da3833eabd7335940f71ea1877d440cb0
MD5 50224f0c6481e9a0addd56b19f933d62
BLAKE2b-256 68db9371112f96720c2a854c022b2e46f6cb1337f49b808424e5d23a763bcd23

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 20d037d3bdbebbd3ab51f2ddfa5ec20fcd847c5705d8cb79fd9f5801a77b4be4
MD5 042348de90fd674940d5d2ff88e589fe
BLAKE2b-256 e5165dc8080d20aa08adc48e74bca256f484b34e980e27bcbbe3cb99b81419bc

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 d2daa3bea7eb05ffb3929b8e90ef1e7164c69a5facdfc1366b0c1ac3007fc902
MD5 fbe41a3748b3b778bbadda383e7d29a5
BLAKE2b-256 6643610ef92ce375dd47995f4dc84bf77146c1e836a4a25372ba713f8753df4e

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 daf2542c6d16c350d2e79a79e15d9047347e4fa6eddb5670ded4c1a3df8c31f2
MD5 67cdef8de8a18a41b2ebd158fef40739
BLAKE2b-256 0894b90b2222ff4891ef7b1c7c644f682e6debc2352a1c31940163dcab369ad2

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 c6bf4a2eb40ecc70eb557a1a04b5d3e3c2883928b21b1e0d82589b2105eff168
MD5 8392fc59c19ec8fd1a5dd22cc3873353
BLAKE2b-256 8b91eea23e290524cc0e8a497a1b940d1031ee43821c95cddc1281d2a6bf349f

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 77fec4ebea11db54a4d50e054c0ecfeb61d067bc83734b874c7086af228dd7d2
MD5 c652b2d83a904e828165c2e954e9dfef
BLAKE2b-256 a6527595833c7834754e5675ee4ee7eb128ac96659e0f90a6ce74b1e6fb0e073

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9771b7e4a7d72a6031a5dcb99a4b10533f4b1ae70464bb579bed2497e0f9eb62
MD5 cd3346732224be61badf95bb5691944f
BLAKE2b-256 11b4af17ca886cd4451dfe8b1a1dd61d86effff03a87432835c521794027f73a

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 48a9370e25e13537c8725dce6a7c2676fe864a406351b751a74d81bee124057e
MD5 d963c78039ded3951b71f1b94ec23fcd
BLAKE2b-256 fff93d8c7e110a827ce112b921d08d539b3a5c10e92a4eda2e8c1f8eb4874c5d

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e9d46b10b9210f011502c39eab8b7e555d7b32eed0fd3cfee83581094512c8a1
MD5 8be7a6500e15bb1e96911f544d8e1f0a
BLAKE2b-256 1a47c244ff7d536a6def2683fb7a4d8006115b22d8ee0d1508fbb3893fe5a4be

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp314-cp314-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp314-cp314-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 1f22cacc2cde9d67bc02a1227569d97e759b7144c1d4536862d768cb64849eed
MD5 83cf13d3893e5e6f7a85c8909ef634fd
BLAKE2b-256 5145b77b5741ae49cad194dbb4e24579f48695e90614fc5e37006af10120cc15

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4c517b9f11b4cccf2b978c9aaabe1ca9183c1a0a1219b22d8822a7cdb1b28b71
MD5 b71de01d765184833d0427af651dff61
BLAKE2b-256 0b8c4ce97934f136202418acfb7ed481a968ccc090dcad444362ce17c9b86de5

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313t-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313t-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 1e0ee0874d0dedb99a835f9e8f756febdebc6355658ef3f09140c0eac6e4ad14
MD5 1c7955fdbd044416e46daf2f5940f08d
BLAKE2b-256 ea8439e2479fa61176a84e139c43ae0f6ee5dad8827f05b8154b769100a28c44

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313t-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313t-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 34d0ead5474abbabd0e6a297711363cc619faaac6abc6a13c9dbba054569ffbf
MD5 27304bc5f7f3a4f54c9d2b3560e774b7
BLAKE2b-256 efe72b988c0d8421e5b9cc1105ef5764c365d97c5c349d2c278456f55dac559e

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 59b554b18c361b28eac01301a35a4fb0859e80712d779ca998ee4a44bb4eba95
MD5 9f78dba59c5f78e78143f81af19942be
BLAKE2b-256 517de68fbb491bf56c5028672844ff614b9990e6efd841e2fe5564cccfd1623d

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 99b085702cbc50587b8e3c2c5c478337a6aaa4e189a99739231d2398f5e62699
MD5 a895d67035461c4e3a6b295a08c8df77
BLAKE2b-256 f7eeefdea1548f422c98fe6e2d4a48bf5ba76fb883726aea9fe34eb3f768a09f

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 721206fe2c2bf80f6ee4db3fa36dcfbab236047892f4f0e455b114153883b004
MD5 660d39fd02bc8fff124364aeb8996d02
BLAKE2b-256 43c42f69511b909304469ae90131fea6c0b4d2442baee2bd615d5a0f1b07ae97

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 20d7dbe5dbe943f75097e5deb0be17ea5512686d3a7c8d25e4bfe37092bf8057
MD5 662a8e2d2c0b6cbe294fa33a6a0da5c0
BLAKE2b-256 2eca7a83d70f04984ece02ae12df6d30968f483dc01c9a983426e867f1850c17

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 08aee20d699597cbbe79f21eea4c7f8625d239f5d63e24f0509a42ee5450200e
MD5 bc5e6282589e15992ff0af3ad212fa39
BLAKE2b-256 3db74f0e71d7ecc8f8fa0f474fe8c3ae0805842cc3b7493217832c85c2c03a92

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7a735341650ece912f6234b98f1b976ace2017ed424fa8ec14dc3e0f9b4aba02
MD5 baf3111926b565d530b44524e3ad756c
BLAKE2b-256 a695e7e57632e55b946c5ab9955e1b3a04f34b03f948bcd6e5dda9f30da2a2b2

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 62cee12232d781ce97c09ef56a3d603696b64a2d7090774d09600be8c45734b8
MD5 422cd1c0add63c7e393d031b96a1fb6b
BLAKE2b-256 ea3dab50da36ae31f2a694af584f34a663047e50a33f00f988e0eb293e6ea3ef

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 c026c722c64651b8299679bf7dd915a84e3c2b98dae4c39878d9d01f4fbae6c9
MD5 83509ecef5e6e38389dc214e44e9d6d3
BLAKE2b-256 f6a97bdda522e41b874fdf7d074768e71df3a78825f0ba2657fab28663c01d88

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 8af3d33d4e2f67cfcd1318850e020c07153a252f204b4c551bf321aab1bb98b8
MD5 b53e300d09ed81f2359392d82587d7fe
BLAKE2b-256 5a9e02323cf2e3b1ab08d5ab71be09105629a909b971001b0b1707966359f309

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 3f30ff122ddad6f41ca799e039a48ea7e03d3446b5af6a0a710b12d1e8c9a959
MD5 7d9d71fada1b8ed6200bb4f55c7ceab8
BLAKE2b-256 c306cd24961031261e365ad07fe9198a69f641c8f37af6a1617ee9aa1587a64d

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2a0adf977afa88884f461912eaed06c8b0dbcd695079f1ba561b0c5a1b024743
MD5 3db262c4b9976bbf9c7841c8517283e8
BLAKE2b-256 6768cf256f9489f00e29d50d911c8f48d50a8683d50d12167245711bd4ad3525

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 d3370719eb6806ac01a3bf1ec26a076be9a79fba50522db9ab1db27b5dda89fb
MD5 a46ae9c60a64dc7c17a6f86b07faa3e2
BLAKE2b-256 8f6a8ac86f41c82399229df24406cac67a6431f3a47f3233c1c9242299810cd4

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 09d2a7c12b47979e8216709b3b7a0fa50cf57b9285531955e99f8445d0fdcb55
MD5 11e5cb7855d59f64bb000f1dc3dffe41
BLAKE2b-256 b30b1ed5a8dd84de425bc3f803259709e92106bebde7dd66e8e257f1272f12aa

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 9daadb7a47218d032ac368e0f6b880668a3eb687db0a9dac5d647b7e2167b9e6
MD5 436bc933ad243ed4e36febaa7379bd13
BLAKE2b-256 04404b9464a85450581234932ab42613596c1e6c9b2a5970f2accd929c297daf

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b56aecc63a1972199b0ef637aaa9d6dea6a824821a036cce328f1418bc64c344
MD5 29c5c1ab60402a8d0045602601121bf7
BLAKE2b-256 3c6af666483cc0c3271c41627fdc432db4e12dee364973c14fe6fab77b9019b7

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp313-cp313-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp313-cp313-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 2456db40efd062dd00ae8547a19f7235b66ea096c2bd0b44792d134ad5b25549
MD5 5f5475a4380b90ff19dcd58092089a4e
BLAKE2b-256 9d2d2c97f8cba6d6823466e659bddc4e1ad53e71b6962f649aff2a4b518826a5

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 34d49760fa13c79bcb58f7f89c4347f9c3067dfa521567ecbbf392d1ed53c7d3
MD5 fb8ad2807ebb46eee199758f74a26740
BLAKE2b-256 9212df5facc7d40f1b2e4f9c4f1a765207333864f5d19149002285f95843a701

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 b07e65fd5bf763ef9b6297d20041c9f47f86772318c3d544eea5efdb6fbc487e
MD5 69d10f30d3e1f60a561a9796ab197e53
BLAKE2b-256 60844179c328c7c1db560631afa8ddc169e3c9d79e0f4aca1854413d4469a8fd

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp312-cp312-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp312-cp312-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 9bb62cc7dd578cd9d6e538065404322c2e291e8eb52163f198c8234640c87fff
MD5 d735f13e40986d6573f77aad53258ff5
BLAKE2b-256 6e1655a069d54fa5af5d9c342005096fbc3343ad67220574d7cfa7d610b9080a

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp312-cp312-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp312-cp312-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 61e7b73c640139d66f5253bb8455a95ac71ac28928ffd4f302b8c3e3b06f5575
MD5 54357ddc3e6fb799fdbd258bb122b246
BLAKE2b-256 dd08cdeaa5bf3bcc81309e75b701737895c0aa3edfa49d2f56d450d07ac2eef2

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f4dddd44526f51372791db680495b5f3dc763a01bae2f46e595e7ba5731d0bbb
MD5 f3be15a537790ea9054b31f2035f9d4c
BLAKE2b-256 58e99097f81c36fad766e0ffc670fad7f933a755fe17f7766dabe524c02412ca

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 b5598673ca42d1b080d37c078e2d00dc4c4667e3a954ff6ea26e01fab5ba906a
MD5 3654c353604265ec99a9638d5bcf8e3b
BLAKE2b-256 5354c5fc9ef0af01cbbced00b5c9809f36ae75cb1241da3ca2ae02d7d7ff3c77

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 396e9986f3ec0e89045aac35fa7061af22967686da3712a2d4cb6b8f4188c49d
MD5 eb4296518836fa0172fd70decd4ac07c
BLAKE2b-256 cdb8833c6b7658e5135418f114634575811ccbd0649c06720f8b01d9537e3fcc

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c682888cac0ed287e45333907a8f5afbe86084c13c8316d263cd4b4fe20af9e7
MD5 77af0ebb21af6b34c7d87725ad81f5d4
BLAKE2b-256 c01fef86a229919d8d14839fdc91c8093a9ce77222189ea843a91d8d8cddbfca

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 75e73660df9bd70091111304c928ee88ed4dafc130f484547fbffd54a67817e3
MD5 51986622a61f30b2e67df7ecc79980df
BLAKE2b-256 dc78706f0493f4ae8ce1b7485b6a40fcbe3c9438d34fda6f742cd65758429438

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 f95e7e45b39176119b92a576d7ddfe82e0f71e255e3fa5453edca5744f337a52
MD5 af6f8219622cbdb0dd8897e05ea25c42
BLAKE2b-256 22e0c083b50aa01da6d7c527ac595d78c5ec0aa3f29ec566f2919a58d50bfb0c

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 63fc535302a88bbd71244f392f1c7035707d281cc0696c65eb0c853a9411d46e
MD5 022b228c3e31d0e1d1e55462bb9b1f64
BLAKE2b-256 681ca9f9b6ea5fec73c4a8939996361bc609ea605cc7591b8b4d7fd9a95b8f44

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp312-cp312-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp312-cp312-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 9a4254ae7acfaf0ceeac539dd117e8250b874218879435a53ab88020b8613f73
MD5 6703722e63a087ae8c06659973cd5b64
BLAKE2b-256 05933ad9570ec3ff41d3aa623ea03d32583d922b50a60ebb5704e36cfa9d76ac

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 59cd5a0102190821366aa6e25e7285c2b562e5e97d6f8e650dba1a006d9c1dff
MD5 d77828a803e0cce2e72198daf56dcf38
BLAKE2b-256 0c447215bd0be3f0b64b2a774af16ff6d29a56e50c6299eed159ae5fb94b4ef5

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 947daf424fdc9fadd9a0587669d2e3e300f9996130b3dd504bd92faba53ff5e9
MD5 422b0ffbab4a13cc57b6bbc93d0d10f3
BLAKE2b-256 7dfbb4167801d49374c259bfc216266b7905b3ba41792c2fcc4dcf3dec0af721

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp311-cp311-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp311-cp311-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 ca82dafd3fe968704e6f3b2c8b7699a75821e70a1fde2d4bff3444b6ceb3b8d7
MD5 8b6dcb4032d3d88244cdc647e938c242
BLAKE2b-256 a167bd4b14ab2d6ae01087ebdf40b29514f9096240c7dfdb40190d97ab65a482

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp311-cp311-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp311-cp311-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 6900dad3d6965d7a04c4362e590f13eceb4bb61bd9aa37eabeb662b2f4387945
MD5 c9559fec9cd3bd9f235bc07377841a67
BLAKE2b-256 d1b3ba097ad66a3a730b390309e27e66b2a5cc46e60bcd333c62b25d915fcef0

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bda378eff93ad750a9e6b15cb61c96e9906aeb757d2705b80019a4e5e353980f
MD5 33221f59ac0fb6c98aa60fe941aa61c3
BLAKE2b-256 9c0dc5bf5d827717cf35b8ed5f87bcc5dd2dceeb8fa014b5d91444f9721673db

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5c275da3eab847a01faf0e7399f0542c7ac05be04ebce6fd3cbeb0da02472d1e
MD5 0f47bd78e8ebf972f9db592b257bafb0
BLAKE2b-256 000f485c2d21537573c7bd1b574bfba756a9003f3beffa9846dd832591b0a6da

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 0c965a2161cb41ddd921755d0f729cf4f6447bbbc993cada8fb7133fbf428bfb
MD5 01681c3090ef7e17508926f60629716d
BLAKE2b-256 d336c99e3ce3a77ca6d0b7829b692c303b2a83e749d381686c42d35330d805d0

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 c7d3dc31528e8fbc243a257b18680b91caad3f4c98951050223d3f1d359ffbc0
MD5 5fdba2ff980b41954c751f48a68049aa
BLAKE2b-256 cb57692f16896603bfdd8426ffd1757b0b2cb6fa6ea31154f34f34c187a3d3cd

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b62a2c0d2c03ad9448f820317c7408ba3fb0711060dc9f099ab78ca68c0d76be
MD5 0a1452634bfd45b5d9ac5d15822ff059
BLAKE2b-256 e5efa3ee519293a357470685be9d3b08984a73b3a4c1e589589d20a7a81edc7e

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 50e9feaf7ce02b5d3bba66c1dc5ecda12be72ceb988d587e4cb6f9bd7b88fc26
MD5 b662c81192c954d48b42ccf6e0997178
BLAKE2b-256 05b7f94df9804dfc119f042717c56e73398f72358f831c2f52a1e2378e330600

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d096280a264626bca4e253b796777684b044f94d29acba1aff5171a3137704f0
MD5 fba14c87a1c800bac22c7894659580fd
BLAKE2b-256 2f36accada378ff3ce08bb205b838c1269b6cdb8af6c92644c461bfef289f07e

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp311-cp311-macosx_10_12_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp311-cp311-macosx_10_12_x86_64.whl
Algorithm Hash digest
SHA256 8558bf6453711cd3ca5bd4dc3dc06c4378da12b4f12fffe53ca3295190c0af8f
MD5 3e2268e78fdc92425a83d894b3b5830a
BLAKE2b-256 6ba6ff9ba45454e46c2cd377723dc42ca301901c19a3e8203f28a66e3f2c4c1d

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 51fab866f56b073130e3ba32bb7a15b72be9ad60fd286aeadf073cb59c1e5d8b
MD5 1f13f8d5fcb9085e38203aefca65d553
BLAKE2b-256 7da9d4ddfb931b3dcead5b3c98a5abe9f11251c35cfb7ab79f65fba8c908f913

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2d1515a14bfcebb39b2e6197e95ee8748ec6514f4af797005ae1482acb678e89
MD5 b48a8e2a4639ebc9f68c08b28df13b39
BLAKE2b-256 db8b4beae773246e23ef06196f0c4627fc6c42ccb81ddd190158ca6721e9c084

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 361a7bed5acf4ed3878a31fe41314fed8f853b1ae13c18cb678cb7e5112768d1
MD5 78acdd36d24a0fa6b754b4b6e7059d8e
BLAKE2b-256 81b44c842af36dcb80ce78bb2c1b653429f2c3483abd4b76cb77e83fd8d26338

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp310-cp310-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp310-cp310-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 3a673a6fbc794d3b535d7290c7a3e36e6d1cdef3ac40e8daa0bf2a6c18a0d637
MD5 f9fa1c977d31d49e6739acbc6c3dc4fa
BLAKE2b-256 896cc4e203a0a7cf0893215c000c95f344301f90b082e1b9b8be6f407879a668

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 0f01903a1ee426b39718a8daf82e480f97be30eb288b1a89fcf4f8a9bce08474
MD5 a84324e7b8884f552a59ea614cf81da0
BLAKE2b-256 d65a0e5d20427649bac9cf1c46e85ab2230a70d3e93c5eb2ee2da2d28e0666b6

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 be760dbe3f55d2aeaaf361efc4c3975f3c0459c0586fc3ffdc31bfd8ba4c9059
MD5 bc027d8b0db522c145d70c954fd69b2c
BLAKE2b-256 d85bbc72f052d269769408465b5701df55ebe124ca32ea1100ee6b9c2ff638fd

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 6892975b80b8594909acc02e15fdba4f25ba1eb7f4f32f340cbfc90a4580c76c
MD5 b6f14595e9a8024bf5ca5b9f0cba176f
BLAKE2b-256 ef85ec49578387dccaf5010e701f8a89c8789734445c2364d6b609b353b52980

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 406038554a4d7af14a7a964b2994ea8ff3c49d6fbf7607638d6f4ffbd11e7544
MD5 bf412e83961a6ec455ce07107834e285
BLAKE2b-256 0da8242db0e4933008f3311878c3cb0f4236ea7d8825fe76675ab3d9d3b5e1c5

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0bdcfa9a9d8597c85d15f03689d93f4a4e125e7dfbf5daa9e81827964fec752a
MD5 65744d91f9e6be0663e82227c8fa9d17
BLAKE2b-256 6bd054740f7f78957065fcd47012623f2658619c2b07b6112cff6d5472d301bd

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 7d6fd9b7bb380cbb538b67822b8b8077122779599d9bceb407a62114996a6001
MD5 fb2f1c884de546150c15fbcb023d3f22
BLAKE2b-256 16e470a9cab2a5c5a358965c70a129052f8d19af6b496bcf407c2410605c1d88

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp39-cp39-win_amd64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 9a1ce6f00e78159bbaa1d4a82b09844cbfdc84e32e880b8eade481cda9c47de2
MD5 1cc789b2ba344092e2ec0fabf1697d47
BLAKE2b-256 846b45d5a14a05e5b7c21d76c6d07cc854e088e10ec1e196074c3c45a0320e29

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c210e96ef0c679323c281891b110670a7e6964c8b84423116b44782f1406f2b5
MD5 836dc93e912768b58785e5a3d4b70eca
BLAKE2b-256 1caddabbca4d333350a5c2d684d0e20961f0a09b80725942bd7ddb3ed42cfd6b

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 a2c2e56a4380564c7c7baa8f8b6db2f294d35b48631b0d7a8605a40d0f947d2c
MD5 b6212bc67a60648e12d23a25c387cefa
BLAKE2b-256 e499a7cdabe115d451b0093c8123d81d7c24cc706f74fd56ef72aad00e8b3ff1

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp39-cp39-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp39-cp39-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 330ce4ccc07b2efffc8516de0400771bda546649f65bde319e2ad57e5dd0af51
MD5 a80fc3e9632277d76a7aa603be837d02
BLAKE2b-256 2050788a0b9d6f32bed2f3834e6bb7c6a6f361da892005f1b83d7ae0bf431989

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 f2b2a387eb1bc7459fb1d8493e4466b560b02a29f9ed73f86d75d5233028a063
MD5 6c2113066da1f197589d3df6e46f8a30
BLAKE2b-256 fb0c464f6cf7fbe7a978b464569c18b39b46d61ae59c8df0a1f02d37333a6486

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5f44f9eae91ad504597e329b2a39c3121bc6133109593ff29f8f3f08b9b2443d
MD5 42fa41eab4c57ec0ca6f882e2e8669a1
BLAKE2b-256 348e727b81a3a6fbb1e52b46a16988b84732f108ba2a260b1e7563d221457213

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 29c5fb1ab7bd56421359c3f23c0f83f51d1f918be76a396133ec03c5b55981f7
MD5 4f9900b7ab0212d4f9e0f27d5c994386
BLAKE2b-256 d6ad31fccd0b1c955996784710dadb8bac1cb2e779f239339808e0ed560c3b35

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 e3bb915ceb54d760c8f2794d638517acf90750b931574678d6e29b8383f1b67d
MD5 324f76063292e635f6e2246c827a4d06
BLAKE2b-256 4b369a62ed2900384e07dbdb2d8c6351dbfab2950efd2e054e60166c7761f652

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0f8ad0872a7a0bb4bbca4b636faf5a1c747d1a950201ce90e67f95c0608b0597
MD5 b44b699f45f9a8bb76e944e4752342df
BLAKE2b-256 cdb68c534de2642517febd3644211c451e58d11520d0df8e1d53d60d9ba0af70

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 cb22a6aef5bb45017250f5e8df185369109b811a25798c955df4c15fac4cee08
MD5 363613a484955ccf59ea16be56f54cd4
BLAKE2b-256 2e7863a8fa6f5250c2153f23b9313c2aa2b393280062b1e9451bfc0999c1a075

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5f3dd5532d1af82de631f5d7690d942ab031605cca24a1c7944b862a194c7f62
MD5 3e33ac26afc1db08fb9583850fca0007
BLAKE2b-256 38e47abb5df0b0bffd960fd770943e6b98c542c116813222bca6ace96f1a9593

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp38-cp38-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp38-cp38-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 67790388105d17a8d08201f464acc58ca6208ee672401b411223d1b3ba8503cd
MD5 1046fa1f5c55709c6004553e4d7ac9d9
BLAKE2b-256 00799c472f609741cd59fea615544056a224f512c77222ad578a009fdc081fa2

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp38-cp38-musllinux_1_2_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp38-cp38-musllinux_1_2_armv7l.whl
Algorithm Hash digest
SHA256 ee974af3481f44818533e45d3a0a04f53b1b8a13d86868f4744c9f2d070f6ac1
MD5 95f5f5eade50720f6ba1b12013e55c4a
BLAKE2b-256 bc5ab8602a17262326a0f19272464e204cdf3ab0abfab1c01bf398d8e3ca134d

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp38-cp38-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp38-cp38-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 61b8248b05dd686848c50e57ac686cb0533196d6f92606344b8d69e375c06b23
MD5 c65991ad523edc0178b6a84334363738
BLAKE2b-256 0394629f6bedab700c060b64980398f32632af3a589998352ee3c97629dcc353

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 744d6fab0365e1ace5ed428850e7e75172c1b829e97f90dd9bb012cadb8d8667
MD5 7494b8d50e4bc56f2467a537a2194091
BLAKE2b-256 9a2d5ff8689a31dd3f68254474fe3e7d23869fd260b01421df590c86fb0780c0

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 32cee1e4087713ed86ac139c81eeeb42fde6091c94f9634e8d1fbe48495a7b61
MD5 99753a4ad4354a9f89d5b932d84a4b35
BLAKE2b-256 531a92dd140734e4264f5c4a4bf17b9f29d7120ce189742a95f01d500aacb750

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_17_armv7l.manylinux2014_armv7l.whl
Algorithm Hash digest
SHA256 570fba218d8d8003b28533a22a85ce2261f527fc944ab9595c3dfe5a304fa252
MD5 a781395af5a1fe39d7a11cbeab5f35e9
BLAKE2b-256 7d7d9e7df7574274c7b9fb93c25174a8bc0bc9ac637f1e3c0d67d4ddeca0652a

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c6a6b3eb1439fb13a95378486e2e3f24f2253b7ceca34f278bb81063e3435066
MD5 69437bd019647b2f9d92a3c196a59166
BLAKE2b-256 75d3468a4519bc8ddf8270a164795ac83c1fc2f6b939320a18ac1865f4380666

See more details on using hashes here.

File details

Details for the file mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl.

File metadata

File hashes

Hashes for mokaccino-0.5.0.post3-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.whl
Algorithm Hash digest
SHA256 0ca999c024596c360bd74013d6c991cf7e7f21b3aa312f79887451f395e548a5
MD5 e5ec26d0cf1fffa205c25d989f373f14
BLAKE2b-256 5f12cf09921083048e2bdc2e13523848c2dd49a1ebd32f1f0941b7b6b95c9470

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