Skip to main content

LEB128(Little Endian Base 128)

Project description

LEB128

LEB128 or Little Endian Base 128 is a form of variable-length code compression used to store an arbitrarily large integer in a small number of bytes. LEB128 is used in the DWARF debug file format and the WebAssembly binary encoding for all integer literals.

$ pip3 install leb128

leb128 has been used in pywasm and emscripten.

Example

import io
import leb128

# unsigned leb128
assert leb128.u.encode(624485) == bytearray([0xe5, 0x8e, 0x26])
assert leb128.u.decode(bytearray([0xe5, 0x8e, 0x26])) == 624485
assert leb128.u.decode_reader(io.BytesIO(bytearray([0xe5, 0x8e, 0x26]))) == (624485, 3)

# signed leb128
assert leb128.i.encode(-123456) == bytearray([0xc0, 0xbb, 0x78])
assert leb128.i.decode(bytearray([0xc0, 0xbb, 0x78])) == -123456
assert leb128.i.decode_reader(io.BytesIO(bytearray([0xc0, 0xbb, 0x78]))) == (-123456, 3)

Performance

Since I used the most optimized algorithm, it is likely to be the fastest among all pure Python implementations of leb128. The detailed results can refer to the table, which is the result of using a very low-performance CPU.

Case Duration
U encode 1000000 times 0.865 s
U decode 1000000 times 0.808 s
I encode 1000000 times 0.762 s
I decode 1000000 times 0.835 s

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

leb128-1.0.6.tar.gz (3.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

leb128-1.0.6-py3-none-any.whl (4.0 kB view details)

Uploaded Python 3

File details

Details for the file leb128-1.0.6.tar.gz.

File metadata

  • Download URL: leb128-1.0.6.tar.gz
  • Upload date:
  • Size: 3.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for leb128-1.0.6.tar.gz
Algorithm Hash digest
SHA256 d29e3c80743e910f1b5d57e3e05b5c83348115bad65086f4689c1946680e96cd
MD5 8ac9dffe2c9e50b5b62a5bef9e3804c9
BLAKE2b-256 bfd9b165e4298a022504c0a505d2e8cb267940276f33d3b462930ac17bd0f38c

See more details on using hashes here.

File details

Details for the file leb128-1.0.6-py3-none-any.whl.

File metadata

  • Download URL: leb128-1.0.6-py3-none-any.whl
  • Upload date:
  • Size: 4.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.11.4

File hashes

Hashes for leb128-1.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 39793b00f9c87a5559a42e4bc2199c24630377aecbaa03513433c0d7f17a0cbf
MD5 ec6249812d0be8c62205b94903bf22a5
BLAKE2b-256 146142ff7802102d3044449f140ad026317068a54271d03d15d2a15205cf29e2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page