Skip to main content

Python wrapper for libdeflate.

Project description

deflate API

This is a very thin Python wrapper Eric Biggers' excellent libdeflate.

Currently, it handles:

Compression and decompression of gzip data, with a very basic API

import deflate
level = 6  # The default; may be 1-12 for libdeflate.
compressed = deflate.gzip_compress(b"hello world!" * 1000, level)
original = deflate.gzip_decompress(compressed)

Compression and decompression of raw DEFLATE or zlib data

The original size of the decompressed data needs to be kept through additional logic.

import deflate
level = 6  # The default; may be 1-12 for libdeflate.
data = b"hello world!" * 1000
# DEFLATE
compressed = deflate.deflate_compress(data, level)
original = deflate.deflate_decompress(compressed, len(data))
# zlib
compressed = deflate.zlib_compress(data, level)
original = deflate.zlib_decompress(compressed, len(data))

CRC32 computation

import deflate
crc32 = deflate.crc32(b"hello world! ")  # initial
crc32 = deflate.crc32(b"hello universe!", crc32)  # continued

Adler-32 computation

import deflate
adler32 = deflate.adler32(b"hello world! ")  # initial
adler32 = deflate.adler32(b"hello universe!", adler32)  # continued

Installation

pip install deflate

By default, deflate will compile and statically link the bundled libdeflate when you build from source (or use the pre-compiled wheels). To link to a system-installed libdeflate, set the LIBDEFLATE_PREFIX environment variable and build from source:

LIBDEFLATE_PREFIX=/opt/homebrew/Cellar/libdeflate/1.20 pip install deflate --no-binary=deflate

Be warned: you can't use this wheel on a system without the referenced libdeflate.

Testing

pip install -r requirements-dev.lock
python -m pytest

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

deflate-0.8.1.tar.gz (217.6 kB view details)

Uploaded Source

Built Distributions

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

deflate-0.8.1-pp311-pypy311_pp73-win_amd64.whl (50.2 kB view details)

Uploaded PyPyWindows x86-64

deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

