blob: 2e503cd59c12d6140d0f0169f471bd6aa311b830 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
Pyzstd module provides classes and functions for compressing and
decompressing data, using Facebook’s Zstandard (or zstd as short name)
algorithm.
The API style is similar to Python’s bz2/lzma/zlib modules.
Includes zstd v1.5.5 source code
Can also dynamically link to zstd library provided by system, see this
note.
Has a CFFI implementation that can work with PyPy
ZstdFile class has C language level performance
Supports Zstandard Seekable Format
Has a command line interface: python -m pyzstd --help
|