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)
print(result)
await client.close()
asyncio.get_event_loop().run_until_complete(run())
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.4.tar.gz
(5.4 kB
view hashes)
Built Distribution
Close
Hashes for aiogetui-0.4-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 412be1ad94caa79adec7cbfd3fbc2e88addd8051ccea64a05299018b8b27a169 |
|
MD5 | 1d00ec2c351e1cc03be2c7c1effdd67f |
|
BLAKE2b-256 | 1b5dc9f9bb3aef619d55af1d5175f5a825f926191fb96dfb20ef01c125231afb |