| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 | Metadata-Version: 2.1Name: aiosignalVersion: 1.3.2Summary: aiosignal: a list of registered asynchronous callbacksHome-page: https://github.com/aio-libs/aiosignalMaintainer: aiohttp team <team@aiohttp.org>Maintainer-email: team@aiohttp.orgLicense: Apache 2.0Project-URL: Chat: Gitter, https://gitter.im/aio-libs/LobbyProject-URL: CI: GitHub Actions, https://github.com/aio-libs/aiosignal/actionsProject-URL: Coverage: codecov, https://codecov.io/github/aio-libs/aiosignalProject-URL: Docs: RTD, https://docs.aiosignal.orgProject-URL: GitHub: issues, https://github.com/aio-libs/aiosignal/issuesProject-URL: GitHub: repo, https://github.com/aio-libs/aiosignalClassifier: License :: OSI Approved :: Apache Software LicenseClassifier: Intended Audience :: DevelopersClassifier: Programming Language :: PythonClassifier: Programming Language :: Python :: 3Classifier: Programming Language :: Python :: 3 :: OnlyClassifier: Development Status :: 5 - Production/StableClassifier: Operating System :: POSIXClassifier: Operating System :: MacOS :: MacOS XClassifier: Operating System :: Microsoft :: WindowsClassifier: Framework :: AsyncIORequires-Python: >=3.9Description-Content-Type: text/x-rstLicense-File: LICENSERequires-Dist: frozenlist>=1.1.0=========aiosignal=========.. image:: https://github.com/aio-libs/aiosignal/workflows/CI/badge.svg   :target: https://github.com/aio-libs/aiosignal/actions?query=workflow%3ACI   :alt: GitHub status for master branch.. image:: https://codecov.io/gh/aio-libs/aiosignal/branch/master/graph/badge.svg   :target: https://codecov.io/gh/aio-libs/aiosignal   :alt: codecov.io status for master branch.. image:: https://badge.fury.io/py/aiosignal.svg   :target: https://pypi.org/project/aiosignal   :alt: Latest PyPI package version.. image:: https://readthedocs.org/projects/aiosignal/badge/?version=latest   :target: https://aiosignal.readthedocs.io/   :alt: Latest Read The Docs.. image:: https://img.shields.io/discourse/topics?server=https%3A%2F%2Faio-libs.discourse.group%2F   :target: https://aio-libs.discourse.group/   :alt: Discourse group for io-libs.. image:: https://badges.gitter.im/Join%20Chat.svg   :target: https://gitter.im/aio-libs/Lobby   :alt: Chat on GitterIntroduction============A project to manage callbacks in `asyncio` projects.``Signal`` is a list of registered asynchronous callbacks.The signal's life-cycle has two stages: after creation its contentcould be filled by using standard list operations: ``sig.append()``etc.After you call ``sig.freeze()`` the signal is *frozen*: adding, removingand dropping callbacks is forbidden.The only available operation is calling the previously registeredcallbacks by using ``await sig.send(data)``.For concrete usage examples see the `Signals<https://docs.aiohttp.org/en/stable/web_advanced.html#aiohttp-web-signals>section of the `Web Server Advanced<https://docs.aiohttp.org/en/stable/web_advanced.html>` chapter of the `aiohttpdocumentation`_.Installation------------::   $ pip install aiosignalThe library requires Python 3.8 or newer.Documentation=============https://aiosignal.readthedocs.io/Communication channels======================*gitter chat* https://gitter.im/aio-libs/LobbyRequirements============- Python >= 3.8- frozenlist >= 1.0.0License=======``aiosignal`` is offered under the Apache 2 license.Source code===========The project is hosted on GitHub_Please file an issue in the `bug tracker<https://github.com/aio-libs/aiosignal/issues>`_ if you have found a bugor have some suggestions to improve the library... _GitHub: https://github.com/aio-libs/aiosignal.. _aiohttp documentation: https://docs.aiohttp.org/
 |