Events-asyncio
This is a modification of Events library_ that adds support for asyncio.
Unlike the original library, this modification only supports Python 3.5+.
The C# language provides a handy way to declare, subscribe to and fire events. Technically, an event is a "slot" where callback functions (event handlers) can be attached to - a process referred to as subscribing to an event. Here is a handy package that encapsulates the core to event subscription and event firing and feels like a "natural" part of the language.
.. code-block:: pycon
>>> async def something_changed(reason):
... await some_awaitable()
... print "something changed because %s" % reason
...
>>> from events import Events
>>> events = Events()
>>> events.on_change += something_changed
Multiple callback functions can subscribe to the same event. When the event is fired, all attached event handlers are invoked in sequence. To fire the event, perform a call on the slot:
.. code-block:: pycon
>>> await events.on_change('it had to happen')
'something changed because it had to happen'
By default, Events does not check if an event can be subscribed to and fired. You can predefine events by subclassing Events and listing them. Attempts to subscribe to or fire an undefined event will raise an EventsException.
.. code-block:: pycon
>>> class MyEvents(Events):
... __events__ = ('on_this', 'on_that', )
>>> events = MyEvents()
# this will raise an EventsException as `on_change` is unknown to MyEvents:
>>> events.on_change += something_changed
You can also predefine events for a single Events instance by passing an iterator to the constructor.
.. code-block:: pycon
>>> events = Events(('on_this', 'on_that'))
# this will raise an EventsException as `on_change` is unknown to events:
>>> events.on_change += something_changed
Installing
Events is on PyPI so all you need to do is: ::
pip install asyncio-events
Testing
Just run: ::
python setup.py test
License
Asyncio-events is BSD licensed. See the LICENSE_ for details.
Attribution
Based on Events library by Nicola Iarocci.
.. _LICENSE: https://github.com/pyeve/events/blob/master/LICENSE
.. _Zoran Isailovski: http://code.activestate.com/recipes/410686/
.. _Nicola Iarocci: https://github.com/nicolaiarocci
.. _Events Library: https://github.com/pyeve/events
Release files for asyncio-events 0.1.4
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| asyncio-events-0.1.4.tar.gz | 5.4 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| asyncio_events-0.1.4-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 16.2 kB
Release files / asyncio-events-0.1.4.tar.gz
| Download URL | asyncio-events-0.1.4.tar.gz |
|---|---|
| Size | 5.4 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
8c25f2cc4cea72107e937ef80a28f309022dbc692d086cdb9a8f242be1d2c48a
|
|
BLAKE2b-256 checksum How to use checksums |
e4f45187707adefdd025442be0fe29a7dc4815ba609cee2dff05c82cd0575742
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
|
Release files / asyncio_events-0.1.4-py3-none-any.whl
| Download URL | asyncio_events-0.1.4-py3-none-any.whl |
|---|---|
| Size | 10.8 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
9746c8825700d227dacbe7cf347d4f4b42e2eb0a711ad387a7785472f8fa843c
|
|
BLAKE2b-256 checksum How to use checksums |
6b8f6b437f52ecafa1f7d68da2684bb9b9ce557460e8d80d1194333ac8a067b1
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/46.1.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.3
|