Message Persistence API for Python SDK

Message Persistence gives you real-time access to the history of messages published to PubNub. Each message is timestamped to the nearest 10 nanoseconds and stored across multiple availability zones in several geographic locations. You can encrypt stored messages with AES-256 so they are not readable on PubNub’s network. For details, see Message Persistence.

You control how long messages are stored through your account’s retention policy. Options include: 1 day, 7 days, 30 days, 3 months, 6 months, 1 year, or Unlimited.

You can retrieve the following:

  • Messages
  • Message reactions
  • Files (using the File Sharing API)
Request execution and return values

You can decide whether to perform the Python SDK operations synchronously or asynchronously.

  • .sync() returns an Envelope object, which has two fields: Envelope.result, whose type differs for each API, and Envelope.status of type PnStatus.

    pubnub.publish() \
    .channel("myChannel") \
    .message("Hello from PubNub Python SDK") \
    .sync()
  • .pn_async(callback) returns None and passes the values of Envelope.result and Envelope.status to a callback you must define beforehand.

    def my_callback_function(result, status):
    print(f'TT: {result.timetoken}, status: {status.category.name}')

    pubnub.publish() \
    .channel("myChannel") \
    .message("Hello from PubNub Python SDK") \
    .pn_async(my_callback_function)

Fetch history

Requires Message Persistence

Enable Message Persistence for your key in the Admin Portal. See how to enable add-on features.

Fetch historical messages from one or more channels. Use include_message_actions to include message actions.

You can control how messages are returned and in what order.

  • If you specify only the start parameter (without end), you receive messages older than the start timetoken.
  • If you specify only the end parameter (without start), you receive messages from that end timetoken and newer.
  • If you specify both start and end, you retrieve messages between those timetokens (inclusive of the end value).

You can receive up to 100 messages for a single channel. For multiple channels (up to 500), you can receive up to 25 messages per channel. If more messages match the time range, make iterative calls and adjust the start timetoken to page through the results.

Method(s)

Use the following method(s) in the Python SDK:

pubnub.fetch_messages() \
.channels(List) \
.maximum_per_channel(Integer) \
.start(Integer) \
.end(Integer) \
.include_message_actions(Boolean) \
.include_meta(Boolean)
.include_message_type(Boolean) \
.include_custom_message_type(Boolean) \
.include_uuid(Boolean) \
* required
ParameterDescription
channels *
Type: List<string>
Default:
n/a
Specifies the channels for which to return history. Maximum of 500 channels are allowed.
maximum_per_channel
Type: Integer
Default:
25 or 100
Specifies the number of historical messages to return. If include_message_actions is True, method is limited to single channel and 25 is the default (and maximum) value; otherwise, default and maximum is 100 for a single channel, or 25 for multiple channels.
start
Type: Integer
Default:
n/a
Timetoken delimiting the exclusive start of the time slice from which to pull messages.
end
Type: Integer
Default:
n/a
Timetoken delimiting the inclusive end of the time slice from which to pull messages.
include_message_actions
Type: Boolean
Default:
False
Set to True to retrieve history messages with their associated message actions. If you include message actions, the fetch_messages() method is limited to one channel only.
include_meta
Type: Boolean
Default:
False
Whether to include message metadata within response or not.
include_message_type
Type: Boolean
Default:
n/a
Indicates whether to retrieve messages with PubNub message type.

For more information, refer to Retrieving Messages.
include_custom_message_type
Type: Boolean
Default:
n/a
Indicates whether to retrieve messages with the custom message type.

For more information, refer to Retrieving Messages.
include_uuid
Type: Boolean
Default:
n/a
Whether to include UUID of the sender

Sample code

Reference code
This example is a self-contained code snippet ready to be run. It includes necessary imports and executes methods with console logging. Use it as a reference when working with other examples in this document.

Retrieve the last message on a channel:

import os
from pubnub.pnconfiguration import PNConfiguration
from pubnub.pubnub import PubNub


def my_fetch_messages_callback(envelope, status):
if status.is_error():
print(f"Something went wrong. Error: {status.error_data}")
return

print("Fetch Messages Result:\n")
for message in envelope.channels["my_channel"]:
print("Message: %s" % message.message)
print("Meta: %s" % message.meta)
print("Timetoken: %s" % message.timetoken)
show all 48 lines

Returns

The fetch_messages() operation returns an Envelope which contains the following fields:

