Questions tagged [lzip]

Lzip is a data file format and software for lossless compression, implementing Lempel–Ziv–Markov chain algorithm (LZMA). It was designed with a focus on both data integrity and decoder availability. It is designed as a drop-in replacement for other popular compression software such as gzip or bzip2.

lzip is a data file format and software for lossless compression, implementing the Lempel–Ziv–Markov chain algorithm (LZMA).

The file format was designed with a focus on both data integrity and decoder availability. The output file usually has the .lz filename extension, and the data is described by the MIME type application/x-lzip.

The original software implementation has been designed, written and tested with great care to replace gzip and bzip2 as the standard general-purpose compressed format for UNIX-like systems. In particular, its command-line user interface closely follows the syntax of the aforementioned UNIX compression tools. Additionally, owing to the LZMA performance, the compression ratio and speed trade-offs are typically more favorable than those of gzip or bzip2.

The lzip suite of programs was written in C++ and C by Antonio Diaz Diaz and is being distributed as free software under the terms of version 2 or later of the GNU General Public License (GPL).

More info is available at Wikipedia.

9 questions
5
votes
0 answers

Libarchive: how to compress an archive on windows?

I am trying to create a compressed archive on windows with libarchive and at the moment it is not working. I can create zip or pax_restricted(tar) archives without compression, without any problems. To add compression I've tried some combinations of…
0xfeedbacc
  • 301
  • 2
  • 9
1
vote
1 answer

Extract LZIP (.lz)

I would like to extract a JSON file compressed with Lzip (.lz). I have tried with untar, unzip, and the archive library, sadly none of them work. download.file(url = "https://parltrack.org/dumps/ep_votes.json.lz", destfile =…
JMCrocs
  • 77
  • 7
1
vote
0 answers

ImportError: cannot import name 'lzip'

A script I'm running is failing at one of my imports, and I can't figure out why. The offending line of code is: from pandas.compat import lzip Error message: ImportError: cannot import name 'lzip' This script is being run in a conda virtual…
Tea
  • 21
  • 6
0
votes
1 answer

How to decompress lzip in python

I have a string that I have compressed in javascript using lz-string. compress.js var compressed = LZString.compress('abc'); I can decompress it in javascript using console.log(LZString.decompress(compressed)); I have copied the compressed string…
Psionman
  • 3,084
  • 1
  • 32
  • 65
0
votes
1 answer

Using lzip with Svelte

I have a string that I wish to compress in Svelte and to expand later in python. I am have problems importing lzip into Svelte package.json "dependencies": { ... "lzip": "^1.0.10", ... } App.Svelte