Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 649 Bytes

README.md

File metadata and controls

28 lines (22 loc) · 649 Bytes

pyvlq

pyvlq is a Python library for encoding and decoding Variable-Length Quantity.

The library is available on PyPI and can be installed using pip:

pip install pyvlq

Usage

from io import BytesIO
import pyvlq

# Encode
encoded = pyvlq.encode(128)
print(encoded) # b'\x81\x00'

# Decode
decoded = pyvlq.decode(encoded)
print(decoded) # 128

# Decode from readable bytes
buffer = BytesIO(b'\x81\x00\xff\xff')
decoded = pyvlq.decode_stream(buffer)
print(decoded) # 128 (0xff\xff is ignored)
print(buffer.read(2)) # b'\xff\xff' (0xff\xff is left in the buffer)