Skip to main content

A learning-augmented text compression engine in C++20

Project description

moezip

PyPI version License: MIT C++20 Platform

A learning-augmented, high-efficiency text compression engine written in C++20. moezip combines a Mixture of Experts (MoE) predictive state router, 32-bit Asymmetric Numeral Systems (rANS) arithmetic coding, and LZ back-referencing.

Standard dictionary-less compressors (like raw Zstandard or Gzip) incur frame-header inflation on short inputs, often expanding small text strings. moezip embeds pre-trained vocabulary tables and transition matrices directly into the compiled library or executable, enabling instant pattern prediction with zero metadata overhead.


Installation

Install directly from PyPI:

pip install moezip

Documentation

Full technical documentation, build guides, and API specifications are hosted on the moezip GitHub Wiki:

  • Architecture & Design: Internal pipeline, tokenization, 32x32 MoE router, and make.py string-literal generator.
  • Building & Compilation: CMake and PyPI build guides for Windows (MSVC) and Linux (GCC/Clang).
  • CLI Usage & Training: Command reference, stream piping, and training domain-specific matrices.
  • API Reference: Documentation for Python (import moezip), C-API dynamic libraries, and native C++ headers.
  • Performance & Benchmarks: Detailed space savings and speed metrics across micro-strings (< 500 B) and medium documents.

Key Highlights

  • Zero Warm-Up Penalty: Compresses small text payloads and chat messages (< 500 bytes) without header bloat.
  • Self-Contained Portability: Default vocabulary (words_final.txt) and router matrix (router_stateless_v4.json) compile directly into the binary. No external asset files are required at runtime.
  • Multi-Target Compilation: Single CMake build produces standalone CLI executables, C-API dynamic libraries (.dll / .so), or native PyBind11 Python extension modules (.pyd / .so).
  • Domain Trainable: Built-in training mode (moezip train) optimizes state transition weights for specialized corpora (code, medical, legal).

Quick Start

Python Extension (import moezip)

import moezip

# Compress string in memory using embedded assets
compressed = moezip.compress("Hello world, compress this text!")
restored = moezip.decompress(compressed)

assert restored == "Hello world, compress this text!"

Command Line Interface

# Compress text file
moezip compress input.txt -o archive.moe

# Decompress back to original text
moezip decompress archive.moe -o restored.txt

Performance Snapshot

Across 532 cumulative bytes of micro-string test samples:

  • moezip: Reduced size to 247 bytes (53.6% space savings).
  • Raw Zstandard (L3): Reduced size to 456 bytes (14.3% space savings).

For detailed test data and medium-clip benchmarks, see the Performance & Benchmarks Wiki page.


Compiled Artifacts

Platform Executable Shared Library (C-API) Python Module
Windows (MSVC) moezip.exe moezip.dll / moezip.lib moezip.pyd
Linux (GCC / Clang) moezip libmoezip.so moezip.so

License

This project is licensed under the MIT License.

Project details


Download files

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

Source Distribution

moezip-1.0.6.tar.gz (519.6 kB view details)

Uploaded Source

Built Distributions

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

moezip-1.0.6-cp313-cp313-win_amd64.whl (371.8 kB view details)

Uploaded CPython 3.13Windows x86-64

moezip-1.0.6-cp313-cp313-win32.whl (351.8 kB view details)

Uploaded CPython 3.13Windows x86

moezip-1.0.6-cp313-cp313-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

moezip-1.0.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

