Metadata-Version: 1.0
Name: pyee
Version: 0.0.5
Summary: A port of node.js's EventEmitter to python.
Home-page: https://github.com/jesusabdullah/pyee
Author: Joshua Holbrook
Author-email: 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 Event_emitter
        
            In [2]: ee = Event_emitter()
        
            In [3]: @ee.on('event')
               ...: def event_handler():
               ...:     print 'BANG BANG'
               ...:     
        
            In [4]: ee.emit('event')
            BANG BANG
        
            In [5]: 
        
        Easy-peasy.
        
        For more, visit <https://github.com/jesusabdullah/pyee> .
            
Keywords: events,emitter,node.js
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
