Metadata-Version: 2.4
Name: Pypubsub
Version: 4.0.3
Summary: Python Publish-Subscribe Package
Home-page: https://github.com/schollii/pypubsub
Author: Oliver Schoenborn (aka "schollii")
Author-email: oliver.schoenborn@gmail.com
License: BSD License
Keywords: publish subscribe observer pattern signal signals event events message messages messaging dispatch dispatching
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.3, <4
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: requires-python
Dynamic: summary

.. image:: https://badge.fury.io/py/PyPubSub.svg
    :target: https://badge.fury.io/py/PyPubSub
.. image:: https://img.shields.io/travis/schollii/pypubsub.svg
    :target: https://img.shields.io/travis/schollii/pypubsub
    
News
====

January 2019: pypubsub 4.0.3 released!

Overview
========

Provides a publish-subscribe API to facilitate event-based or message-based
architecture in a single-process application. It is pure Python and works on
Python 3.3+. It is centered on the notion of a topic; senders publish
messages of a given topic, and listeners subscribe to messages of a given
topic, all inside the same process. The package also supports a variety of
advanced features that facilitate debugging and maintaining topics
and messages in larger desktop- or server-based applications.

Install most recent stable with "pip install pypubsub".

Useful links:

- Project on PyPI: https://pypi.python.org/pypi/PyPubSub
- The documentation for latest stable release is at
  http://pypubsub.readthedocs.io.
- The documentation for latest code is at
  http://pypubsub.readthedocs.io/en/latest.


