Metadata-Version: 1.0
Name: pylinkmobile
Version: 0.3.0
Summary: Link Mobile Solutions API wrapper
Home-page: https://github.com/funkbit/pylinkmobile
Author: Funkbit
Author-email: post@funkbit.no
License: BSD
Description: # pylinkmobile
        
        pylinkmobile is a Python module for interacting with the Link Mobile Solutions API.
        
        The API documentation is available here:
        http://msgw.linkmobility.com/MessageService.htm
        
        ## Installation
        
        Install `pylinkmobile` (available on PyPi):
        
        	pip install pylinkmobile
        
        
        ## Usage
        
        	from linkmobile.service import MessageService
        	
        	service = MessageService(username='YOUR_USERNAME', password='YOUR_PASSWORD', debug=False)
        	
        	# Send SMS
            sms = service.sms(
                Data='Hello World!',
                Originator='Santa',
                Msisdn='+4700000000'
            )
            response = sms.send()
        
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
