Skip to main content

The SmartSignal lib is an event driven system similar to QT.

Project description

Smart Signals

Build codecov PyPi version License: MIT

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

SmartSignals-0.2.0.tar.gz (5.0 kB view details)

Uploaded Source

Built Distribution

SmartSignals-0.2.0-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

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

Hashes for SmartSignals-0.2.0.tar.gz
Algorithm Hash digest
SHA256 f179776e2cfd86882933fa0f9bf5967aad4af7cb7cab862265f86b02e3eb96c7
MD5 4b4f98c906bd892bb3a989d198dea87f
BLAKE2b-256 57b4d538b682ecaa7833c6e4044cf911607c7eaba0ddaf93a45cc104bed020f1

See more details on using hashes here.

File details

Details for the file SmartSignals-0.2.0-py3-none-any.whl.

File metadata

File hashes

Hashes for SmartSignals-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 52f32d14a081ba0780feffc3dfbc0c0fb76013e1d6ec067109a8c666b229c6e5
MD5 a858277d6e0ec3c04c75fa45d4e744dd
BLAKE2b-256 9d4e3150cb183a3a14c9a69af626f91ee8117553330be2b6102cfbe466cc94c0

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page