moezip-1.0.6-cp313-cp313-macosx_11_0_arm64.whl (381.7 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

moezip-1.0.6-cp312-cp312-win_amd64.whl (371.8 kB view details)

Uploaded CPython 3.12Windows x86-64

moezip-1.0.6-cp312-cp312-win32.whl (351.7 kB view details)

Uploaded CPython 3.12Windows x86

moezip-1.0.6-cp312-cp312-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

moezip-1.0.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

moezip-1.0.6-cp312-cp312-macosx_11_0_arm64.whl (381.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

moezip-1.0.6-cp311-cp311-win_amd64.whl (370.6 kB view details)

Uploaded CPython 3.11Windows x86-64

moezip-1.0.6-cp311-cp311-win32.whl (351.3 kB view details)

Uploaded CPython 3.11Windows x86

moezip-1.0.6-cp311-cp311-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

moezip-1.0.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

moezip-1.0.6-cp311-cp311-macosx_11_0_arm64.whl (381.3 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

moezip-1.0.6-cp310-cp310-win_amd64.whl (369.8 kB view details)

Uploaded CPython 3.10Windows x86-64

moezip-1.0.6-cp310-cp310-win32.whl (350.5 kB view details)

Uploaded CPython 3.10Windows x86

moezip-1.0.6-cp310-cp310-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

moezip-1.0.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

moezip-1.0.6-cp310-cp310-macosx_11_0_arm64.whl (379.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

moezip-1.0.6-cp39-cp39-win_amd64.whl (369.9 kB view details)

Uploaded CPython 3.9Windows x86-64

moezip-1.0.6-cp39-cp39-win32.whl (350.5 kB view details)

Uploaded CPython 3.9Windows x86

moezip-1.0.6-cp39-cp39-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

moezip-1.0.6-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

moezip-1.0.6-cp39-cp39-macosx_11_0_arm64.whl (379.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

moezip-1.0.6-cp38-cp38-win_amd64.whl (369.6 kB view details)

Uploaded CPython 3.8Windows x86-64

moezip-1.0.6-cp38-cp38-win32.whl (350.4 kB view details)

Uploaded CPython 3.8Windows x86

moezip-1.0.6-cp38-cp38-musllinux_1_2_x86_64.whl (3.1 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

moezip-1.0.6-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (2.1 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

moezip-1.0.6-cp38-cp38-macosx_11_0_arm64.whl (379.2 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

Details for the file moezip-1.0.6.tar.gz.

File metadata

  • Download URL: moezip-1.0.6.tar.gz
  • Upload date:
  • Size: 519.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6.tar.gz
Algorithm Hash digest
SHA256 371648aa9f7da7d1e1ea531f0a166166034c3026c96f114d9d3f5f639609e8ca
MD5 054a277e60c756a30c8184ec8de3a1e3
BLAKE2b-256 e7b46457c2d23b3bf4f6c938972d2a28584bd039ab01e3740b0ed6244ce1a3b9

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: moezip-1.0.6-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 371.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fb0b6cc54f58fa80c1bb5caf8674b689b4fc27423994a5fd8685fbd78191fe40
MD5 c582dba8dba0aa94f4aacd5a14b75fb8
BLAKE2b-256 91591ae1fa5b9b1c6e85f3d1eab5a726ea259f6651e2360cd956111347bcf202

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp313-cp313-win32.whl.

File metadata

  • Download URL: moezip-1.0.6-cp313-cp313-win32.whl
  • Upload date:
  • Size: 351.8 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 34de05bc61b1cd527dc06d6dc6edf70f044302028db9ba1426ad864f53fa399a
MD5 52fdbb6d2b798ef73340aff2ee78392b
BLAKE2b-256 0c0799b74942b82698f694779f7a1821129c90401d1cd9594e355561ccd7493b

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 49b2f19d7626869c90c679b39eda6ac7c9b0e62a4e852edcc37898054b62767b
MD5 f4073db006c6e2f96111186dace0e0d4
BLAKE2b-256 e0d603204860df4cbaa15cd82c6a394c20351f45dceeaf40b7b0958792b07ec8

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 a8af275b29e973414f4a7433bc4211525ed66f3b81f2e6c3bd4f3c11fd80bf54
MD5 983520dee747d79067ff95f63a283d5e
BLAKE2b-256 59df31cf9597cf1be0664fb33d8ee850ef23f4a901b029e6d71e0afbb8128580

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 56dd5eef4945b51aebb60ced4c3c1a35bde7b16fd56703889146e21228c0532b
MD5 3847895c881f3277a6282bbebbe30d3c
BLAKE2b-256 daa1acf1c8635d672b620a900b7f0bd46bdaf24b568ead26ea771c43b466a8ed

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: moezip-1.0.6-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 371.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 cac9618ca9f137d545ad7a5031002eb7c7c02b8de112b566a33af2be663af7f4
MD5 ea1910f3e1079aa1eabd6765453df44a
BLAKE2b-256 76a1b1ad08985f6570d5b3c6f3023f23f02bc7d41ef93e11956245c7db0158e4

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp312-cp312-win32.whl.

File metadata

  • Download URL: moezip-1.0.6-cp312-cp312-win32.whl
  • Upload date:
  • Size: 351.7 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 73a604156de4ebe4fe4d00852d85f685fa19eaed2e8a862e73c41e9429d0c5d1
MD5 61cde7dd9e587d25f85e78c43cffc294
BLAKE2b-256 c50a8c79b801f1ee9282c2123eb35028d7316ac8d0bb4047f44d8e8de0be3047

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 d2fc22666ea89cf341b7e8b675d04b96924c8c13e6fe380350ce73999ffe354e
MD5 80ec9a368db3405e2b216e2605df3a6a
BLAKE2b-256 ca858097729b57ddbbc487c0b7ab3dc9235c597969f534cca3ea3731fce82829

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e4baa9e7570ca79e8f28a1db5aa5397714b90a067331650a68377bfb339e6fc8
MD5 2f3782268021c97a1bf9f45b594d6991
BLAKE2b-256 500765cab9291e6fdfbfca602d620aae2700e42ca22c79bab10a8f99829ec209

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 65935a767cfff66a2ede4c4ee4dfea7987cb48b8b9e6fe861b67c2804f9b0611
MD5 01269e8eb1286ed70e77500eb10fb15a
BLAKE2b-256 f8fcade88a683c24b768b458238678a7355c32454a6723bf63f3c591a6d4a66d

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: moezip-1.0.6-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 370.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 4af2846cd5f3dafceb18c2da1c5b056c5fb9e9c8d36bdd7c19dfb1ba4f5a4ba5
MD5 db1c5b96fe407f6fcd42f6d56e844f89
BLAKE2b-256 1625faa6f4a6785c292d25a401ad0449e1455bc417a3a86678ce9aff59922aca

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp311-cp311-win32.whl.

File metadata

  • Download URL: moezip-1.0.6-cp311-cp311-win32.whl
  • Upload date:
  • Size: 351.3 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 b0759876ae55bce1724746fc62938e86e4d6d12e30fe7f16e6662924ec3733bb
MD5 67a45e2fc94942aa3ab7464c5645d9d7
BLAKE2b-256 c3fbe8cab892e19d4d6aa4eb90863e66ee6856bf9ab3632c1548a2787cd46339

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 44a148137066bdda06a07d754c492f3204f94661538b230322421eb993b39fcd
MD5 e4c447cac061a6acf98d0e038bc76696
BLAKE2b-256 9cf941c2f63c66e371f995632bca9abf676c57ba62e82d8e5ebba0f593e3b9e1

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2f081bc24668662b50c7fe46e6f1f79d4df9fb19eb1b8e2fcb0a112460cacd51
MD5 b882aaf22b7ea1a1c09b05cfa5b06b09
BLAKE2b-256 f3e9d79150bf9c93ccf3e4289bf5da8de24e501a60a06b4f404c0c432dffda81

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d99cdb2458a1b512d32bb727bfd420f250a4b4058b1e00c00711a4b9b0a51e3c
MD5 9106037ce2517e19448f3b9376718f5a
BLAKE2b-256 ab44e84f3c87be2b8aa741592f1028a144d2417e38383cd6e4fe8b0a497bf2cf

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: moezip-1.0.6-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 369.8 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 8aed3e6881103db77c1a6abf79780ca35b0bbb7def8f8fc9b054a5304e8e7bc8
MD5 f1f8520eb403cc3592077973db35a494
BLAKE2b-256 00abb2aee05585343492fcbf14cd7d188d5f092e7c9649b058c29011d6548864

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp310-cp310-win32.whl.

File metadata

  • Download URL: moezip-1.0.6-cp310-cp310-win32.whl
  • Upload date:
  • Size: 350.5 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ce06c8bf8fcd7d441068883da5d9eeb9f79f17ec08b1ec26d6e260988f067a55
MD5 20af303a68e7c181ae2a71556c6b68d3
BLAKE2b-256 b7e4d269bfbc33e0077c71caac8ca728edbceb235583396f05465fd796f80303

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 126d2721ead70a4456ff1bf0dadaf196fb4d51bc8da6a410eb7761a4e9befa80
MD5 e605e7a9a4f4cf4b1a9c6ca4193acb60
BLAKE2b-256 0fa6285872437f4ca2a6586d66cd490a62b2d9a53dfc2065abff5e04c9a50ef5

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 832c64f10e1d919f4c03198a9befc4b4736ef6facd6fee0692ef09962aa0630a
MD5 0a8909f474ae4db539e6ef27c9217a84
BLAKE2b-256 28d108f4b4852a9e995f15c6847ccaad85fb38f2539974ae6d3b62cfc8424955

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 74a970787e980828b08ec1b226f86046a0ae25150aac65f5edbe308438b97e59
MD5 68cda8f7bf22450ed30d1af842ac00c0
BLAKE2b-256 8dff71cd66af2b2ede59a3603b1867043e159736cba58d15f15af339e377754c

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: moezip-1.0.6-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 369.9 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 97787bce3ebf40c2318952a35e67f4a11730bdb17b53b3f5a54900ec6647043f
MD5 24a3381a36901df45a1d5231ac286a0b
BLAKE2b-256 acc50cb0193682d17a83b5d985a47a0af8d779c58d06171b0796fab77d5e4da4

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp39-cp39-win32.whl.

File metadata

  • Download URL: moezip-1.0.6-cp39-cp39-win32.whl
  • Upload date:
  • Size: 350.5 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 d0de4bf88bc201bae6986b9144876e0a46aaa06ee9d67dce6988ff2ca1881085
MD5 376cab3e587f5c97c98b3e9ca58ed785
BLAKE2b-256 26e6ab57cbd13eae2622ced9ee524a05cd898359050b2594614b3241daef059c

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 ba467b54f399c726f5dc9f976771a7f697a288a2071bd34622a6b90241cdcdc4
MD5 6b12ba621c2be6c570acc6fd326ba7c3
BLAKE2b-256 d841fdd5940a067f880d9a41c2cacc8a11cd06eeed5bdac2a1a0a03eb08c8d52

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e0b72f7aa271f296811f3c5afb7d98273958b8ab00e819da3450588d00e0b38e
MD5 3480aeb14e0f69c24b8ba4a219b297b2
BLAKE2b-256 5b26451dc689d48c3d2c947af231e89dbb684a517fe89fc71f57ef52518ab3de

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b445b507b829a10c84c79a179b763e4a98f31737ed52c9260168e0f804fe9fe2
MD5 0aa8802b2c312895d39a662dfeed347c
BLAKE2b-256 3f940d7d8e360d0a97b412ce10559900e68ff97b88709b2504f5b0cf97d85e39

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: moezip-1.0.6-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 369.6 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 2629ffeb3a1833a0556a011e8dcd957473c6389f3fb4a744d176794bfb43a2a1
MD5 020bee5325dafb74bafc9d8750099f0e
BLAKE2b-256 31f628432b1476db0dc2fac482c63a96426bc02997b77320f5944b4a20a9bdd1

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp38-cp38-win32.whl.

File metadata

  • Download URL: moezip-1.0.6-cp38-cp38-win32.whl
  • Upload date:
  • Size: 350.4 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.14

File hashes

Hashes for moezip-1.0.6-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 7be36111fdf7a380ddc9aa483308d202d4761ba11e5385d54c3a0d936cab8df5
MD5 10f0622e8e9450a5dd3aaffdc6be9bfa
BLAKE2b-256 bd0aa33e1866c1b6a4d6d20ea27d9b4d3d81c4d9138cced9e693a43ba0e40776

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 c559ca019111a30ab30d54ed8ef66d04fc7cc6c10e167844f349ed9939e9a0cd
MD5 6f91eb5b9769d0a2fce26197e9ccd384
BLAKE2b-256 8a523c6ec96492ed1fb9be51991f472388b3557e313b8f448ce6e7e12b5e9190

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 cd1f1e06449338362c3ca1ee3925c855dcf18bcec32816a44ec1947457cbfca3
MD5 3378ff9e1c8b40b60e14b619b522e87e
BLAKE2b-256 6a05d6f2fd860fb34c912f6348ef79d6845f442dfff8ca97d24c427b48aac430

See more details on using hashes here.

File details

Details for the file moezip-1.0.6-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for moezip-1.0.6-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 91d4059e7f9fb6b6db7f9d4af3a76c053e74d173082fc048e2e473bd26c5040c
MD5 b8f3d2cc61126d88227895c9a905376e
BLAKE2b-256 e3da025c18fcf8b5a379a5b8caaaf9ebcbde32158472157a698d7a97e9059896

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