diff options
| author | Devendra | 2013-12-18 23:23:22 +0530 |
|---|---|---|
| committer | Devendra | 2013-12-18 23:23:22 +0530 |
| commit | 786390e9ee0024ab3061a9133700457b07ae0f80 (patch) | |
| tree | 0aa0acda65ed1c51c68f138c0114055f6769374c /python-tornado/unassembled | |
| parent | 1d601e3411af27c1b39e697849a538b692a535e7 (diff) | |
| download | pubnub-python-786390e9ee0024ab3061a9133700457b07ae0f80.tar.bz2 | |
adding pam client support to python sdk
Diffstat (limited to 'python-tornado/unassembled')
| -rw-r--r-- | python-tornado/unassembled/Platform.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/python-tornado/unassembled/Platform.py b/python-tornado/unassembled/Platform.py index 62d3a26..3dec1e4 100644 --- a/python-tornado/unassembled/Platform.py +++ b/python-tornado/unassembled/Platform.py @@ -27,7 +27,9 @@ class Pubnub(PubnubCoreAsync): secret_key = False, cipher_key = False, ssl_on = False, - origin = 'pubsub.pubnub.com' + origin = 'pubsub.pubnub.com', + pres_uuid = None, + auth_key = None ) : super(Pubnub, self).__init__( publish_key=publish_key, @@ -36,6 +38,8 @@ class Pubnub(PubnubCoreAsync): cipher_key=cipher_key, ssl_on=ssl_on, origin=origin, + uuid = pres_uuid, + auth_key = auth_key ) self.headers = {} self.headers['User-Agent'] = 'Python-Tornado' |
