python-blinker
Port variant v11
Summary Fast object/object and broadcast signaling (3.11)
Package version 1.7.0
Homepage https://blinker.readthedocs.io
Keywords python
Maintainer Python Automaton
License Not yet specified
Other variants v12
Ravenports Buildsheet | History
Ravensource Port Directory | History
Last modified 07 NOV 2023, 17:43:29 UTC
Port created 06 MAY 2023, 22:24:12 UTC
Subpackage Descriptions
single Blinker ======= 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. .. code-block:: pycon >>> from blinker import signal >>> started = signal('round-started') >>> def each(round): ... print(f"Round {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/ - Changes: https://blinker.readthedocs.io/#changes - PyPI Releases: https://pypi.org/project/blinker/ - Source Code: https://github.com/pallets-eco/blinker/ - Issue Tracker: https://github.com/pallets-eco/blinker/issues/
Configuration Switches (platform-specific settings discarded)
PY311 ON Build using Python 3.11 PY312 OFF Build using Python 3.12
Package Dependencies by Type
Build (only) python-pip:single:v11
autoselect-python:single:standard
Build and Runtime python311:single:standard
Download groups
main mirror://PYPIWHL/fa/2a/7f3714cbc6356a0efec525ce7a0613d581072ed6eb53eb7b9754f33db807
Distribution File Information
c3f865d4d54db7abc53758a01601cf343fe55b84c1de4e3fa910e420b438d5b9 13068 blinker-1.7.0-py3-none-any.whl
Ports that require python-blinker:v11
python-Flask:v11 Lightweight WSGI web application framework (3.11)