Skip to main content

Binstream is used for serializing and deserializing basic types. It is compatible with the .NET System.IO.BinaryReader and BinaryWriter classes, and is useful as a bridge when exchanging data with the .NET framework.

Project description

import binstream

stream = binstream.BinaryWriter()
stream += 1234
stream += 0.0
stream += “Hello, Binstream!”
data = stream.serial()
stream = binstream.BinaryReader(data)
print(stream.read(int))
print(stream.read(float))
print(stream.read(str))

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

binstream-1.0.3.tar.gz (2.2 kB view hashes)

Uploaded Source

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