Metadata-Version: 1.0
Name: gramme
Version: 0.1.0
Summary: Elegant UDP messaging
Home-page: http://weighted-random.github.com/wr/
Author: Daniel Waardal
Author-email: waawal@boom.ws
License: BSD
Description: ======
        gramme
        ======
        
        A elegant way to pass volatile data around over `UDP (datagrammes) <https://en.wikipedia.org/wiki/User_Datagram_Protocol>`_ serialized with `msgpack <http://msgpack.org/>`_
        
        Example Server
        --------------
        ::
        
            from gramme import server
        
            @server(3030)
            def handler(data)
                print data
        
        Example Client
        --------------
        ::
        
            from gramme import client
        
            clnt = client(host="132.23.x.x", port=3030)
        
            some_data = {'i am': 'a dict'}
        
            clnt.send(some_data)
        
        
        Installation
        ------------
        
        Install *gramme* with pip:
        
        ::
        
            $ pip install greenbalance
        
        
        License
        -------
        
        BSD
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: System :: Distributed Computing
Classifier: Topic :: System :: Systems Administration
