• Stars
    star
    105
  • Rank 328,196 (Top 7 %)
  • Language
    C
  • Created almost 13 years ago
  • Updated over 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

LZ4 bindings for python

python-lz4

https://secure.travis-ci.org/steeve/python-lz4.png?branch=master

Overview

This package provides bindings for the lz4 compression library by Yann Collet.

Code specific to this project is covered by the BSD 3-Clause License

Install

The package is hosted on PyPI:

$ pip install lz4
$ easy_install lz4

Usage

The library is pretty simple to use:

>>> import lz4
>>> compressed_data = lz4.dumps(data)
>>> data == lz4.loads(compressed_data)
True
>>>

Methods and Constants

The bindings provides some aliases too:

>>> import lz4
>>> lz4.LZ4_compress == lz4.compress == lz4.dumps
True
>>> lz4.LZ4_uncompress == lz4.uncompress == z4.decompress == lz4.loads
True
>>> lz4.VERSION == lz4.__version__  # e.g. "0.7.0"
True
>>>

Is it fast ?

Yes. Here are the results on my 2011 Macbook Pro i7 with lz4.c as input data:

$ python tests/bench.py
Data Size:
  Input: 24779
  LZ4: 10152 (0.41)
  Snappy: 9902 (0.40)
  LZ4 / Snappy: 1.025247
Benchmark: 200000 calls
  LZ4 Compression: 9.737272s
  Snappy Compression: 18.012336s
  LZ4 Decompression: 2.686854s
  Snappy Decompression : 5.146867s

Important note

Because LZ4 doesn't define a container format, the python bindings will insert the original data size as an integer at the start of the compressed payload, like most bindings do anyway (Java...)

https://cruel-carlota.pagodabox.com/d37459f4fce98f2983589a1c1c23a4e4

More Repositories

1

france.code-civil

Le code civil français sous git
2,656
star
2

angular-seo

SEO for AngularJS apps made easy.
1,060
star
3

plugin.video.pulsar

Pulsar addon for XBMC/Kodi
Python
544
star
4

xbmctorrent

Torrent streaming for XBMC - This project has been replaced by Pulsar
Python
387
star
5

france.code-penal

Le Code pénal français, sous Git
136
star
6

dwmaxx2

Get Windows 7 windows as DirectX textures
C++
120
star
7

cross-compiler

Dockerfiles for cross compiling environments
Shell
106
star
8

libtorrent-go

SWIG Go bindings for libtorrent-rasterbar
C++
103
star
9

torrent2http

Torrent to HTTP client for https://github.com/steeve/xbmctorrent
Go
75
star
10

itool

Single binary easy and composable iOS device interaction CLI
Go
72
star
11

france.code-procedure-penale

Le Code de procédure pénale français, sous Git
71
star
12

rupy

Python inside Ruby, the unholy alliance!
Ruby
59
star
13

docker-opencv

OpenCV on Docker
Shell
59
star
14

ToneLoc

Public non-official repository of the famous ToneLoc wardialer
C
49
star
15

pulsar

Pulsar Daemon
Go
47
star
16

script.pulsar.dummy

Dummy sample provider for Pulsar
Python
38
star
17

docker-lemp

nginx + PHP5-FPM + MariaDB + supervisord on Docker
Shell
36
star
18

aml-imgpack

Resource packer/unpacker for Amlogic Logo image files
Python
22
star
19

legifrance2json

Legifrance crawler that dumps JSON out of french legal Codes
19
star
20

ryzentosh

OpenCore Configuration for Ryzen 3950x with ASUS Crosshair VIII Hero (Wi-Fi) X570
Shell
18
star
21

msr605

Python interface for the MSR605 magnetic card reader
Python
17
star
22

dwmaxx

DWM Hacking for Windows Vista! => DEPRECATED, GO TO https://github.com/steeve/dwmaxx2
C
16
star
23

legifrance-go

Go package to manipulate legifrance dump files
Go
15
star
24

libtorrent

Mirror of libtorrent-rasterbar's SVN https://svn.code.sf.net/p/libtorrent/code/
C++
13
star
25

macos-virt

Toying around virtualising macOS for development purposes
Go
11
star
26

oculusstreetview

Fork of Oculus Street View to work with vr.js
JavaScript
11
star
27

cascading.cassandra

Cassandra Tap for Cascading!
9
star
28

seastar-rs

Experimenting with seastar and rust
Rust
8
star
29

broadcaster

Broadcast (one to many, fanout) messaging with payloads for Go
Go
7
star
30

docker-i2p

i2prouter in docker (work in progress)
Shell
3
star
31

xbmctorrent-repo

Repository for XBMCtorrent
Go
3
star
32

docker-svn2git

svn2git Docker image
2
star
33

docker-heka

Heka in a container
2
star
34

bazel_libcpp_android_issue

Python
1
star
35

steeve.github.io

My blog
HTML
1
star
36

scrapy-lxmlselector

Lxml Selector for Scrapy
1
star
37

seastar-bazel

Experiments in building a seastar app with bazel
1
star
38

quivotequoi

4tehlulz
JavaScript
1
star