1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
# Getting Started
pyee is a rough port of
[node.js's EventEmitter](https://nodejs.org/api/events.html). Unlike its
namesake, it includes a number of subclasses useful for implementing async
and threaded programming in python, such as async/await.
## Install
You can install this project into your environment of choice using `pip`:
pip install pyee
## Some Links
* [API Docs](./api.md)
* [Changelog](./changelog.md)
* [Fork Me On GitHub](https://github.com/jfhbrook/pyee)
* [These Very Docs on readthedocs.io](https://pyee.rtfd.io)
|