notix-python

Python Notix Push notification wrapper


License
GPL-3.0
Install
pip install notix-python==0.0.1

Documentation

Build Status Code Grade Coverage Status Documentation Status

notix-python

Notix Push Notiication Wrapper

Installation

Use pip to install latest package from PyPI.

pip install notix-python

Usage

To use this package

from notix.notix_api import Notix

app_id = "Your Notix App Id"

token = "Your API token"

notix_object = Notix(app_id, token)

message = { 

    "message": {
    
    "title": "test Notification", 
    
    "text":"sample notifiaction text"
    
    }}
    
resp = notix_object.send_notification(message)

print(resp)

Documentation

For full documentation check Here