Simple and small library to broadcast signals with typing support
Project description
Signalbus
Simple and small library to broadcast signals with typing support
Features:
- Async support
- Full typing support (get errors)
- Small (around 100 lines of code) and fast
- You may incapsulate some logic inside a signal
Why another library?
Other signals library don't have a good typing support.
Installation
$ pip install signalbus
Usage
from signalbus import create_signal
# Create a signals
# Just define a (generator) function and wrap it with `signalbus.create_signal`
@create_signal
def order_changed(order_status: str, *, order_id: int): #
"""
The function contains the signal code.
Feel free to do some operations before and after the sending.
Pay attention to the function's params
All receivers for the signal have to be able to accept the same params.
Typing libraries will show you errors.
"""
# first, you have to get `emit` to be able to send the signal
emit = yield
# then send the signal to the receivers (you may want to skip it in some cases)
res: list = emit(order_status, order_id=order_id)
# you may check the results, do some additional work, etc
# Register a receiver for the signal
# The receiver has to have the same params (types will be checked)
@order_changed.register
def notify_user(order_status: str, *, order_id: int):
...
@order_changed.register
def update_stats(order_status: str, *, order_id: int):
...
# To send the signal just call it like a function with all required params
order_changed('done', order_id=42)
Async Signals
Everything is almost the same except async/await
from signalbus import create_signal
@create_signal
async def order_changed(order_status: str, *, order_id: int):
emit = yield
res: list = await emit(order_status, order_id=order_id)
# Receiver has to be async too
@order_changed.register
async def notify_user(order_status: str, *, order_id: int):
...
@order_changed.register
async def update_stats(order_status: str, *, order_id: int):
...
# Do not forget to await the signal
await order_changed('done', order_id=42)
Filter signals by arguments
You may set any arguments to filter a receiver with the register function. The receiver would be called only when corresponding arguments match.
Let's consider the following example:
from signalbus import create_signal
@create_signal
async def order_changed(order_status: str, *, order_id: int):
emit = yield
res: list = await emit(order_status, order_id=order_id)
# pay attention to that we define an attribute in register
@order_changed.register('done')
async def notify_user(order_status: str, *, order_id: int):
...
@order_changed.register
async def update_stats(order_status: str, *, order_id: int):
...
await order_changed('done', order_id=42) # both the receivers above will be called
await order_changed('cancel', order_id=42) # only update stats will be called
Mypy support
For better typing with mypy, you have to set correct returning type for your signals:
from signalbus import create_signal
from typing import Generator, AsyncGenerator
@create_signal
def sync_signal() -> Generator:
emit = yield
res: list = await emit()
@create_signal
async def async_signal() -> AsyncGenerator:
emit = yield
res: list = await emit()
No need to do it with Pyright, because the Pyright calculates the types correctly
Bug tracker
If you have any suggestions, bug reports or annoyances please report them to the issue tracker at https://github.com/klen/signalbus/issues
Contributing
Development of The library happens at: https://github.com/klen/signalbus
License
Licensed under a MIT license
Project details
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 signalbus-0.2.4.tar.gz
.
File metadata
- Download URL: signalbus-0.2.4.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.10.6 Linux/5.15.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9d1959c84b275048788a7fb2cabd27e83971d95ecccc42bd64554eb592a53c8a |
|
MD5 | 1f75603117cd0a87c64b1389aef2dfbd |
|
BLAKE2b-256 | b78bd54744b86dd4e893015c4f80108f7dc4c011cb17fb4082c99cb25a0d9dbf |
File details
Details for the file signalbus-0.2.4-py3-none-any.whl
.
File metadata
- Download URL: signalbus-0.2.4-py3-none-any.whl
- Upload date:
- Size: 3.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.4.1 CPython/3.10.6 Linux/5.15.0-1034-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3a12d19df0cb0faff05de0967e047944d212a253a3b9b7faccecf0c88f6a1af8 |
|
MD5 | 6e04e8eb87cdf563628d11978aba344c |
|
BLAKE2b-256 | 8d2656ec731f03f49330d607f8ee72705555f61da5387482d565be6be313f77d |