Expo Server SDK for Python async
Project description
exponent-server-sdk-python-async
This repo is made for the async version of the exponent-server-sdk-python made by Bahadır Araz.
Installation
pip install exponent-server-sdk-async
Usage
Use to send push notifications to Exponent Experiences from a Python server. Full documentation on the API is available if you want to dive into the details.
import asyncio
import os
import httpx
from loguru import logger
from dotenv import load_dotenv
from exponent_server_sdk_async import (
AsyncPushClient,
PushMessage,
DeviceNotRegisteredError,
PushTicketError,
PushServerError
)
# Logger setup
logger.add("debug.log", rotation="1 week", compression="zip")
load_dotenv()
logger.debug("Using Expo Token: {}", os.getenv('EXPO_TOKEN'))
async def send_push_message_to_multiple(tokens, message, extra, title, navigate_to=None):
async with httpx.AsyncClient(headers={
"Authorization": f"Bearer {os.getenv('EXPO_TOKEN')}",
"Accept": "application/json",
"Content-Type": "application/json",
}) as session:
push_client = AsyncPushClient(session=session)
push_messages = [
PushMessage(
to=token,
body=message,
data={'extra': extra, 'navigateTo': navigate_to},
badge=1,
title=title,
sound="default"
) for token in tokens
]
try:
push_tickets = await push_client.publish_multiple(push_messages)
for push_ticket in push_tickets:
if push_ticket.is_success():
logger.info("Notification sent successfully to: {}", push_ticket.push_message.to)
else:
logger.warning("Failed to send notification to: {}, Error: {}", push_ticket.push_message.to, push_ticket.message)
except PushServerError as exc:
logger.error("Push server error: {}", exc)
raise
except DeviceNotRegisteredError as exc:
logger.error("Device not registered error: {}", exc)
raise
except PushTicketError as exc:
logger.error("Push ticket error: {}", exc)
raise
async def main():
tokens = [
"ExponentPushToken[xxxxxxxxxxxxxxxxxxxxxx]",
"ExponentPushToken[yyyyyyyyyyyyyyyyyyyyyy]",
"ExponentPushToken[zzzzzzzzzzzzzzzzzzzzzz]"
]
extra_parameters = {"key": "value"}
# Send a simple push message to multiple recipients
await send_push_message_to_multiple(tokens, "Hello Multi-User", extra_parameters, "Greeting")
# Navigate to home data for multiple recipients
await send_push_message_to_multiple(tokens, "Navigate to home", extra_parameters, "Home", "/(tabs)/(home)")
if __name__ == "__main__":
asyncio.run(main())
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 exponent_server_sdk_async-2.1.7.tar.gz
.
File metadata
- Download URL: exponent_server_sdk_async-2.1.7.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 6e8e213009b4146336336a51a54e089072afffc8c5b01233b00c8030c97e9e94 |
|
MD5 | ed836257cb4094255c8075402047d5c8 |
|
BLAKE2b-256 | 42ed8c3120e29553bf1d669ab9c04511011c92924bcc7721dcd337c7d809f7c1 |
File details
Details for the file exponent_server_sdk_async-2.1.7-py3-none-any.whl
.
File metadata
- Download URL: exponent_server_sdk_async-2.1.7-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.0 CPython/3.12.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23f33cb49d53bc925b3538b2eda4b9ab4655bd825481a1fd4effd6b9d022f2a0 |
|
MD5 | 9851da2ef9ed7f5853f32b2d5b384e9a |
|
BLAKE2b-256 | b7467e9227c3ee902c5feb71267f32d2a27f33c971f00bb5b6f52442c0eb99d3 |