FieldTypeDescription
result
PNFetchMessagesResult
A detailed object containing the result of the operation.
status
PNStatus
A status object with additional information.

PNFetchMessagesResult

MethodDescription
channels
Type: Dictionary
Dictionary of PNFetchMessageItem
start_timetoken
Type: Int
Start timetoken
end_timetoken
Type: Int
End timetoken

PNFetchMessageItem

MethodDescription
message
Type: String
The message
meta
Type: Any
Meta value
message_type
Type: Any
Type of the message
custom_message_type
Type: Any
Custom type of the message
uuid
Type: String
UUID of the sender
timetoken
Type: Int
Timetoken of the message
actions
Type: List
A 3-dimensional List of message actions, grouped by action type and value

Delete messages from history

Requires Message Persistence

Enable Message Persistence for your key in the Admin Portal. See how to enable add-on features.

Remove messages from the history of a specific channel.

Required setting

Enable Delete-From-History for your key in the Admin Portal and initialize the SDK with a secret key.

Method(s)

To Delete Messages from History you can use the following method(s) in the Python SDK.

pubnub.delete_messages() \
.channel(String) \
.start(Integer) \
.end(Integer) \
.sync()
* required
ParameterDescription
channel *
Type: String
Default:
n/a
Specifies channels to delete messages from.
start
Type: Integer
Default:
n/a
Timetoken delimiting the start of time slice (inclusive) to delete messages from.
end
Type: Integer
Default:
n/a
Timetoken delimiting the end of time slice (exclusive) to delete messages from.

Sample code

envelope = PubNub(pnconf).delete_messages() \
.channel("my-ch") \
.start(123) \
.end(456) \
.sync()

Returns

The delete_messages() operation doesn't have a return value.

Other examples

Delete specific message from history

To delete a specific message, pass the publish timetoken (received from a successful publish) in the End parameter and timetoken +/- 1 in the Start parameter. For example, if 15526611838554310 is the publish timetoken, pass 15526611838554309 in Start and 15526611838554310 in End parameters respectively as shown in the following code snippet.

envelope = PubNub(pnconf).delete_messages() \
.channel("my-ch") \
.start(15526611838554309) \
.end(15526611838554310) \
.sync()

Message counts

Requires Message Persistence

Enable Message Persistence for your key in the Admin Portal. See how to enable add-on features.

Return the number of messages published since the given time. The count is the number of messages with a timetoken greater than or equal to the value in channel_timetokens.

Unlimited message retention

Only messages from the last 30 days are counted.

Method(s)

You can use the following method(s) in the Python SDK:

pn.message_counts() \
.channel(String) \
.channel_timetokens(List)
* required
ParameterDescription
channel *
Type: String
Default:
n/a
The channels to fetch the message count. Single channel or multiple channels, separated by comma are accepted.
channel_timetokens *
Type: List
Default:
null
A list of timetokens ordered the same way as channels. Timetokens can be str or int type.

Sample code

envelope = pn.message_counts() \
.channel('unique_1') \
.channel_timetokens([15510391957007182]) \
.sync() \
print(envelope.result.channels['unique_1'])

Returns

The message_counts() operation returns an Envelope which contains the following fields:

FieldTypeDescription
result
PNMessageCountResult
A detailed object containing the result of the operation.
status
PNStatus
A status object with additional information.

PNMessageCountResult

FieldTypeDescription
channels
Dictionary
A dictionary with the number of missed messages for each channel.

Other examples

Retrieve count of messages using different timetokens for each channel

envelope = pn.message_counts() \
.channel('unique_1,unique_100') \
.channel_timetokens([15510391957007182, 15510391957007184]) \
.sync()
print(envelope.result.channels)

History (deprecated)

Requires Message Persistence

This method requires that Message Persistence is enabled for your key in the Admin Portal.

Alternative method

This method is deprecated. Use fetch history instead.

This function fetches historical messages of a channel.

It is possible to control how messages are returned and in what order, for example you can:

  • Search for messages starting on the newest end of the timeline (default behavior - reverse = False)
  • Search for messages from the oldest end of the timeline by setting reverse to True.
  • Page through results by providing a start OR end timetoken.
  • Retrieve a slice of the time line by providing both a start AND end timetoken.
  • Limit the number of messages to a specific quantity using the count parameter.
Start & End parameter usage clarity

