indexed-gzip 1.6.3-1 source package in Ubuntu

Changelog

indexed-gzip (1.6.3-1) unstable; urgency=medium

  * Team upload.
  * New upstream version

 -- Nilesh Patra <email address hidden>  Sun, 19 Sep 2021 20:12:10 +0530

Upload details

Uploaded by:
Debian Med
Uploaded to:
Sid
Original maintainer:
Debian Med
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section

Downloads

File Size SHA-256 Checksum
indexed-gzip_1.6.3-1.dsc 2.2 KiB 4bd8a0dbad956691ebb730e7d65e3d7edc5343f6e8a54434552d36ade01b7a0c
indexed-gzip_1.6.3.orig.tar.gz 94.8 KiB d1ce5ae8741e379bc692253fe6b6d27e2cc2c6d834cc59e3ad476c8486c1100d
indexed-gzip_1.6.3-1.debian.tar.xz 5.2 KiB 867bfd56c28c310d48d645b8976b9306f2f214424dcb5af5913a2b6d80c957dc

No changes file available.

Binary packages built by this source

python3-indexed-gzip: fast random access of gzip files in Python

 Drop-in replacement `IndexedGzipFile` for the built-in Python `gzip.GzipFile`
 class that does not need to start decompressing from the beginning of the
 file when for every `seek()`. It 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 to start reading
 from any seek point. If the index is built with a seek point spacing of 1MB,
 only 512KB (on average) of data have to be decompressed to read from any
 location in the file.
 .
 This package provides the Python 3 module.

python3-indexed-gzip-dbgsym: debug symbols for python3-indexed-gzip