aboutsummaryrefslogtreecommitdiffstats
path: root/python/3.3/history-example.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/3.3/history-example.py')
-rwxr-xr-xpython/3.3/history-example.py12
1 files changed, 0 insertions, 12 deletions
diff --git a/python/3.3/history-example.py b/python/3.3/history-example.py
deleted file mode 100755
index cedf69e..0000000
--- a/python/3.3/history-example.py
+++ /dev/null
@@ -1,12 +0,0 @@
-from Pubnub import Pubnub
-
-## Initiat Class
-pubnub = Pubnub( 'demo', 'demo', None, False )
-
-## History Example
-history = pubnub.history({
- 'channel' : 'hello_world',
- 'limit' : 1
-})
-print(history)
-