blob: 793c6127d2594510a4bdf3eacf90af74a289bd2d (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | import sys
from Pubnub import PubnubAsync as Pubnub
## Initiat Class
pubnub = Pubnub('demo', 'demo', None, False)
## History Example
history = pubnub.history({
    'channel': 'hello_world',
    'limit': 1
})
print(history)
 |