generated from kgod/ai-review-template
提交
This commit is contained in:
@@ -0,0 +1 @@
|
||||
pip
|
||||
@@ -0,0 +1,81 @@
|
||||
Metadata-Version: 2.4
|
||||
Name: pyee
|
||||
Version: 13.0.1
|
||||
Summary: A rough port of Node.js's EventEmitter to Python with a few tricks of its own
|
||||
Author-email: Josh Holbrook <josh.holbrook@gmail.com>
|
||||
License: MIT
|
||||
Project-URL: Repository, https://github.com/jfhbrook/pyee
|
||||
Project-URL: Documentation, https://pyee.readthedocs.io
|
||||
Keywords: events,emitter,node.js,node,eventemitter,event_emitter
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Development Status :: 4 - Beta
|
||||
Classifier: Intended Audience :: Developers
|
||||
Classifier: License :: OSI Approved :: MIT License
|
||||
Classifier: Operating System :: OS Independent
|
||||
Classifier: Programming Language :: Python
|
||||
Classifier: Programming Language :: Python :: 3
|
||||
Classifier: Programming Language :: Python :: 3.8
|
||||
Classifier: Programming Language :: Python :: 3.9
|
||||
Classifier: Programming Language :: Python :: 3.10
|
||||
Classifier: Programming Language :: Python :: 3.11
|
||||
Classifier: Programming Language :: Python :: 3.12
|
||||
Classifier: Programming Language :: Python :: 3.13
|
||||
Classifier: Topic :: Other/Nonlisted Topic
|
||||
Requires-Python: >=3.8
|
||||
Description-Content-Type: text/markdown
|
||||
License-File: LICENSE
|
||||
Requires-Dist: typing-extensions
|
||||
Provides-Extra: dev
|
||||
Requires-Dist: build; extra == "dev"
|
||||
Requires-Dist: flake8; extra == "dev"
|
||||
Requires-Dist: flake8-black; extra == "dev"
|
||||
Requires-Dist: pytest; extra == "dev"
|
||||
Requires-Dist: pytest-asyncio; python_version >= "3.4" and extra == "dev"
|
||||
Requires-Dist: pytest-trio; python_version >= "3.7" and extra == "dev"
|
||||
Requires-Dist: black; extra == "dev"
|
||||
Requires-Dist: isort; extra == "dev"
|
||||
Requires-Dist: jupyter-console; extra == "dev"
|
||||
Requires-Dist: mkdocs; extra == "dev"
|
||||
Requires-Dist: mkdocs-include-markdown-plugin; extra == "dev"
|
||||
Requires-Dist: mkdocstrings[python]; extra == "dev"
|
||||
Requires-Dist: mypy; extra == "dev"
|
||||
Requires-Dist: sphinx; extra == "dev"
|
||||
Requires-Dist: toml; extra == "dev"
|
||||
Requires-Dist: tox; extra == "dev"
|
||||
Requires-Dist: trio; extra == "dev"
|
||||
Requires-Dist: trio; python_version > "3.6" and extra == "dev"
|
||||
Requires-Dist: trio-typing; python_version > "3.6" and extra == "dev"
|
||||
Requires-Dist: twine; extra == "dev"
|
||||
Requires-Dist: twisted; extra == "dev"
|
||||
Requires-Dist: validate-pyproject[all]; extra == "dev"
|
||||
Dynamic: license-file
|
||||
|
||||
# pyee
|
||||
|
||||
[](https://pyee.readthedocs.io/en/latest/?badge=latest)
|
||||
|
||||
pyee supplies a `EventEmitter` object that is similar to the
|
||||
`EventEmitter` class from Node.js. It also supplies a number of subclasses
|
||||
with added support for async and threaded programming in python, such as
|
||||
async/await.
|
||||
|
||||
## Docs
|
||||
|
||||
Autogenerated API docs, including basic installation directions and examples,
|
||||
can be found at <https://pyee.readthedocs.io>.
|
||||
|
||||
## Development
|
||||
|
||||
See [DEVELOPMENT.md](./DEVELOPMENT.md).
|
||||
|
||||
## Changelog
|
||||
|
||||
See [CHANGELOG.md](./CHANGELOG.md).
|
||||
|
||||
## Contributors
|
||||
|
||||
See [CONTRIBUTORS.md](./CONTRIBUTORS.md).
|
||||
|
||||
## License
|
||||
|
||||
MIT/X11, see [LICENSE](./LICENSE).
|
||||
@@ -0,0 +1,23 @@
|
||||
pyee-13.0.1.dist-info/INSTALLER,sha256=zuuue4knoyJ-UwPPXg8fezS7VCrXJQrAP7zeNuwvFQg,4
|
||||
pyee-13.0.1.dist-info/METADATA,sha256=dRLQY9YMtAUSSmxf3SxojXikxraEG47rAKWUdO9Z1Dw,2951
|
||||
pyee-13.0.1.dist-info/RECORD,,
|
||||
pyee-13.0.1.dist-info/WHEEL,sha256=YCfwYGOYMi5Jhw2fU4yNgwErybb2IX5PEwBKV4ZbdBo,91
|
||||
pyee-13.0.1.dist-info/licenses/LICENSE,sha256=H_VWyiBrEH8Q4cVirkVNMpLgKWw1EOuQ638RTK7jKmY,1080
|
||||
pyee-13.0.1.dist-info/top_level.txt,sha256=hov5uXKrxopmrFiHhTSgmAziIT8XnGk1q2fdcdSvREg,5
|
||||
pyee/__init__.py,sha256=qk-ajt5GGKsAW2C_h1F2ntQku9xlrgpl7QJa6-utm4E,762
|
||||
pyee/__pycache__/__init__.cpython-312.pyc,,
|
||||
pyee/__pycache__/asyncio.cpython-312.pyc,,
|
||||
pyee/__pycache__/base.cpython-312.pyc,,
|
||||
pyee/__pycache__/cls.cpython-312.pyc,,
|
||||
pyee/__pycache__/executor.cpython-312.pyc,,
|
||||
pyee/__pycache__/trio.cpython-312.pyc,,
|
||||
pyee/__pycache__/twisted.cpython-312.pyc,,
|
||||
pyee/__pycache__/uplift.cpython-312.pyc,,
|
||||
pyee/asyncio.py,sha256=WypGZhsA8Ih277n_TZXBolGMWDn60Ns9xBDUV_x0dK8,5655
|
||||
pyee/base.py,sha256=Sznk1ha6Jt8TnUxvQ8NeZQp7OwGpHFy8Zd0d6vuJK28,8547
|
||||
pyee/cls.py,sha256=dYIcwfuzann6Kb7rLgz0mmScIu6fF0CeoocoJXYnuNA,2952
|
||||
pyee/executor.py,sha256=VmpbuIjbdRqgwyi2hlEPy5Twa2t_HKXpRNUCWc7yw_U,2528
|
||||
pyee/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
||||
pyee/trio.py,sha256=wzjtBJADDOOa-Mc0nhffL3J_xowe3FOuis1cwnVVGLs,4608
|
||||
pyee/twisted.py,sha256=jt8sGSMw9Ow7sHg1Tk9Xr9b3DIJBvIN_KQQ5vG0-d9M,2979
|
||||
pyee/uplift.py,sha256=CYNVA5Zei86pVi64v0J4-liB6wNqaFesZ39AU6op4fw,6580
|
||||
@@ -0,0 +1,5 @@
|
||||
Wheel-Version: 1.0
|
||||
Generator: setuptools (82.0.0)
|
||||
Root-Is-Purelib: true
|
||||
Tag: py3-none-any
|
||||
|
||||
@@ -0,0 +1,21 @@
|
||||
The MIT License (MIT)
|
||||
|
||||
Copyright (c) 2021 Josh Holbrook
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in
|
||||
all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
||||
THE SOFTWARE.
|
||||
@@ -0,0 +1 @@
|
||||
pyee
|
||||
Reference in New Issue
Block a user