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 details)
Built Distribution
File details
Details for the file aiogetui-0.4.tar.gz
.
File metadata
- Download URL: aiogetui-0.4.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2d609bfeca558520ec888737600bda4a5114f73c4e4ececf9778f0ffbfcf5dfe |
|
MD5 | 525d139eef1ad8a690c893270b2e0ccb |
|
BLAKE2b-256 | 73a7ddde419ba9b5f63a7cf07820aa2ef1fde88f754d5033505ae396cb9a481a |
File details
Details for the file aiogetui-0.4-py2.py3-none-any.whl
.
File metadata
- Download URL: aiogetui-0.4-py2.py3-none-any.whl
- Upload date:
- Size: 6.6 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.29.1 CPython/3.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 412be1ad94caa79adec7cbfd3fbc2e88addd8051ccea64a05299018b8b27a169 |
|
MD5 | 1d00ec2c351e1cc03be2c7c1effdd67f |
|
BLAKE2b-256 | 1b5dc9f9bb3aef619d55af1d5175f5a825f926191fb96dfb20ef01c125231afb |