indexed-gzip 1.6.4-2 source package in Ubuntu

Changelog

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

  * Team upload.
  * Move package to Debian Python Team
  * Remove Alex Waite from Uploaders (no changelog entry)

 -- Andreas Tille <email address hidden>  Sun, 02 Jan 2022 08:25:36 +0100

Upload details

Uploaded by:
Debian Python Team
Uploaded to:
Sid
Original maintainer:
Debian Python Team
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-2.dsc 2.2 KiB d1e7c804e8a6f2fcd5f5edf928b4b033cacc6c138be64b21e5d279620f50a3f9
indexed-gzip_1.6.4.orig.tar.gz 99.7 KiB b97201ad65edc46d5f2335ac96646bc12e2acc7706394c93eccdb058fe286eb8
indexed-gzip_1.6.4-2.debian.tar.xz 5.3 KiB 3813b0020431a9f280e8536950075ac38e4b1587e3259b2c307c7b80f51b574f

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