Metadata-Version: 1.1
Name: python-mpns
Version: 0.1.1
Summary: Python module for Microsoft Push Notification Service (MPNS) for Windows Phone
Home-page: http://github.com/max-arnold/python-mpns
Author: Max Arnold
Author-email: arnold.maxim@gmail.com
License: BSD
Description: python-mpns
        ===========
        
        Python module for Microsoft Push Notification Service (MPNS) for Windows Phone.
        
        It supports Toast, Tile and Raw notification formats (the latter one is not tested yet).
        
        Usage
        -----
        
            from mpns import MPNSTile, MPNSToast, MPNSRaw
        
            uri = 'http://db3.notify.live.net/throttledthirdparty/01.00/ABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890'
            toast = MPNSToast()
            tile = MPNSTile()
        
            toast.send(uri, {'text1': 'Hello', 'text2': 'Windows Phone'})
            toast.send(uri, {'text1': 'Tap this message', 'text2': 'To open application'})
        
            tile.send(uri, {'title': 'Tile title'}
        
        
        Useful links
        ------------
        
        MPNS overview:             http://msdn.microsoft.com/en-us/library/ff402558%28v=vs.92%29.aspx
        
        Protocol specification:    http://msdn.microsoft.com/en-us/library/hh202945%28v=vs.92%29.aspx
        
        WP8 enhancements:          http://msdn.microsoft.com/en-us/library/windowsphone/develop/hh202948%28v=vs.105%29.aspx
        
        Error codes:               http://msdn.microsoft.com/en-us/library/ff941100%28v=VS.92%29.aspx
        
        Authenticated Web Service: http://msdn.microsoft.com/en-us/library/ff941099%28v=vs.92%29.aspx
        
        
        TODO
        ----
        
        * Support Windows Phone 8 extended tile notifications
        * More testing
        
Keywords: mobile push notification microsoft mpns windows phone
Platform: any
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Communications :: Telephony
Classifier: Topic :: Internet
