Skip to main content

Python bindings for the Microsoft Xpress8 (ESE) compression library

Project description

xpress8-python

Cython bindings for Microsoft's Xpress8 compression library, as shipped in the Extensible Storage Engine (ESE) source tree. Released under the MIT License.

This is a sibling of xpress9-python. Xpress8 is the variant used by Power BI's .pbix file format and by various Windows-internal data stores; it is not wire-compatible with Xpress9.

Install

pip install xpress8

Or from source:

pip install -e .

Usage

from xpress8 import Xpress8

x = Xpress8()                       # max_original_size=65536, level=9

# Single-buffer round trip
compressed = x.compress(b"hello world " * 64)
restored   = x.decompress(compressed, len(b"hello world " * 64))

# PBIX-style chunked stream: each chunk has a 4-byte LE header
# (uncompressed_size: u16, compressed_size: u16).
plain = x.decompress_chunked(chunked_blob)

Layout

xpress8.pyx              Cython wrapper class
xpress8.pxd              C declarations
src/Xpress8Wrapper.c     thin C shim over the ESE stream API
src/xencode.c            vendored from ESE _xpress
src/xdecode.c            vendored from ESE _xpress
src/xencode.i            vendored
src/xdecode.i            vendored
include/Xpress8Wrapper.h shim API
include/xpress.h         vendored
include/xprs.h           vendored
include/xpress_compat.h  small portability header for non-MSVC builds

License

MIT. The vendored sources retain their original Microsoft copyright headers.

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

xpress8-0.1.0.tar.gz (191.9 kB view details)

Uploaded Source

Built Distributions

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

xpress8-0.1.0-cp313-cp313-win_amd64.whl (74.6 kB view details)

Uploaded CPython 3.13Windows x86-64

