aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--python/README.md16
1 files changed, 16 insertions, 0 deletions
diff --git a/python/README.md b/python/README.md
index c077918..a3a6de8 100644
--- a/python/README.md
+++ b/python/README.md
@@ -60,6 +60,22 @@ pubnub.subscribe(channel, callback=callback, error=callback,
connect=connect, reconnect=reconnect, disconnect=disconnect)
```
+#### SUBSCRIBE Synchronous ( pre 3.5 version )
+Runs in tight loop if callback return True.
+Loop ends when callback return False
+```
+# Listen for Messages
+
+channel = 'hello_world'
+
+def callback(message):
+ print(message)
+ return True
+
+pubnub.subscribe_sync(channel, callback=callback)
+```
+
+
#### UNSUBSCRIBE
```