-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
…/pypubsub/code/tags/rel_3_3_0_feb_2_2014
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
__pycache__ | ||
/build | ||
/.idea/workspace.xml | ||
/docs/html | ||
/src/PyPubSub.egg-info |
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
This file was deleted.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
|
||
include ez_setup.py |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,26 @@ | ||
PyPubSub provides a publish - subscribe API that facilitates the development of | ||
event-based / message-based applications. PyPubSub supports sending and | ||
receiving messages between objects of an application. 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. The package also supports a variety of | ||
advanced features that facilitate debugging and maintaining pypubsub topics | ||
and messages in larger applications. | ||
event-based (also known as message-based) applications. PyPubSub supports sending and | ||
receiving messages between objects of an application, as well as a variety of | ||
advanced features that facilitate debugging and maintaining topics and messages | ||
in larger applications. | ||
|
||
Install most recent with "pip install pypubsub". | ||
Install with "pip install pypubsub" or "easy_install pypubsub". | ||
|
||
The latest documentation home page is at http://pypubsub.readthedocs.io/en/master/. | ||
Latest stable version, 3.3.0: | ||
|
||
* `Zip (source) <http://downloads.sf.net/project/pubsub/pubsub/3.3.0/PyPubSub-3.3.0.zip>`_ | ||
* `Windows Installer <http://downloads.sf.net/project/pubsub/pubsub/3.3.0/PyPubSub-3.3.0.win32.exe>`_ | ||
* `Egg for Python 2.7 <http://downloads.sf.net/project/pubsub/pubsub/3.3.0/PyPubSub-3.3.0-py2.7.egg>`_ | ||
* `Egg for Python 3.3 <http://downloads.sf.net/project/pubsub/pubsub/3.3.0/PyPubSub-3.3.0-py3.3.egg>`_ | ||
|
||
Release candidate version, 3.4: | ||
|
||
* Not yet available | ||
|
||
Note: All downloads are hosted on SourceForge. See the `Files pages on SF.net | ||
<http://downloads.sf.net/project/pubsub/pubsub>`_ for additional downloads, | ||
older releases, and download stats (the ones on PyPi page are specific to PyPi). | ||
|
||
See the `release notes <https://sourceforge.net/p/pubsub/code/HEAD/tree/trunk/src/pubsub/RELEASE_NOTES.txt>`_ | ||
for additional information on this and other releases. | ||
|