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.3.tar.gz (519.3 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.3-cp313-cp313-win_amd64.whl (371.4 kB view details)

Uploaded CPython 3.13Windows x86-64

moezip-1.0.3-cp313-cp313-win32.whl (351.4 kB view details)

Uploaded CPython 3.13Windows x86

moezip-1.0.3-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.3-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.3-cp313-cp313-macosx_11_0_arm64.whl (381.1 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

moezip-1.0.3-cp312-cp312-win_amd64.whl (371.4 kB view details)

Uploaded CPython 3.12Windows x86-64

moezip-1.0.3-cp312-cp312-win32.whl (351.4 kB view details)

Uploaded CPython 3.12Windows x86

moezip-1.0.3-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.3-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.3-cp312-cp312-macosx_11_0_arm64.whl (381.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

moezip-1.0.3-cp311-cp311-win_amd64.whl (370.3 kB view details)

Uploaded CPython 3.11Windows x86-64

moezip-1.0.3-cp311-cp311-win32.whl (351.0 kB view details)

Uploaded CPython 3.11Windows x86

moezip-1.0.3-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.3-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.3-cp311-cp311-macosx_11_0_arm64.whl (380.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

moezip-1.0.3-cp310-cp310-win_amd64.whl (369.5 kB view details)

Uploaded CPython 3.10Windows x86-64

moezip-1.0.3-cp310-cp310-win32.whl (350.1 kB view details)

Uploaded CPython 3.10Windows x86

moezip-1.0.3-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.3-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.3-cp310-cp310-macosx_11_0_arm64.whl (378.9 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

moezip-1.0.3-cp39-cp39-win_amd64.whl (369.5 kB view details)

Uploaded CPython 3.9Windows x86-64

moezip-1.0.3-cp39-cp39-win32.whl (350.2 kB view details)

Uploaded CPython 3.9Windows x86

moezip-1.0.3-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.3-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.3-cp39-cp39-macosx_11_0_arm64.whl (379.0 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

moezip-1.0.3-cp38-cp38-win_amd64.whl (369.3 kB view details)

Uploaded CPython 3.8Windows x86-64

moezip-1.0.3-cp38-cp38-win32.whl (350.0 kB view details)

Uploaded CPython 3.8Windows x86

moezip-1.0.3-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.3-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.3-cp38-cp38-macosx_11_0_arm64.whl (378.6 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

File details

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

File metadata

  • Download URL: moezip-1.0.3.tar.gz
  • Upload date:
  • Size: 519.3 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.3.tar.gz
Algorithm Hash digest
SHA256 9d24986366697e99c06fe8af64e52d923bfbee73ca0707ffaa199605e52caaa0
MD5 c2380976b5564fdcf3a3ce088e20ec9d
BLAKE2b-256 d28f4d18469471485a620308ccbff533e3c8e7992b97ecab5056d910bbd48aa8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moezip-1.0.3-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 371.4 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.3-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 acd80f41df982a0e8f19a3e7a28a4cccff06d2c32b609a7e0f7691023cf1a19b
MD5 373405fda0003bb1f05cb0e5bf207899
BLAKE2b-256 49ee5d2d50a20800b9eca0184cfec60fee12820ee7f06bc1b820edb827d7d5d6

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moezip-1.0.3-cp313-cp313-win32.whl
  • Upload date:
  • Size: 351.4 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.3-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7e0050053ec8718c35ea3d508b68f4fa6dc7a5a8dfa171a4896b8a1dca66dab4
MD5 0945a9b2f70ba8a4786d95770714c76e
BLAKE2b-256 a6c6aeb5142df249a1e227d35d6f4bf77dbe42a069f7be9be2eda7f5c613c63e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0c19b73e25972e001e8d2e7983239ae288db4b22233296fd71f8c91efdb988f7
MD5 004f70dc96f376042929d798cf7d9c74
BLAKE2b-256 b6bca2bc08ebc659496d0d309f134a94ef5cdba54fa4529d342349becf062acf

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 65528463acb6869a6a22511c0bd526efe8b66acb1c1b39ad413d1aa64df7df41
MD5 0435e046fc7020b185fae996d83f0d41
BLAKE2b-256 d8baead436aa99013e37770bb81a83b07f0c967284afbf4e22b11abc9031dc5e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8df2bdd3ccdcc3eac2c2ec236a94b0e1b4beb5186b8d34d748050ad83a37e18d
MD5 eb2fe34a678f9569a9b136233cc1c048
BLAKE2b-256 adce5773222e193c843acca4b048d42ca0960fe10b47e7b5772aab966d4cb1db

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moezip-1.0.3-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 371.4 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.3-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 c3227019f95f4f67d56512c567b2c1d1d73ae4e792ed35d3af3b0054933c8cb2
MD5 13ea0599c0abd34c4915442989dc9bb5
BLAKE2b-256 f78fa2b03c211c8def102e1eae44548ec9fac905fdeab8e8e0f924076862f61a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moezip-1.0.3-cp312-cp312-win32.whl
  • Upload date:
  • Size: 351.4 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.3-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 befd1a5d59268969a59351a68c8155589e2f4fa2fc013dade08af6aff3ee6de5
MD5 53d3ecfb348df8cb09cf048ad80f53b3
BLAKE2b-256 999e6199ee517ddff2c4b6a96c72c42c95feeee9417d58614728883e7a5698b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 36fe9720e7bc19b81358b880350519cfeec00c1b97e9a64c3d3a3831cc72ce2c
MD5 a3c45887c256837da2f1afbe47e02fff
BLAKE2b-256 3a58066d0667d0bc206a0a388d203860af16edd012812f57808393c342830c82

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3d4f5cfdb7711d4182221d66999331284d1d55271d4fd1c77dced2427465752e
MD5 c893b05c3e2345d4c65fd4ede2136336
BLAKE2b-256 4bb5ff0988618e05a6bf4582bd73c8e35fd865567136a7d7bc3d05ae534e553f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 33fca7b0b952c0d003e8e327d405b900d413caf523e1d094a5306ac63dbfc7b0
MD5 276a781a318bd1adb10bb437414a8de1
BLAKE2b-256 98930fda5cfeeecbe26a9108447d24563f9e86f94f2babf91514d00734729749

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moezip-1.0.3-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 370.3 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.3-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 987fe68bbf4fb1c4bfe9c4ddc64d2ed2d9e532fcdb4c3c05eb5b4e83e31368be
MD5 79a155f4af40d7265b96552a37d6b4ab
BLAKE2b-256 bdade9d3db9bf40dfe53ebdb0cb57e1173cdb1fcba2e4cce1ed4880943259af1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moezip-1.0.3-cp311-cp311-win32.whl
  • Upload date:
  • Size: 351.0 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.3-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 e9c72ce23b2088657cbe2fd36cf987b26a40b499fc48e754208acde53d691a59
MD5 43bcd7ffcfa4d5efa328e4f94a95a66b
BLAKE2b-256 f6fb9e6998912b177d29a365a6cac6bd76907f4d4953257486609236864336ac

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9b5cdf9b43bc4896984473f4276bcd4773010dfe302cb8bc26f91f807a49c857
MD5 598e73fc824ed0c4e4e34c317208c0db
BLAKE2b-256 f266e47c5e5284d2294c9571d82e5362e12a3b4d1be75eea242b0480169a6100

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 1623aec686313bbc53a7865a9c8b221ad41d8d59dde694f385127e481be3009d
MD5 335a7f28628649084a075fefa2e79a64
BLAKE2b-256 72706cbd1ca9a28ca8454efa867bc413b931718a5aa4aa4004b876fb3cecbd54

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bd2389a3302bb98b3c18845f2d4579fa2f4e4132895252b6855bdb0ecd875270
MD5 ad448bcbd8196406e1cd9e67ef5e1e05
BLAKE2b-256 c1bbd3444f134701112a44eea2eab03834ea0a265fd8ddfd58f277d9ef75f095

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moezip-1.0.3-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 369.5 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.3-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 1d7dae7d82aef29ad87db19638425f40a14d65ef233077bd991fe1992f57f2ea
MD5 b42cb5263d6f3e296d9930d9ae4b5ef7
BLAKE2b-256 8cd0139ec78d430bfbc0f6eee221426ba6837c9d6ea8355bb4fc9b775d4f05e9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moezip-1.0.3-cp310-cp310-win32.whl
  • Upload date:
  • Size: 350.1 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.3-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 ccdea62b478dca58945a2d3fa759cd6b3b591e3d34a7f9b3b978893d58315038
MD5 4ce7a8ed184ac551034534ee9d55c9b2
BLAKE2b-256 20f66a17394f414904d7fa813e5bb3f796f79c5d60661688a7ba6d277332f768

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2b254bc78776a13d620ed58dbd89835327f9da1ade00befbba07704dd16c9234
MD5 515cb8c1e5b13005cecbde21d7f88d5a
BLAKE2b-256 bcd2b2a83e9c8784240897121d96e2a5f736ade92e3558664dd5a51b35b3be1f

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 87cc9e217d0ef02f354ee0566cb558c044204988b7d8f9c389afa8bdd05e6725
MD5 d5209ffc3954ac8cb1c38fec04acf829
BLAKE2b-256 1a6bab3d7e879227459b92f6e399d1bf636706520d7bc1b58d98adfe9684e3af

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9b8ba2c2bbf7a6ee70e50fdf58d23da91c127c95158c29c782b47303c74754f5
MD5 9b4f274c2a813ca75dc0fd65742e2533
BLAKE2b-256 4af84c55b0daf823eb2826ec75e173ccd5c8e35c2110c7f784ad544daafac5b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moezip-1.0.3-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 369.5 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.3-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c5887127ee2fbd6bc0929d454579c0deb9c9ca0fa0a97ff5e08dfa71b12546ef
MD5 9a232c34c60d1cde8f56f81b1f8fca44
BLAKE2b-256 e9c1901e4839d826f33bd31aebd4950ccffdb37ecee810ea3f87425f5aaf0dd9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moezip-1.0.3-cp39-cp39-win32.whl
  • Upload date:
  • Size: 350.2 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.3-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 7d8a95c931567044e8afa50725c91d5cf20feafaa06cf3d8e19710ed36a237f6
MD5 ce08552dc5237ec4503a2b13d925af32
BLAKE2b-256 edbeb46d19fed2cadac05ba7ec57d5ba5db4518afe095cd11759842221b75a7d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 1c1808ed3c9a7b9d7c55d2188abf42016855df1e541b77c0c9837c519ff3af21
MD5 eabdf9c0d8c9c7d2eb04ab6a65431c31
BLAKE2b-256 d30f6e13a3ac312dd94a6e99bc62403d9a3e0f6f1fcd3bfbbe8301af7fe1b37d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 ad05b6c329824e1a7307be82be0c82cb68cc1867582271438d3df26d44186959
MD5 c988d4d98dff40b9ff0de705e671e865
BLAKE2b-256 2ff1d7a635569aeb1e358d9d6e17b7394fe8c8679636c29059faa374d9b35558

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0cde229cbcb03b77b9133ce429d88325e842f6126fb21ca7f3eee898fe7bba02
MD5 b406fea8e1bee24f772baa97e5478391
BLAKE2b-256 11aa2e629a75a2acb12c6ce8794bcb83e8da57112a3814bf0768154293174355

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moezip-1.0.3-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 369.3 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.3-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 496d4abbd1e1477098685d335d4ab5b5934a57bb2cd9524c47d84f6b9f6274a9
MD5 98f897312045263adcf2e9d6a3d31dab
BLAKE2b-256 96ac46a3510afd706cc40ac2e76c7e8319d36868c50a6dd6b257e0f0d51b220d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: moezip-1.0.3-cp38-cp38-win32.whl
  • Upload date:
  • Size: 350.0 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.3-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8a461d77e9d56dabe365a3d6a717f444ccd0e4038ce5af9ecd1e127bddc36648
MD5 8ba8f4475e3e80721b93265135065c74
BLAKE2b-256 adca07d51589c4127faccd13e2c31ab8104b74fb0b4162598920056a873a3086

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 96426677e37a74e7fdc586e566e1401d6a67b81a2ece75d6be7346c1b290e8a7
MD5 1fdaf8251257a5cb32b5efbcfd0ce75b
BLAKE2b-256 f3d3f58275f3c2ddd2a1dd9c1ce1b1cede6a9014d9e455a6e2da6a086d2ce84e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 13fdcd2bdbffdfd4fca09ae0cc7c412dfe565c312d50889670decafa5069669b
MD5 9d29d0624b12e17ee02d78ea293fc6f0
BLAKE2b-256 607893b527ef29ae5d1e8c3c3a4db821a66419ffeda7d4c83081119863915642

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for moezip-1.0.3-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fffe213adb6455eca3153d5fe6c0b35630746fe38e7f8f4bc12aa46906058bf5
MD5 345722187b1a93faaf15919caac2600f
BLAKE2b-256 59cc156e0a36e59fa8b4d93cc6e65c9f433757d431d1ca27fc7acd546a7544fa

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