Skip to main content

Pure in-memory ZPAQ compression for Python (real pybind11 bindings, prebuilt wheels, no C++ toolchain needed to install).

Project description

zpaq

Pure in-memory ZPAQ compression for Python.

Every other pip install-able ZPAQ package on PyPI either shells out to the zpaq executable (which forces temp files). This package is:

  • A real pybind11 binding around libzpaq (the same library the official zpaq CLI uses), wrapping abstract Reader/Writer adapters that read from and write to bytes objects with no filesystem detour.
  • Distributed as prebuilt wheels for Windows, Linux and macOS across modern Python versions. No C++ toolchain needed.

Usage:

import zpaq

raw = b"hello world " * 1_000
blob = zpaq.compress(raw, level=3)   # bytes -> bytes
assert zpaq.decompress(blob) == raw

Compatibility with the zpaq CLI

zpaq.compress() emits the same on-disk format libzpaq itself writes, and zpaq.decompress() understands archives produced by the zpaq a journaling archiver (it identifies the JIDAC index/hash/info segments, discards them, and strips each data segment's trailing fragment-size footer so the recovered bytes match the original file exactly).

Tested on ten varied real files (1 KB to 25 MB, text/image/csv/jar/png/jpg/svg/exe/binary, compression levels 1-5):

Direction Result
zpaq.compresszpaq.decompress 10 / 10 byte-exact
zpaq.compress → official zpaq x CLI 10 / 10 byte-exact
official zpaq a CLI → zpaq.decompress 10 / 10 byte-exact
import zpaq

# Pipe to the official CLI
with open("out.zpaq", "wb") as f:
    f.write(zpaq.compress(my_bytes, level=3))
# ...later, from any machine with the zpaq executable installed:
#   $ zpaq x out.zpaq

# Read an archive that someone else produced with `zpaq a`
with open("their.zpaq", "rb") as f:
    file_bytes = zpaq.decompress(f.read())

When zpaq.decompress is fed a multi-file archive it returns the concatenated bytes of every file in the order the CLI stored them. A future release will expose a per-segment iterator API so individual files can be addressed by name.

API

Function Description
zpaq.compress(data, level=5) Compress a bytes-like object. level is 0..5 (0 = store, 5 = strongest). Returns bytes.
zpaq.decompress(data) Decompress a bytes-like ZPAQ stream. Returns bytes.
zpaq.Error Raised on any libzpaq failure (corrupt stream, bad header, ...).

Both calls release the GIL while libzpaq runs, so zpaq is friendly to threaded workloads.

License

This package is released under the same terms as the underlying libzpaq sources: public domain. See src/zpaq/vendor/COPYING.


Not affiliated with Matt Mahoney. libzpaq was released into the public domain by its original author; this Python package wraps those sources and is an independent community project.

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

zpaq-0.0.4.tar.gz (100.7 kB view details)

Uploaded Source

Built Distributions

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

zpaq-0.0.4-cp313-cp313-win_amd64.whl (327.8 kB view details)

Uploaded CPython 3.13Windows x86-64

zpaq-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

zpaq-0.0.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (272.8 kB view details)

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

zpaq-0.0.4-cp313-cp313-macosx_11_0_arm64.whl (244.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

zpaq-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl (254.7 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

zpaq-0.0.4-cp312-cp312-win_amd64.whl (327.7 kB view details)

Uploaded CPython 3.12Windows x86-64

zpaq-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

zpaq-0.0.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (272.8 kB view details)

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

zpaq-0.0.4-cp312-cp312-macosx_11_0_arm64.whl (244.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

zpaq-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl (254.7 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

zpaq-0.0.4-cp311-cp311-win_amd64.whl (325.6 kB view details)

Uploaded CPython 3.11Windows x86-64

zpaq-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

zpaq-0.0.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (271.5 kB view details)

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

zpaq-0.0.4-cp311-cp311-macosx_11_0_arm64.whl (242.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

zpaq-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl (252.7 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

zpaq-0.0.4-cp310-cp310-win_amd64.whl (325.4 kB view details)

Uploaded CPython 3.10Windows x86-64

zpaq-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

zpaq-0.0.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (270.4 kB view details)

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

zpaq-0.0.4-cp310-cp310-macosx_11_0_arm64.whl (241.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

zpaq-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl (251.4 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

zpaq-0.0.4-cp39-cp39-win_amd64.whl (325.4 kB view details)

Uploaded CPython 3.9Windows x86-64

zpaq-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

zpaq-0.0.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (270.3 kB view details)

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

zpaq-0.0.4-cp39-cp39-macosx_11_0_arm64.whl (241.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

zpaq-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl (251.5 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

zpaq-0.0.4-cp38-cp38-win_amd64.whl (325.3 kB view details)

Uploaded CPython 3.8Windows x86-64

zpaq-0.0.4-cp38-cp38-musllinux_1_2_x86_64.whl (1.3 MB view details)

Uploaded CPython 3.8musllinux: musl 1.2+ x86-64

zpaq-0.0.4-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (269.7 kB view details)

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

zpaq-0.0.4-cp38-cp38-macosx_11_0_arm64.whl (241.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

zpaq-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl (251.2 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

File details

Details for the file zpaq-0.0.4.tar.gz.

File metadata

  • Download URL: zpaq-0.0.4.tar.gz
  • Upload date:
  • Size: 100.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for zpaq-0.0.4.tar.gz
Algorithm Hash digest
SHA256 2275f73eccd756921261f5c9c887a1d228cfe16be965d52cfe1e2257008ba512
MD5 f890c71dacf1b8853f7850361c3f2100
BLAKE2b-256 cb01545f4fa272f1a249099139a96ada530d5e89ca6617c78b7c424cab3ca695

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: zpaq-0.0.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 327.8 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zpaq-0.0.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 4a9c0aed757ae2418529d392580fb4ef0191574faed137da105111736a6470f2
MD5 868a9dcb69878ed189d7c10624972fe1
BLAKE2b-256 bbeeef84da707e9e72d396b86c11d5055ddd93d87d71a4882458db3bd087da85

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 746d1d7a4cc5aafb5b06302d804e8f6f0de1ecc0ef4b154d22c6399144d5c416
MD5 e2be64f0393d95960314884516774b2b
BLAKE2b-256 3c1c694b6e69234c69bfa10e567edb507d24cfd71275e71a4f24454524810a07

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9bd9ec3a2bf1493d859f1d9f303d0bd5cab53ac9ad3ee555aad482ee211cf41a
MD5 89f72bed9e2b2fc3dd58b423645b2e08
BLAKE2b-256 f8a743e37eb2a2505bb130efab639906ead7bb9b635536691ce866fe6ef0ad3f

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4cc0215e1a83d6a2b7476a500d4734d94eec062dd02e0ee2d078e2f50d24729c
MD5 ed96a4b5fd56079c3cde9de30094150d
BLAKE2b-256 a923e6f445d093160c5af5dbe845456bb645b1c6ee3cb748f1b53c1af93b0f3f

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 c7885de13f7209428016897a48c0f48137acf04b1f01a1c8d853b2d65226fb4f
MD5 457ac0526d23044301722517f8a4ac24
BLAKE2b-256 c4918350d1ef83c41d244d113f7bb556dc58106eb3ade8ea1159c56a5ff87c9d

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: zpaq-0.0.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 327.7 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zpaq-0.0.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 996bfdb5d8735578a7f45e812f3532a7f79e86ec15d0763a5f5358009b2369bf
MD5 2cbea0b79737d93878765bc5959384a1
BLAKE2b-256 aac1204e1265c706ccaa6c205f8b7cfb24893ef2b442f87c1551446285eba3d8

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8c7ab46f94f4076340ae6e22d2f1b687b7e2c12232cbad60cb6ed777327d4c14
MD5 8af94230d024714a112ac241693a0336
BLAKE2b-256 b9c0f834231cd42630b4ce6275ddf8b0ddda40f0727544267faf9316c7fdc56a

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e3e048e8aabdf3afee1f88557765c40c2b8eaf8f44cd979ba8966954940e12e0
MD5 8d79f734d9ef66d5cf74302a71c014f3
BLAKE2b-256 35cba78c91bf458abfe8f44a332aa0c70733052e2bb957782be4e08a6c5afc59

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 99748cc3016baff775a71f7fbdc02877230e5dd0f130eac7f960d7e7958afb72
MD5 828db30faa7b202f78d5fcec75f35940
BLAKE2b-256 5885c2a247fc01f9ffad5ea271584efc5e7f2b258a9bc53eecee41d4bdf22244

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 1ce8658570189d367953af8b417dfa742438057bf72e361202e0a47264ec5412
MD5 d7b5aef29e3d65279d281ed38be4f6a5
BLAKE2b-256 f3e097deb71fdae2d7e7e92b73e304b86ad8e5bc58105971d2d82bde6d2fc60a

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: zpaq-0.0.4-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 325.6 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for zpaq-0.0.4-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 271c6c959986722ae64244c7943a427f891465675ae6d828038578472910d051
MD5 f561630258d4a4e672846d38e328c3f1
BLAKE2b-256 a4a7d50aab09701769761cf4333e787be6b44327e607031998717fdf26a619ee

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cae46d3e313bc8f345f90bce272e7e99d8174096dfd0a9578a44761e3da628d6
MD5 27463ab67b52f8137c72bafb3806e4da
BLAKE2b-256 91a4adda9b614c7f4a62f4e927fe5bbd2faa0b825a3891c38091339cbaf24f32

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0970b2b4d5326002c87e408a81252d0acd411e1579e067fb9f8b536f538fa925
MD5 b96099247af0049ff0a1399359fc6d88
BLAKE2b-256 0d8c4696187e5800125963714d4f038f19aa44e7c3618f8238caf9ae8f5e8455

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 e6c5e52cd265580904dbba6b48ba9b7a920af2e754f2158347f422d4e0753916
MD5 a36a0d450728e61b8c85f2b68bf99e31
BLAKE2b-256 61b8bd37e443ad831d5e7daf6b0e00d79b6e7691ab46c026b75fa82bfd3cad68

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 db9597e81d9f389c384403db7613a280b21a6e13cdb97802af6c424a43fdccd0
MD5 0aa60862b5cec5b825667e84d2f00bb3
BLAKE2b-256 ba962f4581a1c7c4adacf421c4d71f5834ebba694fc0eb5021ea5f711991a865

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: zpaq-0.0.4-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 325.4 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zpaq-0.0.4-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 a0f27608a0580e426992419f46c7d3b64df4f02b52edc91b0ebccd74743e1b2b
MD5 4cf21d45cca68a2dbc8578a851d3fdee
BLAKE2b-256 88d6ab0a629720694734fba06f98ab7866fc89d8594ef1a0bdff18c9d711042f

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5610daad821d5887d7d49446e5db117c404a3ccac35c57e4783e8b9c0d139c1b
MD5 b469d97bc11034d75a55517e41d33f78
BLAKE2b-256 82bd91a0b09158f125b9e61a103bfb20488551593ac4680e1d91e12fc66bafd2

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6f0101ca8de93ecc250a7fd5d4c0f311f2485e5c5c2fc299aaac887146a4ffe2
MD5 41e6dab51248801afe55f8cbbd574932
BLAKE2b-256 bb8343e7542740e15f71daedcc815bf2267c1cc38aa21ffe2cd579dc95d1c71f

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 376cea0f76310045cdc515bb14d809e4a83e8935c62a790b21f7738824eb54db
MD5 0dbd2fb7330d143b5d9c64a02850212e
BLAKE2b-256 afeeb7e24adb51cd1a9abc6aa90d9a263ddec08c85e9e6c9d75663d5487c93ad

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 43abc6121b3743cdb39434e1f89a50682e5876a3e04812ac3d8ec99e60876131
MD5 0f999a57bc9d315830c52515a37fc9b1
BLAKE2b-256 ce470608936c278f63b036897b33fed8263b447b04a62a4fe4a1adbdab6fc984

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: zpaq-0.0.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 325.4 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zpaq-0.0.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 e0205696d4b203cd94d53e561ae64514f10c5eb544e49783839991a59b0cc829
MD5 cc3440c54a5b618e641772a3c9053f28
BLAKE2b-256 9300ec56912538eb83fe3d2461312e8cd5abd8a95ca5379e06f0dce7bc5340e3

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zpaq-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zpaq-0.0.4-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 cfd8af35fdbaf17f1841e8beb385b95297dd09df07966e29be5c86be76ee9d19
MD5 ebf489c3f316998f2dc4264430f4a787
BLAKE2b-256 31bd2e5d212572b329e0d633fba173a92dd8c5b5e6ec0efb1098ab9e7ed51700

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 d4806e20322a3988ebed603f772c89f6d4c448fa2adbe4c48f85849e71493acb
MD5 7388c1dbb32927de1ccb57d3f8819915
BLAKE2b-256 bd76849d4412b79f137d962f1cc4f5ba6449f7490109bccca5aa3c1c5756ee4b

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zpaq-0.0.4-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 241.5 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zpaq-0.0.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fcf8d2360dc9584d48c0acd8332a58d55c5c55cefe6e40c295bec5419669b8bf
MD5 d504309b7caa4a4aa348931510b8457f
BLAKE2b-256 b4501603c78335cbc0e87195f73cb56f26e351c3d5d62da9fdd8698fa2dd4736

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zpaq-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 251.5 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zpaq-0.0.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 495e54f2c772fb6405fef15138bee45aec83aa2239e949dd52d0db350316bd5e
MD5 0b5b6f26fe6f9da1a0a3305f5c8c5648
BLAKE2b-256 878e5e059843954f0c2c4cebb44bab5851bf4a59a389acdd7564a0905165002c

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: zpaq-0.0.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 325.3 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zpaq-0.0.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 5b6b3e449e86186e722e2ed37ee2d580d080fbe9f5f9a48fad3f6c0f2bc62355
MD5 01a5a8b0744ed2db61bc4fec406872e0
BLAKE2b-256 15589a42987026b3d3198dfad13e01ae6c60fe6ce79c27af38615db75e304066

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp38-cp38-musllinux_1_2_x86_64.whl.

File metadata

  • Download URL: zpaq-0.0.4-cp38-cp38-musllinux_1_2_x86_64.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.8, musllinux: musl 1.2+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zpaq-0.0.4-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 702db4b1d2fe003bd069fa9beceed08e3c7ed3dd8e6498abfa9a9cda4663333b
MD5 2602f488b65af66a71ef3fdf6d4d15d7
BLAKE2b-256 578c344af23ab1af908c6b1049dc3e20ca6040af20e48b5ab0830367415e8f68

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for zpaq-0.0.4-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 0a47661eee453dcee07471570785509ffc637ba45ce35af7086bbfbe09a80a3c
MD5 679ac2bf940c0d12eb204f4099ee21ef
BLAKE2b-256 bc6a22a9befa426af71f98b5ae7dadf2b7a2b05218cdc427fb9be91de80e66d2

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: zpaq-0.0.4-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 241.1 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zpaq-0.0.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 316fa661024afcb671f0e8a94a72e3bdf3454505545844e7af2e9e71c486b978
MD5 c2b503b3fd405d4b600bb9cff7d2e036
BLAKE2b-256 4bcfc3e2c862760a99541de9ca96e8c143324402c9adf22e6cec15deca2ea7b7

See more details on using hashes here.

File details

Details for the file zpaq-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: zpaq-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 251.2 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for zpaq-0.0.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d9d0102e5119af6da3979a4e7b91c78380fd33d46c6f0618768eb1305ebed3c7
MD5 de6aeb0ba27263e1c227ac434bc7628e
BLAKE2b-256 aebed74457d862b32625f2d8df193eb7c111c0910bdb319c13a81faa493a3443

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