Skip to content

matthewbdaly/Pushwoosh-Python-library

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

A Python library for interfacing with Pushwoosh

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages