Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | - | - | ||||
.github/workflows/ | 25-Apr-2025 | - | 35 | 34 | ||
docs/ | 25-Apr-2025 | - | 634 | 267 | ||
pyee/ | 25-Apr-2025 | - | 1,049 | 775 | ||
tests/ | 25-Apr-2025 | - | 990 | 640 | ||
typings/twisted/python/ | 25-Apr-2025 | - | 6 | 4 | ||
.gitignore | D | 25-Apr-2025 | 146 | 16 | 15 | |
.readthedocs.yaml | D | 25-Apr-2025 | 147 | 13 | 9 | |
Android.bp | D | 25-Apr-2025 | 1 KiB | 40 | 36 | |
CHANGELOG.rst | D | 25-Apr-2025 | 6.7 KiB | 241 | 175 | |
CONTRIBUTORS.rst | D | 25-Apr-2025 | 518 | 17 | 14 | |
DEVELOPMENT.rst | D | 25-Apr-2025 | 2.5 KiB | 124 | 76 | |
LICENSE | D | 25-Apr-2025 | 1.1 KiB | 22 | 17 | |
MANIFEST.in | D | 25-Apr-2025 | 177 | 9 | 8 | |
METADATA | D | 25-Apr-2025 | 374 | 19 | 17 | |
MODULE_LICENSE_MIT | D | 25-Apr-2025 | 0 | |||
Makefile | D | 25-Apr-2025 | 1.6 KiB | 49 | 37 | |
OWNERS | D | 25-Apr-2025 | 44 | 3 | 2 | |
README.rst | D | 25-Apr-2025 | 811 | 39 | 26 | |
environment.yml | D | 25-Apr-2025 | 222 | 15 | 14 | |
package-lock.json | D | 25-Apr-2025 | 1,010 | 38 | 37 | |
package.json | D | 25-Apr-2025 | 523 | 23 | 22 | |
pyproject.toml | D | 25-Apr-2025 | 98 | 7 | 5 | |
pytest.ini | D | 25-Apr-2025 | 50 | 4 | 3 | |
requirements.txt | D | 25-Apr-2025 | 25 | 2 | 1 | |
requirements_dev.txt | D | 25-Apr-2025 | 292 | 15 | 14 | |
requirements_docs.txt | D | 25-Apr-2025 | 49 | 4 | 3 | |
setup.cfg | D | 25-Apr-2025 | 51 | 4 | 3 | |
setup.py | D | 25-Apr-2025 | 1.3 KiB | 41 | 34 | |
tox.ini | D | 25-Apr-2025 | 121 | 10 | 8 |
README.rst
1pyee 2==== 3 4.. image:: https://travis-ci.org/jfhbrook/pyee.png 5 :target: https://travis-ci.org/jfhbrook/pyee 6.. image:: https://readthedocs.org/projects/pyee/badge/?version=latest 7 :target: https://pyee.readthedocs.io 8 9pyee supplies a ``EventEmitter`` object that is similar to the 10``EventEmitter`` class from Node.js. It also supplies a number of subclasses 11with added support for async and threaded programming in python, such as 12async/await as seen in python 3.5+. 13 14Docs: 15----- 16 17Autogenerated API docs, including basic installation directions and examples, 18can be found at https://pyee.readthedocs.io . 19 20Development: 21------------ 22 23See ``DEVELOPMENT.rst``. 24 25Changelog: 26---------- 27 28See ``CHANGELOG.rst``. 29 30Contributors: 31------------- 32 33See ``CONTRIBUTORS.rst``. 34 35License: 36-------- 37 38MIT/X11, see ``LICENSE``. 39