python

Send Push Notifications from python to your Browser, Android, iOS and/or Windows 10 device.

python-pushsafer aims at providing comprehensive Python bindings for the API of the Pushsafer Notification Service.

Usage

Install

Install python-pushsafer directly from Pypi:

$ pip install python-pushsafer

or install it from GitHub:

from pushsafer import Client

client = Client("<privatekey>")
resp = client.send_message("Message", "Hello", "323", "1", "4", "2", "https://www.pushsafer.com", "Open Pushsafer", "0", "2", "60", "600", "1", "", "", "")
print(resp)

Params

client.send_message(
                    "Message",
                    "Title",
                    "Device or Device Group ID",
                    "Icon",
                    "Sound",
                    "Vibration",
                    "URL",
                    "URL Title",
                    "Time2Live",
                    "Priority",
                    "Retry",
                    "Expire",
                    "Answer",
                    "Image 1",
                    "Image 2",
                    "Image 3")

For more information about replacing values (title, message, icon, icon color, sound, vibration) in your push notification, check out our API description!


© 2016 - 2024 Pushsafer.com, All rights reserved.