A simple typed event bus written in pure python
Project description
Yet another event bus - yaeb for short
A simple typed event bus written in pure python
Installation
Install yaeb with pip
pip install yaeb
Usage/Examples
from logging import info
from yaeb.base.bus import BaseEventBus
from yaeb.base.events import BaseEvent
from yaeb.base.handlers import BaseSyncEventHandler
from yaeb.bus import DictEventHandlerRegistry, EventBus
class UserCreated(BaseEvent):
user_id: int
def __init__(self, user_id: int) -> None:
self.user_id = user_id
class UserCreatedHandler(BaseSyncEventHandler[UserCreated]):
def handle_event(self, event: UserCreated, bus: BaseEventBus) -> None:
info('User with id=%d was created!', event.user_id)
if __name__ == '__main__':
bus = EventBus(event_handler_registry=DictEventHandlerRegistry())
bus.register(event_type=UserCreated, event_handler=UserCreatedHandler())
bus.emit(UserCreated(user_id=1)) # prints log message with created user id
Roadmap
- Add coroutines support - Added
BaseAsyncEventHandler
- Add some kind of multithreading support. Though it can be implemented by handlers themselves 🤔 - Added
BaseExecutorEventHandler
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
yaeb-1.0.0.tar.gz
(4.7 kB
view details)
Built Distribution
yaeb-1.0.0-py3-none-any.whl
(6.7 kB
view details)
File details
Details for the file yaeb-1.0.0.tar.gz
.
File metadata
- Download URL: yaeb-1.0.0.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.1 CPython/3.10.7 Linux/5.15.0-1020-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a00ce0bae4e9b9095c944bcad7b6bd394ec4e704b806f4fe6e2211f3ce86fa3a |
|
MD5 | eea9179df945d9c09c73a4890f6bb6d4 |
|
BLAKE2b-256 | fcf5dcf161698b92a518c72f3aab2668126eab3fee017c6aaae7b3f30d38534f |
File details
Details for the file yaeb-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: yaeb-1.0.0-py3-none-any.whl
- Upload date:
- Size: 6.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.2.1 CPython/3.10.7 Linux/5.15.0-1020-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | a28f1bc7e5c15c48b0da67448b4fe7a1a261bb66271b059a7f1e4bf413b16cae |
|
MD5 | b0bfa6d030b1b914a8e7cc75a2aca31c |
|
BLAKE2b-256 | 95b86bd0bbb63d8b5bb13b523743199b96f6972c53887fd63497f7951ac11f1e |