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.3.0.tar.gz (15.8 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.3.0-py3-none-any.whl (16.8 kB view details)

Uploaded Python 3

File details

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

File metadata

File hashes

Hashes for async_expo_push_notifications-2.3.0.tar.gz
Algorithm Hash digest
SHA256 1fdc6509ef7b4e06f39abc8f5facfde35a4bf78ee4ad956120fb3df8a8233d10
MD5 889e1b92cb0419977c73b12bd99b49cd
BLAKE2b-256 185ae5eb5c7b1b523822b2eaa49b81cd8dba462f862c21eefe84f446fab1f9e2

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for async_expo_push_notifications-2.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f6acde0ef88ec2a3e0ac8b69042c9b261778f90192fb3b41d058945625fe1ff9
MD5 cef54c189a610019fd7f3aa8364d5a23
BLAKE2b-256 31ef00eedcc3d616d825bec48ed4e71a73dd8af93f45ab4b5b2e11e03429dbd3

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