Skip to main content

Fast random access of gzip files in Python

Project description

indexed_gzip

PyPi version Anaconda versionTest status

Fast random access of gzip files in Python

Overview

The indexed_gzip project is a Python extension which aims to provide a drop-in replacement for the built-in Python gzip.GzipFile class, the IndexedGzipFile.

indexed_gzip was written to allow fast random access of compressed NIFTI image files (for which GZIP is the de-facto compression standard), but will work with any GZIP file. indexed_gzip is easy to use with nibabel (http://nipy.org/nibabel/).

The standard gzip.GzipFile class exposes a random access-like interface (via its seek and read methods), but every time you seek to a new point in the uncompressed data stream, the GzipFile instance has to start decompressing from the beginning of the file, until it reaches the requested location.

An IndexedGzipFile instance gets around this performance limitation by building an index, which contains seek points, mappings between corresponding locations in the compressed and uncompressed data streams. Each seek point is accompanied by a chunk (32KB) of uncompressed data which is used to initialise the decompression algorithm, allowing us to start reading from any seek point. If the index is built with a seek point spacing of 1MB, we only have to decompress (on average) 512KB of data to read from any location in the file.

Intended use

You may find indexed_gzip useful if you need to read from large GZIP files. A major advantage of indexed_gzip is that it will work with any GZIP file. However, if you have control over the creation of your GZIP files, you may wish to consider some alternatives:

  • mgzip provides an accelerated GZIP compression and decompression library.
  • Compression formats other than GZIP, such as bzip2 and xz, have better support for random access.

Installation

indexed_gzip is available on PyPi - to install, simply type:

pip install indexed_gzip

You can also install indexed_gzip from conda-forge:

conda install -c conda-forge indexed_gzip

To compile indexed_gzip, make sure you have cython installed (and numpy if you want to compile the tests), and then run:

python setup.py develop

To run the tests, type the following; you will need numpy, nibabel, pytest, pytest-cov, and coverage installed:

python -m indexed_gzip.tests

Usage

You can use the indexed_gzip module directly:

import indexed_gzip as igzip

# You can create an IndexedGzipFile instance
# by specifying a file name, or an open file
# handle. For the latter use, the file handle
# must be opened in read-only binary mode.
# Write support is currently non-existent.
myfile = igzip.IndexedGzipFile('big_file.gz')

some_offset_into_uncompressed_data = 234195

# The index will be automatically
# built on-demand when seeking.
myfile.seek(some_offset_into_uncompressed_data)
data = myfile.read(1048576)

Using with in-memory data

You can use indexed_gzip with any Python file-like object. For example:

import io
import indexed_gzip as igzip

# Load some gzip data from somewhere
with open('my_file.gz') as f:
    data = f.read()

# Create an IndexedGzipFile based on the
# in-memory data buffer
gzf = igzip.IndexedGzipFile(fileobj=io.BytesIO(data))
uncompressed = gzf.read(1048576)

Using with nibabel

You can use indexed_gzip with nibabel. nibabel >= 2.3.0 will automatically use indexed_gzip if it is present:

import nibabel as nib

image = nib.load('big_image.nii.gz')

If you are using nibabel 2.2.x, you need to explicitly set the keep_file_open flag:

import nibabel as nib

image = nib.load('big_image.nii.gz', keep_file_open='auto')

To use indexed_gzip with nibabel 2.1.0 or older, you need to do a little more work:

import nibabel      as nib
import indexed_gzip as igzip

# Here we are using 4MB spacing between
# seek points, and using a larger read
# buffer (than the default size of 16KB).
fobj = igzip.IndexedGzipFile(
    filename='big_image.nii.gz',
    spacing=4194304,
    readbuf_size=131072)

# Create a nibabel image using
# the existing file handle.
fmap = nib.Nifti1Image.make_file_map()
fmap['image'].fileobj = fobj
image = nib.Nifti1Image.from_file_map(fmap)

# Use the image ArrayProxy to access the
# data - the index will automatically be
# built as data is accessed.
vol3 = image.dataobj[:, :, :, 3]

Index import/export

If you have a large file, you may wish to pre-generate the index once, and save it out to an index file:

import indexed_gzip as igzip

# Load the file, pre-generate the
# index, and save it out to disk.
fobj = igzip.IndexedGzipFile('big_file.gz')
fobj.build_full_index()
fobj.export_index('big_file.gzidx')

The next time you open the same file, you can load in the index:

import indexed_gip as igzip
fobj = igzip.IndexedGzipFile('big_file.gz', index_file='big_file.gzidx')

Write support

indexed_gzip does not currently have any support for writing. Currently if you wish to write to a file, you will need to save the file by alternate means (e.g. via gzip or nibabel), and then re-create a new IndexedGzipFile instance. For example:

import nibabel as nib

# Load the entire image into memory
image = nib.load('big_image.nii.gz')
data = image.get_data()

# Make changes to the data
data[:, :, :, 5] *= 100

# Save the image using nibabel
nib.save(data, 'big_image.nii.gz')

# Re-load the image
image = nib.load('big_image.nii.gz')

Performance

A small test script is included with indexed_gzip; this script compares the performance of the IndexedGzipFile class with the gzip.GzipFile class. This script does the following:

  1. Generates a test file.

  2. Generates a specified number of seek locations, uniformly spaced throughout the test file.

  3. Randomly shuffles these locations

  4. Seeks to each location, and reads a chunk of data from the file.

This plot shows the results of this test for a few compresed files of varying sizes, with 500 seeks:

Indexed gzip performance

Acknowledgements

The indexed_gzip project is based upon the zran.c example (written by Mark Alder) which ships with the zlib source code.

indexed_gzip was originally inspired by Zalan Rajna's (@zrajna) zindex project:

Z. Rajna, A. Keskinarkaus, V. Kiviniemi and T. Seppanen
"Speeding up the file access of large compressed NIfTI neuroimaging data"
Engineering in Medicine and Biology Society (EMBC), 2015 37th Annual
International Conference of the IEEE, Milan, 2015, pp. 654-657.

https://sourceforge.net/projects/libznzwithzindex/

Initial work on indexed_gzip took place at Brainhack Paris, at the Institut Pasteur, 24th-26th February 2016, with the support of the FMRIB Centre, at the University of Oxford, UK.

Many thanks to the following contributors (listed chronologically):

  • Zalan Rajna (@zrajna): Bug fixes (#2)
  • Martin Craig (@mcraig-ibme): Porting indexed_gzip to Windows (#3)
  • Chris Markiewicz (@effigies): Option to drop file handles (#6)
  • Omer Ozarslan (@ozars): Index import/export (#8)
  • @DarioDaF: Windows overflow bug (#30)
  • Sławomir Zborowski (@szborows): seek_points method (#35), README fixes (#34)
  • Ashwin Ramaswami (@epicfaace): Support for in-memory file objects (#55), bug fixes (#63, #64, #65).
  • Michał Górny (@mgorny): Remove hard dependency on nibabel from test suite (#78).
  • Alexander Gorban (@alexgorban) Fix memory leak (#82, #83).

License

indexed_gzip inherits the zlib license, available for perusal in the LICENSE file.

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

indexed_gzip-1.6.4.tar.gz (73.6 kB view details)

Uploaded Source

Built Distributions

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

indexed_gzip-1.6.4-cp39-cp39-win_amd64.whl (349.1 kB view details)

Uploaded CPython 3.9Windows x86-64

indexed_gzip-1.6.4-cp39-cp39-win32.whl (304.3 kB view details)

Uploaded CPython 3.9Windows x86

indexed_gzip-1.6.4-cp39-cp39-manylinux2014_aarch64.whl (3.7 MB view details)

Uploaded CPython 3.9

indexed_gzip-1.6.4-cp39-cp39-manylinux2010_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ x86-64

indexed_gzip-1.6.4-cp39-cp39-manylinux2010_i686.whl (3.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.12+ i686

indexed_gzip-1.6.4-cp39-cp39-manylinux1_x86_64.whl (3.3 MB view details)

Uploaded CPython 3.9

indexed_gzip-1.6.4-cp39-cp39-manylinux1_i686.whl (3.2 MB view details)

Uploaded CPython 3.9

indexed_gzip-1.6.4-cp39-cp39-macosx_11_0_arm64.whl (590.2 kB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

indexed_gzip-1.6.4-cp39-cp39-macosx_10_9_x86_64.whl (687.7 kB view details)

Uploaded CPython 3.9macOS 10.9+ x86-64

indexed_gzip-1.6.4-cp39-cp39-macosx_10_9_universal2.whl (1.3 MB view details)

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

indexed_gzip-1.6.4-cp38-cp38-win_amd64.whl (351.9 kB view details)

Uploaded CPython 3.8Windows x86-64

indexed_gzip-1.6.4-cp38-cp38-win32.whl (307.0 kB view details)

Uploaded CPython 3.8Windows x86

indexed_gzip-1.6.4-cp38-cp38-manylinux2014_aarch64.whl (4.7 MB view details)

Uploaded CPython 3.8

indexed_gzip-1.6.4-cp38-cp38-manylinux2010_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ x86-64

indexed_gzip-1.6.4-cp38-cp38-manylinux2010_i686.whl (3.8 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.12+ i686

indexed_gzip-1.6.4-cp38-cp38-manylinux1_x86_64.whl (4.2 MB view details)

Uploaded CPython 3.8

indexed_gzip-1.6.4-cp38-cp38-manylinux1_i686.whl (3.8 MB view details)

Uploaded CPython 3.8

indexed_gzip-1.6.4-cp38-cp38-macosx_11_0_arm64.whl (580.1 kB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

indexed_gzip-1.6.4-cp38-cp38-macosx_10_9_x86_64.whl (670.0 kB view details)

Uploaded CPython 3.8macOS 10.9+ x86-64

indexed_gzip-1.6.4-cp38-cp38-macosx_10_9_universal2.whl (1.2 MB view details)

Uploaded CPython 3.8macOS 10.9+ universal2 (ARM64, x86-64)

indexed_gzip-1.6.4-cp37-cp37m-win_amd64.whl (321.1 kB view details)

Uploaded CPython 3.7mWindows x86-64

indexed_gzip-1.6.4-cp37-cp37m-win32.whl (284.1 kB view details)

Uploaded CPython 3.7mWindows x86

indexed_gzip-1.6.4-cp37-cp37m-manylinux2014_aarch64.whl (3.2 MB view details)

Uploaded CPython 3.7m

indexed_gzip-1.6.4-cp37-cp37m-manylinux2010_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ x86-64

indexed_gzip-1.6.4-cp37-cp37m-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.7mmanylinux: glibc 2.12+ i686

indexed_gzip-1.6.4-cp37-cp37m-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.7m

indexed_gzip-1.6.4-cp37-cp37m-manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.7m

indexed_gzip-1.6.4-cp37-cp37m-macosx_10_9_x86_64.whl (644.9 kB view details)

Uploaded CPython 3.7mmacOS 10.9+ x86-64

indexed_gzip-1.6.4-cp36-cp36m-win_amd64.whl (319.5 kB view details)

Uploaded CPython 3.6mWindows x86-64

indexed_gzip-1.6.4-cp36-cp36m-win32.whl (284.5 kB view details)

Uploaded CPython 3.6mWindows x86

indexed_gzip-1.6.4-cp36-cp36m-manylinux2014_aarch64.whl (3.3 MB view details)

Uploaded CPython 3.6m

indexed_gzip-1.6.4-cp36-cp36m-manylinux2010_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ x86-64

indexed_gzip-1.6.4-cp36-cp36m-manylinux2010_i686.whl (2.7 MB view details)

Uploaded CPython 3.6mmanylinux: glibc 2.12+ i686

indexed_gzip-1.6.4-cp36-cp36m-manylinux1_x86_64.whl (2.8 MB view details)

Uploaded CPython 3.6m

indexed_gzip-1.6.4-cp36-cp36m-manylinux1_i686.whl (2.7 MB view details)

Uploaded CPython 3.6m

indexed_gzip-1.6.4-cp36-cp36m-macosx_10_9_x86_64.whl (633.5 kB view details)

Uploaded CPython 3.6mmacOS 10.9+ x86-64

indexed_gzip-1.6.4-cp35-cp35m-win_amd64.whl (295.9 kB view details)

Uploaded CPython 3.5mWindows x86-64

indexed_gzip-1.6.4-cp35-cp35m-win32.whl (263.4 kB view details)

Uploaded CPython 3.5mWindows x86

indexed_gzip-1.6.4-cp35-cp35m-manylinux2014_aarch64.whl (3.1 MB view details)

Uploaded CPython 3.5m

indexed_gzip-1.6.4-cp35-cp35m-manylinux2010_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ x86-64

indexed_gzip-1.6.4-cp35-cp35m-manylinux2010_i686.whl (2.6 MB view details)

Uploaded CPython 3.5mmanylinux: glibc 2.12+ i686

indexed_gzip-1.6.4-cp35-cp35m-manylinux1_x86_64.whl (2.7 MB view details)

Uploaded CPython 3.5m

indexed_gzip-1.6.4-cp35-cp35m-manylinux1_i686.whl (2.6 MB view details)

Uploaded CPython 3.5m

indexed_gzip-1.6.4-cp35-cp35m-macosx_10_9_x86_64.whl (606.4 kB view details)

Uploaded CPython 3.5mmacOS 10.9+ x86-64

indexed_gzip-1.6.4-cp27-cp27mu-manylinux2010_x86_64.whl (2.2 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ x86-64

indexed_gzip-1.6.4-cp27-cp27mu-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 2.7mumanylinux: glibc 2.12+ i686

indexed_gzip-1.6.4-cp27-cp27mu-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 2.7mu

indexed_gzip-1.6.4-cp27-cp27mu-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 2.7mu

indexed_gzip-1.6.4-cp27-cp27m-manylinux2010_x86_64.whl (2.2 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ x86-64

indexed_gzip-1.6.4-cp27-cp27m-manylinux2010_i686.whl (2.1 MB view details)

Uploaded CPython 2.7mmanylinux: glibc 2.12+ i686

indexed_gzip-1.6.4-cp27-cp27m-manylinux1_x86_64.whl (2.2 MB view details)

Uploaded CPython 2.7m

indexed_gzip-1.6.4-cp27-cp27m-manylinux1_i686.whl (2.1 MB view details)

Uploaded CPython 2.7m

indexed_gzip-1.6.4-cp27-cp27m-macosx_10_9_x86_64.whl (610.2 kB view details)

Uploaded CPython 2.7mmacOS 10.9+ x86-64

File details

Details for the file indexed_gzip-1.6.4.tar.gz.

File metadata

  • Download URL: indexed_gzip-1.6.4.tar.gz
  • Upload date:
  • Size: 73.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4.tar.gz
Algorithm Hash digest
SHA256 97ea7740bc062682922ce98664a0d042e5fbfc5b9c1e79dd1ca5784383dbf0d3
MD5 b1c140f3205f2bad2f86082e63c711aa
BLAKE2b-256 660f12b2b7f10288507f78a4028db3e21a9f69bf2e03884e06ebc222a9f69ba4

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 349.1 kB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1c2af14611fdc8b799ded09fde402d767d40e9b56522ed3bb9ba4db56e1a83f4
MD5 ec24b2865a655d455bc5145e4171feae
BLAKE2b-256 c8188113390c5c87b53c0992726e16ecec50e81dc3d95429238ad111516c8e67

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp39-cp39-win32.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp39-cp39-win32.whl
  • Upload date:
  • Size: 304.3 kB
  • Tags: CPython 3.9, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 834dfff0db19f9a7d9e3a8d0fa73a0ed5ccf8d155773372f707d8adf43817cc9
MD5 b4be35d9843a493e1c5904b399e9b0e5
BLAKE2b-256 617989e5adc9c7578c3c295b9ed14382a23294f7bf78e40c27792ee282c11c24

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp39-cp39-manylinux2014_aarch64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp39-cp39-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.7 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp39-cp39-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9076fd9896919a11e0a603444d186062fd708efbdfb5d56258256e3ca0831d8a
MD5 884117023fcbc9b1b7e2515e865827b4
BLAKE2b-256 ad3489bd881c7d18ec8567f007a9de0dd38da45e853dfd1bef4e9b8d966b9650

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 b20e6c0f401f656889e2803c92e80e669070000ffd357f63f6700fb67d690c84
MD5 acfbe86ef1cb5d0a811340d09661707c
BLAKE2b-256 cd511554fc133c5872553c7b5b6296d01e616d892608f1eafeb09c08756d1bd0

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 24e40b13aeaaa4513dd61d3b6ca385ea7daa3712a1b9bb4bf7c45c637d3b59f1
MD5 5dedbe05996e4d01338b3a1806e75d98
BLAKE2b-256 c5de59ca37a9641075db3914e34b344de211a8e6d9d3b8fc8c20810943a92d53

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp39-cp39-manylinux1_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp39-cp39-manylinux1_x86_64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp39-cp39-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2b8d3dbbc4af7e885b7e376e56222cf6a3183f832189d6426b37dc7b326a3f5c
MD5 b857dad9d4adee40d817f4100afa6c11
BLAKE2b-256 8aff98767591306f45430a2d27a221690f426c5b83f6eaa322ce3ff6781717d4

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp39-cp39-manylinux1_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp39-cp39-manylinux1_i686.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.9
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp39-cp39-manylinux1_i686.whl
Algorithm Hash digest
SHA256 5bd9fc7762a71abb5c52af3784e81f3e418c94668f20deff5384aea68a771e6e
MD5 1ff2cba7324d318f406935add415b380
BLAKE2b-256 25f01625d3f7598b00ea649fc710f18a09c255b2266c8848fae018813c227237

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 590.2 kB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 72b027bf7529f6d2cf1c6e0be62802915b7d224e318a2e6811aa601d46070db4
MD5 6e0a60e57a11716ef3282c4b99c70e8b
BLAKE2b-256 5037ff169fb3533e8ceddc9cd01c1c370167af1f461164aedbb858fa95d0128a

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 687.7 kB
  • Tags: CPython 3.9, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 93d0d69c2bc51dda9edebfeea4df7b4867319eda42fc71583b740e5197d62d61
MD5 f25d42cebca13140d0cdcd9f0fae4b66
BLAKE2b-256 1d1daed21669cd9cb17636b396365099c81f022156011dacaab16b26f3048f16

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp39-cp39-macosx_10_9_universal2.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp39-cp39-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.3 MB
  • Tags: CPython 3.9, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp39-cp39-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 8cf4aa15ab2425769ca5a235efcb14c0ce9ca303a3a4dc86aac53d595c80e5bc
MD5 a3e720d95024b08457e86b2ad60226ec
BLAKE2b-256 6adca8044a7b4a3a0572788767684e23f12bea22c1722d2abd7b72d171718bdd

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 351.9 kB
  • Tags: CPython 3.8, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 8adf1d6688c689a470f7faeab44630eea77f05be6dbd7b430c7b8c06508f80c4
MD5 d02546fe11bf81a0b401becf2ede740f
BLAKE2b-256 2388d68952603834ba513fbc56840067695cc00149d1da6255f34b5999ede6fa

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp38-cp38-win32.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp38-cp38-win32.whl
  • Upload date:
  • Size: 307.0 kB
  • Tags: CPython 3.8, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 8049257c0301112b623da99163b7edc1fbe952f4ec06e26569ae96d4b02f9210
MD5 cf6b662fe4f352c135d2132f734e9efb
BLAKE2b-256 bad756c0132cc98073ea4106efaf61404129cb08f99dd37450331162b0f1315c

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp38-cp38-manylinux2014_aarch64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp38-cp38-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 4.7 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp38-cp38-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 fd1a7c66650cf4b0f98a0b076c3c8b596c6fc4562a895db076db02e8372102b5
MD5 88fc286ed19409646da26c628b0c3ecd
BLAKE2b-256 0eb152c1ba4309fdca2fbc023eebeaf9d8b41b4667ea1b6b9e0cd7dfd721b515

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 557003d846eb63962a70341e78cb6af4d63e5bd5eec6dd434347fe395a5b4884
MD5 510020f063a71ad084871534bbe6b6a5
BLAKE2b-256 8471d5879db69f372a197f8dd0c493bb31e20aea38a28d76bf8fbb33b5e5e183

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ab5f6e549fd9d796f762bae7e6d4d84321c16ffa625a7956a44b1e85661b2240
MD5 f548395242f8dd720dcd128719dff135
BLAKE2b-256 f811b535ae504cbeb6baec1ec3c1b3473792776d40f5c73ace070a48e9b60356

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 4.2 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9ce424701259065ee79f1b1e96dee86f82975c0e8de7374c29cbc53b718a6ce3
MD5 90ef397a200cc2c8ad7fab5ca81e93ef
BLAKE2b-256 83e10e7f58f024f22a73041683ba83da405816bfcdcab8ceafdba49864b7a1bc

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp38-cp38-manylinux1_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp38-cp38-manylinux1_i686.whl
  • Upload date:
  • Size: 3.8 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp38-cp38-manylinux1_i686.whl
Algorithm Hash digest
SHA256 6546adc8d67452b2fe62d3d613e5dd86a9763ff7a66d790aa03c9f05f6571bdf
MD5 a4d04f5bb8b3f96f606068585027c821
BLAKE2b-256 69637ee5009a6a8b9ff73d46d3285892ad3924164a40791407131b8ac7c613ff

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 580.1 kB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3308ac04577f3217d76b6b41e8da0b83363ea00b08bec8d135a23fb3b1e217b3
MD5 66e5fbcb41a901244790934f8f1b848c
BLAKE2b-256 c77396f1e51c271a0128e6e11332eee303e5eead66d35bb5e3ab3f2c7d906727

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 670.0 kB
  • Tags: CPython 3.8, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 af6aff6e3e3f414375fe8418c44506f005ddc91fb7d3a931370aa5c75067fb75
MD5 a39d9deeb28894ed707997784ad6c63a
BLAKE2b-256 bf79eacdcd6ebe2879e04425a1c0d4c4984a7b883b002426f2b37891094dc4f6

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp38-cp38-macosx_10_9_universal2.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp38-cp38-macosx_10_9_universal2.whl
  • Upload date:
  • Size: 1.2 MB
  • Tags: CPython 3.8, macOS 10.9+ universal2 (ARM64, x86-64)
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp38-cp38-macosx_10_9_universal2.whl
Algorithm Hash digest
SHA256 5045fe9436d3755d8c25926a28b64897c95e53d94f1c8a37e8e2850813e79732
MD5 293482317a9789dde3272ca5ca9a71eb
BLAKE2b-256 14c2def7829fe12116d3e743cb258ce354dea997fc785633ca79aff20752e2e5

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 321.1 kB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 8ac97e6fa2ce5e353327e42b6fbe4c07a1ffa6c38c5b2798b02093d62260d5fb
MD5 2f76349517177586e34363c41e62fdbc
BLAKE2b-256 5369b35a4eb23a4331fdde7a2b4c193f705dba2f6429deab233602c4fe2a75f5

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp37-cp37m-win32.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 284.1 kB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 e65a022d732a5e67e6214879974178bc441ca28d918c60d5265e433c42ed8abc
MD5 76728135b50b57f5a9659bdabddb215f
BLAKE2b-256 4aa58ae7446e5a25b2bd75224ffed13f1e4e0caef032d1462dd93782ec0e3c3a

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp37-cp37m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp37-cp37m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp37-cp37m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 2df839e7dda6876721ac6c918f1c55b4ccce9edeef2964115f77730ce60827e0
MD5 326f17d2b301022f0775fab32e5e3174
BLAKE2b-256 93a7c03ad05b0d54be22766bff3cb7ef8b92deba13a460be2995de494e30f6b9

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 893a36850332ed8df79c7d1e62efd19cc6fd9edf3c1c47f9b2a66446e26a50dd
MD5 c86a8f004a461bb8c1e37e91dbd4937d
BLAKE2b-256 3046a92e9af07b4829bffe467b20fe014f0c04ed08b7f60159a65f124acb5d34

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 b4f078cf5f388b9d4d531204d5e04e38e6a98781bc924048aca77c87a94a5031
MD5 fc9e739d78f01dd2462de0fc192dd5e4
BLAKE2b-256 031bc145b1f0073413375951e6319ffefd4f0185e6a4bdb80d55487a87595893

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 393689d5bc476fb10c436d4da403dc7af7f10d4d61210c2a8a80c7f4d9e486ff
MD5 f145d591f9dd6be06e662b242911065c
BLAKE2b-256 be82527f77f693af407be76518945ed58f0fe3b640dcf9ab57691942acf55a42

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 629db66632fc307cf3bf86cb05e17e927e8fb084139307f5c9f76fc511232d6f
MD5 0ab4132d9aacc47946aacd1efe991f2d
BLAKE2b-256 ca61c250d8d116dcccd56e82b2b5b43d249f417854e15ff6d0aa4929b2504c0d

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 644.9 kB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 73ea3a25c36137b0034dbf1d792e313a754abaeaf94c17ef70d90ad8bc85f60d
MD5 213c6f629a94fd7de6146a10ae2ac86a
BLAKE2b-256 d6c5631c8c85a710adbc5140d66605460ea433c8151ef994c6abc9100aeee7d7

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 319.5 kB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a11b03163b4b88cf473efb041e4f2f812e6210ed5fb7876aa8ac8a1c1708ce1d
MD5 d5a68d80c89b3db0aa2f228328c2baa6
BLAKE2b-256 6278b1af78c215520c07fdee0b6619ce67cd7c18e7dae71d2ceb00ca37d40901

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp36-cp36m-win32.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 284.5 kB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 58658dbf548c01354ec9a09d1bef9a1ca277b8fb4aa24d6bf73980199650d9c9
MD5 0184b626adec28da970378a1da6164d1
BLAKE2b-256 c17685a5cc1e11037c7ff608eb93533385690870c7120e0f1d82099fe87105a9

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp36-cp36m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp36-cp36m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp36-cp36m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f13c8d9148828891b72ca863af350860139387a17039e5c3fbcd8e6c6793d039
MD5 d09f2c95a24b3aa36396f3062b04045e
BLAKE2b-256 34a3c5936ec900ada72b2528b1b00a0440764d8aa3e70c8b9ea336c6f86d8863

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 c8920c74fc96f831ca57ff2e31a80e28cab1d9a4f52cc6535f548f88e7d40d3b
MD5 60c165499787c9991b05fa513af53fa5
BLAKE2b-256 d948b2892b572597315f65aacfe21ded7f90a13b5d9da5dc2251b8b926e6b3c8

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 a57343a93b9e7de70066c008ad98f1c70329e5553e3aeee55a536261fd38acb9
MD5 d1b97b5cb869b339a8cbda56bbdd17ad
BLAKE2b-256 14f0b63e09704ccb2fb833308197deb25cab0469a591818b546a8531d40a3b79

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e41ba158615e23229ba2ba801c8d47434be5b164f71f6785a2e773f912d0cbbb
MD5 f5c6322a0a19b30183e878d34699b924
BLAKE2b-256 84fbc5e7ff1e145afa8b53e321fd614144be85bdc9d0945ccd13f3f619ab766f

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 7da3dc671cccbfd2f55dbb3c1038b75b4faed502cd9a80f633aa4a74b699bf26
MD5 46b85c0f698f2946e5ec13317580d4b9
BLAKE2b-256 0e3c7d44b5dde4636218d08b399410baebaf0574b40ee7e639401b39336fc257

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 633.5 kB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e95d4cee36b11d93e0ccb63caf6fee0788ca4bf4b2712906656b1ffbb47f91fc
MD5 2383c01c94c06969b21acf61e4e32fcd
BLAKE2b-256 51d16f768c5e79293735945a793d47b8535ab11f6798b4d6066b8da5800063f2

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 295.9 kB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 2f8d8a9ff4ac135d76dc679c06e95a8d64a95e4519cdea382939dbbace6dc5ab
MD5 d1bb371766912352f649b8c258330441
BLAKE2b-256 03924b9dedcaa20645e878c2c71caa0ec669d19adeb2e99f923cab8d7965335c

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp35-cp35m-win32.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 263.4 kB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 be8aaf87130cd689d5aab1626708d0bd9b170eb3fc7805d76d8584d11ecfcb22
MD5 888bd4a26ceb62b57349852b154d3342
BLAKE2b-256 114f20cdf9177fa851a458adafa19161dc91a206e3800a05d933a6916252090f

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp35-cp35m-manylinux2014_aarch64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp35-cp35m-manylinux2014_aarch64.whl
  • Upload date:
  • Size: 3.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp35-cp35m-manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 8a15b3ceb93565f212f4c21f2d95b6d7c498cb99e3e8171a785149dcda2bb484
MD5 233034a93e5f3326c62cd62eaf502ef6
BLAKE2b-256 a8e83656fdb25b2b2fa9e0507478a17845668200d7a049e016f86ce7ccf5f09b

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp35-cp35m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp35-cp35m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp35-cp35m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 52bdcadea74cea0ea09bd24b6480e7baa519258d0fd7ed59579eac766d66b748
MD5 26ed728e1f53a2c78d71deb2bb4b724d
BLAKE2b-256 6a6ca180ee6090270f92ab5304c45a1475c6c6287913a9f429eab5dab38bbbe3

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp35-cp35m-manylinux2010_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp35-cp35m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp35-cp35m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 09bead6536f18e1166df34be3d9ee145c3b8d68960150027e0d089f2fc05c2b8
MD5 16acdcccad05b42132121d0fa8279eef
BLAKE2b-256 d6ecc4a415adc3e2ddc43706e361d3280ddf683102dc02485a27cdf06240b37a

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.7 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1dbfa408277a511714e926ddeb9948b6373d7177f7b5a9690a7425a39ea7adc3
MD5 dfbf9173937563aa2cfebcb2be0734a9
BLAKE2b-256 b8f7fb6b78e60da61549a7d8cc5b199d94a1e5654ef6ff9547c0fbf9146b1ca8

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.6 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 4f277479f15102567a0c18f7a50dd0f1019bc50995e4154140051e291a60004a
MD5 b3039450fe615471b22e9b427906cb0c
BLAKE2b-256 71c9df410dd60031c00a9ec207b5d541f7bfe436b1e8c1fb7950bb5ab3f80c72

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 606.4 kB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84e1e8b46128a80b6db3b1152e4fef7833b075dbdd6f3a7bebfab96ac34bbc9a
MD5 30f06937a4f0071736c232069ba53983
BLAKE2b-256 289f1291efe0835d94dbb52b4c6aae0885993e82da9094cb0116aa0c75c186ed

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp27-cp27mu-manylinux2010_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp27-cp27mu-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp27-cp27mu-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 0c771b9d669f906fad2e05abb587cfe0f18c98a57466a804a706377f35897a44
MD5 916068bf99379834ea59cf3a78ea2101
BLAKE2b-256 6b064ae94002ef1e4539c3d64ddf4ba9ba14cdbb0ad1b488d8b9ea0e8d76799d

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp27-cp27mu-manylinux2010_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp27-cp27mu-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7mu, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp27-cp27mu-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 1001e912674d6831271684a081c0892e4ae4703ea453882016b6d3d1be6b45e5
MD5 7a5acde87cfd7b64d3007d35822f1ed6
BLAKE2b-256 22be3c6f12696188855b843cf46a16082ef196007d935071a925bc4d8dd1dc75

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 e4db857e95a549cbec171900b69609973b5da0dd9bc100080b432a3001dd9ab7
MD5 8a9034b30091a4a88b79a487c28df113
BLAKE2b-256 bd71614fc14509d68a1aa396273653e41ede28f5dfd2a85a5f0e0bb1fc5c2587

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 e9c7d87835352cb4b990c41df563ddf201a1115c70cc28836007ee754be1864b
MD5 b4d22be82c8b397f56f96af9e7ce4d51
BLAKE2b-256 f1b9f58f0d5aeacb9fe512c37321dae679bc555a17c116d9887e2692fdc82254

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp27-cp27m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp27-cp27m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp27-cp27m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 6cd34b5045e392bf4570c51407bfc4b241239750a1b07d1182781b42ce5feabf
MD5 82d6fa91216f14aaebca66b4b356e552
BLAKE2b-256 f7b7cb0a138f54483a6cf69ca46e2b61bfb67ef98a5035587e97ff811e3d738e

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp27-cp27m-manylinux2010_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp27-cp27m-manylinux2010_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m, manylinux: glibc 2.12+ i686
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp27-cp27m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 ed6487f46dd64872f6df1bd49d05dd7b7946805e38a274258ff63fa0a9033586
MD5 f312bf04af2a1638ff22a3617eda0ee7
BLAKE2b-256 d98d620cc4bc8a0e6205e372ddf6605e663b4b1624b429783397a017947f4fc5

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp27-cp27m-manylinux1_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp27-cp27m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp27-cp27m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 9adcb8df2a355fad397d195ee6c9c29ee19744c11a341c84e572089ea4172f89
MD5 635ca7cfd177ff9ef91be0926fa9c720
BLAKE2b-256 0030a90db801e194722bffa8b3e5bf3aab90c0bdea4dd262c6f3e3117ddbf223

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp27-cp27m-manylinux1_i686.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp27-cp27m-manylinux1_i686.whl
  • Upload date:
  • Size: 2.1 MB
  • Tags: CPython 2.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp27-cp27m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 1ef346f3a375061694220bbadb526e933020f3869b2f796c4162a246fbbcbe3f
MD5 8aa06976f91f34a5971c197c7c018332
BLAKE2b-256 b902eee60ba9aab034945b0e6d34e82f6fd477107381a36a8b327f052f2a8f00

See more details on using hashes here.

File details

Details for the file indexed_gzip-1.6.4-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: indexed_gzip-1.6.4-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 610.2 kB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.8.12

File hashes

Hashes for indexed_gzip-1.6.4-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 9e699d63428d83ae660124df012154839a23ad19333880fcd3cfa9935e4d4291
MD5 3df702db8532360c20be3804a2617404
BLAKE2b-256 4f1245f6c083e661a4329c1c70f9a41e920aafe199f59598a7c78df52351b028

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