Metadata-Version: 1.1
Name: pyee-topics
Version: 0.0.9
Summary: A port of node.js's EventEmitter to python with mqtt topics support.
Home-page: https://github.com/eagleamon/pyee-topics (https://github.com/jesusabdullah/pyee)
Author: Joseph Piron (Joshua Holbrook)
Author-email: joseph.piron@gmail.com (josh.holbrook@gmail.com)
License: UNKNOWN
Description: pyee
        ======
        
        pyee supplies an event_emitter object that acts similar to the `EventEmitter`
        that comes with node.js.
        
        Example
        -------
        
        ::
        
            In [1]: from pyee import EventEmitter
        
            In [2]: ee = EventEmitter()
        
            In [3]: @ee.on('event')
               ...: def event_handler():
               ...:     print 'BANG BANG'
               ...:
        
            In [4]: ee.emit('event')
            BANG BANG
        
            In [5]:
        
        Easy-peasy.
        
        There is also the possibility to use mqtt topic patterns to match events
        
        For more, visit <https://github.com/jesusabdullah/pyee> .
        
        
Keywords: events,emitter,node.js,node,eventemitter,event_emitter,mqtt,patterns,topics
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Other/Nonlisted Topic
