Skip to main content

Python SDK for Getui push service based on asyncio(aiohttp).

Project description

aiogetui

Python SDK for Getui push service based on asyncio(aiohttp). Based on GeTui rest api.

Installation

$ pip install aiogetui

Basic Usage

import asyncio
import uuid
from aiogetui import IGeTui, ToSingleMessage, NotificationTemplate

APP_ID = ''
APP_KEY = ''
MASTER_SECRET = ''
CLIENT_ID = ''


async def run():
    client = IGeTui(APP_ID, APP_KEY, MASTER_SECRET)
    await client.auth_sign()
    message = ToSingleMessage(client_id=CLIENT_ID,
                              template=NotificationTemplate(
                                  {
                                      'title': 'my title',
                                      'text': 'My text.',
                                  }),
                              is_offline=True,  # optional, default to False
                              message_id=uuid.uuid4().hex,  # optional, length 10~32
    )
    _result = await client.push(message)
    await client.close()
    return _result

result = asyncio.get_event_loop().run_until_complete(run())
print(result)

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

aiogetui-0.2.tar.gz (5.2 kB view hashes)

Uploaded Source

Built Distribution

aiogetui-0.2-py2.py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 2 Python 3

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