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.3.tar.gz
(5.4 kB
view hashes)
Built Distribution
Close
Hashes for aiogetui-0.3-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 483793a26a998f5d829cebb4993c21ace5359f4cabb8eecdc2f86618ed83d6cc |
|
MD5 | 06c5cefd2cfb79a810ba99da5a7dfe22 |
|
BLAKE2-256 | efbed96416df6e8d6fada74eaed0921292474212785f036e44bb844cb0d420bf |