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
>>> started = signal('round-started')
>>> def each(round):
... print "Round %s!" % round
...
>>> started.connect(each)
>>> def round_two(round):
... print "This is round two."
...
>>> started.connect(round_two, sender=2)
>>> for round in range(1, 4):
... started.send(round)
...
Round 1!
Round 2!
This is round two.
Round 3!
Links
Documentation: https://blinker.readthedocs.io/
PyPI Releases: https://pypi.org/project/blinker/
Source Code: https://github.com/pallets-eco/blinker/
Issue Tracker: https://github.com/pallets-eco/blinker/issues/
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
blinker-1.5.tar.gz
(27.0 kB
view hashes)
Built Distribution
blinker-1.5-py2.py3-none-any.whl
(12.5 kB
view hashes)
Close
Hashes for blinker-1.5-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1eb563df6fdbc39eeddc177d953203f99f097e9bf0e2b8f9f3cf18b6ca425e36 |
|
MD5 | b1303e0bd4d64f34cb7e9be8214a4522 |
|
BLAKE2b-256 | 3041caa5da2dbe6d26029dfe11d31dfa8132b4d6d30b6d6b61a24824075a5f06 |