Metadata-Version: 1.1
Name: DAD
Version: 1.0.2
Summary: Deliver Asynchronous Data
Home-page: http://github.com/globocom/dad
Author: Globo.com
Author-email: semantica@corp.globo.com
License: GNU GPLv2
Download-URL: https://pypi.python.org/pypi/DAD
Description: DAD - Deliver Asynchronous Data
        ================================
        
        Used to notify MOM (Message Oriented Middleware), throught STOMP (Simple Text Oriented Messaging Protocol).
        
        Example of usage
        ----------------
        
        ::
        
            from dad.mom import Middleware
            from dad.event import SemanticEvent
        
        
            middleware = Middleware(host="localhost", port=61613)
            event = SemanticEvent(
                instance="http://dbpedia.org/Nina",
                klass="http://dbpedia.org/Dog",
                graph="http://dbpedia.org/animal",
                action="a")
            middleware.notify(event)
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
