// // Send Desktop Notifications using Python // from pubnub import Pubnub pubnub = Pubnub( publish_key, subscribe_key, secret_key, ssl_on ) pubish_success = pubnub.publish({ 'channel' : 'notifications-channel', 'message' : { 'image' : "image.jpg", 'title' : "Title Text", 'body' : "Content Body Text" } })