
    Yh                     (    S r SSKJrJrJrJr  / SQrg)aN  
pyee supplies a `EventEmitter` class that is similar to the
`EventEmitter` class from Node.js. In addition, it supplies the subclasses
`AsyncIOEventEmitter`, `TwistedEventEmitter` and `ExecutorEventEmitter`
for supporting async and threaded execution with asyncio, twisted, and
concurrent.futures Executors respectively, as supported by the environment.

# Example

```text
In [1]: from pyee.base 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]:
```

    )EventEmitterHandler	PyeeErrorPyeeExceptionN)__doc__	pyee.baser   r   r   r   __all__     ?/var/www/html/env/lib/python3.13/site-packages/pyee/__init__.py<module>r      s   6 F E
Cr   