Multi-producer-multi-consumer signal dispatching mechanism for Python, originally from PyDispatcher. Version 2.1.2 is actively maintained via the Scrapy project. Releases are infrequent.
pip install PyDispatcherVerified import paths — ran on the pinned version, not inferred.
Basic signal dispatch example.
Use 'from pydispatch import dispatcher' consistently.
Always specify sender explicitly (e.g., sender='myapp') to avoid confusion.
Use 'dispatcher.connect(callback, signal='...', weak=False)' to keep a strong reference.
Use 'from pydispatch import dispatcher' after installing PyDispatcher.
Call dispatcher.connect() or dispatcher.send() with the signal string; it is automatically registered.
No dependency data recorded yet.