deflate-0.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl (40.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

deflate-0.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl (54.9 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

deflate-0.8.1-pp310-pypy310_pp73-win_amd64.whl (50.2 kB view details)

Uploaded PyPyWindows x86-64

deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

deflate-0.8.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl (40.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

deflate-0.8.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl (54.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

deflate-0.8.1-pp39-pypy39_pp73-win_amd64.whl (50.2 kB view details)

Uploaded PyPyWindows x86-64

deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.9 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ x86-64

deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.3 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ ARM64

deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.8 kB view details)

Uploaded PyPymanylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

deflate-0.8.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl (40.6 kB view details)

Uploaded PyPymacOS 11.0+ ARM64

deflate-0.8.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl (54.8 kB view details)

Uploaded PyPymacOS 10.15+ x86-64

deflate-0.8.1-cp311-abi3-win_amd64.whl (50.0 kB view details)

Uploaded CPython 3.11+Windows x86-64

deflate-0.8.1-cp311-abi3-win32.whl (44.0 kB view details)

Uploaded CPython 3.11+Windows x86

deflate-0.8.1-cp311-abi3-musllinux_1_2_x86_64.whl (55.1 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ x86-64

deflate-0.8.1-cp311-abi3-musllinux_1_2_i686.whl (57.2 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ i686

deflate-0.8.1-cp311-abi3-musllinux_1_2_aarch64.whl (51.3 kB view details)

Uploaded CPython 3.11+musllinux: musl 1.2+ ARM64

deflate-0.8.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ x86-64

deflate-0.8.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.2 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ ARM64

deflate-0.8.1-cp311-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.6 kB view details)

Uploaded CPython 3.11+manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

deflate-0.8.1-cp311-abi3-macosx_11_0_arm64.whl (40.5 kB view details)

Uploaded CPython 3.11+macOS 11.0+ ARM64

deflate-0.8.1-cp311-abi3-macosx_10_9_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.11+macOS 10.9+ x86-64

deflate-0.8.1-cp310-cp310-win_amd64.whl (50.1 kB view details)

Uploaded CPython 3.10Windows x86-64

deflate-0.8.1-cp310-cp310-win32.whl (44.0 kB view details)

Uploaded CPython 3.10Windows x86

deflate-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ x86-64

deflate-0.8.1-cp310-cp310-musllinux_1_2_i686.whl (57.2 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ i686

deflate-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl (51.3 kB view details)

Uploaded CPython 3.10musllinux: musl 1.2+ ARM64

deflate-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

deflate-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.2 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

deflate-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.7 kB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

deflate-0.8.1-cp310-cp310-macosx_11_0_arm64.whl (40.6 kB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

deflate-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.10macOS 10.9+ x86-64

deflate-0.8.1-cp39-cp39-win_amd64.whl (50.1 kB view details)

Uploaded CPython 3.9Windows x86-64

deflate-0.8.1-cp39-cp39-win32.whl (44.0 kB view details)

Uploaded CPython 3.9Windows x86

deflate-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ x86-64

deflate-0.8.1-cp39-cp39-musllinux_1_2_i686.whl (57.2 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ i686

deflate-0.8.1-cp39-cp39-musllinux_1_2_aarch64.whl (51.3 kB view details)

Uploaded CPython 3.9musllinux: musl 1.2+ ARM64

deflate-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (51.8 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

deflate-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (50.2 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

deflate-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (54.7 kB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ i686manylinux: glibc 2.5+ i686

deflate-0.8.1-cp39-cp39-macosx_11_0_arm64.whl (40.6 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

deflate-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl (55.2 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

File details

Details for the file deflate-0.8.1.tar.gz.

File metadata

  • Download URL: deflate-0.8.1.tar.gz
  • Upload date:
  • Size: 217.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.21

File hashes

Hashes for deflate-0.8.1.tar.gz
Algorithm Hash digest
SHA256 1bba0e70d3885f5135f00c17a42aef98d9dc817daf9a56df7dcc92174f4d2cda
MD5 8c12b87e8d9896323aa11a2a96650040
BLAKE2b-256 25f54999436aed92db2ce6f2a78d494fd82e72b028c97d9ef64bd6ff127570ef

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp311-pypy311_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp311-pypy311_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 dea02536a4786fa32f0a109d2ec758694304222ce2c94dfea0094e53f016b38e
MD5 232e2b1afc4c80723576f0f17b193098
BLAKE2b-256 442d2b7c0605f964a5608a2ff2500055882cb899d077012d7a2fb9f180559d83

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 635d4e6112ff1726accd64fe3bc9d55a2b520af4f2df60955659651f562fc02c
MD5 b03706bd9a3a1d03932c14b4fbd4d023
BLAKE2b-256 949b74aac4f62e24dab9df907f0299049f5bac36bf47321ac33040e5e9359cff

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 799ab54aeddd7fe6d70d168cd5b57560d102bf992f2bccd7a5909fd41f285f32
MD5 237d27c75ad4da642904898238362dc6
BLAKE2b-256 152ef6e2db74896cd5253a4dd08e2822f4e71ce75ab13e40e48d331da78cee3c

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp311-pypy311_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 dba1b76a3e47e997367cc3c3b243b56b9335202e633c8990695ad18ab9d7b5f6
MD5 4bca2eeca603a693f6f8a9f3cb4131ac
BLAKE2b-256 2c6e44af2655f2b0564c74518c4a52a6eb53aaf194e9dbd35ed6af817d939fb3

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp311-pypy311_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 4f9a3b1c585b5bc3b0c6060d7b050353b394599133238d980bf36f5f45c5f9aa
MD5 036a5c3b9c28ddfba188a55fc84be8c7
BLAKE2b-256 7353ba79cc151838bc45de61c08693e2d5b2b477859df3854bdf3d641722e9c9

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp311-pypy311_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 a46fcc7450930aa3a46e8a3a2555ea3eef10ad8aaf7af7d65754e592c435adef
MD5 e8727f172baef014cb022a767fa4ac47
BLAKE2b-256 6ea557d22ef8b2ddc32290097442722bfa2fc69061b8c1354150026e31279712

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp310-pypy310_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp310-pypy310_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 350c247238eb806b5f091aa15cb84298bf8adb740a64d4e07da752317a1653a7
MD5 7adb29a6e32d8bdfabfd212f4355bb93
BLAKE2b-256 49ad2cd0ff3c32016137410199a2e78da639789add1da57885c60e91b44879e9

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2a5f8f421f13a053a99ae96e7b99c7df05e5ad9befc8e8943d25ca30252cb000
MD5 9061db3b38a2c37847694340e7695f73
BLAKE2b-256 2bf447665a145372718c388d46f63b3bba313557cad1cabc4a4796f94d2044bd

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 acd214d60829f0b60e96bc0edc2d9f66343217ddf5266e5abc199956dc1e9c19
MD5 256fff250f5b0241370df78f73ea8693
BLAKE2b-256 26eef3e3eba1e8cbd47e075628a7e55dce310f5d4b1ec6edb8b1322a23656e9b

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 3574ced95a23dcf5cc9db5b7563fa776fac44cda3e2b38942b0f08fcef324809
MD5 0a35e46b86d0f4e83aea466fb808302c
BLAKE2b-256 2f8e9dc19a1b83d4172c40c9dff9402e37ea4286944b8329eacb43f0ced7d109

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp310-pypy310_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 2b1d3ddf2f9068576e4e2e7daaf3d94a4a36c987c18997909b930bf9fe7bcacc
MD5 8a83aa6931627d84bb63f20dded68bcf
BLAKE2b-256 ec19d8385987d69b12d2169af9686cddb62a09b48b9db6a8846f9040d9f23e5d

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 d92492ffb25324ad7190d8e8417177a8224804f70f1d9b310cd49c84a247d26e
MD5 12066123cdf1c1aa5b95e62c17e74492
BLAKE2b-256 8ff54bce17d2f1dfa283d7f1a22acefa962bb7f17d6c137b3ca803f57a1da730

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 c4a006268d053efef11c464c1804f925b93fb1cfe54aa009e0997998a86ed606
MD5 917f75b89c001439b8f7d6a759c62910
BLAKE2b-256 de96fa8670cdad6e64a3ee283280704c19df6dfa740ef79f50d9a5388f23dda0

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f4f83c74be7fb7b0524956122d98e71b79c23428421ae489c50a3ff28b266390
MD5 6b83dda38aa1e6c7a8dd5a420ad6c0cc
BLAKE2b-256 98f430941e478205409600a277c9b1bf0611c64de2e1d77b7fd1f1e6b330bc0e

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 01d71ca47b4f9cecee3c68bf25dcce5e556d97373074214f9b9953d69bd8c4a5
MD5 88dfb4b6b7956f2e3fee365f0493ef9b
BLAKE2b-256 8341b2bd8ae2708b7c6bee4333312b3db0b85ef73e7541b483887092969edb53

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 4d691a68af3110171d00ab938d3ce96e67ba6cd01fd7affe9a9ace238f183d7e
MD5 30fd128672f422b75f1521340b7232f1
BLAKE2b-256 53634f2611f376e9554244d98ab7ef417ca237349e832a49d2640c152ff66a1e

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp39-pypy39_pp73-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 0eef28c2a75cfa7a55332f4fe5d0307009c63e2a700e0014611b609040578e1e
MD5 76bce5d67440bfa5e133ea0dd5c73f3b
BLAKE2b-256 129f5dcd99ae8eab1945819efe5bce397f2cb1900db74a67a60119eca3b18b4a

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-pp39-pypy39_pp73-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 3c87c514fd32cb04600de2fe9ec8003d37db6fa50d628b7b169a7bfba2670697
MD5 5a78d0b01e9c01dc6fc8908f5c1db4a3
BLAKE2b-256 5b1e5d73c67e76e5abf38e565247aa8a12eb9b702c90a378b0eec593a3ff14f5

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp311-abi3-win_amd64.whl.

File metadata

  • Download URL: deflate-0.8.1-cp311-abi3-win_amd64.whl
  • Upload date:
  • Size: 50.0 kB
  • Tags: CPython 3.11+, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.21

File hashes

Hashes for deflate-0.8.1-cp311-abi3-win_amd64.whl
Algorithm Hash digest
SHA256 4e82a4373a8c38fc5d92ac57685c8fdee538fe1d244197cece8db5b24ff74f80
MD5 12807fbe5fc83f12e457ea73b81b5c0b
BLAKE2b-256 87f4ec4a84faad8c932c0aa32d49bb29e345cf240f7024adbd0154006da517af

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp311-abi3-win32.whl.

File metadata

  • Download URL: deflate-0.8.1-cp311-abi3-win32.whl
  • Upload date:
  • Size: 44.0 kB
  • Tags: CPython 3.11+, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.21

File hashes

Hashes for deflate-0.8.1-cp311-abi3-win32.whl
Algorithm Hash digest
SHA256 2846ebc94eafffa62ee0405eaa1786e841ca20cf7115dfcc23d255323c3e2a50
MD5 bb9c8350ac268670669e4fc331509bcc
BLAKE2b-256 4e896b3d1adb1fdb05b7d86861b97ec4acdb1ae4ee353bdb366a050961ac7e67

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp311-abi3-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp311-abi3-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 dc36ef9bb0a87145fadfa1e2392e1bf1bdb29cbc8ce0a720b2ce1fce2084dd0b
MD5 d569c1eb3338e8ab8af834f9067981f5
BLAKE2b-256 e9a2abb8e08e47389e1a0bf95f41027b637021c63c1431a110d38b95eff9ea5d

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp311-abi3-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp311-abi3-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 319a376f4b49fd40578be54dcd9a2d056631c1fec1dc5ddba1c4363e5f2a55e2
MD5 98de62a1191e0a568f79c986dcc85f0f
BLAKE2b-256 b4e2f368c86186bd5eec61762672cc622f463b6a188f9684ee7cd99396f8bb98

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp311-abi3-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp311-abi3-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 5773f52faf63e3ab5fc47556a35335afb029bc7a020bac728af744764760aef3
MD5 dd4579d47d6df4ec3a0437c093401939
BLAKE2b-256 adc6d9bab3858c6a20bda9500a75f31c04d7bb2e79a3d99c5ff107f0677e969f

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp311-abi3-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 d0bf846e44f84d93ae99dc7bd4b71176f2abf0fd4f3baddbfc164387963763b6
MD5 c2e381a7a92705742bdca790ae07963f
BLAKE2b-256 de4ab795ccf23430801970e606215cec0074030b37154918d3b5f54efc48437d

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp311-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ba5c8676f402480a290b61a8051953c8bbab85983b03e56cbfc7b1708bb6776c
MD5 3afed3432754b7b16ffa3001c011fbfb
BLAKE2b-256 ca16e985b65ad1b290e592546137a0505c9df0329c5a12691d47b119b942a4f0

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp311-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp311-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cc65690c9e24ed491a856dd20cea27d00f5a818add19952c7bf10743d94a0dbd
MD5 5578407752b7b7628f113a29542cf4b1
BLAKE2b-256 7a0d78349c64b3ba45d3593f04a97bd541af77863c6b401821588a107729b5f2

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp311-abi3-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp311-abi3-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 874382ead84be558e70bf4b5ebc6ce9d7ac2abdb2bd6830407dcb634bb5539ae
MD5 6811b2f6b8f3c745399ac62f0548e258
BLAKE2b-256 9d8a451f1c7cd1d517441c5df6c44726a3fc121b2983800a40e282259f4fdf84

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp311-abi3-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp311-abi3-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 42f6fc79e34cda342b7a1b2a28943e7f3cd1312b286b8d847a3608169193f781
MD5 b8692145ad80674c2c44f21d4a7d3832
BLAKE2b-256 368077c7336deb6f36d110cb718de5cf5dcb97f2aeb48a98cbd61f7bfe1c950f

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp310-cp310-win_amd64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 bea89f4cacd3fe21e93be45fbd0253a329f778d661125ab1c036a99be1882700
MD5 4eee9521af0463f81fb62b2b1d8fc697
BLAKE2b-256 869d191f679a9167419beff167ccda9d730c829892f9a09dfedc74210195153a

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: deflate-0.8.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 44.0 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.21

File hashes

Hashes for deflate-0.8.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 19cfd8aac3566c0bb44f2e4d9806d526c93534a7857dd91618f9012e9af56ee8
MD5 c0336454edeb7ade2a3bffda8c296329
BLAKE2b-256 d8b299db740bcd6903360083ebeadd373edb407ac2f1a9227dcaa6b2ffc03215

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp310-cp310-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7d6aae3e2268bff5d74beeeba713e7d9115de27739ed41295896c2c5ae9fcbac
MD5 4255af297a765326093f1d574bd5111e
BLAKE2b-256 06f60f4a42263bc56cefb7c0701ff170d6ad9736d8696055ed41c80f50be3d79

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp310-cp310-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp310-cp310-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 3a047ff5014268c9245bc33480f18b791e1964d7e897866434be9c0756f6cbdd
MD5 3b34cdf7e6adcc7029c95fcf4dff0fc9
BLAKE2b-256 5ad36f968f2534e04d229984a602a7eb0165548f7cd8750a5df35e380397635e

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp310-cp310-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 91af4a75cb4603b3abf7221c0213a24a3024f19d5dfecea13271619a223555fe
MD5 51a069a81a78306ec1816bdaee00eab5
BLAKE2b-256 78ecce32307f094f4cef9ea8b9310ba4f32952a4bdb436f659a4f6916dcb1520

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbb8af5029201382298008d47b4c914f0c0837803cd4f7d6fdf3cd695a38cdf6
MD5 ebf0f12abb5ed4c2d10aa4d964026fda
BLAKE2b-256 46a8856320102e88d8902181bc85ecea71ebfceffc0253c1513f2f28242f8d45

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 22b9624b9394af53c8982b0c41e930665bdc21ca7c8f418c50dc1a4fc018246c
MD5 b5bc0eeae9f8db65cb0e5c4c085e368f
BLAKE2b-256 a4cc7a61976e88a178d62aaccdc721e2ac0b887437903b88861f4c6f0385bb29

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 c5bec0154af42a4a584213629c79b437f30ede231a596e595745376b967deb30
MD5 4f3911949de7b365640f0ddba1123569
BLAKE2b-256 ab7bbf4281396439469cfd0cf8b59351e755522788de0fa0eda18abc48a93296

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 b1e29c6d67b8758a9a1c5b8829a6acb401bb7e945ecd724b683a326c49abf3d6
MD5 54a22ef89ce1cf24eb4aecef1351ca29
BLAKE2b-256 91faf072a2de7c9488ce3710cf2edcd11c822c2ab18f00c10121710cdc6b28ba

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 084c4da5825ca7a497519bbdb45a2ea53fca4f418f9cb4140ee656f7615ad975
MD5 e70a283aaad751ffe712a7f9efe30fc8
BLAKE2b-256 8014a10461810599f96db2e8603dfd183327cddd5db2ad449afa9766ff7463a0

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: deflate-0.8.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 50.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.21

File hashes

Hashes for deflate-0.8.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 28c6110fcdc616bd85f601edf54c9e7547ee77e8a3f3758f45453a386bfeedc7
MD5 4b97ec5be9425c08b4142d8f359340f3
BLAKE2b-256 8817a486a2cd75ec452516a776ec1185d73dc147804812357e74966ddaa255b6

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: deflate-0.8.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 44.0 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.7.21

File hashes

Hashes for deflate-0.8.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 2f3d807aec77c1c1045511aa81d4b26175931a37e04a5ffd683bb355778961e1
MD5 44eb1ff5fa930576643990b65950658e
BLAKE2b-256 fe4014fe791871ef0719860c19af8c23a5cc3dec815e20cd0b9ec0ad6f4e8d85

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp39-cp39-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 a30f2c06418204bbe9ef605924c6aaf01b253303676fe2705c725ed24606ddfd
MD5 1096e3c20b25cb6a6bf888fc01e290e9
BLAKE2b-256 f6b78fab02292f9342474147ee64d6984b7a4d7ddf08918ca1f9dbffd5055678

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp39-cp39-musllinux_1_2_i686.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp39-cp39-musllinux_1_2_i686.whl
Algorithm Hash digest
SHA256 913089fb87855bac68c09da791d3c619a9cd675db590ce1aa87715faebb6a43d
MD5 2bef0a95281b730638f9e1f37436782d
BLAKE2b-256 04a9a6f0b045e3c33446e508bcd7367fe8cce1b017819acf88b0253b89d30be1

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp39-cp39-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp39-cp39-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 ce01abbd82728f324ef52ab1bfeb3981fe93432df1fdc8dd3e62d64a1d1150ca
MD5 145ab7d4c7e9f8ce50f410b3e2951d83
BLAKE2b-256 f0d44a417c195fa07c9ba3a5c1793553be8c0addede4928101cb272b26ba8b24

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbf3f1bde8de7b7b292552d199ee75cc18c2ff5859cbb56f3f0de3459bf6d60a
MD5 836e6a08c2cd8e688cad98fc9ec619e7
BLAKE2b-256 496eb6c7d71977ffe2c6a652c61204aa2ef8fa661d5af4a9d339d6ea40d95f59

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 50a3ef1a4363ae5a0e6ce4792d014dccc058e38c008bfdfe46a19f2341250a59
MD5 588d2cb346891b0d86fc58bb4e33f88f
BLAKE2b-256 70032e2fa076f8ec47a0b5c5e459b18291faea9827ef0ef55d62337e59741dbb

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 9d7c684fdeaa633a8e2219aa9a632f8cbeff42c14e4ea3827b5ed39a2e45fd18
MD5 97cdf232f82332320e2ff5126a8a752f
BLAKE2b-256 cf06f1202c3be1259082631afe93708cd4bb27edf7e225eafe5b5c7390ef736c

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 248a7455a5f4be6d16ab4ee01b7d4c6154aedc76ee6810dcf1f30fb7facd08eb
MD5 638bcc1683bdd572b92294202448044c
BLAKE2b-256 bf6dd9cab7c292053e2ac2707b12c8c92438f36da2bda385999503f0f2e62efd

See more details on using hashes here.

File details

Details for the file deflate-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for deflate-0.8.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 800824282f541acfb736c14960c7093c430fe1d5155859a5621292ea0bf017a1
MD5 388ea3495b27d81dfe2a2d1927c27944
BLAKE2b-256 dd4920d8bbcf5b6d379816a26bb693ff487119c136b1a8d1a87eca47a358bf3e

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