A Python wrapper around the OneSignal API Edit Add topics
Project description
A Python client library for OneSignal API.
Table of Contents
Installation
pip install onesignal_sdk
Usage
import onesignal_sdk
Creating a client
You can create a OneSignal Client as shown below. You can find your user_auth_key and REST API Key (app_auth_key) on OneSignal Account & API Keys page.
onesignal_client = onesignal_sdk.Client(user_auth_key="XXXXX",
app={"app_auth_key": "XXXX", "app_id": "YYYYY"})
You can also create a Client for multiple Apps
onesignal_client = onesignal_sdk.Client(user_auth_key="XXXXX",
apps=["id1", "id2", "id3"])
You can always create a Client with no credential and set them later:
onesignal_client = onesignal_sdk.Client()
onesignal_client.user_auth_key = "XXXXX"
onesignal_client.app = {"app_auth_key": "XXXX", "app_id": "YYYYY"}
Note that, app must be a dictionary and must have “app_auth_key” and “app_id”. It will raise OneSignalError otherwise:
from onesignal_sdk.error import OneSignalError
try:
onesignal_client = onesignal_sdk.Client()
onesignal_client.app = {"app_auth_key": "XXXX"}
except OneSignalError as e:
print(e)
Creating a notification
new_notification = onesignal_sdk.Notification(contents={"en": "Message", "tr": "Mesaj"})
if you want to change contents later:
new_notification = onesignal_sdk.Notification(contents={"en": "Message", "tr": "Mesaj"})
...
...
new_notification.set_contents(contents={"en": "New message"})
# OR
new_notification.post_body["contents"] = {"en": "New message"}
You can set filters, data, buttons and all of the fields available on OneSignal Documentation by using .set_parameter(name, value) method:
new_notification.set_parameter("data", {"foo": 123, "bar": "foo"})
new_notification.set_parameter("headings", {"en": "English Title"})
Sending push notification
To can send a notification to Segments:
# create a onesignal client
onesignal_client = onesignal_sdk.Client(user_auth_key="XXXX",
app={"app_auth_key": "XXXXXX",
"app_id": "XXXX-XXXX-XXX"})
# create a notification
new_notification = onesignal_sdk.Notification(contents={"en": "Message"})
new_notification.set_parameter("headings", {"en": "Title"})
# set target Segments
new_notification.set_included_segments(["All"])
new_notification.set_excluded_segments(["Inactive Users"])
# send notification, it will return a response
onesignal_response = onesignal_client.send_notification(new_notification)
print(onesignal_response.status_code)
print(onesignal_response.json())
To send a notification using Filters:
# create a notification
new_notification = onesignal_sdk.Notification(contents={"en": "Message"})
new_notification.set_parameter("headings", {"en": "Title"})
# set filters
new_notification.set_filters([
{"field": "tag", "key": "level", "relation": ">", "value": "10"},
{"field": "amount_spent", "relation": ">", "value": "0"}
])
# send notification, it will return a response
onesignal_response = onesignal_client.send_notification(new_notification)
print(onesignal_response.status_code)
print(onesignal_response.json())
To send a notification to specific devices:
# create a notification
new_notification = onesignal_sdk.Notification(contents={"en": "Message"})
new_notification.set_parameter("headings", {"en": "Title"})
# set filters
new_notification.set_target_devices(["id1", "id2"])
# send notification, it will return a response
onesignal_response = onesignal_client.send_notification(new_notification)
print(onesignal_response.status_code)
print(onesignal_response.json())
Note that .send_notification(notification) method will send the notification to the app specified during the creation of Client object. If you want to send notification to multiple apps, you must set apps array instead:
onesignal_client.app = None
onesignal_client.apps = ["app_id_1", "app_id_2"]
Cancelling a notification
onesignal_client = onesignal_sdk.Client(user_auth_key="XXXX",
app={"app_auth_key": "XXXXXX",
"app_id": "XXXX-XXXX-XXX"})
onesignal_response = onesignal_client.cancel_notification("notification_id")
print(onesignal_response.status_code)
print(onesignal_response.json())
Viewing push notifications
onesignal_response = onesignal_client.view_notifications(query={"limit": 30, "offset": 0})
if onesignal_response.status_code == 200:
print(onesignal_response.json())
Viewing a push notification
onesignal_response = onesignal_client.view_notification("notification_id")
if onesignal_response.status_code == 200:
print(onesignal_response.json())
Viewing apps
onesignal_response = onesignal_client.view_apps()
You can also view a single app:
onesignal_response = onesignal_client.view_app("app_id")
Creating an app
onesignal_client = onesignal_sdk.Client(user_auth_key="XXXX",
app={"app_auth_key": "XXXXXX",
"app_id": "XXXX-XXXX-XXX"})
app_body = {
"name": "Test App",
"apns_env": "production"
}
onesignal_response = onesignal_client.create_app(app_body)
if onesignal_response.status_code == 200:
print(onesignal_response.json())
Updating an app
onesignal_client = onesignal_sdk.Client(user_auth_key="XXXX",
app={"app_auth_key": "XXXXXX",
"app_id": "XXXX-XXXX-XXX"})
app_body = {
"name": "New App",
"gcm_key": "XX-XXX-XXXXX"
}
onesignal_response = onesignal_client.update_app(app_id="XXXX", app_body=app_body)
if onesignal_response.status_code == 200:
print(onesignal_response.json())
Viewing devices
onesignal_response = onesignal_client.view_devices(query={"limit": 20})
if onesignal_response.status_code == 200:
print(onesignal_response.json())
You can also view a device:
onesignal_response = onesignal_client.view_device("device_id")
Adding a device
onesignal_client = onesignal_sdk.Client(user_auth_key="XXXX",
app={"app_auth_key": "XXXXXX",
"app_id": "XXXX-XXXX-XXX"})
device_body = {
"device_type": 1,
"language": "tr"
}
onesignal_response = onesignal_client.create_device(device_body=device_body)
Editing a device
onesignal_client = onesignal_sdk.Client(user_auth_key="XXXX",
app={"app_auth_key": "XXXXXX",
"app_id": "XXXX-XXXX-XXX"})
device_body = {
"device_type": 1,
"language": "en"
}
onesignal_response = onesignal_client.update_device(device_id="device_id", device_body=device_body)
CSV Export
onesignal_response = onesignal_client.csv_export(post_body={"extra_fields": ["location"]})
if onesignal_response.status_code == 200:
print(onesignal_response.json())
Opening track
onesignal_response = onesignal_client.track_open("notification_id", track_body={"opened": True})
Licence
This project is under the MIT license.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file onesignal_sdk-0.1.0.tar.gz
.
File metadata
- Download URL: onesignal_sdk-0.1.0.tar.gz
- Upload date:
- Size: 7.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e5fa22870aac3fa85aa2fc6fdbe644fd95b58dda0cfa941155fd3ded35192b0a |
|
MD5 | 2d280465e918ecdfeca85c9a3d4592cd |
|
BLAKE2b-256 | 4641aa169f4e4211e341d2d4dcbbdaadd35aa39f1a1297619c2003c60f1ef27b |
File details
Details for the file onesignal_sdk-0.1.0-py2.py3-none-any.whl
.
File metadata
- Download URL: onesignal_sdk-0.1.0-py2.py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 17951a6f22d3ffa46c03f6040dfee6315a16c80a4dff058a1e913c4c8fee6f88 |
|
MD5 | 1afc275fba1b6bdbe53ee22ae2c0174e |
|
BLAKE2b-256 | 2e17ad36461a095da4f0f04ecc3a65a7eb27a62cffc5bb68fd16c1f7ee41a82b |