METADATA 1.1 KB

1234567891011121314151617181920212223242526272829
  1. Metadata-Version: 2.0
  2. Name: PyDispatcher
  3. Version: 2.0.5
  4. Summary: Multi-producer-multi-consumer signal dispatching mechanism
  5. Home-page: http://pydispatcher.sourceforge.net
  6. Author: Mike C. Fletcher
  7. Author-email: pydispatcher-devel@lists.sourceforge.net
  8. License: BSD
  9. Keywords: dispatcher,dispatch,pydispatch,event,signal,sender,receiver,propagate,multi-consumer,multi-producer,saferef,robustapply,apply
  10. Platform: Any
  11. Classifier: License :: OSI Approved :: BSD License
  12. Classifier: Programming Language :: Python
  13. Classifier: Programming Language :: Python :: 3
  14. Classifier: Topic :: Software Development :: Libraries :: Python Modules
  15. Classifier: Intended Audience :: Developers
  16. Dispatcher mechanism for creating event models
  17. PyDispatcher is an enhanced version of Patrick K. O'Brien's
  18. original dispatcher.py module. It provides the Python
  19. programmer with a robust mechanism for event routing within
  20. various application contexts.
  21. Included in the package are the robustapply and saferef
  22. modules, which provide the ability to selectively apply
  23. arguments to callable objects and to reference instance
  24. methods using weak-references.