Fast, simple object-to-object and broadcast signaling
Project description
Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or “signals”.
Signal receivers can subscribe to specific senders or receive signals sent by any sender.
>>> from blinker import Signal >>> signal = Signal() >>> def each(round): ... print "Round %s!" % round ... >>> signal.connect(each) >>> def round_two(round): ... print "This is round two." ... >>> signal.connect(round_two, sender=2)>>> for round in range(1, 4): ... signal.send(round) ... Round 1! Round 2! This is round two. Round 3!
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
blinker-0.8.tar.gz
(9.8 kB
view details)
File details
Details for the file blinker-0.8.tar.gz
.
File metadata
- Download URL: blinker-0.8.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 262256946fc67237de1f974261aab30cd1ece8b4fce251909b2bdd18318b1ed4 |
|
MD5 | fdea85957452fe9b48c34e5efbaf398e |
|
BLAKE2b-256 | 666e59a9fcfdaea1b6f16654b7242687e292b34aa145ece7520bc3b0649a1443 |