Skip to main content

No project description provided

Project description

BinaryStream

BinaryStream library for python

What is it?

This is a library for convenient serialization of standard C/C++ types similar to that used for example in RakNet protocol.

Installation

For Linux/Mac

pip3 install binary-stream

For Windows

pip install binary-stream

Usage

Example

from binary_stream import BinaryStream

write_stream = BinaryStream()

write_stream.write_int8(42)
write_stream.write_bool(True)
write_stream.write_bool(True)

data = write_stream.get_buffer()
print(data.hex())

read_stream = BinaryStream(data)

print(read_stream.read_int8())
print(read_stream.read_bool())
print(read_stream.read_bool())

Credits

This project is inspired by binary_utils

License

This project is open sourced under MIT license, see the LICENSE file for more details.

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

binary-stream-1.0.1.tar.gz (3.5 kB view hashes)

Uploaded Source

Built Distribution

binary_stream-1.0.1-py3-none-any.whl (3.4 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