The SmartSignal lib is an event driven system similar to QT.
Project description
Smart Signals
This is a small lib for the signal-slot-pattern. This corresponds to a modification of the observer pattern. It originally comes from QT.
The input types are checked to ensure that they also correspond to the definition. The default python data types (str, int, float, list) and also the typing data types (List[str], Dict[str, int]) are supported. In addition, the log can be used to track which signal called which slot for error diagnosis.
Install
You can install this package with pip tool from https://pypi.org/.
pip install SmartSignals
Usage
import logging
from smart_signals import SmartSignal, SmartSignalSlot
logging.basicConfig(level=logging.DEBUG, format="%(asctime)s | %(levelname)-10.10s | %(name)-30.30s | %(message)s")
class Test:
@SmartSignalSlot(str)
def slot(self, message: str):
print(message)
pass
test = Test()
signal = SmartSignal(str)
signal.connect(test.slot)
signal.emit("message")
Log output
2022-06-07 21:16:52 | DEBUG | SmartSignal | emit signal from: .\PySignals\smart_signals_tests\test_smart_signals.py:test_py_signal_check_emit_type_string:145 to slot <function TestPySignal.test_py_signal_check_emit_type_string.<locals>.signal_slot_with_typ_list_of_string at 0x000001B9259A6F70>
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 SmartSignals-0.2.0.tar.gz
.
File metadata
- Download URL: SmartSignals-0.2.0.tar.gz
- Upload date:
- Size: 5.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f179776e2cfd86882933fa0f9bf5967aad4af7cb7cab862265f86b02e3eb96c7 |
|
MD5 | 4b4f98c906bd892bb3a989d198dea87f |
|
BLAKE2b-256 | 57b4d538b682ecaa7833c6e4044cf911607c7eaba0ddaf93a45cc104bed020f1 |
File details
Details for the file SmartSignals-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: SmartSignals-0.2.0-py3-none-any.whl
- Upload date:
- Size: 5.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.13
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52f32d14a081ba0780feffc3dfbc0c0fb76013e1d6ec067109a8c666b229c6e5 |
|
MD5 | a858277d6e0ec3c04c75fa45d4e744dd |
|
BLAKE2b-256 | 9d4e3150cb183a3a14c9a69af626f91ee8117553330be2b6102cfbe466cc94c0 |