A simple async event bus in Python
Project description
Py Async Bus
A simple async event bus in Python
Installing
Install with pip:
$ pip install py-async-bus
Usage
from async_bus import EventBus
bus = EventBus()
@bus.subscribe('event_name')
async def subscriber(param):
print(param)
bus.emit('event_name', param='test_param')
Disable subscriber
If you want to disable subscribers while testing for example, you can set the env ASYNC_BUS_ENABLE_SUBSCRIBERS to false.
$ ASYNC_BUS_ENABLE_SUBSCRIBERS=false python -m unittest
Tests
$ python -m unittest
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
py-async-bus-0.0.3.tar.gz
(2.5 kB
view details)
File details
Details for the file py-async-bus-0.0.3.tar.gz.
File metadata
- Download URL: py-async-bus-0.0.3.tar.gz
- Upload date:
- Size: 2.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/53.1.0 requests-toolbelt/0.9.1 tqdm/4.58.0 CPython/3.8.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
00fc8a806f7737aa1cf4ea2ce5a6526bbaf29909e7c933a0334035c5dc9cf39a
|
|
| MD5 |
e09a73bfd5a045136f66c1053abf3988
|
|
| BLAKE2b-256 |
5c9d2afb2040b4631beef830f596fee9c5374f522c3fd354b7a84adf6e01d9e2
|