Skip to main content

Expo Server SDK for Python with async/await support, Pydantic models, and full type hints

Project description

Async Expo Push Notifications SDK for Python

Modern Python SDK for Expo Push Notifications with async/await support, Pydantic models, and full type hints.

Note: This is an independent project and is not officially maintained by Expo. It's a modern reimplementation with async support.

If you have problems or suggestions, please feel free to open an issue or submit a PR. Contributions welcome! 🙏

Installation

pip install async-expo-push-notifications

Note: Package name is async-expo-push-notifications but you still import as exponent_server_sdk

Requirements

  • Python 3.8+
  • Type-safe with Pydantic models
  • Async support with httpx
  • Synchronous support with requests (backward compatible)

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.

Async/Await Usage (Recommended for modern applications)

import asyncio
from exponent_server_sdk import AsyncPushClient, PushMessage

async def send_notification():
    async with AsyncPushClient() as client:
        message = PushMessage(
            to="ExponentPushToken[xxxxxxxxxxxxxxxxxxxxxx]",
            title="Hello",
            body="World!",
            data={"extra": "data"}
        )
        ticket = await client.publish(message)
        ticket.validate_response()

asyncio.run(send_notification())

Synchronous Usage (Backward Compatible)

Here's an example on how to use this with retries and reporting via pyrollbar.

from exponent_server_sdk import (
    DeviceNotRegisteredError,
    PushClient,
    PushMessage,
    PushServerError,
    PushTicketError,
)
import os
import requests
from requests.exceptions import ConnectionError, HTTPError

# Optionally providing an access token within a session if you have enabled push security
session = requests.Session()
session.headers.update(
    {
        "Authorization": f"Bearer {os.getenv('EXPO_TOKEN')}",
        "accept": "application/json",
        "accept-encoding": "gzip, deflate",
        "content-type": "application/json",
    }
)

# Basic arguments. You should extend this function with the push features you
# want to use, or simply pass in a `PushMessage` object.
def send_push_message(token, message, extra=None):
    try:
        response = PushClient(session=session).publish(
            PushMessage(to=token,
                        body=message,
                        data=extra))
    except PushServerError as exc:
        # Encountered some likely formatting/validation error.
        rollbar.report_exc_info(
            extra_data={
                'token': token,
                'message': message,
                'extra': extra,
                'errors': exc.errors,
                'response_data': exc.response_data,
            })
        raise
    except (ConnectionError, HTTPError) as exc:
        # Encountered some Connection or HTTP error - retry a few times in
        # case it is transient.
        rollbar.report_exc_info(
            extra_data={'token': token, 'message': message, 'extra': extra})
        raise self.retry(exc=exc)

    try:
        # We got a response back, but we don't know whether it's an error yet.
        # This call raises errors so we can handle them with normal exception
        # flows.
        response.validate_response()
    except DeviceNotRegisteredError:
        # Mark the push token as inactive
        from notifications.models import PushToken
        PushToken.objects.filter(token=token).update(active=False)
    except PushTicketError as exc:
        # Encountered some other per-notification error.
        rollbar.report_exc_info(
            extra_data={
                'token': token,
                'message': message,
                'extra': extra,
                'push_response': exc.push_response._asdict(),
            })
        raise self.retry(exc=exc)

Features

🚀 Async/Await Support

Modern async/await syntax for high-performance applications:

async with AsyncPushClient() as client:
    tickets = await client.publish_multiple(messages)

🔒 Type Safety with Pydantic

All models use Pydantic for validation and type safety:

# Automatic validation
message = PushMessage(
    to="ExponentPushToken[xxx]",
    priority="high",  # Validates against allowed values
    richContent={"image": "https://example.com/img.png"}  # NEW!
)

💉 Dependency Injection

Inject custom HTTP clients for testing or custom behavior:

import httpx

custom_client = httpx.AsyncClient(
    headers={"Authorization": f"Bearer {token}"}
)
push_client = AsyncPushClient(http_client=custom_client)

📸 Rich Content Support

Now includes the richContent field for image notifications:

message = PushMessage(
    to=token,
    title="Check this out!",
    body="Beautiful image notification",
    richContent={"image": "https://example.com/image.jpg"}
)

Examples

Check out the examples/ directory for more:

Migration Guide

From v2.1.x to v2.2.0

The library is fully backward compatible. Existing code will continue to work without changes:

# Old code still works!
from exponent_server_sdk import PushClient, PushMessage

client = PushClient()
ticket = client.publish(PushMessage(to=token, body="Hello"))

New Features You Can Adopt

  1. Use Pydantic models - Your PushMessage objects now have validation
  2. Try async/await - Use AsyncPushClient for better performance
  3. Add richContent - Include images in your notifications
  4. Inject dependencies - Pass custom HTTP clients for testing

Type Hints

All classes and methods now include full type hints:

from exponent_server_sdk import AsyncPushClient, PushMessage, PushTicket
from typing import List

async def send_many(messages: List[PushMessage]) -> List[PushTicket]:
    async with AsyncPushClient() as client:
        return await client.publish_multiple(messages)

📜 License

MIT License - see LICENSE file for details.

🙏 Acknowledgments

This project is a modern reimplementation inspired by:

⚠️ Disclaimer

This is an independent project and is not officially affiliated with or endorsed by Expo.

Comparison with Official SDK

Feature This SDK (async-expo-push-notifications) Official Community SDK
Async/Await ✅ Full async support ❌ Sync only
Type Hints ✅ Complete type hints ⚠️ Partial
Pydantic ✅ Type-safe models ❌ Named tuples
Dependency Injection ✅ Supported ❌ No
Rich Content ✅ Image support ❌ Not included
Python Version 3.8+ 3.6+
Backward Compatible ✅ Yes -

When to use this SDK:

  • You need async/await support for high-performance applications
  • You want type safety with Pydantic models
  • You need dependency injection for testing
  • You want modern Python features (type hints, async)

When to use the official community SDK:

  • You need a battle-tested, widely-used solution
  • You're using Python 3.6-3.7
  • You prefer simpler, synchronous code

For official Expo resources and the original community SDK, please visit:

🤝 Contributing

Contributions are welcome! Please feel free to submit issues or pull requests on GitHub.

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

async_expo_push_notifications-2.2.1.tar.gz (15.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

async_expo_push_notifications-2.2.1-py3-none-any.whl (16.8 kB view details)

Uploaded Python 3

File details

Details for the file async_expo_push_notifications-2.2.1.tar.gz.

File metadata

File hashes

Hashes for async_expo_push_notifications-2.2.1.tar.gz
Algorithm Hash digest
SHA256 e3a17cbd5ed5b7038c2b6a165ff80dfc258eeeed645af147d90b4628e8331c03
MD5 bbb1fd2702afa0c55b3217b606dfd2af
BLAKE2b-256 0dcf51e493b407219c621107c9f67f0230741c92496ff6d399061651c2d607d4

See more details on using hashes here.

File details

Details for the file async_expo_push_notifications-2.2.1-py3-none-any.whl.

File metadata

File hashes

Hashes for async_expo_push_notifications-2.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 07585610c88b923c0c5ecb69a5991e4b4d218f705320fe822b46620be984e7ec
MD5 fe629eaebbc955387a2d371b9c89434d
BLAKE2b-256 e9a15a83ff3512c20e56967ff610f74e9c8dcb4af3eeeaff35182893c06a0123

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page