Skip to main content

unlzw-cython

ci

Cython-accelerated decompression module for .Z files compressed using the Unix compress utility (LZW compression).

This is a fork of unlzw3. unlzw3.unlzw was a pure-Python adaptation of Mark Adler's 'unlzw' C function; this fork adds a Cython-compiled implementation as the default, with the original pure-Python implementation kept as unlzw_pure and used as an automatic fallback if a compiled wheel isn't available for your platform.

Installation

pip install unlzw-cython

Prebuilt wheels are published for Linux, macOS, and Windows. If none matches your platform, installing from source requires a C compiler (Cython is pulled in automatically as a build dependency).

Usage

unlzw_cython.unlzw(data) takes LZW .Z compressed data as bytes or a pathlib.Path, and returns the decompressed bytes.

import unlzw_cython
from pathlib import Path

uncompressed_data = unlzw_cython.unlzw(Path("file.Z").read_bytes())

# or

uncompressed_data = unlzw_cython.unlzw(Path("file.Z"))

The pure-Python implementation is also available directly, e.g. for platforms without a compiled wheel:

uncompressed_data = unlzw_cython.unlzw_pure(Path("file.Z"))

Contributions

License

zlib License (see LICENSE.txt) — inherited from Mark Adler's original C implementation.

Download files

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

Source Distribution

unlzw_cython-1.0.0.tar.gz (78.8 kB view details)

Uploaded Source

Built Distributions

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

unlzw_cython-1.0.0-cp315-cp315t-win_amd64.whl (34.0 kB view details)

Uploaded CPython 3.15tWindows x86-64

unlzw_cython-1.0.0-cp315-cp315t-win32.whl (32.5 kB view details)

Uploaded CPython 3.15tWindows x86

