Skip to main content

Lzip (.lz) archives compression and decompression with buffers and URLs support

Project description

lzip is a Python wrapper for lzlib (https://www.nongnu.org/lzip/lzlib.html) to encode and decode Lzip archives (https://www.nongnu.org/lzip/).

This package is compatible with arbitrary byte sequences but provides features to facilitate interoperability with Numpy's frombuffer and tobytes functions. Decoding and encoding can be performed in chunks, enabling the decompression, processing and compression of files that do not fit in RAM. URLs can be used as well to download, decompress and process the chunks of a remote Lzip archive in one go.

pip3 install lzip

Quickstart

Compress

Compress an in-memory buffer and write it to a file:

import lzip

lzip.compress_to_file("/path/to/output.lz", b"data to compress")

Compress multiple chunks and write the result to a single file (useful to avoid large in-memory buffers):

import lzip

with lzip.FileEncoder("/path/to/output.lz") as encoder:
    encoder.compress(b"data")
    encoder.compress(b" to")
    encoder.compress(b" compress")

Use FileEncoder without context management (with):

import lzip

encoder = lzip.FileEncoder("/path/to/output.lz")
encoder.compress(b"data")
encoder.compress(b" to")
encoder.compress(b" compress")
encoder.close()

Compress a Numpy array and write the result to a file:

import lzip
import numpy

values = numpy.arange(100, dtype="<u4")

lzip.compress_to_file("/path/to/output.lz", values.tobytes())

lzip can use different compression levels. See the documentation below for details.

Decompress

Read and decompress a file to an in-memory buffer:

import lzip

buffer = lzip.decompress_file("/path/to/input.lz")

Read and decompress a file one chunk at a time (useful for large files):

import lzip

for chunk in lzip.decompress_file_iter("/path/to/input.lz"):
    # chunk is a bytes object

Read and decompress a file one chunk at a time, and ensure that each chunk contains a number of bytes that is a multiple of word_size (useful to parse numpy arrays with a known dtype):

import lzip
import numpy

for chunk in lzip.decompress_file_iter("/path/to/input.lz", word_size=4):
    values = numpy.frombuffer(chunk, dtype="<u4")

Download and decompress data from a URL:

import lzip

# option 1: store the whole decompressed file in a single buffer
buffer = lzip.decompress_url("http://download.savannah.gnu.org/releases/lzip/lzip-1.22.tar.lz")

# option 2: iterate over the decompressed file in small chunks
for chunk in lzip.decompress_url_iter("http://download.savannah.gnu.org/releases/lzip/lzip-1.22.tar.lz"):
    # chunk is a bytes object

lzip can also decompress data from an in-memory buffer. See the documentation below for details.

Documentation

The present package contains two libraries. lzip deals with high-level operations (open and close files, download remote data, change default arguments...) whereas lzip_extension focuses on efficiently compressing and decompressing in-memory byte buffers.

lzip uses lzip_extension internally. The latter should only be used in advanced scenarios where fine buffer control is required.

lzip

FileEncoder

class FileEncoder:
    def __init__(self, path, level=6, member_size=(1 << 51)):
        """
        Encode sequential byte buffers and write the compressed bytes to a file
        - path is the output file name, it must be a path-like object such as a string or a pathlib path
        - level must be either an integer in [0, 9] or a tuple (directory_size, match_length)
          0 is the fastest compression level, 9 is the slowest
          see https://www.nongnu.org/lzip/manual/lzip_manual.html for the mapping between
          integer levels, directory sizes and match lengths
        - member_size can be used to change the compressed file's maximum member size
          see the Lzip manual for details on the tradeoffs incurred by this value
        """

    def compress(self, buffer):
        """
        Encode a buffer and write the compressed bytes into the file
        - buffer must be a byte-like object, such as bytes or a bytearray
        """

    def close(self):
        """
        Flush the encoder contents and close the file

        compress must not be called after calling close
        Failing to call close results in a corrupted encoded file
        """

FileEncoder can be used as a context manager (with FileEncoder(...) as encoder). close is called automatically in this case.

BufferEncoder

class BufferEncoder:
    def __init__(self, level=6, member_size=(1 << 51)):
        """
        Encode sequential byte buffers and return the compressed bytes as in-memory buffers
        - level: see FileEncoder
        - member_size: see FileEncoder
        """

    def compress(self, buffer):
        """
        Encode a buffer and return the compressed bytes as an in-memory buffer
        - buffer must be a byte-like object, such as bytes or a bytearray
        This function returns a bytes object

        The compression algorithm may decide to buffer part or all of the data,
        hence the relationship between input (non-compressed) buffers and
        output (conpressed) buffers is not one-to-one
        In particular, the returned buffer can be empty (b"") even if the input buffer is not
        """

    def finish(self):
        """
        Flush the encoder contents
        This function returns a bytes object

        compress must not be called after calling finish
        Failing to call finish results in corrupted encoded buffers
        """

RemainingBytesError

class RemainingBytesError(Exception):
    def __init__(self, word_size, buffer):
        """
        Raised by decompress_* functions if the total number of bytes is not a multiple of word_size
        The remaining bytes are stored in self.buffer
        See "Word size and remaining bytes" for details
        """

compress_to_buffer

def compress_to_buffer(buffer, level=6, member_size=(1 << 51)):
    """
    Encode a single buffer and return the compressed bytes as an in-memory buffer
    - buffer must be a byte-like object, such as bytes or a bytearray
    - level: see FileEncoder
    - member_size: see FileEncoder
    This function returns a bytes object
    """

compress_to_file

def compress_to_file(path, buffer, level=6, member_size=(1 << 51)):
    """
    Encode a single buffer and write the compressed bytes into a file
    - path is the output file name, it must be a path-like object such as a string or a pathlib path
    - buffer must be a byte-like object, such as bytes or a bytearray
    - level: see FileEncoder
    - member_size: see FileEncoder
    """

decompress_buffer

def decompress_buffer(buffer, word_size=1):
    """
    Decode a single buffer and return the decompressed bytes as an in-memory buffer
    - buffer must be a byte-like object, such as bytes or a bytearray
    - word_size: see "Word size and remaining bytes"
    This function returns a bytes object
    """

decompress_buffer_iter

def decompress_buffer_iter(buffer, word_size=1):
    """
    Decode a single buffer and return an in-memory buffer iterator
    - buffer must be a byte-like object, such as bytes or a bytearray
    - word_size: see "Word size and remaining bytes"
    This function returns a bytes object iterator
    """

decompress_file

def decompress_file(path, word_size=1, chunk_size=(1 << 16)):
    """
    Read and decode a file and return the decompressed bytes as an in-memory buffer
    - path is the input file name, it must be a path-like object such as a string or a pathlib path
    - word_size: see "Word size and remaining bytes"
    - chunk_size: the number of bytes to read from the file at once
      large values increase memory usage but very small values impede performance
    This function returns a bytes object
    """

decompress_file_iter

def decompress_file_iter(path, word_size=1, chunk_size=(1 << 16)):
    """
    Read and decode a file and return an in-memory buffer iterator
    - path is the input file name, it must be a path-like object such as a string or a pathlib path
    - word_size: see "Word size and remaining bytes"
    - chunk_size: see decompress_file
    This function returns a bytes object iterator
    """

decompress_file_like

def decompress_file_like(file_like, word_size=1, chunk_size=(1 << 16)):
    """
    Read and decode a file-like object and return the decompressed bytes as an in-memory buffer
    - file_like is a file-like object, such as a file or a HTTP response
    - word_size: see "Word size and remaining bytes"
    - chunk_size: see decompress_file
    This function returns a bytes object
    """

decompress_file_like_iter

def decompress_file_like_iter(file_like, word_size=1, chunk_size=(1 << 16)):
    """
    Read and decode a file-like object and return an in-memory buffer iterator
    - file_like is a file-like object, such as a file or a HTTP response
    - word_size: see "Word size and remaining bytes"
    - chunk_size: see decompress_file
    This function returns a bytes object iterator
    """

decompress_url

def decompress_url(
    url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, cafile=None, capath=None, context=None,
    word_size=1,
    chunk_size=(1 << 16)):
    """
    Download and decode data from a URL and return the decompressed bytes as an in-memory buffer
    - url must be a string or a urllib.Request object
    - data, timeout, cafile, capath and context are passed to urllib.request.urlopen
      see https://docs.python.org/3/library/urllib.request.html for details
    - word_size: see "Word size and remaining bytes"
    - chunk_size: see decompress_file
    This function returns a bytes object
    """

decompress_url_iter

def decompress_url_iter(
    url, data=None, timeout=socket._GLOBAL_DEFAULT_TIMEOUT, cafile=None, capath=None, context=None,
    word_size=1,
    chunk_size=(1 << 16)):
    """
    Download and decode data from a URL and return an in-memory buffer iterator
    - url must be a string or a urllib.Request object
    - data, timeout, cafile, capath and context are passed to urllib.request.urlopen
      see https://docs.python.org/3/library/urllib.request.html for details
    - word_size: see "Word size and remaining bytes"
    - chunk_size: see decompress_file
    This function returns a bytes object iterator
    """

lzip_extension

Even though lzip_extension behaves like a conventional Python module, it is written in C++. To keep the implementation simple, only positional arguments are supported (keyword arguments do not work). The Python classes documented below are equivalent to the classes exported by this low-level implementation.

You can use lzip_extension by importing it like any other module. lzip.py uses it extensively.

Decoder

class Decoder:
    def __init__(self, word_size=1):
        """
        Decode sequential byte buffers and return the decompressed bytes as in-memory buffers
        - word_size is a non-zero positive integer
          all the output buffers contain a number of bytes that is a multiple of word_size
        """

    def decompress(self, buffer):
        """
        Decode a buffer and return the decompressed bytes as an in-memory buffer
        - buffer must be a byte-like object, such as bytes or a bytearray
        This function returns a bytes object

        The compression algorithm may decide to buffer part or all of the data,
        hence the relationship between input (compressed) buffers and
        output (decompressed) buffers is not one-to-one
        In particular, the returned buffer can be empty (b"") even if the input buffer is not
        """

    def finish(self):
        """
        Flush the encoder contents
        This function returns a tuple (buffer, remaining_bytes)
          Both buffer and remaining_bytes and bytes objects
          buffer should be empty (b"") unless the file was truncated
          remaining_bytes is empty (b"") unless the total number of bytes decoded
          is not a multiple of word_size

        decompress must not be called after calling finish
        Failing to call finish delays garbage collection which can be an issue
        when decoding many files in a row, and prevents the algorithm from detecting
        remaining bytes (if the size is not a multiple of word_size)
        """

Encoder

class Encoder:
    def __init__(self, dictionary_size=(1 << 23), match_len_limit=36, member_size=(1 << 51)):
        """
        Encode sequential byte buffers and return the compressed bytes as in-memory buffers
        - dictionary_size is an integer in the range [(1 << 12), (1 << 29)]
        - match_len_limit is an integer in the range [5, 273]
        - member_size is an integer in the range [(1 << 12), (1 << 51)]
        """

    def compress(self, buffer):
        """
        Encode a buffer and return the compressed bytes as an in-memory buffer
        - buffer must be a byte-like object, such as bytes or a bytearray
        This function returns a bytes object

        The compression algorithm may decide to buffer part or all of the data,
        hence the relationship between input (decompressed) buffers and
        output (compressed) buffers is not one-to-one
        In particular, the returned buffer can be empty (b"") even if the input buffer is not
        """

    def finish(self):
        """
        Flush the encoder contents
        This function returns a bytes object

        compress must not be called after calling finish
        Failing to call finish results in corrupted encoded buffers
        """

Compare options

The script compare_options.py uses the lzip library to compare the compression ratio of different pairs (dictionary_size, match_len_limit). It runs multiple compressions in parallel and does not store the compressed bytes. About 3 GB of RAM are required to run the script. Processing time depends on the file size and the number of processors on the machine.

The script requires matplotlib (pip3 install matplotlib) to display the results.

python3 compare_options /path/to/uncompressed/file [--chunk-size=65536]

Word size and remaining bytes

Decoding functions take an optional parameter word_size that defaults to 1. Decoded buffers are guaranteed to contain a number of bytes that is a multiple of word_size to facilitate fixed-sized words parsing (for example numpy.frombytes). If the total size of the uncompressed archive is not a multiple of word_size, lzip.RemainingBytesError is raised after iterating over the last chunk. The raised exception provides access to the remaining bytes.

Non-iter decoding functions do not provide access to the decoded buffers if the total size is not a multiple of word_size (only the remaining bytes).

The following example decodes a file and converts the decoded bytes to 4-bytes unsigned integers:

import lzip
import numpy

try:
    for chunk in lzip.decompress_file_iter("/path/to/archive.lz", 4):
        values = numpy.frombuffer(chunk, dtype="<u4")
except lzip.RemainingBytesError as error:
    # this block is executed only if the number of bytes in "/path/to/archive.lz"
    # is not a multiple of 4 (after decompression)
    print(error) # prints "The total number of bytes is not a multiple of 4 (k remaining)"
                 # where k is in [1, 3]
    # error.buffer is a bytes object and contains the k remaining bytes

Default parameters

The default parameters in lzip functions are not constants, despite what is presented in the documentation. The actual implementation looks like this:

def some_function(some_parameter=None):
    if some_parameter is None:
        some_paramter = some_paramter_default_value

This approach makes it possible to change default values at the module level at any time. For example:

import lzip

lzip.compress_to_file("/path/to/output0.lz", b"data to compress") # encoded at level 6 (default)

lzip.default_level = 9

lzip.compress_to_file("/path/to/output1.lz", b"data to compress") # encoded at level 9
lzip.compress_to_file("/path/to/output2.lz", b"data to compress") # encoded at level 9

lzip_default_level = 0

lzip.compress_to_file("/path/to/output1.lz", b"data to compress") # encoded at level 0

lzip exports the following default default values:

default_level = 6
default_word_size = 1
default_chunk_size = 1 << 16
default_member_size = 1 << 51

Publish

  1. Bump the version number in version.py.

  2. Create a new release on GitHub.

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

lzip-1.2.0.tar.gz (79.9 kB view details)

Uploaded Source

Built Distributions

lzip-1.2.0-pp39-pypy39_pp73-win_amd64.whl (55.3 kB view details)

Uploaded PyPy Windows x86-64

lzip-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (85.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

lzip-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (86.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

lzip-1.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (90.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

lzip-1.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl (57.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

lzip-1.2.0-pp38-pypy38_pp73-win_amd64.whl (55.3 kB view details)

Uploaded PyPy Windows x86-64

lzip-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (85.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

lzip-1.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (86.7 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

lzip-1.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (90.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

lzip-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl (57.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

lzip-1.2.0-pp37-pypy37_pp73-win_amd64.whl (55.3 kB view details)

Uploaded PyPy Windows x86-64

lzip-1.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (86.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ x86-64

lzip-1.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (87.5 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ ARM64

lzip-1.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (91.0 kB view details)

Uploaded PyPy manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

lzip-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl (57.1 kB view details)

Uploaded PyPy macOS 10.9+ x86-64

lzip-1.2.0-cp311-cp311-win_amd64.whl (55.2 kB view details)

Uploaded CPython 3.11 Windows x86-64

lzip-1.2.0-cp311-cp311-win32.whl (48.1 kB view details)

Uploaded CPython 3.11 Windows x86

lzip-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl (834.6 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ x86-64

lzip-1.2.0-cp311-cp311-musllinux_1_1_s390x.whl (910.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ s390x

lzip-1.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl (885.4 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ppc64le

lzip-1.2.0-cp311-cp311-musllinux_1_1_i686.whl (884.8 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ i686

lzip-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl (826.5 kB view details)

Uploaded CPython 3.11 musllinux: musl 1.1+ ARM64

lzip-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (306.2 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

lzip-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl (316.0 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ s390x

lzip-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (319.8 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ppc64le

lzip-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (303.6 kB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

lzip-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (299.8 kB view details)

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

lzip-1.2.0-cp311-cp311-macosx_11_0_arm64.whl (59.4 kB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

lzip-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl (60.0 kB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

lzip-1.2.0-cp310-cp310-win_amd64.whl (55.2 kB view details)

Uploaded CPython 3.10 Windows x86-64

lzip-1.2.0-cp310-cp310-win32.whl (48.1 kB view details)

Uploaded CPython 3.10 Windows x86

lzip-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl (833.3 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ x86-64

lzip-1.2.0-cp310-cp310-musllinux_1_1_s390x.whl (909.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ s390x

lzip-1.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl (884.5 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ppc64le

lzip-1.2.0-cp310-cp310-musllinux_1_1_i686.whl (883.7 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ i686

lzip-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl (825.4 kB view details)

Uploaded CPython 3.10 musllinux: musl 1.1+ ARM64

lzip-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.1 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

lzip-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.8 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ s390x

lzip-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (318.3 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ppc64le

lzip-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.5 kB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

lzip-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (298.7 kB view details)

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

lzip-1.2.0-cp310-cp310-macosx_11_0_arm64.whl (59.4 kB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

lzip-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl (60.0 kB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

lzip-1.2.0-cp39-cp39-win_amd64.whl (55.2 kB view details)

Uploaded CPython 3.9 Windows x86-64

lzip-1.2.0-cp39-cp39-win32.whl (48.1 kB view details)

Uploaded CPython 3.9 Windows x86

lzip-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl (833.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ x86-64

lzip-1.2.0-cp39-cp39-musllinux_1_1_s390x.whl (909.2 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ s390x

lzip-1.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl (884.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ppc64le

lzip-1.2.0-cp39-cp39-musllinux_1_1_i686.whl (883.4 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ i686

lzip-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl (825.1 kB view details)

Uploaded CPython 3.9 musllinux: musl 1.1+ ARM64

lzip-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.9 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

lzip-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.6 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ s390x

lzip-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (318.0 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ppc64le

lzip-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.3 kB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

lzip-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (298.5 kB view details)

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

lzip-1.2.0-cp39-cp39-macosx_11_0_arm64.whl (59.4 kB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

lzip-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl (60.0 kB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

lzip-1.2.0-cp38-cp38-win_amd64.whl (55.2 kB view details)

Uploaded CPython 3.8 Windows x86-64

lzip-1.2.0-cp38-cp38-win32.whl (48.1 kB view details)

Uploaded CPython 3.8 Windows x86

lzip-1.2.0-cp38-cp38-musllinux_1_1_x86_64.whl (833.3 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ x86-64

lzip-1.2.0-cp38-cp38-musllinux_1_1_s390x.whl (909.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ s390x

lzip-1.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl (884.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ppc64le

lzip-1.2.0-cp38-cp38-musllinux_1_1_i686.whl (883.7 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ i686

lzip-1.2.0-cp38-cp38-musllinux_1_1_aarch64.whl (825.4 kB view details)

Uploaded CPython 3.8 musllinux: musl 1.1+ ARM64

lzip-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (304.9 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

lzip-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.6 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ s390x

lzip-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (318.0 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ppc64le

lzip-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.2 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

lzip-1.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (298.5 kB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

lzip-1.2.0-cp38-cp38-macosx_11_0_arm64.whl (59.4 kB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

lzip-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl (60.0 kB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

lzip-1.2.0-cp37-cp37m-win_amd64.whl (55.2 kB view details)

Uploaded CPython 3.7m Windows x86-64

lzip-1.2.0-cp37-cp37m-win32.whl (48.1 kB view details)

Uploaded CPython 3.7m Windows x86

lzip-1.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl (834.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ x86-64

lzip-1.2.0-cp37-cp37m-musllinux_1_1_s390x.whl (910.6 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ s390x

lzip-1.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl (885.3 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ppc64le

lzip-1.2.0-cp37-cp37m-musllinux_1_1_i686.whl (884.8 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ i686

lzip-1.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl (826.4 kB view details)

Uploaded CPython 3.7m musllinux: musl 1.1+ ARM64

lzip-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (306.0 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ x86-64

lzip-1.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl (315.8 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ s390x

lzip-1.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (319.7 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ppc64le

lzip-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (303.4 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ ARM64

lzip-1.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (299.6 kB view details)

Uploaded CPython 3.7m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

lzip-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl (60.0 kB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

lzip-1.2.0-cp36-cp36m-win_amd64.whl (60.8 kB view details)

Uploaded CPython 3.6m Windows x86-64

lzip-1.2.0-cp36-cp36m-win32.whl (52.0 kB view details)

Uploaded CPython 3.6m Windows x86

lzip-1.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl (833.4 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ x86-64

lzip-1.2.0-cp36-cp36m-musllinux_1_1_s390x.whl (909.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ s390x

lzip-1.2.0-cp36-cp36m-musllinux_1_1_ppc64le.whl (884.6 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ppc64le

lzip-1.2.0-cp36-cp36m-musllinux_1_1_i686.whl (883.8 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ i686

lzip-1.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl (825.5 kB view details)

Uploaded CPython 3.6m musllinux: musl 1.1+ ARM64

lzip-1.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (305.0 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ x86-64

lzip-1.2.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl (314.8 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ s390x

lzip-1.2.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl (318.2 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ppc64le

lzip-1.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (302.4 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ ARM64

lzip-1.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl (298.6 kB view details)

Uploaded CPython 3.6m manylinux: glibc 2.17+ i686 manylinux: glibc 2.5+ i686

lzip-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl (60.0 kB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

Details for the file lzip-1.2.0.tar.gz.

File metadata

  • Download URL: lzip-1.2.0.tar.gz
  • Upload date:
  • Size: 79.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0.tar.gz
Algorithm Hash digest
SHA256 bdcfeead4c8584fdde22b87b8b47c362d3974ce216f2fce9293a67c582c72d29
MD5 07263a4300fba6140bd474cf393871aa
BLAKE2b-256 65199b64835ff31cf9eedc08ae00f42a03ce38e72caa5363031d0e0141d6a0c4

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp39-pypy39_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp39-pypy39_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 f0d358d9d284b6b46e727fee0a951a16d7d09a654e6f7266da74574bda339a03
MD5 41689f67d40b7451060d5a520f528bc5
BLAKE2b-256 4541c27ef2d48513ccc70bf5c030d2af99930e5060851038ffd2ddefd9012840

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp39-pypy39_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f98cf215ccbf5199e43ec1e6cf404e4323b4388b26829a763ead8fae84eaf9b1
MD5 c01501a529efef360ee0f5a17d796879
BLAKE2b-256 4de00844349235232cfeeb6ef0631d613514537f045de2416db7543bdb6dcfed

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp39-pypy39_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1e06dd3f0dccaa65947ae5c29fdb3f617a8194d3641427c9006501104cfd6008
MD5 ca47bd84503e9e100afa94d97848f135
BLAKE2b-256 fa9293afe654cdea5ca4183fa3969ba2676fb4466613c9fa3055a0cb41b6330c

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp39-pypy39_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 52cd76c59414f1addb8e61683806e05833bb4e3c1cd7dc20aeed586bdd971b04
MD5 08bae0cb54cd763cf0088fbeaf379d45
BLAKE2b-256 acff0f2e7fc6e571f10a8bde98e960f0da7b8d521fdeaf6eeabd6668f3505b18

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp39-pypy39_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 453d4b1ac1a321f1bfd194f57c0bf2cec075f525e8b9117aadf9b60b88af54bb
MD5 7acaafcfc8138a1d56cba4f04dc36cda
BLAKE2b-256 814cbc8a915279a4bfedcfa6bf27bb9a83567a160a7c6e5868b633e84264b89b

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp38-pypy38_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp38-pypy38_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 37a2e11c47f278ed2173ae118cb8b62a385cbbd08ec03d9fcdc1d5f3b92cb34c
MD5 88ab658bff6c68372ef04cc62b0aaeb6
BLAKE2b-256 1f26a0564795ddae3b29fe80a2ebf299737688e3fdd1e2821695845a4ad5c391

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp38-pypy38_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 01fdea5778c38dc6aca3cd82c00f0d223add3358e2931cf67ae5fb62225a172d
MD5 cd78814ccdcce1c9424109919ca8dbfa
BLAKE2b-256 6d182d2536aba2ed30aff5bbe7dc97830979d5e7ab64ff654b3118d7cc2bfabd

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp38-pypy38_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 ae4eb709e50042bdf26c14b71baace06ed6e6dcbeaff4e489ddc10af4f06b2ee
MD5 b078a0aeca4f20cd8735ed9067b2bb07
BLAKE2b-256 0ec54c8b6ad26d335e7a974830cb35275967b1ae1897f595b61f2c67850dd254

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp38-pypy38_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 472dbd9befd49ef1f479e72dd4125f5ac78c092fbb85a0eb92d475e059e6e0e7
MD5 9dc70af0563a86c0d53bd579fc9847ab
BLAKE2b-256 f39a95882062d16d824514d56e1cfbadfa31a8300654a9abcd6c52ed1d84ece1

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp38-pypy38_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 ed013d7ca9de52cf9b362efe9cbb6cf08969d217958ad95630f8792528224b89
MD5 18cfd902ed900b8850a5f967bc50264d
BLAKE2b-256 7a938dfa8ef1b42fa5559c272a2fd482581fa5e99f60e7d35ba17e3bea65d211

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp37-pypy37_pp73-win_amd64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp37-pypy37_pp73-win_amd64.whl
Algorithm Hash digest
SHA256 bf9844a7ff85ee714b252972a67a4ec52ea16baf22e97ae8b81695d04bed8851
MD5 900cdc7b21216e4f8f2943d3e78c5d6e
BLAKE2b-256 4fbbddbbc71325a10ae96d1c6fda4bdeab8d9b82a0a7288114bc4d9bbcb94ab6

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp37-pypy37_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e83dcee856217aa9e9c2ec9666935c029047c6ee0aedc243c5843cfe01ec2195
MD5 e5c55c9225240fa2e5a2a388f552253f
BLAKE2b-256 19b3e9acc995fa0864494a23e867a68e960a76540a0bf1b586c5f85af6dbd5c8

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp37-pypy37_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9d4ca6665fa695d7d28ce6c0ea0d1cb10e0be78b414c8a773e9a2cad3654db20
MD5 af9085b36cff965f0a6ca70a74284124
BLAKE2b-256 c3cb3b41b34e7c18e84334fa0e8a48bc90649f262c7753586409ccc7349624a4

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp37-pypy37_pp73-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 928ce3f32fffc0778233d0da5919af7e8ed8ddd652cd74c3ac013e23501cb6ee
MD5 00ebd0077821d0cd5fb8c90e44dd6cbd
BLAKE2b-256 f821fd97061f5ce5f596d374c50b6e9f84c39ab5a4c1b756b482a792e22c4c71

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-pp37-pypy37_pp73-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 03b7a77333104b3c1631a0d1482d4ad07bbc42df8b684838adfd06d08dd0426f
MD5 6d12b4b7c402c2c741bc03baf2cffba6
BLAKE2b-256 c42c4a14e9d909bf68df9cf22419cb9d65aed48b6cd70b6436e1baa90e2d3155

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: lzip-1.2.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 55.2 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 12f61dcd589aaee01e8280c146d5e55d0157b42f6c9a6dc6d8d9f12f1409d831
MD5 51e48a69254ba70b93931b1e65674948
BLAKE2b-256 b5ed6507399cbec57fb34e3b3b365efbcc1da527b3bdd49e9abfe54761235a59

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: lzip-1.2.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 48.1 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 0fe331d1a12e1462ca3661fc92a2a3a1c19576c771ab6a76a6238be2182f24d0
MD5 c9a1f4554391686f5e8ef452caf3a54e
BLAKE2b-256 ad916d98c8c5e2b091afea705adf0a037c16655590cc8c15c9365c7e5d0e5ccc

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp311-cp311-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6cbd4916f7f63373547724a3965337f9df811fe822ff291d02873de6a9dd6ba5
MD5 58f54b370193b8092b85dcae97f2ec4a
BLAKE2b-256 ba77a2dd918edeca05b1badffc32b12b18dfdbb9005f1b5caf640f0fcdbb8f42

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp311-cp311-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 54f9866394179fbe2aa4b3bbeba0f31121d46bd1c82ada0d6f995b70938e6b81
MD5 e8b907499aa0ca3b323536fbcea2a532
BLAKE2b-256 fba551cd03f714b2e8053b5b08fab507f20266f9f09ce50619309e74f274c55b

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp311-cp311-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f9c91c9e5f54a66c05680a571c9463049870c7e5dd90d0900202df1371b5c278
MD5 ff1785962bf4e14300d2be2ad1be00a9
BLAKE2b-256 3f27152df2684e954ade1ed02eaccd9a5a3e2242a5be287ed136a37405a394e5

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp311-cp311-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 164bba34f6406e95644b969579ca7ee24bf38f5d216f7804a880d00063657324
MD5 b086bee1f2d00115c51699bf54b8e5b0
BLAKE2b-256 61d1594a52a5ff7ae4fdbcf6e49ba0d3058362bd447a8ff56e5f4cde49d7cffb

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp311-cp311-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 24ac819b0096a14e931ff9ba318cb3c95512bdc4089cf7fa237d56d080752f11
MD5 5c2ccc863d224b0fc8fa58b6c898c138
BLAKE2b-256 b697c5727d74cb3c2f18ab65f8fd013ae0b226ce1cac5a7d8247a915e0f8e247

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2d511734e91ea10e643f361936ceeb6d419c09b60a69fc5a8cdc26181ec5170a
MD5 d2341f04dd835923280329f4f8c89467
BLAKE2b-256 a7bb0a82eca7a5dacd0281597e4755e91807b6d560237b68731816bc85e7eb33

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 e9e57e81b14c075f2ca687ad9976761d3856c7193cddd189db6c5aa8ae9cb924
MD5 bd001df77d85abd9ec03f6b08524c754
BLAKE2b-256 3e24bfa81e0c80610fa8b444875077c4dcbc5b911432abc96853883c0dc43fff

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 2cca9c8e954f592be82dc14da457c73f5dd6db5b7a1364e4714f2b024c4fa01c
MD5 1548cb7f409430a565917bb7a3d29433
BLAKE2b-256 3a837234020153038337f65d0c770606d42234c699764e1facd24330c317ff61

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 32b972efb660fa501abe057bb2957c54314f7f76ee444389da84cbcfe4b958ba
MD5 3eda7441a458e4e2541f114a39b179f9
BLAKE2b-256 1de26160b9651192b846441861138af9c883b389e3702b097d3fd9ebd7056b83

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e756e89b8ea5bce882581d181043ce4e5e2afea624bcc421373b29612597cdde
MD5 eeed204cafb9f16760deead789b273ee
BLAKE2b-256 98dd4eee03e670dc1984ca363bfdc2b10abc62dd917cce11737a473de2cbcc46

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cf0fb1ae96bbd1243cb9a299be09844a79461e2123e773f85276d43021d394ed
MD5 03fab9ddeeb0380ba750f667ba456ad2
BLAKE2b-256 07949db181e49380d502ebb951a0fe5ebcc1a886e7254df57f2361d8aefd81c6

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3a7b65244073065ca2c167ab1a24eb1c281fd752adcadde0109bf46499838b62
MD5 2ccada2595aa58e0d26dac5f11a75bb8
BLAKE2b-256 22072d7d4e22ffc2ba15f11ff345f5c324c9a64e1c92d176cfb560afdf327b68

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: lzip-1.2.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 55.2 kB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 e1774f93ec5df95320b4ac09fc10a6f67d2ecc91a44baf301d01859f42bcdbad
MD5 dc313ede9e50f7f72f7cef5454dd2a9f
BLAKE2b-256 00a8cbe4ba7cf42b5ef73fd6bfb85256ff36c7e30e35d152ddbf0f24e7704e7f

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-win32.whl.

File metadata

  • Download URL: lzip-1.2.0-cp310-cp310-win32.whl
  • Upload date:
  • Size: 48.1 kB
  • Tags: CPython 3.10, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 8968b3dd9b132b023485d81b08042ee2c9931a3d02c46ce22e627cc950bd2e9a
MD5 87d1993f4698c5785fe4ada10414114a
BLAKE2b-256 23ab89ee599184ad80faef455d73babb6fe226974f751bb3d2bde7666cd88850

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp310-cp310-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 6e68e3ca3de4afd9f4a4a0b9f89fc77938455342061f2a13ca64b38068835761
MD5 cc6c12b0ead2e2a8d74101e3ecd6c84e
BLAKE2b-256 a1019f113c82a7f555e68680c3c7c7d5ae77a6bdfa2372447c3c36fbca2e838e

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp310-cp310-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 1669796ee274d5c7d97a6f902fedb86a80f8633ff3684d850c362bad7dfd8b45
MD5 eb8a1f9bbb4f67f7495860ad4422d887
BLAKE2b-256 c6da5ee48d91eba36c4c4bf35623c34246efe88171af97ef5780e6a7f93e165b

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp310-cp310-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 0af723ecab95f7a9577f9d167eaa305bd205abd96911da73af6204c34451a80e
MD5 df542f8f2579b913148325e6918a7a6a
BLAKE2b-256 cf9fc761a48fa8bd4242eba42fa3d4cb8c03c2e721fc8579375ad0367422f957

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp310-cp310-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 2786d17b3644d13c47db63aa4a58af4018826262f096c3125c52a294bf6cc270
MD5 3ec1e9ea3ad4bf05a3c9de6eccf1aa9a
BLAKE2b-256 45ae710659f88cb2cebaab5ae9d3851563f45b80439aac3008ae99865cdffd16

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp310-cp310-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e90c02657624e2d5de0d4d21965e0dc8221530c432031114ad9b94c3dd3e5874
MD5 7e066ee44eee3ef260d056bb10ba8d6b
BLAKE2b-256 21a65cbfb003fbcfb27a5d472cff6f9258841f9e7e3d759aa82711959c00e64e

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 394bb0abbf25989c1109dd2910ed1a40f06b75b0f8f1695357a37c4e8bcffa9b
MD5 e2f1a53cbfaf327ec3344ad2d822187a
BLAKE2b-256 60dedc4352b1d2d533095ef2197791a424427b279376208c20b0120b5187dddf

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 9586c6cedc66b767959b972b14bbd4b27300a74683dd3405b4ddcd67d3c77947
MD5 d12d8ea9a6e3bc316c4f4eff9feb0137
BLAKE2b-256 c2775fdb45566ef44c71b153a4e72dc53ca8b595e58992027e5a09fe7491836b

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 3b5a4aacb106426145043f93309ae1ebf1e2b189afb6c6967b60793ba68560e1
MD5 17ea34f058fb01f5b29c9ed2ace6a08e
BLAKE2b-256 def2b0e5e612d6dd0ef0c3e555633cc788625d06681f9de6c8247575eac84175

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 72d5eb9d18ea7ecd1d05f785505b226ef045a1dd61d89c1b983c7d9875a4051e
MD5 a2bbb56e0c778b9867bd04abe64045a6
BLAKE2b-256 7113b7e723e7a705ef2fd26a6845dfc24b8c287c83742a75652cdd8e30ea19d0

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 d55c9578e5f3b281b9a49aa78072a7a0cd09055e2f29f59a4503459798c69ca7
MD5 90f8121c8b672cc90d3901cf28b5a445
BLAKE2b-256 2fe0ddbc09efbc669b892bdb616f976994bf0048ab5ed73d1c40bc83fc446e69

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 07abf8d17324dea526d300c6c0a1b1a8e45a383df11864a3b67b442fb352f5d4
MD5 d62de8bcfaa73e49c77c7e319119f31a
BLAKE2b-256 4248cccf500641d67dd8b7154c03321e12471408f88861afb90f93da6c867e60

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b45f97cd5b2846d6a39c86c24d36fabc6c8036795d373475af6ae28fb13e4a7f
MD5 035aceb368cc4f220e2b90c532272485
BLAKE2b-256 6154d426d4627c881305d6fa119359b63dcb4abef31d7d9470562e17b816a41d

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: lzip-1.2.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 55.2 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 dfd9340f0e6f11a903146508f7a58b11aef73919ec7412c1a0151856fb06f491
MD5 f3276cd6f81043ccb07ba32352c7fdbf
BLAKE2b-256 36245ea12f9503add3575ada2e18d634faabcea5ffedb0c1fac6e14805a18094

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-win32.whl.

File metadata

  • Download URL: lzip-1.2.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 48.1 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 29e717ea8af1184287ad90325c5c7d1386edbd9e4486abdc20621eed7ee3b1c7
MD5 45e75b37ebfad6e65a5e390601a34e56
BLAKE2b-256 1c832b4fcb3d58d1346b42a1de3549c11bb4d0994bac61e0b7409a9b57a76d79

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp39-cp39-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 06769e8c6e732e20ff4d8b814ed22f5603f3fee319a523eddd058572661e9eb0
MD5 4c87e92b820db1da3cee82457be88536
BLAKE2b-256 3814faaad9cb6f64e02237481898fcfb37a5f8f0f80c9a98206c2a6a917d25e0

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp39-cp39-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 26c6d9bc73222e7d93ccf89252d2d99b33065bdcc741769f55d3a9e581314194
MD5 4b5e468e2629fb8248502b428e4ac72e
BLAKE2b-256 64a75783e0c337820fae8cffa5501e07b87035aa65e3af43089a85d5eb964e09

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp39-cp39-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 f03e9aba1464c599cae2286846ab93a343a6677b8848bb7aa0a5aaeeb45418f3
MD5 efe414aed9339e04018962ce78a180db
BLAKE2b-256 a87a59c1a877c356747c9192513bdaa45cf17a647f3cf50480b245e263f5b9e8

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp39-cp39-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 1ff5946b53ef13df026ed686939273a6c13f73512f5f35537a5346259e666954
MD5 1077a4b575a63465e258f889b31a2816
BLAKE2b-256 09e1f701d574f498c7392da7f7199dd6df831ea99af3a699e4dca5803bea8366

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp39-cp39-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 8156fdc0b2d102ae5647b10009ffa3846503e368406e3dce6e3999ca4bcc5697
MD5 071a1e375263b7e36d1fc7d5edfc129e
BLAKE2b-256 40d2ba8ef39906537dbfee029aac571fa81d226944d2a6d920328489b90c391a

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 ece46bc39af43afb923afef7fc0b2d7431f6679444d21f404ea872447e11ce1b
MD5 908bb904c60aa26a453a81b81c4ab2ff
BLAKE2b-256 dab60f0c5119ecdc05c5cd08f33675b5673e539c5c25171137815968f3ea85e7

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp39-cp39-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 c4eb0df551f3ca047c24523c6782b100982d517fbe89dcb0e47825a26fe7b18e
MD5 c085bba34d0da1b4b8ae41993c0f1d5e
BLAKE2b-256 2b802f8a5bdcf1c3e37c0038104ec749c2e87d26c9cda7b86f4728c565f09a05

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp39-cp39-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 038834f3cd0efc94e4a4ff489a2043f69faf2894f7f88d46fe60f910cc1f479d
MD5 d18359fb7c3fc4bf448df42b05f850ad
BLAKE2b-256 9da2067efc7a5986f83efac2684e5015c08229215f6f7e6a5f762f58b33f8b61

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 46bc4aa4dc1ae13e5a5f56022102023b0e86477b7dff8d6ffa1fbbdd12e5b34a
MD5 7ac94f13ad0376378077daefe78e6d9e
BLAKE2b-256 f40b9a257d36eab1e8f1dfd87588c79dd7afdfef910b2cb5e64ff1d9b21e20d7

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp39-cp39-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 cb3828b0eeeffdbef4491cbf7999b5213ac06a262ff98fa754255ca8f2dd74b2
MD5 f8b575fb9c2abc1daa09dce8b65dcd0f
BLAKE2b-256 688f2a49382f19bffdd73d4b7ce427af790a34935cfd1bc4d2941e64bb71578f

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 6132c738ab773ece4a6812d67e072792a189ddec18581bf31f1f2e96020dda5e
MD5 c57030878b1bf104b13b88d1fe00af6e
BLAKE2b-256 1089ea530db0faad7f8db0aed6ba5748995a2ceb85844f3b294b93296a28a12a

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7511dd66b3e0fdf55a05c065a9ab4bf5da23b5cdc69e7041db452448f69f3e1b
MD5 957da234b8cf86f71114b9534b61dc42
BLAKE2b-256 f553a40c99855cde16cc312191aba4bc3494774ba1260fb663a31359b597c6dc

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: lzip-1.2.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 55.2 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 b04ac89e5901757096f83f5c48a7566bfdbeec76c9adaab5997b04a582768cd7
MD5 4c6277f3fcf4368bf909ed09818e23c7
BLAKE2b-256 e1ec69afda6747e0eae5a6b5a2b54753e1a3b2c8c7c0a82ba607ab4157e30c5d

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-win32.whl.

File metadata

  • Download URL: lzip-1.2.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 48.1 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2540ae67553faced145ea293c73b97fbc00c56dcc9c9741ec48e2554875fa471
MD5 12c88064605bf05ba9856372ae441e94
BLAKE2b-256 894ad242fc05b20c4f55825aaa47ef8c11359259a528e9b9fecaad27f353d50e

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp38-cp38-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0d82cef3d1e465fb3f1ec73595d6b6fc7164520064e2b9e89eb99f2dbf384061
MD5 418f5dff25cb1be69af549c95d43decd
BLAKE2b-256 4b18ba6dba1c85d1ffafe7144a53b8201e762cbc840ed2fc20f2c28d54d4d412

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp38-cp38-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 ad881a1fe73b5ee4f727efd8df0041728a8fe31d29af54193bb2a5347f8bf8f8
MD5 9d03d456f1585bd031f24a30bb16213d
BLAKE2b-256 d70a483c02286281e1a5bb017b7d48837c5344ea8b190c60c8d04777f903c72a

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp38-cp38-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 89df9581f154fdfffc3dd7bb0811941e7354d57e68046d04c2f1d686b075b93a
MD5 9184850443d3acdedc1620a3ecc01e1b
BLAKE2b-256 e5cc4f78be2d2e30bc3b010a7536b754b6a7f72aa349e925e5e0bce08ef2a26b

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp38-cp38-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 e8deb4a7a829f0c87c5670edd2328e42b1938e4912526ba3b1e099b475f85008
MD5 470d5c8e75d8c04c91534d0aa9a824b1
BLAKE2b-256 40b28532df50e54f93b5aefa776fd2ab64c4475106f279eaf4337cbba6ccff97

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp38-cp38-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 a3ad3ed331743e219de1221a130bcb7b82e148aa70107ef4f01631542fa1de88
MD5 d78b444b952eda81c2fc7409b00517af
BLAKE2b-256 19088953fbb3a479e98e2e3927d4bc43579eaa8e8ea3a2d2a8f9cedfc673909d

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 6f2940dec2658de71769ce344d8032ef7ff428358b0ff45a588e57a7f3dffc98
MD5 ed0d698ea142608181df5c55bc6a7f5b
BLAKE2b-256 d6b36a5569edc69f22e4a951a3bef74c9d5c36532c2c0c57a58ebd9346faee6f

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp38-cp38-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 1502acccd177f828abc253eee8fcc8b3f0588a77f39bb7643bbef678d6d53c0a
MD5 33a8c5c7a1f8563d4ffb064df3195243
BLAKE2b-256 035b1ad682b25400634dbfc675abaa804d682396021752bdfd8b922eaa1b50c1

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp38-cp38-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 718c06b5013ff7e4dc36ca5fc0378d26a3c1905e5ff6bde186dcae7ddf125820
MD5 7bbadf1213be005e82391bf137732fbe
BLAKE2b-256 41b11242e5997a4ccb0f9ec190275e807be24aebbb0dc58e228dac21cc033ed6

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c35aad9b0b2b84d92ffa97b74f7bc0d6af92ed13c4b7ea311fc43c2a1c237a48
MD5 334e65fe574aa08f7d765c998c01cb0a
BLAKE2b-256 7de78e5730cc6ab37ec739a88814b50a8ed78d1f891508dc33ef1a841a3df1b0

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp38-cp38-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 34b9facc656cf01d17a34a1eff169ed791e6ff673299387a6f32eb35bd191b32
MD5 f7f4226ae2a0582979f8b112d607e831
BLAKE2b-256 b7102b003d0b76b70e2613bcdef8a71345c0679a6e18d3e0db2da2939409bd82

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 7e607b9e020fa3fd6857ccf2ebbf01c474c0d6dbfd3680c1796c5f24d62f129f
MD5 d681cd00a45dbcaa958c4c771507ecbe
BLAKE2b-256 ffc6409b132d329ef23069551dca4323b05169667a0d207e99738c61ca84db25

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 15b7710b089257d193bdf5b64b8d3d79805245db1c68333695655ad0df99f480
MD5 d7d7c4e13e4194ffd6f52283946385fe
BLAKE2b-256 efbab84eb6f2493f48a4efbb21474254fb199a0c0319baa30c6a0d981bb66e8e

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: lzip-1.2.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 55.2 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 e6c5e0430e36817689cdef34808e2f193751c8a485ad5501c823761fe1921306
MD5 63c030f1616b2fa0af91ab728312cf17
BLAKE2b-256 0028b1d025e7a50e3a44484cc1edbb302c6138f1dd1194167ee517efbb569fdf

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: lzip-1.2.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 48.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 99161dcc348649af1cb9f04faece9e9393d92f7e130688c40dc32fc33b241579
MD5 16e672f425cac36a1d58c7ddd772a6a9
BLAKE2b-256 ca7ae05c865ffe8e18c4ea86ca4ce08f4b928f4d3f27890d084086c39b599764

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 b6ef650562699ed701a6d6eedb6570f7b3b24bc1b476c1690437a726492b7657
MD5 53f9fbd3797550dbc7eae5d5522554da
BLAKE2b-256 653cada705cc3315c80c4d3ecf1bdb1dc5074bbe4627b3a1d3ad36c2a7ed1fc3

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d884432397b0a68b08ce404ac8b1c634ecdce3d7bf5afc6c1e987345352e4b4b
MD5 6090ad7a7c016d891ca98a4bbe726612
BLAKE2b-256 52b5cd95c262583fe90d04233d76b8f62184019898efce5e01ffdfa38811cc94

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 bfad721aba2290728185e6ad019554f3223a5d5bceca952f44376bf218def217
MD5 b30f51c8980685d8cd7a13b7782d2a7f
BLAKE2b-256 934aefb0daa817c35ce45626363909f91fca89e480458ca3879980c112ccb925

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 76e3a6b7c39a04060671b3d10f3af98b6dead2611fc9a07df43c4d195bb8d1ca
MD5 eab0491781ac35a9b0c4c71ad52e7f05
BLAKE2b-256 e394b8f94ff153a0210da3fdeb03a7f7ff2434f6d93b6c5a921d5162375b4be0

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 e7f425cdbe0e7054cc7dba9fb30143f5b7bde48d923e887aab1c18c82970a3fe
MD5 794bd44dad6ac2e1a5d9f8f094805f3c
BLAKE2b-256 9817d17f820a05c19ba0d79c5a3fd90760cd92d91ed1cde9c9ac4ed7ddfa95f9

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 000fb1effecc3a6bc6c21784e4d7f595956266a737a7220dcf306d15fdb6b665
MD5 172bd8ff85e437d983dbf0d0ceef29a3
BLAKE2b-256 784c20ee3c76d2e37f9c7fb61bea1859f67934c33b0cf16832f749d360016ff0

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 3cd8751d8178e171a1318b59327584208aa8172d269e85f248c127dda75399a7
MD5 25a56f67562af7ae5ff9908635b30bd2
BLAKE2b-256 66a1b66e676a8fd7e2a32e807c01676ce0489066496c87a64c655347787b068a

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 4543d4051ccd946c6ce9cc0648a78be25febd322b69fe7f27d45fbd6a3c9a114
MD5 bb57fd25c8a26bdbc7eaf08ffabe7a84
BLAKE2b-256 064a437f49c1897f9a35d4fa8324d26088a6cb1c481032c9b724ca1e9f940e3f

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 74f3aae5d175f21a8eeeb0acdba3ff7fccbada0675942e99354eadb34778dbd9
MD5 ade8aee42d9c49e999c0dddad32b39e8
BLAKE2b-256 9093c6ad9b6dbf6413db4d46887690b555029d7082ba7782300b5c9b8b301bd0

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 26c02445c52953365b4054a63b102f81abfad7416522eb52ce8726b4c198efc6
MD5 f2ea4d1cdc4331651380224ab25a8ebf
BLAKE2b-256 071a9919466b9dc343ed35e5fbdc0a2403f093989e239b4a84b53741b69a95fd

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 90203847e8c2b970cfcfa940e1fbf9143d0a1f29876e012e4d6f4a9f560436c7
MD5 df755a74f2b6259551a8aa30ae9ca995
BLAKE2b-256 b79cd4f44b44bfa270a4aeb8fa2b67dc1bdaf3fdfb5e8d08f77ef71696c3956b

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: lzip-1.2.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 60.8 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 ab889d6a84519a4fe8154d4b6cc3c0d7fa5dbadab216b80e9b6ad683114d0ebc
MD5 eecf6e8249ab2ca4ef3f3b7e41cff3f1
BLAKE2b-256 559565bef965c4a22ea0d8a7ef4e4d266d7c9c542e7efea31ad0c09e94689b3a

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: lzip-1.2.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 52.0 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.9.15

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 458637fe9fe4a025903a878824b28a7b868a076b781aa5df00eee7e170451d9e
MD5 f6adf6c443a416822e76f757d72bf541
BLAKE2b-256 4f869d8fae368243ba437c67af49ba95945c359e925ea1e42d168bac03140416

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-musllinux_1_1_x86_64.whl
Algorithm Hash digest
SHA256 0fe69c281f75dd25e9a543c79adc386e03ad19713aba75ace2e72dfc343021f7
MD5 5b818b99923c16f774a7af83309f7ae2
BLAKE2b-256 f4ae0e815650dd9503fd60e516fc445c7b06b7618fa9a55d59fe062d0dbb0778

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-musllinux_1_1_s390x.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-musllinux_1_1_s390x.whl
Algorithm Hash digest
SHA256 d7b865b50e70a2475e26e13d21a619ba9b851a14ade10f382849fadc0aec491d
MD5 f53413477949c67073823a1977c0beda
BLAKE2b-256 1391f15467bb22c0873dbd85584c6e0a6235e61c9eca9a063c90dfc0d4a67c15

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-musllinux_1_1_ppc64le.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-musllinux_1_1_ppc64le.whl
Algorithm Hash digest
SHA256 49501f364711faa0e8e71aadf7f30fb8687b8820c2a963ea99ca6a0ac5de2625
MD5 0db1d4787d081090d4daa276867682a6
BLAKE2b-256 c7552569c26914995dca86cfe0baa96c65241abb9581b6c65a431f15f1bec988

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-musllinux_1_1_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-musllinux_1_1_i686.whl
Algorithm Hash digest
SHA256 7981f95cc102a80b95b8ed6b3fc36d89e64a9968973f8537309ff47c9a7d95b7
MD5 4dd8a3f2068ae4fa201413e6f0e5d88b
BLAKE2b-256 3b67ecee702cc47a3ceb21d47a00fcd642ae939844fd566a75cacb069f3a0d2e

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-musllinux_1_1_aarch64.whl
Algorithm Hash digest
SHA256 75b54eac02cfac8a1f57d059be31a1be5229bc081287ce92e572f9d44a9b3607
MD5 c66a639b7e80357ca291afbd17221f7e
BLAKE2b-256 c1d3320665f405f221a0da650662249a6a967e49339cb179b3f7e035637a7b96

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 f7fda3c555fc9d70f4226bf10e93956b7ae355099a991d9e28a9e01c77b26a74
MD5 2c7e607d608505948d6832e903e6479c
BLAKE2b-256 1f33906b784f4bd5f2b68a49dc747fa706ca064a2a2d5fb0d2a07ea8a9262565

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-manylinux_2_17_s390x.manylinux2014_s390x.whl
Algorithm Hash digest
SHA256 cf8c403269bd9f40cfdacb0d2e9b45372e8aa817f30aafd3c4561e63306d71ab
MD5 210cfddc6f373310eff96e1383ea40d1
BLAKE2b-256 bc453948148c7482095ca24eb1937b9969a555ec74984b747687073ade279e28

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl
Algorithm Hash digest
SHA256 10d41e9eed396d23dd95688d8d368963cf68649a2b08a4df1043140756f72eb4
MD5 299e1dbfaf41e1b08afa8361683a36bc
BLAKE2b-256 c0e3ab1d2494bbdefcfbf413cd5fe6fdea83d81e1a545dddd2a08e052c12a97c

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 c631491ffbf7fe8bdb741436ff58a1c465dbc57347e652bc9202f221030f7793
MD5 a4af8c620f6bb9cdc372291517b0739d
BLAKE2b-256 710cc6cd4817ec7723047a76524af657183e76642f7d328dd1e82c80b76af233

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl
Algorithm Hash digest
SHA256 e1dc728e3a487d4ee712a906c1fc29f459331bc570009455e86881b0f014d336
MD5 922161d427fd9b5ff991d5892df2e729
BLAKE2b-256 3c0937a9779d8f19f41591de15749f2fef018abd2709bc371f9919008783f1be

See more details on using hashes here.

File details

Details for the file lzip-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for lzip-1.2.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 52ce10d6af5229d56103d0c8585f2d22147fb526dd39cf835643238ad3036565
MD5 932e67eb8f284e25e2793be475c21741
BLAKE2b-256 daf6457cdab92eb955fb467d9b787c68340d1729ddbf25ba1a714f6ad5c9083e

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page