Metadata-Version: 1.1
Name: smsc
Version: 0.1.0
Summary: SMSC.ru HTTP API Library.
Home-page: https://github.com/Otetz/smsc/
Author: Alexey Shevchenko
Author-email: otetz@me.com
License: MIT
Description: SMSC
        ====
        
        .. image:: https://img.shields.io/pypi/v/smsc.svg
            :target: https://pypi.python.org/pypi/smsc
        
        .. image:: https://readthedocs.org/projects/smsc_python/badge/?version=latest
            :target: http://smsc_python.readthedocs.io/en/latest/?badge=latest
            :alt: Documentation Status
        
        .. image:: https://travis-ci.org/Otetz/smsc.svg?branch=master
            :target: https://travis-ci.org/Otetz/smsc
        
        .. image:: https://coveralls.io/repos/github/Otetz/smsc/badge.svg?branch=master
            :target: https://coveralls.io/github/Otetz/smsc?branch=master
        
        .. image:: https://img.shields.io/codeclimate/github/Otetz/smsc.svg
            :target: https://codeclimate.com/github/Otetz/smsc
        
        .. image:: https://img.shields.io/pypi/l/smsc.svg
            :target: https://pypi.python.org/pypi/smsc
        
        .. image:: https://img.shields.io/pypi/pyversions/smsc.svg
            :target: https://pypi.python.org/pypi/smsc
        
        SMSC.ru HTTP API Library.
        
        Installation
        ------------
        
        Install smsc package from `PyPI <https://pypi.python.org/pypi>`_:
        
        .. code-block:: bash
        
            $ pip install smsc
        
        Getting started
        ---------------
        
        Basic usage sample:
        
        .. code-block:: python
        
            >>> from smsc.messages import SMSMessage
            >>> from smsc.api import SMSC
            >>> client = SMSC(login='alexey', password='psw')
            >>> res = client.send(to='79999999999', message=SMSMessage(text='Hello, World!'))
            >>> res.count
            1
            >>> res.cost
            1.44
        
        Documentation
        -------------
        
        Documentation is available at `Read the Docs <http://smsc_python.readthedocs.io/en/latest/>`_.
        
        Links
        -----
        
        - `SMSC.ru HTTP API <https://smsc.ru/api/http/#menu>`_
        
        
        .. :changelog:
        
        Release History
        ---------------
        
        0.1.0 (2017-05-29)
        ++++++++++++++++++
        
        * Birth!
        
Keywords: smsc sms
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Topic :: Software Development :: Libraries
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
