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.1.tar.gz
(5.3 kB
view hashes)
Built Distribution
Close
Hashes for aiogetui-0.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c197e0004795fd7816dc59851e74c9ec26faca0d50b0267fcf72821777303ca7 |
|
MD5 | 6bba7eb9584439333b4203b0277f27da |
|
BLAKE2-256 | b08932a4b96520dac39e1d8fc4eff001a9511c5ab469aac00395870707b96320 |