From dff1d64002cf67884d79d2ba8110d69e8d0bf74e Mon Sep 17 00:00:00 2001 From: Geremy Cohen Date: Wed, 5 Feb 2014 18:12:05 -0800 Subject: Update README.md --- python/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/python/README.md b/python/README.md index 1a0ea0b..47e2f94 100644 --- a/python/README.md +++ b/python/README.md @@ -87,9 +87,11 @@ print(analytics) ``` # Load Previously Published Messages -history = pubnub.history({ - 'channel' : 'hello_world', - 'limit' : 1 +history = pubnub.detailedHistory({ + 'channel' : 'my_channel', + 'end' : my_end_time_token, # Optional + 'start' : my_start_time_token, # Optional + 'count' : num_of_msgs_to_return # Optional, default is 100 }) print(history) ``` -- cgit v1.2.3