Your application components can communicate by sending and listening to events.
Project description
PyEventDispatcher
master | develop | PyPI | Python | Licence |
---|---|---|---|---|
PyEventDispatcher allows your application components to communicate with each other by sending events and listening to them. Inspiration for this library was Symfony's event-dispatcher component.
Disclaimer
Library is in very early stage of development. A lot of things can change or might not work as expected, which includes breaking changes.
Easiest example
from pyeventdispatcher import dispatch, Event, register
register("foo.bar", lambda event: print(f"{event.name}::{event.data}"))
dispatch(Event("foo.bar", "some data"))
# foo.bar::some data
Installation
pip install pyeventdispatcher
Listeners
Any callable can be registered as listener,
the only requirements is that it takes one parameter, event
.
Below function is simplest example of listener you can define:
def my_listener(event):
print(event.name)
Registering global listener
There is several ways of registering your global listener, you can mix styles or keep one across whole application.
register
function
from pyeventdispatcher import register
def my_func(event):
print(event.name)
register("foo.bar", my_func)
register("bar.foo", my_func, -100)
listen
decorator
from pyeventdispatcher import listen
@listen("foo.bar", ("bar.foo", -100))
def my_func(event):
print(event.name)
By extending EventSubscriber
class
from pyeventdispatcher import EventSubscriber, register_event_subscribers
class MySubscriber(EventSubscriber):
EVENTS = {"foo.bar": "execute_one", "bar.foo": ("execute_two", -100)}
@staticmethod
def execute_one(event):
print(event.name)
@staticmethod
def execute_two(event):
print(event.name)
register_event_subscribers() # Register your classes
Local listeners
In most of the cases your application will only need one global registration of listeners that is used across whole application.
Buf if you need, you can initialise as many instances of EventDispatcher as you wish. Everyone of them will have local registry of listeners.
from pyeventdispatcher import EventDispatcher, register
# Register listener in global registry
register("foo.bar", lambda event: print("global listener"))
# Initialise instances of local EventDispatcher
py_event_dispatcher_1 = EventDispatcher()
py_event_dispatcher_1.register("foo.bar", lambda event: print("event dispatcher 1"))
py_event_dispatcher_2 = EventDispatcher()
py_event_dispatcher_2.register("foo.bar", lambda event: print("event dispatcher 2"))
Registering listeners with execution priority
Listeners are executed in order of priority parameter's value, which by default is set to "0".
You can change priority of registered listener to define in which order it will be executed.
from pyeventdispatcher import register
register("foo.bar", lambda event: print("second"))
register("foo.bar", lambda event: print("first "), -100)
# first second
Dispatching an event
When you dispatch your event, every registered listener that listens for occurrence of specified event, will be called with event object as parameter.
Dispatching global event
from pyeventdispatcher import dispatch, Event, register
register("foo.bar", lambda event: print(event.name))
dispatch(Event("foo.bar", {"id": 1}))
Dispatching local event
from pyeventdispatcher import EventDispatcher, Event, register
register("foo.bar", lambda event: print(f"{event.name}::global"))
# Initialise separated instance
py_event_dispatcher = EventDispatcher()
py_event_dispatcher.register("foo.bar", lambda event: print(f"{event.name}::local"))
# Dispatch event to both global and local listeners
py_event_dispatcher.dispatch(Event("foo.bar"))
# foo.bar::global
# foo.bar::local
# Dispatch event to local listeners only
py_event_dispatcher.dispatch(Event("foo.bar"), False)
# foo.bar::local
Stopping propagation
Sometimes you might want to stop propagation of event, for that you just have to set event.stop
to True
,
In example below only first_listener
will be executed.
from pyeventdispatcher import register
def first_listener(event):
event.stop = True
print("first_listener")
def second_listener(event):
print("first_listener")
register("foo.bar", first_listener)
register("foo.bar", second_listener)
# first_listener
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distribution
File details
Details for the file pyeventdispatcher-0.2.3a0-py3-none-any.whl
.
File metadata
- Download URL: pyeventdispatcher-0.2.3a0-py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.21.0 setuptools/40.6.2 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 902830665bde2248d60c8dcf78d2e2fdfc34d9642e757ace8ff6f6143855aad7 |
|
MD5 | f60cde1ee29a53fe31d87720abc67bbd |
|
BLAKE2b-256 | 239785b1eb12fe401afd03a9629a788ae6198b73ede682caef316142faab7bb1 |