Metadata-Version: 1.1
Name: prophy
Version: 0.4.2
Summary: prophy: fast serialization protocol
Home-page: https://github.com/aurzenligl/prophy
Author: Krzysztof Laskowski
Author-email: krzysztof.laskowski@nsn.com
License: MIT license
Description: Prophy is a statically typed, binary, tag-free, unpacked serialization protocol.
        
        You can define message schema::
        
            //test.prophy
            struct Test
            {
                u16 x<>;
            };
        
        generate codec for chosen language::
        
            prophyc --python_out . test.prophy
        
        and serialize data::
        
            >>> import test
            >>> msg = test.Test()
            >>> msg.x[:] = [1, 2, 3, 4]
            >>> msg.encode('<')
            '\x04\x00\x00\x00\x01\x00\x02\x00\x03\x00\x04\x00'
        
        Documentation: http://prophy.readthedocs.org
        
        Issues: https://github.com/aurzenligl/prophy/issues
        
Keywords: idl codec binary data protocol compiler
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Unix
Classifier: Operating System :: Microsoft :: Windows
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: C++
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator
Requires: ply