If only the start parameter is specified (without end), you will receive messages that are older than and up to that start timetoken value. If only the end parameter is specified (without start), you will receive messages that match that end timetoken value and newer. Specifying values for both start and end parameters will return messages between those timetoken values (inclusive on the end value). Keep in mind that you will still receive a maximum of 100 messages even if there are more messages that meet the timetoken values. Iterative calls to history adjusting the start timetoken is necessary to page through the full set of results if more than 100 messages meet the timetoken values.

Method(s)

To run History you can use the following method(s) in the Python SDK:

pubnub.history() \
.channel(String) \
.include_meta(True) \
.reverse(Boolean) \
.include_timetoken(Boolean) \
.start(Integer) \
.end(Integer) \
.count(Integer)
* required
ParameterDescription
channel *
Type: String
Default:
n/a
Specifies channel to return history messages from.
include_meta
Type: Boolean
Default:
False
Specifies whether or not the message's meta information should be returned.
reverse
Type: Boolean
Default:
False
Setting to True will traverse the time line in reverse starting with the oldest message first.
include_timetoken
Type: Boolean
Default:
False
Whether event dates timetokens should be included in response or not.
start
Type: Integer
Default:
n/a
Timetoken delimiting the start of time slice (exclusive) to pull messages from.
end
Type: Integer
Default:
n/a
Timetoken delimiting the end of time slice (inclusive) to pull messages from.
count
Type: Integer
Default:
n/a
Specifies the number of historical messages to return.
tip
Using the reverse parameter

Messages are always returned sorted in ascending time direction from history regardless of reverse. The reverse direction matters when you have more than 100 (or count, if it's set) messages in the time interval, in which case reverse determines the end of the time interval from which it should start retrieving the messages.

Sample code

Retrieve the last 100 messages on a channel:

envelope = pubnub.history() \
.channel("history_channel") \
.count(100) \
.sync()

Returns

The history() operation returns a PNHistoryResult which contains the following fields:

MethodDescription
messages
Type: List
List of messages of type PNHistoryItemResult. See PNHistoryItemResult for more details.
start_timetoken
Type: Integer
Start timetoken.
end_timetoken
Type: Integer
End timetoken.

PNHistoryItemResult

MethodDescription
timetoken
Type: Integer
Timetoken of the message.
entry
Type: Object
Message.

Other examples

Use history() to retrieve the three oldest messages by retrieving from the time line in reverse

envelope = pubnub.history() \
.channel("my_channel") \
.count(3) \
.reverse(True) \
.sync()
Response
{
end_timetoken: 13406746729185766,
start_timetoken: 13406746780720711,
messages: [{
crypto: None,
entry: 'Pub1',
timetoken: None
},{
crypto: None,
entry: 'Pub2',
timetoken: None
},{
crypto: None,
entry: 'Pub2',
timetoken: None
show all 17 lines

Use history() to retrieve messages newer than a given timetoken by paging from oldest message to newest message starting at a single point in time (exclusive)

pubnub.history()\
.channel("my_channel")\
.start(13847168620721752)\
.reverse(True)\
.sync()
Response
{
end_timetoken: 13406746729185766,
start_timetoken: 13406746780720711,
messages: [{
crypto: None,
entry: 'Pub4',
timetoken: None
},{
crypto: None,
entry: 'Pub5',
timetoken: None
},{
crypto: None,
entry: 'Pub6',
timetoken: None
show all 17 lines

Use history() to retrieve messages until a given timetoken by paging from newest message to oldest message until a specific end point in time (inclusive)

pubnub.history()\
.channel("my_channel")\
.count(100)\
.start(-1)\
.end(13847168819178600)\
.reverse(True)\
.sync()
Response
{
end_timetoken: 13406746729185766,
start_timetoken: 13406746780720711,
messages: [{
crypto: None,
entry: 'Pub4',
timetoken: None
},{
crypto: None,
entry: 'Pub5',
timetoken: None
},{
crypto: None,
entry: 'Pub6',
timetoken: None
show all 17 lines

History paging example

Usage

You can call the method by passing 0 or a valid timetoken as the argument.

def get_all_messages(start_tt):
def history_callback(result, status):
msgs = result.messages
start = result.start_timetoken
end = result.end_timetoken
count = len(msgs)

if count > 0:
print("%d" % count)
print("start %d" % start)
print("end %d" % end)

if count == 100:
get_all_messages(start)

show all 22 lines

Include timetoken in history response

pubnub.history()\
.channel("my_channel")\
.count(100)\
.include_timetoken()
.sync()
Last updated on