indexed-gzip 1.6.4-1 source package in Ubuntu

Changelog

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

  * Team upload.
  * New upstream version 1.6.4

 -- Nilesh Patra <email address hidden>  Tue, 02 Nov 2021 00:06:53 +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.4-1.dsc 2.2 KiB 5b62b9201f3dc1b2e3b12472c1f8f2fe5156985ea7a9e9df1260a483f8d1a7c5
indexed-gzip_1.6.4.orig.tar.gz 99.7 KiB b97201ad65edc46d5f2335ac96646bc12e2acc7706394c93eccdb058fe286eb8
indexed-gzip_1.6.4-1.debian.tar.xz 5.3 KiB e81d252ff45bb417318bc76ed1acecd1b50dc19748557c140494d711cab6e68b

Available diffs

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