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.2.tar.gz (100.6 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.2-cp313-cp313-win_amd64.whl (327.8 kB view details)

Uploaded CPython 3.13Windows x86-64

zpaq-0.0.2-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.2-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.2-cp313-cp313-macosx_11_0_arm64.whl (244.6 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

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

Uploaded CPython 3.13macOS 10.13+ x86-64

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

Uploaded CPython 3.12Windows x86-64

zpaq-0.0.2-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.2-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.2-cp312-cp312-macosx_11_0_arm64.whl (244.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

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

Uploaded CPython 3.12macOS 10.13+ x86-64

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

Uploaded CPython 3.11Windows x86-64

zpaq-0.0.2-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.2-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.2-cp311-cp311-macosx_11_0_arm64.whl (242.7 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

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

Uploaded CPython 3.11macOS 10.9+ x86-64

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

Uploaded CPython 3.10Windows x86-64

zpaq-0.0.2-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.2-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.2-cp310-cp310-macosx_11_0_arm64.whl (241.4 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

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

Uploaded CPython 3.10macOS 10.9+ x86-64

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

Uploaded CPython 3.9Windows x86-64

zpaq-0.0.2-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.2-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.2-cp39-cp39-macosx_11_0_arm64.whl (241.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

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

Uploaded CPython 3.9macOS 10.9+ x86-64

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

Uploaded CPython 3.8Windows x86-64

zpaq-0.0.2-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.2-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.2-cp38-cp38-macosx_11_0_arm64.whl (241.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

zpaq-0.0.2-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.2.tar.gz.

File metadata

  • Download URL: zpaq-0.0.2.tar.gz
  • Upload date:
  • Size: 100.6 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.2.tar.gz
Algorithm Hash digest
SHA256 c096109b98b9e218f662b74c30d0ba747eff30507c3dfae625d61811fb5a41f6
MD5 3c711bd953b46dfa2c5d4b8f04ccae64
BLAKE2b-256 5b6774e6f1575ed6d03a1021143d57a40593c970908750788a1084b6dd522867

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zpaq-0.0.2-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.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 fbb198a1701a20d8f68056b7a836badd4874c33953ecbe4daf4b365f9eb7a973
MD5 e1013e10cc42a37dfde11f82ced20a26
BLAKE2b-256 fcfa0ee154efcce276986ced2a4c59e5cf9b374a4a9c3bc0d7c054bd8069baf7

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 74efc7e513032b821176442264dc00e021b55a5b260910b0b1433c84dac747e8
MD5 8ad35e83b9553c014ca56368a4774c1e
BLAKE2b-256 ea8537d924327be5c4c4719968b4a4d9dfaafbce687d8659087a3a47f6f9e8e3

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6abfaef2f73ce21e0c9e22b82fb810881123716b669834e0310ab16e9327556c
MD5 11ba504e170b19fce9fb9f47ba2eeb76
BLAKE2b-256 d0a85dd48ae87f819100ab0d23dc7d6350780a6c15fc28e46c0d15ff3d745def

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7cb3ccf8662eca58b4aba26fdc87b9074167e2e312ca8fa48d06d5271bbbf95f
MD5 85b80791f81d1b075959e14c29c86b44
BLAKE2b-256 8ce9bfb762f93d3cd4fedd7728d79b7d4960d049350f2193f5b7b98f8509c5c0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 37f686f7ddc931a6de402a62aebe8335a0fc4382fbf2d408a51a320cf11a621c
MD5 d3808c5746d11be92089f272bb22947d
BLAKE2b-256 02033492a97c5ec82695a3acf8d68ba272ba0e35d54170ad74dd685da5f6fb3a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zpaq-0.0.2-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.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eece646e031d389866492f4dfb94cf3687fe5554e51df9db8893f683b3db1727
MD5 0244526aaeb0f8a18d1ff19940328601
BLAKE2b-256 25975d920e1cbdf385774087ff5baa763fc1ba73a4463981fa309282e20c840d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 9a1b7d09273e58ffc876ebcaff2483a26e628e7f48e8098c538852b0b30386f3
MD5 5f691ced993f6709554e4b05723100bb
BLAKE2b-256 0d98ee70e8b583ee39744e0abb5efe122aaf414466b2fe8d8ee1c76ab3c6b230

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 f24bba7ac86af0f1013363505d0a8680b751861814ee34e078cd438b004cc6b6
MD5 0b6f977d27af118a2189f711d2067d79
BLAKE2b-256 cf6044190b9df80d1667cbdfcfe5570aed3b36c14046f240e12df6a7f726c0eb

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1f12297e4291ba67edd6ffa0897e0ca4619b0030d9e3ae753ef3df8c16f8760c
MD5 c26059f5c4da2cec9ba2b67fc738fffc
BLAKE2b-256 43956b00f838ad74ed5fe632f9214640fa7cfb7925dfd53dc9c0e6021d264470

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 b809d9b5579740214db77aa43036c0c7a1b90fea811efce9960a0f1ba2ba6315
MD5 1c3ebce4abc70947fdf8b70cdcf41645
BLAKE2b-256 713b368bbe0c643c36a217af5c8d9d3e665d12f035645239ad10d4ccc7f53783

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zpaq-0.0.2-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.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 2dcadec6cc18d23e06d9251991b8476f303f36a156caaceb116ba0af53739a85
MD5 59db055f57bfac0530047abe6152d25e
BLAKE2b-256 6d2a63b0a69485d5e0e6e3301d740149909686de65c5116a85a1894dc0f48932

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 40493b6e5770d64aefa85159ff5e050de667ead499818a782bd70e9924d743af
MD5 13bf4d01ad0f314624096fc4ce7c60dc
BLAKE2b-256 1c1f8410c7b752a0f54c1985f3e9c8c2ac3cfae83a9fc0377a71f59b347afc31

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp311-cp311-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 5d51417f3a8d10ccd1e2039894b58fd517e8c387178871d7bb160fc34dd8be60
MD5 507ed4d0aa83d712a1e5f112213fdaa0
BLAKE2b-256 81927cd48d001b68f3b159c6fbd8c993869322ca872f209753d50b1e2d7d82ab

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f09eecab23405f153cf00845db2b8803efae0873b67b6ce064bff21410e5ee8d
MD5 040f438a60ff60bf3d4ab8588a131341
BLAKE2b-256 4a6a04ae20b8467b0dd3eddbfad010b1dbe5addf9c9d8743e7d8c603f76098fa

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cd87e661387b92b96f36f40ac6c9001726d93a30938fc03fc9b033da8d3e996c
MD5 51f47ca7e393b62102076d651b59803a
BLAKE2b-256 9eab0c865c8bf2c8035ed1d61fda2ccf22e410abb864c7ce0b44fc17eac2b3e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zpaq-0.0.2-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.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 4921dad480cfdca9fc4879aea49de6f5e7ac3a754b61cff86737ec6cc369e44c
MD5 cba559689613cc76e3118f60196a827b
BLAKE2b-256 29ddbcd3e393c43ca81273129721ef837187b3508c27fcf034b74a00d8954aa0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 89d652b484b0649e0b670899d732e941c78352798e0b6b9efffb2b6ff2143e43
MD5 a4b4f97b5a12b0004bc532fb6073ceae
BLAKE2b-256 295071580044b07a590c174fab5b6ca53bc36cbbe9835fb8df10d51d0b5008da

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp310-cp310-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9401f732ce12bb14a4835d15cda123bcabe63cc7abd38890060a7299c736cac0
MD5 84300f2805dbe002ce20ae8766140833
BLAKE2b-256 14588f52616f3ac6de96fc3df1d6e4efa9d614897bf0c8a682c3ec19658ae500

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a4b666c8fa5ca10044df9fd9043f4d36b85367e2f4bf55952ba6af4598e21873
MD5 61f00c73432212c10e8bfc1365bfbf57
BLAKE2b-256 cee0e4bdc37bb8ac8fce39e70eceff62715b1c5b2a1177e988e5956f8400467a

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6ad5be9b7607a0c4afc485544a045f4a166bef558c7fbf5d07af9f6df0b4aa27
MD5 c7240da1be3fcac91a07e50b6c65f7e7
BLAKE2b-256 4f29657d9b0a7745e3b98790e4722fa3592bc3c2da652e386e6869aba30ba0a2

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zpaq-0.0.2-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.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 c5475ab9ae089d0863b0ded29dce9e88cd5e6139bb75827a72bcca53123e2012
MD5 22ce0bf5619c3f2f635189c3d6726500
BLAKE2b-256 32c7d04be1ce2123b30447a8a45cab5a6f9bd902ea86aeb54972e1d792f59d65

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zpaq-0.0.2-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.2-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e56ada8594989ba4f4111c74f80886dcfcee5a3148bddd2ab05006fb699b78ea
MD5 3fa2b6b3da494001e10425100edbe31d
BLAKE2b-256 dbcb0739ada875fd8d4703a9511e7d330bf7fa2eab1b08776c71e46f9e174cde

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp39-cp39-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7658e3334fb82949968ec6b282833d569fae8c61c0307c58b1d08384f8f959bf
MD5 379cea7f26ef1673eae3dc57e20c1544
BLAKE2b-256 6487159870e2b3448184574d907b9ac501142b68904d1e4831117afbdf43febd

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zpaq-0.0.2-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.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b3337e69f77128f55e0d287bb3a5b742009da60b9f44344596c71f1fb0338243
MD5 3578ec4f93c401fed2948c795274e00e
BLAKE2b-256 094de71e8fe2d1200d3f4d299bdac6f42f2286fe6dfbf413bb5e7a0dcd9a42f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zpaq-0.0.2-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.2-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ea545bd792c33577ca370dc01a069f01931796cd878d6b041432a879084a41e2
MD5 a9cb0fdc0d0873eec2b210c94b00ef79
BLAKE2b-256 ce6b8d2f996e59d04f5e571803850a9acf6158002d2184f76eee096740c1b2d5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zpaq-0.0.2-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.2-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 64f4335aafaf33f26557d7f5e026b3e72ce7964e83d23f68e299ce4dfce1333f
MD5 384b16d6cbdd9791583d98abc2ddf0dd
BLAKE2b-256 0617f935398bde9a3500fc8cb6dec8241f5cd5cd8227fecc6516d479b74af5be

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zpaq-0.0.2-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.2-cp38-cp38-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6e6c26180103955f6d2e62d4b873c5026a4b3cccc51bc6366938638de47d1e20
MD5 492460ab1ca6aa50a81e3c8b61b0ba0d
BLAKE2b-256 5c3f57787e0833a88c1591ca49bca77c609eb2d7b996d19f040e81948240f543

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for zpaq-0.0.2-cp38-cp38-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 88b15f0bffea47eaf3d24fe2f290de4a02df48684304697d4ad5253098ef14ae
MD5 9b8bbdd8f9c4fef89f3eb6355f9d3402
BLAKE2b-256 64db1d9ac8e94a5793274b3763f627befed2b43a01d6983495fed4854f62721d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zpaq-0.0.2-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.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d5899b6e9d925bbf08a38b5f763ed4f2e9f5348c91607bb47e8eea7fecbdec17
MD5 900d4ce0bab5e43f795a5ed91d9d9d66
BLAKE2b-256 d3b3bb33c914fb76c18a974594a3123825a56db9075e95608cc5c4e7dfd7a9bb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: zpaq-0.0.2-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.2-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0fe543a19b255fbcbf85b7e98a49f5c346a1baa9898bb4d871f91d8aacfb7a60
MD5 0dd743b47220ed9cda21dd5fb1de69f9
BLAKE2b-256 3acd125aa27c5121559013fd4206c4b616eadd317946a3a34f059c41f8c9b7f5

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