Indexed Zstd 1.6.1 | Coderz Repository

indexed-zstd 1.6.1

Last updated:

0 purchases

indexed-zstd 1.6.1 Image
indexed-zstd 1.6.1 Images

Free

Languages

Categories

Add to Cart

Description:

indexedzstd 1.6.1

indexed_zstd
This module provides an IndexedZstdFile class, which can be used to seek inside zstd files without having to decompress them first.
It's shamelessy based on indexed_bzip2, which was refactored to support zstd instead of bzip2 using libzstd-seek.
Kudos to the author for its work.
Seeking inside a block is only emulated, so IndexedZstdFile will only speed up seeking when there are more than one block.
To create multi-block archives you may use t2sz.
Usage
Example 1
from indexed_zstd import IndexedZstdFile

file = IndexedZstdFile( "example.zst" )

# You can now use it like a normal file
file.seek( 123 )
data = file.read( 100 )

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product: (if this is empty don't purchase this product)

Customer Reviews

There are no reviews.