aboutsummaryrefslogtreecommitdiff
path: root/python/python3-pubsub/README
diff options
context:
space:
mode:
authorGianluca Pernigotto <jeanlucperni@gmail.com>2022-06-01 13:50:52 +0100
committerWilly Sudiarto Raharjo <willysr@slackbuilds.org>2022-06-04 10:37:10 +0700
commit528afbdbc73d8572bd3395d0bd9bbc06523131a3 (patch)
treeba62460bc69007a15062d9394ead16706bd3836f /python/python3-pubsub/README
parent93670f588ec08e7acedb281f3e0e7ec7db9870bd (diff)
python/python3-pubsub: Added (A Python publish-subcribe library)
Signed-off-by: Dave Woodfall <dave@slackbuilds.org> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'python/python3-pubsub/README')
-rw-r--r--python/python3-pubsub/README8
1 files changed, 8 insertions, 0 deletions
diff --git a/python/python3-pubsub/README b/python/python3-pubsub/README
new file mode 100644
index 0000000000..8714a23ea4
--- /dev/null
+++ b/python/python3-pubsub/README
@@ -0,0 +1,8 @@
+PyPubSub 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-based or server-based applications.