pushwoosh

A simple client for the Pushwoosh push notification service.


Keywords
push, pushwoosh, interface, client
License
MIT
Install
pip install pushwoosh==1.0.2

Documentation

Python Pushwoosh client

A simple client for the Pushwoosh push notification service.

Example:

from pushwoosh import Pushwoosh

text = 'Hello there'
conditions = ['UserId', 'EQ', 1]
message = {
    'text': text,
    'conditions': conditions
}
push = Pushwoosh(API_TOKEN, APP_CODE, False)
push.create_message([message])

Install it as follow:

pip install pushwoosh