Skip to main content

A convenient wrapper around the `struct` python module. It contains convenient reader and writer classes that can be used to write primitive data types in a specific byte order.

Project description

PyBinIO

PyBinIO - is a wrapper around the struct python module. It contains convenient reader and writer classes that can be used to write primitive data types in a specific byte order.

In addition it supports:

  • LEB128 for encoding unsigned variable length integers.
  • Zigzag for encoding signed variable length integers.

Install

The package is available on PyPI.

$ python3 -m pip install pybinio

Usage

import binio

value = 255
writer = binio.BinaryWriter(binio.ByteOrder.LITTLE)
writer.write_uint8(value)

reader = binio.BinaryReader(writer.bytes, binio.ByteOrder.LITTLE)
assert value == reader.read_uint8()

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

pybinio-0.1.3.linux-x86_64.tar.gz (8.8 kB view hashes)

Uploaded Source

Built Distribution

pybinio-0.1.3-py3-none-any.whl (18.2 kB view hashes)

Uploaded Python 3

Supported by

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