Metadata-Version: 2.0
Name: pushwoosh
Version: 1.0.2
Summary: A simple client for the Pushwoosh push notification service.
Home-page: https://github.com/Astutech/Pushwoosh-Python-library
Author: Astutech
Author-email: matthew@astutech.com
License: MIT
Keywords: push pushwoosh interface client
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Requires-Dist: six

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])


