aboutsummaryrefslogtreecommitdiffstats
path: root/python/examples/here-now-example.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/examples/here-now-example.py')
-rw-r--r--python/examples/here-now-example.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/python/examples/here-now-example.py b/python/examples/here-now-example.py
index d2ca9bd..6c20405 100644
--- a/python/examples/here-now-example.py
+++ b/python/examples/here-now-example.py
@@ -23,8 +23,10 @@ ssl_on = len(sys.argv) > 5 and bool(sys.argv[5]) or False
## -----------------------------------------------------------------------
## Initiate Pubnub State
## -----------------------------------------------------------------------
+#pubnub = Pubnub( publish_key=publish_key, subscribe_key=subscribe_key,
+# secret_key=secret_key, cipher_key=cipher_key, ssl_on=ssl_on)
pubnub = Pubnub( publish_key=publish_key, subscribe_key=subscribe_key,
- secret_key=secret_key, cipher_key=cipher_key, ssl_on=ssl_on)
+ secret_key=secret_key, cipher_key=cipher_key, ssl_on=ssl_on, auth_key="temp1")
crazy = 'hello_world'
def print_cb(message):