unlzw_cython-1.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl (148.1 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

unlzw_cython-1.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl (147.0 kB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ ARM64

unlzw_cython-1.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (152.3 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

unlzw_cython-1.0.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (149.7 kB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

unlzw_cython-1.0.0-cp315-cp315t-macosx_11_0_arm64.whl (34.9 kB view details)

Uploaded CPython 3.15tmacOS 11.0+ ARM64

unlzw_cython-1.0.0-cp315-cp315-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.15Windows x86-64

unlzw_cython-1.0.0-cp315-cp315-win32.whl (30.6 kB view details)

Uploaded CPython 3.15Windows x86

unlzw_cython-1.0.0-cp315-cp315-musllinux_1_2_x86_64.whl (121.9 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

unlzw_cython-1.0.0-cp315-cp315-musllinux_1_2_aarch64.whl (119.5 kB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ ARM64

unlzw_cython-1.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (122.0 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

unlzw_cython-1.0.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (122.6 kB view details)

Uploaded CPython 3.15manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

unlzw_cython-1.0.0-cp315-cp315-macosx_11_0_arm64.whl (33.4 kB view details)

Uploaded CPython 3.15macOS 11.0+ ARM64

unlzw_cython-1.0.0-cp314-cp314t-win_amd64.whl (34.1 kB view details)

Uploaded CPython 3.14tWindows x86-64

unlzw_cython-1.0.0-cp314-cp314t-win32.whl (32.5 kB view details)

Uploaded CPython 3.14tWindows x86

unlzw_cython-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl (148.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

unlzw_cython-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl (147.6 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

unlzw_cython-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (153.6 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

unlzw_cython-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (150.3 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

unlzw_cython-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl (35.0 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

unlzw_cython-1.0.0-cp314-cp314-win_amd64.whl (32.2 kB view details)

Uploaded CPython 3.14Windows x86-64

unlzw_cython-1.0.0-cp314-cp314-win32.whl (30.6 kB view details)

Uploaded CPython 3.14Windows x86

unlzw_cython-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl (122.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

unlzw_cython-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl (119.9 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

unlzw_cython-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (122.2 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

unlzw_cython-1.0.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (122.4 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

unlzw_cython-1.0.0-cp314-cp314-macosx_11_0_arm64.whl (33.4 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

unlzw_cython-1.0.0-cp313-cp313-win_amd64.whl (31.6 kB view details)

Uploaded CPython 3.13Windows x86-64

unlzw_cython-1.0.0-cp313-cp313-win32.whl (29.9 kB view details)

Uploaded CPython 3.13Windows x86

unlzw_cython-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl (122.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

unlzw_cython-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl (119.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

unlzw_cython-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (122.3 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

unlzw_cython-1.0.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (123.3 kB view details)

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

unlzw_cython-1.0.0-cp313-cp313-macosx_11_0_arm64.whl (33.3 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

unlzw_cython-1.0.0-cp312-cp312-win_amd64.whl (32.0 kB view details)

Uploaded CPython 3.12Windows x86-64

unlzw_cython-1.0.0-cp312-cp312-win32.whl (30.1 kB view details)

Uploaded CPython 3.12Windows x86

unlzw_cython-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl (126.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

unlzw_cython-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl (123.0 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

unlzw_cython-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (125.6 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

unlzw_cython-1.0.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (126.4 kB view details)

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

unlzw_cython-1.0.0-cp312-cp312-macosx_11_0_arm64.whl (33.5 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

unlzw_cython-1.0.0-cp311-cp311-win_amd64.whl (31.8 kB view details)

Uploaded CPython 3.11Windows x86-64

unlzw_cython-1.0.0-cp311-cp311-win32.whl (29.7 kB view details)

Uploaded CPython 3.11Windows x86

unlzw_cython-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl (121.6 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

unlzw_cython-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl (120.2 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

unlzw_cython-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (122.2 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

unlzw_cython-1.0.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (121.7 kB view details)

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

unlzw_cython-1.0.0-cp311-cp311-macosx_11_0_arm64.whl (33.6 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

unlzw_cython-1.0.0-cp310-cp310-win_amd64.whl (31.6 kB view details)

Uploaded CPython 3.10Windows x86-64

unlzw_cython-1.0.0-cp310-cp310-win32.whl (29.7 kB view details)

Uploaded CPython 3.10Windows x86

unlzw_cython-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl (114.4 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

unlzw_cython-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl (113.8 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

unlzw_cython-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (115.4 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

unlzw_cython-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (111.5 kB view details)

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

unlzw_cython-1.0.0-cp310-cp310-macosx_11_0_arm64.whl (33.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

File details

Details for the file unlzw_cython-1.0.0.tar.gz.

File metadata

  • Download URL: unlzw_cython-1.0.0.tar.gz
  • Upload date:
  • Size: 78.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unlzw_cython-1.0.0.tar.gz
Algorithm Hash digest
SHA256 be6772a5a102aa97bd6f461607188cc060d943564883e512dd7fdae62faee579
MD5 b9308503dd2f6fe5b9edbcb82854f6cf
BLAKE2b-256 6422586bfe7e7c27a9d1b6e6f369279aa95cc4714c27a0f3b971cbc7b8e69064

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0.tar.gz:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315t-win_amd64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 925f021c9608a874f41dbac393646e344535c8b7cadc2dcfd6b0a3492147fe66
MD5 2be66496ba71953cea8caf8d45d2d2ce
BLAKE2b-256 d310e619f4f4632f3b3c2e4bc8a1c44b303195c7ea901b1e174cc3fd39d410d3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315t-win_amd64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315t-win32.whl.

File metadata

  • Download URL: unlzw_cython-1.0.0-cp315-cp315t-win32.whl
  • Upload date:
  • Size: 32.5 kB
  • Tags: CPython 3.15t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315t-win32.whl
Algorithm Hash digest
SHA256 f5616d7a4f7f1531f213435e7f632f9db9ca83df2388b905f4a16cc648668a12
MD5 644727fd2d40809bce56342987ebce9e
BLAKE2b-256 91fef514418fcfb731ba82dfce793dd7cce5971cdee1307cf2ac57e4c641c0d2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315t-win32.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 833afa948e82241c99ff0634de11d6cde503931f772d846449561ddc02138db5
MD5 17cd78635f039c301b05f4b90e23b661
BLAKE2b-256 e091865064cf34ce5748f950b1257e6e0cad1290f6867f0a520175a2987cd767

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ff9813b6921e4e465730216904f3ee9876ceb5694e523f322ce2712d343d651d
MD5 98f1424bd44744fa15a2e4f085098bf2
BLAKE2b-256 fc491a267dae3cf816aa1debd848773158a4702c6b122bc1f58d34d519f3bd5c

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315t-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 c1aed225781dcf7bae34ed55c641bf930abab082fb2ccfdd62a7566f0a63912b
MD5 3b9ce018194b6f42c0bc031c4b86987b
BLAKE2b-256 4331985356498461b90b51a2c68d36f01bb811c1dcd79536fe295dc8f3476e43

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 98d88193dd2c48ca25208836f322eb6ad4ba13c167e6f24f168edf7b07255ae1
MD5 9e3082cfdb40515299cbb74db6eb3d52
BLAKE2b-256 96c4bcb9e84deb029c2c706da5fad265fa7d3b4086f3ba15c3bf94fee7aca819

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d7ce98edbdf2ed0eb4a01cacf9f8addaae2ace6990d308cf1d5fb0660f231619
MD5 8dff80a6ee7633774a7b5de857139b1b
BLAKE2b-256 4a6cc32cf1841416527c28497b2afe888575fd3fd5d7773d13c6d231350295c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315t-macosx_11_0_arm64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315-win_amd64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 d48871c110e7b9d20b8dba7d6db428f776c87a82943ce22551ba71c55a9206e0
MD5 1bc122e18d7da5938bb47c6eab8d9b96
BLAKE2b-256 d1981b492d7652eb4adfb0fb7a45ca65f6e248a2f29380d1fc8e209a791790d5

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315-win_amd64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315-win32.whl.

File metadata

  • Download URL: unlzw_cython-1.0.0-cp315-cp315-win32.whl
  • Upload date:
  • Size: 30.6 kB
  • Tags: CPython 3.15, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315-win32.whl
Algorithm Hash digest
SHA256 25f615affe3a386a3bde5aaa8835ed747315a8d26fa9ac04eb563f006279f0d7
MD5 1120b330d912a06b04441940adb2c143
BLAKE2b-256 f3b78fd4a4e8e02179c8e1c75b9a6d3f24de2a56dbadaeeb698f9c8dee693c2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315-win32.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 24d1640e8c2f09f34db128359a746a1c843846b1f3e9a97482c12fa6e74d210f
MD5 c06f59057064aea94ff02e29ea09360c
BLAKE2b-256 313d315724216608168192c309cc139e1cf2b535cab68176cf7fd53a135d2f95

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 fe920db074275d5ff3e7121cdcc19e1d156d86c29bb442c3e1741af94d484ca0
MD5 10521e5cff41b268a194ef717f94fc76
BLAKE2b-256 552f93d38e52b6b745a371e5ae72ed9aaf3d66235ca94e11d0d00071cea224c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 b1940579e26a1b22045bcb6266cf612b2478e8ba9cc125bac316e60c5edacf2c
MD5 90641d7daddd6e4d3c5ed117654e4054
BLAKE2b-256 8a786ba37b966a59b97e5f5cf9ea61995544255549ea09d00dd3c6892e0757eb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 9af426d1ed8d4cf24caf89ba5d55d5325d15a77ae4a4e35ef81205c2216481fd
MD5 3f4dfdbfb81b80d5da4b60ce55b60876
BLAKE2b-256 68f301708a99951468efb77efb841922e8884b89cd3993646c5ec3dbc0e7d6d7

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp315-cp315-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp315-cp315-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5b6f297e618eb0b9c042fef9ccf1c1f2aa787becc92623f7cd4d5b11c74ecc54
MD5 b4c3e263c7289d84700f1d4d69d1aad1
BLAKE2b-256 344557d19283191ca2e12e99d08b9d3628db00b5c33823299bf29c2fa9ca987b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp315-cp315-macosx_11_0_arm64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314t-win_amd64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 0877811fb5ae1d6a972776f40ff221b7b974e737aa5dcba19417d4994cef1d23
MD5 221d71ed698b250260e3615d79a50c7a
BLAKE2b-256 ee2b2c159b616d9c53881b1409a45bdee0f2a6344e45bc336f63de90e5553b75

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314t-win_amd64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: unlzw_cython-1.0.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 32.5 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 464b74fd8cc9a6e8d80418abb2c46e81fd5321894af223b2e22304473d77a891
MD5 3aacb2423b08bb48c3ad47a64788b359
BLAKE2b-256 194e12a81c4000b9e0354d85c8b673c83079c86ada2d99f4ef6ed9864f8e76e9

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314t-win32.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 73c193907f0d872ac5b2225c25c202721aa83a123ea3046de4f5ec7392e2e453
MD5 909ed11e9dcd84344bebd4cc63bec88e
BLAKE2b-256 468865d2eeadde5c0806343e697304be000aa89e9042920cba1266180aca7fed

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 008f1dc6e2be17dbb54bf8ff90bd2d36483c71817b74a6596b1d7fe4c23cb61f
MD5 8c8383150dccd1af2740881a4056a315
BLAKE2b-256 bf8ac6c5826d2407145046ac5b854e4950f165842a3517fc461c6f2beaece13b

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9bd54a73147e1b736903b1ee67b10786b766371bba8ed7b270e4ba191b1055e2
MD5 98e0e7784a8cf0353a5709275128d76f
BLAKE2b-256 14eef72f2ea27ec1072522bd17ceb06bcf37159bcacb4bb326f226de81ed4045

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 00c5d92e518bdc861ba043d7079576a9c9c974e2650df4ba7abd3fc06e630c6b
MD5 f7b95d3f9a9ed29124d585f9b2099437
BLAKE2b-256 76c71cc4083327eda32b94b514d78d076ec0a1bb4bf6adbfa532d6c1406ed504

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 026fbbf8118f5ceea0da15239dd2ddba05a224ae18e84ba9347e479dc04fa3a5
MD5 85afdffde331cc6dd22b2760d9c1b8ab
BLAKE2b-256 de8a81bd5e6379d280a1e89c09b718eafa2f2b6cc24508909952aca861221932

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314-win_amd64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 1ba878970d89bbfabe2461d2538860bf971607837c438d6b40b4401748df833a
MD5 9d7f6cb6f4fd74d772853faad2a44857
BLAKE2b-256 0ed661f40a368639590ceec636b29f4b10f639d0e600fb910c9ff53e189de599

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314-win_amd64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: unlzw_cython-1.0.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 30.6 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 3b46315785e5df807ec12d6027d10f4cbd2e778496b9186f47207b48e6cedcb0
MD5 0c7d94a5e0746ce6e44f8343572005e1
BLAKE2b-256 5d78c89271507ae8e40c5b85f7d503ea2763d86312f54c4961b12755e3f513c2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314-win32.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a019a75c855bec75e6dc0b2984257d63b3616f3dd0a54bbc545b7dd29e4f9abc
MD5 ad4b659b426d08278db250d7d9e43bc9
BLAKE2b-256 2819fee7194546e809c0ab42fc440728cb07bed9c4a18de8b570c6ddcd51ebd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1307b02152ea58d495c81e98a0cc004fbf23ff381415b65ad80c6795ffda50b8
MD5 6c1f90c4086132bb7c0fa851bb36eebd
BLAKE2b-256 482e4e79f152dbea2e2822396507b5f8e0083a30bef847a81529ac9992720a67

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 dc40eff9a1ea78597d6d3d6aec19d2cfdd07f4d0b903a1a0e240f52124d48c00
MD5 7b3df1bf9bf9a0436aed14869fb0f416
BLAKE2b-256 3af3a94cd159a192c1ab1d8c296880b8a3eca672436af05098e646f3699f48b6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 e1b0139a27e5c9890dfcbe9ccdb634d3a795c18482594b2ce08071bf1269b7a5
MD5 4e98d605c6f772e6ef997125484dbd73
BLAKE2b-256 89047fbba8b44d2f734c22883d2dbae9ff0654f14fa1ffcdebfaa3d50cef1dd8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3681949849219de636590583e0e4514846d93cec6a49637c0290f05821d7792
MD5 198b94ac1b4b26aaaae545db6ed4cc4d
BLAKE2b-256 ddb60c76ef72c1eed3258601008e39431493c549c5ee200e7ed87fbf6c4b1d69

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp313-cp313-win_amd64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 61e51106474df650fb058c04bb758479eaf6272cead1c4a917f30b3ded49cbdc
MD5 a082c9be76ea1604ef39f8f0a3c759b5
BLAKE2b-256 2b08ae423815bdfaf1a94daa6cdede9a66cbff8e7396212d7694522a38fd8e19

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp313-cp313-win_amd64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: unlzw_cython-1.0.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 29.9 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unlzw_cython-1.0.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 7bed24c3ac0dfd615cddef9fbd4b4afc1661cd6ae04e4d878ecdad27472d7acf
MD5 6858e14401db3dd70e4d4290ebde2d47
BLAKE2b-256 dcd5b368f2a08a9bf633bbe03f7f24b97debc35dc905e1ea50a9881605cbeee8

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp313-cp313-win32.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2665cc345d7325d14b52269751f6831581f85b819341c914ed4effccb911f54a
MD5 97dcd25b8a6e19fe61e982de5b17ee76
BLAKE2b-256 872cde1bb18f21f3e7d40918996da612226f42e0cfe15fd22533e4bfd08d0d14

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 7c9bcd3e36d0d5d9e662f7b6ba268c4d9a6429fafba2bcead40dbae89af3609e
MD5 80388c67b701f237879b9bafddd9781a
BLAKE2b-256 a7241c3ef86af7f5f0242b294e4279f3cb6afdb52d942c252fbfd556a7fb2dfb

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 8112e8d0660c95b257d688a6cad46722af83060b633b433d05ee839df8a2941a
MD5 f7a3681c01b7ece1c8ac4774696b9d90
BLAKE2b-256 3fbe5087b194484009bd8303de28b646fe0e6c3bf8f0953a5cc3e5f2e0b45a6e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 4555ab181e7222a0478647a0339701c52b88c3dbe6b8c81e9441f86cbc1ab1d6
MD5 18470e171649da8f40d03757d1e3b2ae
BLAKE2b-256 a3acedc2819c18e02c5d332e0f847553cd0389adbc5a8286aff5174036550698

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 a540ac18835c7fb15dbc48cca189c48af446296c89fda71fd2394b2a7a98687c
MD5 0d638b38395fbd23dfea1934e1a85310
BLAKE2b-256 262ed90edea638c3f6a00d40631ac5b8eaaa49fe03bd5a920ffd9165bbc0d328

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp312-cp312-win_amd64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 87bae6853016cd6e339feaafeec0a4851459456629b7b07f6d832d71dac7f60d
MD5 6c3a04ff21087522afa717d79af13f5a
BLAKE2b-256 e647172fee4bf7fb0c010391139e688ff8971633082f8cfbb232f236ca2cecf0

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp312-cp312-win_amd64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: unlzw_cython-1.0.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 30.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unlzw_cython-1.0.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 719f15039684138d27dfe382c773453bf0db43050cff4cd100b4aa9212b2b424
MD5 b36c83ddb07ca2917d42f32e7313ecb5
BLAKE2b-256 8973a77e42a9a712225be0476fbb792c72ec855277a4754d6ff6b66f53a2169d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp312-cp312-win32.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2af91b208fa0f1724239ece3f9f18609cf595416cf06167f4ef9c0d3eaf72155
MD5 c7bc0e254371749ff704d6419c22e2ee
BLAKE2b-256 76043ba47379d727e98b155dc2e7d724025091677148e8d3a9ee4fb4c7f95cb2

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5b54a1752d9038fe7204ea9d7737678744a7599d47700b085c98bfa8c5ff9682
MD5 550596cd0eb4b8c5ab44616dcd1deecb
BLAKE2b-256 ce12a83cdbbf73423401e9e23c30e7d8ec1eac099e0bc72aa93bda5824bcf6ca

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9c9c4e4c1dc1e05f6685effc19dacd57c2a5396ea371b4df8878c9980b51c1b7
MD5 bcbadf07d6d1b91eb21135810c8d22cd
BLAKE2b-256 ce397e83a5c0d52b9e68e20df3ba0751e059cc9b55f4791fd02988e88db2d9c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 c2fed32049f72723807bf8415fb1b87973c172f563f558b70635d64a6bf7a2cf
MD5 38eb18178430ce0b494559d6fa2258a2
BLAKE2b-256 01aab5d1d022c07e32e65ac8d9c1da5e45ea1f423ea3fbff7dd666ccb17edc03

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 c3af8a825aa57802ab77adec390db76919f70a6ff5e29b54e7822847e941ac04
MD5 639af203cb4f1e2bb0b10e32b139f9e3
BLAKE2b-256 8b338265da3ad65e8e3064c0fc1a1c342bcf40b169dcfe2be9688f9efe69b978

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp311-cp311-win_amd64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e5aaa9c9c6f5968aab679f42bb90ee12d6a86b5ebd4a36dd0cfb620b22686b49
MD5 556b5e103b9f1cddc99049abb7f7f76a
BLAKE2b-256 a7d937d87f6dc05e3543b48d46f2c539da01898c9436cb1cb411375adea57780

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp311-cp311-win_amd64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: unlzw_cython-1.0.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 29.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unlzw_cython-1.0.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 8718040155fc3f4ad0b0e80d42eda9b9100f72e2f31884ffbd2b1080e3607b57
MD5 7175198c0bf73e9ddd949ebdcf8d5a24
BLAKE2b-256 b49bb6c7369c7a4a20115357ab001dbfeaef06bf6853a4bf268a57754b18eb06

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp311-cp311-win32.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 5dc348be5f50fc0e6160565470486a0c1a1d033c4e9f269985644001613648b7
MD5 be5d3f9830e1be8169a8322b13d7d34f
BLAKE2b-256 43e3419e69d21306e673c56acb176892fe2579ec4f01644d01a41061e365ce02

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 e5539b0380a61433684924dfe77f2de36b3f4073afcda92397a560d4e567481b
MD5 158b842f1bf6affc241b257ec9cdbe80
BLAKE2b-256 b15b64874b5d8d9999897676cbf391c743b77ce9c7badb757790dc5f4c9ed61e

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 9646d05f53ace7c40a3b209b10a46e2d83cc658e46e49ba47c245f902ea46fbe
MD5 b2f6470b14ee18dd022a85a72b225c8b
BLAKE2b-256 ec77397f626ec9168f1764bcd690926150b5ff9b176e5479d49b1c1639b85119

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 60f2786cf9ff19d860e841e779f6f6bed628be59386385e4af50353a9f1f179b
MD5 ffa466b703a995f9627ef83bdee4582e
BLAKE2b-256 a749cb94663193e1949bec75737c1eefc27d5c1907ae41880d6eb001c5825f1f

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 089b3033695f5c5ae65a33c01e7f86f3c555fa2ade300b618d8afee4cd8a29ba
MD5 ce1b580b3b3961d2f2748e95ebdc195d
BLAKE2b-256 df16403b21f68b8128b2633e1048406704748fb20b6a06652cde70c9da2e16bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 74a9fbce7994a3a7e982b8bab5aba0d7933ed1afc9584cd92399a7077fa95ae7
MD5 c383b774fb41f10c3ddd79a0f8ad8459
BLAKE2b-256 4f285ed4d72f2b4129f361f3e2ab9e713df7127c2ca772c1cd8db79f1c0cb6c4

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp310-cp310-win_amd64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: unlzw_cython-1.0.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 29.7 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for unlzw_cython-1.0.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 dbf0f757bc55951bf41a5db669292cc6625554171b86e55b795183400e48aa8b
MD5 0c90be04ff058c49d81923c862b5cf69
BLAKE2b-256 ef202cbb4d7b892f219786d3121c7da7db5ed414a41c389beda9a7c57a7cd761

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp310-cp310-win32.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3ef6f0ce8157d9dec44bf7d992b6372d1158c39019c555c967510e59f2be558a
MD5 145ca077c300ec19d101808ea552383c
BLAKE2b-256 f722376a3f075721075a0da294c4898db295500f90eebdcf8b891e7637f17be3

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp310-cp310-musllinux_1_2_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5bb4e92e54728bca8c450b7850b393fdb63e4d99c575556995c416c107ca3d39
MD5 edff90159e4d06390cdb7237beee42ad
BLAKE2b-256 44f81ce43174d01af1277974ddbb74f305f1f8b095e4d26199a275bbc2659b86

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp310-cp310-musllinux_1_2_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 82bcbd55db5d4b4d90f56c4b6e053b19b449064d91f154b535da1e976c4b0377
MD5 6c32dc6a0ded4510e87072f492e95c08
BLAKE2b-256 5dc1163a50b34b6dfa221073a32cbaeeb8264cc261449ccf93f504d70ac2ea54

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 afc79b77e7f3cd89d9d2ccb3090f61fae459a76c18bb11ea018a94676f7262e6
MD5 c85df58d6200f8eb52f2c189a1b9f82b
BLAKE2b-256 87f7c85d71cd23e49f54b7d1aa8c22b32c777310e1bb6dd7e449dde506f8f678

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp310-cp310-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

File details

Details for the file unlzw_cython-1.0.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for unlzw_cython-1.0.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2f96fbbe919f0359c492f3a8bcc43c41e9207d45a214ffe3d21bec3d66d1cc4a
MD5 baa2a9c21cd0c9f8a87112bd2ce84f7b
BLAKE2b-256 c9a9f5cbb16dd496e8885ec2f2d0a202d5601b1f65d2f15743f76277e70ec87d

See more details on using hashes here.

Provenance

The following attestation bundles were made for unlzw_cython-1.0.0-cp310-cp310-macosx_11_0_arm64.whl:

Publisher: cd.yml on AlecThomson/unlzw-cython

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

Release history Release notifications | RSS feed

This release

1.0.0 This release

57 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page