Metadata-Version: 2.1
Name: mksms
Version: 0.1.1
Summary: Python Client library for MKSms API
Home-page: https://github.com/mksms/mksms-python
Author: MboateK
Author-email: contact@mboatek.com
License: MIT
Platform: UNKNOWN
Classifier: Natural Language :: English
Classifier: Natural Language :: French
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Requires-Python: >=2.7.0
Description-Content-Type: text/markdown
Requires-Dist: requests


MKSms Client
===========

MKSms Client is a Python library written to handle/consume the MKSms API. Here is how to use::

    #!/usr/bin/env python

    from mksms.contact import Contact
    from mksms.message import Message, Response
    from mksms.client import Client

    contact = Contact("600000000", "Name")
    message = Message(contact, "Salut molah")
    client = Client("api_key", "api_hash")
    resp = client.send_message(message)
    self.assertEqual(resp.success, True)