xpress8-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (423.5 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

xpress8-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (423.1 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

xpress8-0.1.0-cp313-cp313-macosx_11_0_universal2.whl (168.2 kB view details)

Uploaded CPython 3.13macOS 11.0+ universal2 (ARM64, x86-64)

xpress8-0.1.0-cp312-cp312-win_amd64.whl (74.8 kB view details)

Uploaded CPython 3.12Windows x86-64

xpress8-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (433.8 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

xpress8-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (432.1 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

xpress8-0.1.0-cp312-cp312-macosx_11_0_universal2.whl (169.6 kB view details)

Uploaded CPython 3.12macOS 11.0+ universal2 (ARM64, x86-64)

xpress8-0.1.0-cp311-cp311-win_amd64.whl (73.9 kB view details)

Uploaded CPython 3.11Windows x86-64

xpress8-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (412.5 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

xpress8-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (412.4 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

xpress8-0.1.0-cp311-cp311-macosx_11_0_universal2.whl (168.2 kB view details)

Uploaded CPython 3.11macOS 11.0+ universal2 (ARM64, x86-64)

xpress8-0.1.0-cp310-cp310-win_amd64.whl (73.9 kB view details)

Uploaded CPython 3.10Windows x86-64

xpress8-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (391.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

xpress8-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (392.3 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

xpress8-0.1.0-cp310-cp310-macosx_11_0_universal2.whl (168.7 kB view details)

Uploaded CPython 3.10macOS 11.0+ universal2 (ARM64, x86-64)

xpress8-0.1.0-cp39-cp39-win_amd64.whl (74.2 kB view details)

Uploaded CPython 3.9Windows x86-64

xpress8-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (391.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

xpress8-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (391.4 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

xpress8-0.1.0-cp39-cp39-macosx_11_0_universal2.whl (169.5 kB view details)

Uploaded CPython 3.9macOS 11.0+ universal2 (ARM64, x86-64)

File details

Details for the file xpress8-0.1.0.tar.gz.

File metadata

  • Download URL: xpress8-0.1.0.tar.gz
  • Upload date:
  • Size: 191.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xpress8-0.1.0.tar.gz
Algorithm Hash digest
SHA256 82154af0fa66531357b9f50e94a70ba8179e40af3c45c2a95679f8147b193855
MD5 a2f633102225d5cb920553384095b6ab
BLAKE2b-256 52f7b484f7c5ea6f56d0c3af50b538202d446f3d51a0686ccfafc71789e5551a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0.tar.gz:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: xpress8-0.1.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 74.6 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xpress8-0.1.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 9d42a56b6e563f10c9b75a8f6bc3b57df6ed6d8fd12249e0201e5744c70577dc
MD5 6c82a70f404b1418da1104803897e1ce
BLAKE2b-256 3367d4a47d4f9820637ead89877f3da6459a0f751615efa2430d16d5fd8acc76

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp313-cp313-win_amd64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ea3d0b0d57cc467375f3f43b8fdefc32bc3afca365d4a507f6b2eba7081373d7
MD5 9ff9aeacf699e20bcef89ff8234aabfd
BLAKE2b-256 8d1aa9045f8905b89a28f152a65ecc94c0e7a0576731cb1f934501c094775a8e

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ef50ef184ce1789f00d962c8aa4673633fb6d43a7ac2e577f5072ad7d80ec116
MD5 f95ede4e51a78166a64fc9871d1f931a
BLAKE2b-256 bbabe3e67e6cda3da4ea0de90c9ef8ef793d10f6675a9e3c752957d08d45af53

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp313-cp313-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp313-cp313-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 7b3165f4250709031970cf5bdd00f996e15f97e5ad57aa5b13b889ddd7783789
MD5 5a1779ffbb56e62b1b26bd095ad31328
BLAKE2b-256 112a32f469446e01bb223fce01f7d47aa89f132f92ae6cf8c1dbb88de33c1258

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp313-cp313-macosx_11_0_universal2.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: xpress8-0.1.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 74.8 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xpress8-0.1.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 45941da9a94ce53a3748bb559fcbb3566a2eaf0029807fa66073b39dc00ba3ba
MD5 cb7a7189adde1bc59fbeec442435cd69
BLAKE2b-256 12ef745d657dc8863e5e253653a18809355af82fe0eda53de083b1288f80b113

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp312-cp312-win_amd64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 27d67633a44b07938b1fa65d2ff07c4a722b9285e651f85652452bd3bc0958f3
MD5 6964424ee8073a91759564d429e34791
BLAKE2b-256 8c8415709f8c53536d3feef3cc8646a1fa283cc196a392c083ab0de7798e7bed

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 d196f01abbf36bae85e5fc0edf611108ff4bf6ee710a265e1b9a50e0cb20b1c2
MD5 a76b03d17cd53090d7f7da4149773e28
BLAKE2b-256 478c251beeb9394dc8a16dd17033ba4b8149e089b894c1ff5db1f3916018bba8

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp312-cp312-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp312-cp312-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 4f90d0656646efd3ade1cea07fd95022c8b34d052aaeae479786f158da3f1976
MD5 033af81dac5aa59f79120341a6660f51
BLAKE2b-256 95cd0318d787100de2bdee764e46cf671758f80f577d70358c790e073fb7979d

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp312-cp312-macosx_11_0_universal2.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: xpress8-0.1.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 73.9 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xpress8-0.1.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 fdbe507b41f39d083de9d118d7bf5459c24c9b8986a639e1e43bd81500c32189
MD5 d1e659933e63cc25f5a364211458da53
BLAKE2b-256 cfa3a91f8912e2f3c9dd9892792f0d67baaff2bb9b90d3fbadc8fd52ab3a03a9

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp311-cp311-win_amd64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 4ea70319a9e03bba31ed098d783f3f6b5a2f9accb47ed8ed730f64a8755ce0ff
MD5 badc932cfa8ebaded27dce63706a34ac
BLAKE2b-256 9c3f757e9c15c0d40836abd5d1ffebfd627769c3c2e20c5b20c1cc431b5a6111

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 31c8fb464271af8491e7b6302964c1805ff90a12a57c03b537cef3ab64cc196e
MD5 d9815fffc0b5fc15dec0ab28eb464c03
BLAKE2b-256 1fb4dbbd1cc4303907bd928817ac859a0f802a86ba3c627ba33ff6494ee5fb84

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp311-cp311-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp311-cp311-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 5880c492f36ea3a91102cdaa48915fa30a9f27e52ea415e1fe60fa9870d4c9a6
MD5 88483180d87c6fb401d49af4fb8b7491
BLAKE2b-256 c05fb701e34068b9863027eff235b213e495f21ac4323adaa5363ad439a754dc

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp311-cp311-macosx_11_0_universal2.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: xpress8-0.1.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 73.9 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xpress8-0.1.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 cc935efd81d9f96504e6bbe7ec3a90a76055f7d49d0e43f7a6f4e2dfa2911225
MD5 84d6f0e518acd4da3d3609fbf7e038e1
BLAKE2b-256 d7cae1cadff7171b974d3784d3178f1770919f1e2bcca581da06d6425c8794dd

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp310-cp310-win_amd64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e85b177f29e26f900ee8f467fd02a93fd6016b2b93324a681a0131f352af254f
MD5 7cca3ff775dbfa0722c4d6f26f909344
BLAKE2b-256 bf89019121843dec4eb1349a2f2a5faf1caa6e9b1a75ecbe4f3d61f3c0d0f11b

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1808bf090f84e8ee9ec819392012109bd69b7a3d37615af7f48a85a93a4fb8bc
MD5 a86e5cefcd2da04f953a220e458b59fd
BLAKE2b-256 1befad77a938dd9b6a96fb2ce50084b4e892b568c10b347cf30f310e829b5dcb

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp310-cp310-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp310-cp310-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 8439f4685b7b7f55c580de08c65f9e2994057a0cd886233b5d7d73a5c56283de
MD5 4950bd1511e2f8a606a770d73edccee4
BLAKE2b-256 dee86b8707c89734bb7e995105542f742c71f94df48ceec6809e009304599b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp310-cp310-macosx_11_0_universal2.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: xpress8-0.1.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 74.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for xpress8-0.1.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 00384808d35ea716e6aec0c47c47d558a2c1d4d8c63d63ea5cd4a45fb3117da3
MD5 31efc5ae03ab8983dde6cf111504f93f
BLAKE2b-256 72d660aa5dbe551a3e04c5acf3de075118ea4071117000fe74c1ac680965c39a

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp39-cp39-win_amd64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 45f5f979458cc96c48d0e3e1fb47edc68df4ad93e2fa0d761866e8426d769890
MD5 fce6d39ff0dc052375ff086a1f58c20d
BLAKE2b-256 65d792d5eca9991860f0b76f700bc47dc3316ec4f0752107364b6f25803afa8c

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 241f743f9c6e3b21e30886bea4ba757c7b38a166820d40fd478a077b43b913e4
MD5 cc593a672121bd6a78cce47b3d5e4642
BLAKE2b-256 f9935760d9541e3c0b5566a8e72b28720c7ba3003453721264d962b993e14c79

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file xpress8-0.1.0-cp39-cp39-macosx_11_0_universal2.whl.

File metadata

File hashes

Hashes for xpress8-0.1.0-cp39-cp39-macosx_11_0_universal2.whl
Algorithm Hash digest
SHA256 7bcd67a6de87b73e1924e577be04312cba3a21e38329281d9843e6a27e56f666
MD5 616d187e537e1bf86230f8e9dcfc58d4
BLAKE2b-256 0f3f8a30a4bd2507630483dc29ce6150e115615ddf4a6e620b93b3cc47969ade

See more details on using hashes here.

Provenance

The following attestation bundles were made for xpress8-0.1.0-cp39-cp39-macosx_11_0_universal2.whl:

Publisher: build.yml on Hugoberry/xpress8-python

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

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