Metadata-Version: 1.1
Name: python-wns
Version: 0.1
Summary: wns python library
Home-page: UNKNOWN
Author: Neetu Jain
Author-email: UNKNOWN
License: BSD License
Description: # python-wns
        Python module for Windows Notification Service (WNS) for Windows tablets/phones(8+)
        
        
        
        example:- 
        
        //Send toast notification
        
        from python-wns import WNSClient
        
        token = 'b5bb9d8014a0f9b1d61e21e796d78dccdf1352f23cd32812f4850b87'
        
        message = {"type": 'toast', "text": ["Hello World!"]}
        
        wns = WNSClient('wnsclientid':  '123','wnsclientsecret': 'xyz')
        
        wns.process(token=token, message=message)
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Programming Language :: Python :: 2.7
