An event driven middleware library for Python
Project description
.. image:: https://travis-ci.org/CloudVE/pyeventsystem.svg?branch=master :target: https://travis-ci.org/CloudVE/pyeventsystem :alt: build status
.. image:: https://codecov.io/gh/CloudVE/pyeventsystem/branch/master/graph/badge.svg :target: https://codecov.io/gh/CloudVE/pyeventsystem :alt: coverage status
pyeventsystem
pyeventsystem is an event-driven middleware library for Python. In addition to providing a mechanism for subscribing and listening to events, it also provides a mechanism for intercepting functions, thus making it suitable for writing middleware. By intercepting functions, middleware can be injected before, after or even replacing the original function. It also provides capabilities for grouping related event handlers into middleware classes, making it easier to manage installable middleware.
Simple Example
.. code-block:: python
from pyeventsystem.middleware import SimpleMiddlewareManager
from pyeventsystem.middleware import dispatch
from pyeventsystem.middleware import observe
class MyMiddleWare(object):
def __init__(self, event_dispatcher):
self.events = event_dispatcher
@dispatch("a.series.of.unfortunate.events", priority=2500)
def perform_villainy(self, name):
return "Drop ACME Anvil on " + name
@observe("a.series.of.unfortunate.events", priority=2400)
def pre_log_villainy(self, event_args, name):
print("Prepping for villainy: " + name)
@observe("*.unfortunate.events", priority=2600)
def post_log_villainy(self, event_args, name):
print("Result of villainy: {0}".format(event_args['result']))
manager = SimpleMiddlewareManager()
myobj = MyMiddleWare(manager.events)
manager.add(myobj)
myobj.perform_villainy("RoadRunner")
In this example, we have intercepted the perform_villainy
function, and
observed the function both before and after execution.
The output is:
.. code-block:: console
Prepping for villainy: RoadRunner
Result of villainy: Drop ACME Anvil on RoadRunner
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 Distribution
Built Distribution
File details
Details for the file pyeventsystem-0.1.0.tar.gz
.
File metadata
- Download URL: pyeventsystem-0.1.0.tar.gz
- Upload date:
- Size: 13.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4a3d199759a040d2cd17f8b4293cc1c3f3c2ae50ae531fb5f9f955a895fca8b9 |
|
MD5 | 66d5a1c1f8fa897ce5e58612d6bc195b |
|
BLAKE2b-256 | b51ef7499ca118bd5186072fffc3922ae58abe501c4633b1d6da25e30b16b841 |
File details
Details for the file pyeventsystem-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: pyeventsystem-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 15.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/2.7.15
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2a651eca3ec0b7e8600e2d4f042ab519b2d3bf74969e783b7a51fb87c506a7a6 |
|
MD5 | 0d7facdc929343147da4eafc647afc8e |
|
BLAKE2b-256 | e5d399dac9569f8e90c21889a6d91d187404eb831ceef4638c98c3ff8915ae44 |