indexed-gzip 1.7.0-1build1 source package in Ubuntu

Changelog

indexed-gzip (1.7.0-1build1) lunar; urgency=medium

  * No-change rebuild with Python 3.11 only

 -- Graham Inggs <email address hidden>  Fri, 17 Mar 2023 09:35:07 +0000

Upload details

Uploaded by:
Graham Inggs
Uploaded to:
Lunar
Original maintainer:
Debian Python Team
Architectures:
any
Section:
misc
Urgency:
Medium Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Mantic release universe misc
Lunar release universe misc

Downloads

File Size SHA-256 Checksum
indexed-gzip_1.7.0.orig.tar.gz 101.4 KiB dbe9f4040c46574c894cb4a96a0fffce82ff672caec78753d76d906189ade4d5
indexed-gzip_1.7.0-1build1.debian.tar.xz 5.7 KiB 1984ca7e77a254e914c5c647a400bea05bf14362bca7e2500d3edeaedfd5a0fe
indexed-gzip_1.7.0-1build1.dsc 2.2 KiB 89da2fcba4242beaae9f5a851066acea41096264abbd3952534a961b807e9b60

View changes file

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