Metadata-Version: 1.0
Name: binstream
Version: 1.0
Summary: 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.
Home-page: http://pypi.python.org/pypi/binstream/
Author: Simon Wittber
Author-email: simonwittber@gmail.com
License: MIT
Description: 
        |    import binstream
        |
        |    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))
        
Platform: UNKNOWN
