Skip to main content

Expo Server SDK for Python Asyncio

Project description

aioexponent

If you have problems with the code in this repository, please file an issue or a pull-request. Thanks!

Installation

pip install aioexponent

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.

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

from aioexponent import DeviceNotRegisteredError
from aioexponent import PushClient
from aioexponent import PushMessage
from aioexponent import PushResponseError
from aioexponent import PushServerError
from aiohttp import ClientError


# Basic arguments. You should extend this function with the push features you
# want to use, or simply pass in a `PushMessage` object.
async def send_push_message(tokens, message, extra=None):
    client = PushClient()
    try:
        response = await client.publish_multiple([
            PushMessage(to=token,
                        body=message,
                        data=extra) for token in tokens])
    except PushServerError as exc:
        # Encountered some likely formatting/validation error.
        rollbar.report_exc_info(
            extra_data={
                'tokens': tokens, 'message': message, 'extra': extra
                'errors': exc.errors,
                'response_data': exc.response_data,
            })
        raise
    except (ClientError) as exc:
        # Encountered some Connection or HTTP error - retry a few times in
        # case it is transient.
        rollbar.report_exc_info(
            extra_data={'tokens': tokens, 'message': message, 'extra': extra})
        raise 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 PushResponseError as exc:
        # Encountered some other per-notification error.
        rollbar.report_exc_info(
            extra_data={
                'tokens': tokens,
                'message': message,
                'extra': extra,
                'push_response': exc.push_response._asdict(),
            })
        raise retry(exc=exc)

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

aioexponent-0.5.2.tar.gz (5.9 kB view details)

Uploaded Source

Built Distribution

aioexponent-0.5.2-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file aioexponent-0.5.2.tar.gz.

File metadata

  • Download URL: aioexponent-0.5.2.tar.gz
  • Upload date:
  • Size: 5.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.7.1 requests-toolbelt/0.8.0 tqdm/4.19.7 CPython/3.6.7

File hashes

Hashes for aioexponent-0.5.2.tar.gz
Algorithm Hash digest
SHA256 20aa0724f0e1370f770142995556b3cd1b4a8b30800cc0a1e2485230ce30815a
MD5 0935691bb562ee1cb9391ca40d670890
BLAKE2b-256 fea73bfb4177dea1872b390dda0a30abea36abf72eb21729dc6a39992013740b

See more details on using hashes here.

Provenance

File details

Details for the file aioexponent-0.5.2-py3-none-any.whl.

File metadata

  • Download URL: aioexponent-0.5.2-py3-none-any.whl
  • Upload date:
  • Size: 7.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.4.2 requests/2.18.4 setuptools/40.7.1 requests-toolbelt/0.8.0 tqdm/4.19.7 CPython/3.6.7

File hashes

Hashes for aioexponent-0.5.2-py3-none-any.whl
Algorithm Hash digest
SHA256 335d7cbb83c22ab5bfeb34c89800a86fc845af55f0bbcdf0cbe5e9bb98df96ef
MD5 1387c11bdc90f508bfccff4383f77184
BLAKE2b-256 41763f8e9001758f694b7d0fafa2735be3c9027caf80e1efec06ce79617e8305

See more details on using hashes here.

Provenance

Supported by

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