Suprsend library for Python
Project description
suprsend-py-sdk
This package can be included in a python3 project to easily integrate
with SuprSend
platform.
We're working towards creating SDK in other languages as well.
SuprSend SDKs available in following languages
- python3 >= 3.7 (
suprsend-py-sdk
) - node (
suprsend-node-sdk
) - java (
suprsend-java-sdk
)
Installation
suprsend-py-sdk
is available on PyPI. You can install using pip.
pip cache purge && pip install suprsend-py-sdk
This SDK depends on a system package called libmagic
. You can install it as follows:
# On debian based systems
sudo apt install libmagic
# If you are using macOS
brew install libmagic
Usage
Initialize the SuprSend SDK
from suprsend import Suprsend
# Initialize SDK
supr_client = Suprsend("workspace_key", "workspace_secret")
Following example shows a sample request for triggering a workflow.
It triggers a notification to a user with id: distinct_id
,
email: user@example.com
& androidpush-token: __android_push_token__
using template purchase-made
and notification_category system
# Prepare Workflow body
workflow_body = {
"name": "Purchase Workflow",
"template": "purchase-made",
"notification_category": "system",
"delay": "15m",
"users": [
{
"distinct_id": "0f988f74-6982-41c5-8752-facb6911fb08",
"$email": ["user@example.com"],
"$androidpush": ["__android_push_token__"],
}
],
# data can be any json / serializable python-dictionary
"data": {
"first_name": "User",
"spend_amount": "$10",
"nested_key_example": {
"nested_key1": "some_value_1",
"nested_key2": {
"nested_key3": "some_value_3",
},
}
}
}
# Trigger workflow
response = supr_client.trigger_workflow(workflow_body)
When you call supr_client.trigger_workflow
, the SDK internally makes an HTTP call to SuprSend
Platform to register this request, and you'll immediately receive a response indicating
the acceptance status.
Note: The actual processing/execution of workflow happens asynchronously.
# If the call succeeds, response will looks like:
{
"success": True,
"status": 202,
"message": "Message received",
}
# In case the call fails. You will receive a response with success=False
{
"success": False,
"status": 400/500,
"message": "error message",
}
Add attachments
To add one or more Attachments to a Notification (viz. Email, Whatsapp),
call supr_client.add_attachment(...)
for each file.
Ensure that file_path is proper, otherwise it will raise FileNotFoundError.
# this snippet can be used to add attachment to workflow_body.
file_path = "/home/user/billing.pdf"
supr_client.add_attachment(workflow_body, file_path)
Attachment structure
The add_attachment(...)
call appends below structure to data->'$attachments'
{
"filename": "billing.pdf",
"contentType": "application/pdf",
"data": "Q29uZ3JhdHVsYXRpb25zLCB5b3UgY2FuIGJhc2U2NCBkZWNvZGUh",
}
Where
filename
- name of file.contentType
- MIME-type of file content.data
- base64-encoded content of file.
Limitation
- a single workflow body size must not exceed 200KB (200 * 1024 bytes). While calculating size, attachments are ignored
- if size exceeds above mentioned limit, SDK raises python's builtin ValueError.
Request-Batching
You can batch multiple workflow requests in one call. Use batch_instance.append(...)
on batch-instance
to add however-many-records to call in batch.
batch_ins = supr_client.batch.new()
workflow_body1 = {...} # must be a proper workflow request json/dict
workflow_body2 = {...} # must be a proper workflow request json/dict
# --- use .append on batch instance to add one or more records
batch_ins.append(workflow_body1)
batch_ins.append(workflow_body2)
# OR
batch_ins.append(workflow_body1, workflow_body2)
# -------
response = batch_ins.trigger()
print(response)
- There isn't any limit on number-of-records that can be added to batch-instance.
- On calling
batch_ins.trigger()
the SDK internally makes one-or-more Callable-chunks. - each callable-chunk contains a subset of records, the subset calculation is based on each record's bytes-size and max allowed chunk-size and chunk-length etc.
- for each callable-chunk SDK makes an HTTP call to SuprSend To register the request.
Set channels in User Profile
If you regularly trigger a workflow for users on some pre-decided channels, then instead of adding user-channel-details in each workflow request, you can set those channel-details in user profile once, and after that, in workflow trigger request you only need to pass the distinct_id of the user. All associated channels in User profile will automatically get picked up when executing the workflow.
You can set user channel details viz. email, sms, whatsapp, androidpush etc (using user.append
method) as shown in the example below.
distinct_id = "__uniq_user_id__" # Unique id of user in your application
# Instantiate User profile
user = supr_client.user.new(distinct_id=distinct_id)
# append channel properties
user.append({
"$email": "user@example.com",
"$sms": "+919999999999",
"$whatsapp": "+919999999999",
"$androidpush": "__fcm_androidpush_token__"
})
# save
response = user.save()
print(response)
# Response structure
{
"success": True, # if true, request was accepted.
"status": "success",
"status_code": 202, # http status code
"message": "OK",
}
{
"success": False, # error will be present in message
"status": "fail",
"status_code": 500, # http status code
"message": "error message",
}
If you want to remove some channel details, use user.remove
method.
distinct_id = "__uniq_user_id__" # Unique id of user in your application
# Instantiate User profile
user = supr_client.user.new(distinct_id=distinct_id)
# remove whatsapp channel
user.remove({
"$whatsapp": "+919999999999",
})
# save
response = user.save()
print(response)
There are helper methods available to add/remove channel details.
# Add channel helper methods
user.add_email("user@example.com")
user.add_sms("+919999999999")
user.add_whatsapp("+919999999999")
user.add_androidpush("__android_push_fcm_token__") # by default, token is assumed to be fcm-token
# You can set the optional provider value [fcm/xiaomi/oppo] if its not a fcm-token
user.add_androidpush("__android_push_xiaomi_token__", provider="xiaomi")
user.add_iospush("__iospush_token__")
# save
response = user.save()
print(response)
# Remove channel helper methods
user.remove_email("user@example.com")
user.remove_sms("+919999999999")
user.remove_whatsapp("+919999999999")
user.remove_androidpush("__android_push_fcm_token__")
user.remove_androidpush("__android_push_xiaomi_token__", provider="xiaomi")
user.remove_iospush("__iospush_token__")
# save
response = user.save()
print(response)
Note: After calling append
/remove
/add_*
/remove_*
methods, don't forget to call user.save()
.
Once channels details are set at User profile, you only have to mention the user's distinct_id while triggering workflow. Associated channels will automatically be picked up from user-profile e.g.
# Prepare Workflow body
workflow_body = {
"name": "Purchase Workflow",
"template": "purchase-made",
"notification_category": "system",
"delay": "15m",
"users": [
{
"distinct_id": "0f988f74-6982-41c5-8752-facb6911fb08",
}
],
# data can be any json / serializable python-dictionary
"data": {
"first_name": "User",
"spend_amount": "$10",
"nested_key_example": {
"nested_key1": "some_value_1",
"nested_key2": {
"nested_key3": "some_value_3",
},
}
}
}
# Trigger workflow
response = supr_client.trigger_workflow(workflow_body)
Project details
Release history Release notifications | RSS feed
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 suprsend-py-sdk-0.0.15.tar.gz
.
File metadata
- Download URL: suprsend-py-sdk-0.0.15.tar.gz
- Upload date:
- Size: 18.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0a2378c18c4446b7f06701e8558f826f7eb72e4bb9b073cf3743e8fa74b5d666 |
|
MD5 | f4ed6797b67384c2b6e0126c82787e7f |
|
BLAKE2b-256 | b74830f4c3f500dafacb34fdfbb367cadb72b48296138a9018b72b68dacbf83c |
File details
Details for the file suprsend_py_sdk-0.0.15-py3-none-any.whl
.
File metadata
- Download URL: suprsend_py_sdk-0.0.15-py3-none-any.whl
- Upload date:
- Size: 19.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.7.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ffe6760f36d349f23787b384d283f4079409149a1658a85016fe32e006950fb7 |
|
MD5 | a77974188ea5b3c69c07480954e02f58 |
|
BLAKE2b-256 | 783fdeee4556bdaccec16b6afef8954425aceff1fa6a13e9e0c664eb3a9dd3ae |