Metadata-Version: 1.1
Name: pushwoosh
Version: 1.0.0
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
Description: 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])
        
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 :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
