diff options
Diffstat (limited to 'python-tornado/examples/publish-example.py')
| -rw-r--r-- | python-tornado/examples/publish-example.py | 41 | 
1 files changed, 29 insertions, 12 deletions
| diff --git a/python-tornado/examples/publish-example.py b/python-tornado/examples/publish-example.py index 7f217d1..72f2586 100644 --- a/python-tornado/examples/publish-example.py +++ b/python-tornado/examples/publish-example.py @@ -6,7 +6,7 @@  ## http://www.pubnub.com/  ## ----------------------------------- -## PubNub 3.0 Real-time Push Cloud API +## PubNub 3.1 Real-time Push Cloud API  ## -----------------------------------  import sys @@ -18,27 +18,44 @@ from Pubnub import Pubnub  publish_key   = len(sys.argv) > 1 and sys.argv[1] or 'demo'  subscribe_key = len(sys.argv) > 2 and sys.argv[2] or 'demo'  secret_key    = len(sys.argv) > 3 and sys.argv[3] or 'demo' -cipher_key    = len(sys.argv) > 4 and sys.argv[4] or '' ##(Cipher key is Optional) +cipher_key    = len(sys.argv) > 4 and sys.argv[4] or 'demo' ##(Cipher key is Optional)  ssl_on        = len(sys.argv) > 5 and bool(sys.argv[5]) or False  ## -----------------------------------------------------------------------  ## Initiate Pubnub State  ## ----------------------------------------------------------------------- -pubnub = Pubnub( publish_key, subscribe_key, secret_key,cipher_key, ssl_on ) +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, subscribe_key, secret_key, ssl_on )  crazy  = 'hello_world' -## ----------------------------------------------------------------------- -## History Example -## ----------------------------------------------------------------------- -def history_complete(messages): -    print(messages) +def publish_complete(info): +    print(info) + +## Publish string +pubnub.publish({ +    'channel' : crazy, +    'message' : 'Hello World!', +    'callback' : publish_complete +}) -pubnub.history( { -   'channel'  : crazy, -   'limit'    : 10, -   'callback' : history_complete +## Publish list +li = ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'] +pubnub.publish({ +    'channel' : crazy, +    'message' : li, +    'callback' : publish_complete  }) +def done_cb(info): +    publish_complete(info) +    tornado.ioloop.IOLoop.instance().stop() + +## Publish Dictionary Object +pubnub.publish({ +    'channel' : crazy, +    'message' : { 'some_key' : 'some_val' }, +    'callback' : done_cb +})  ## -----------------------------------------------------------------------  ## IO Event Loop  ## ----------------------------------------------------------------------- | 
